/* ========================================================================
   MÉCHOUI INTERNATIONAL - Stylesheet
   Editorial layout · Warm rustic palette · Full-bleed food photography
   ======================================================================== */

:root {
  --primary: #8c0f1d;
  --primary-rgb: 140, 15, 29;
  --primary-dark: #42070e;
  --primary-dark-rgb: 66, 7, 14;
  --primary-light: #e8243a;
  --primary-light-rgb: 232, 36, 58;
  --secondary: #1f2f36;
  --secondary-rgb: 31, 47, 54;
  --secondary-dark: #010202;
  --secondary-dark-rgb: 1, 2, 2;
  --secondary-light: #486d7d;
  --secondary-light-rgb: 72, 109, 125;
  --accent: #8b0e1c;
  --accent-rgb: 139, 14, 28;
  --accent-dark: #41070d;
  --accent-dark-rgb: 65, 7, 13;
  --text: #111827;
  --text-rgb: 17, 24, 39;
  --text-light: #7d8797;
  --text-light-rgb: 125, 135, 151;
  --text-muted: #7f8694;
  --text-muted-rgb: 127, 134, 148;
  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --bg: #ffffff;
  --bg-rgb: 255, 255, 255;
  --bg-alt: #f8fafc;
  --bg-alt-rgb: 248, 250, 252;
  --bg-dark: #111827;
  --bg-dark-rgb: 17, 24, 39;
  --surface: #ffffff;
  --surface-rgb: 255, 255, 255;
  --surface-dark: #f3f4f6;
  --surface-dark-rgb: 243, 244, 246;
  --border: #909296;
  --border-rgb: 144, 146, 150;
  --border-light: #f3f4f6;
  --border-light-rgb: 243, 244, 246;
  --accent-on-light: #8b0e1c;
  --accent-on-light-rgb: 139, 14, 28;
  --primary-ink: #ffffff;
  --primary-ink-rgb: 255, 255, 255;
  --secondary-ink: #ffffff;
  --secondary-ink-rgb: 255, 255, 255;
  --accent-ink: #ffffff;
  --accent-ink-rgb: 255, 255, 255;
  --bg-alt-ink: #111827;
  --bg-alt-ink-rgb: 17, 24, 39;

  /* Utility variables (non-palette, WCAG-safe grays) */
  --text-body: #4b5563;   /* muted body text on light bg — 7.5:1 on white */
  --text-body-dark: #374151; /* deeper body text — 10:1 on white */
  --hairline: #e5e7eb;    /* neutral divider */
  --cream: #fbf6ec;       /* warm cream — text-led sections (temps-des-sucres) */
  --cream-dark: #f5ebd8;  /* deeper cream — gradient stop paired with --cream */
  --footer-hours: #f7b2bb; /* light pink — WCAG AA on --bg-dark (7.9:1), keeps warm-brand feel */

  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Raleway", "Helvetica Neue", Arial, sans-serif;

  /* Radii */
  --r-sm: 2px;
  --r-md: 3px;
  --r-lg: 4px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(var(--secondary-rgb), 0.06);
  --shadow-md: 0 8px 24px rgba(var(--secondary-rgb), 0.10);
  --shadow-lg: 0 20px 50px rgba(var(--secondary-rgb), 0.18);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-med: 240ms ease;
  --t-slow: 400ms ease;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-sans); font-weight: 700; }
p { margin: 0 0 1em; }

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
}

em { font-style: italic; font-family: var(--font-serif); color: var(--primary); font-weight: 500; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; color: var(--primary-ink); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}
.eyebrow--light {
  color: var(--primary-ink);
}
.eyebrow--light::after {
  background: var(--primary-ink);
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 10px 18px; font-size: 0.75rem; }
.btn--lg { padding: 17px 34px; font-size: 0.9rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}
.btn--primary:hover,
.btn--primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--primary-ink);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--primary-ink);
}

.btn--outline-light {
  background: transparent;
  color: var(--primary-ink);
  border-color: rgba(var(--primary-ink-rgb), 0.75);
}
.btn--outline-light:hover {
  background: var(--primary-ink);
  color: var(--secondary);
  border-color: var(--primary-ink);
}

.btn--ghost {
  background: rgba(var(--primary-ink-rgb), 0.10);
  color: var(--primary-ink);
  border-color: rgba(var(--primary-ink-rgb), 0.55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: var(--primary-ink);
  color: var(--secondary);
  border-color: var(--primary-ink);
}

/* ========================================================================
   HEADER
   ======================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  border-bottom: 1px solid rgba(var(--border-rgb), 0.15);
}

/* Top bar */
.top-bar {
  background: var(--secondary);
  color: var(--primary-ink);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(var(--primary-ink-rgb), 0.06);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 9px;
  min-height: 40px;
}
.top-bar__contact,
.top-bar__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar__phone,
.top-bar__email,
.top-bar__hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-ink);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.top-bar__phone { font-weight: 700; letter-spacing: 0.02em; }
.top-bar__phone:hover,
.top-bar__email:hover {
  color: var(--primary-light);
}
.top-bar__phone svg,
.top-bar__email svg,
.top-bar__hours svg {
  color: var(--primary-light);
}
.top-bar__social {
  display: inline-flex;
  gap: 12px;
}
.top-bar__social a {
  color: var(--primary-ink);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-ink-rgb), 0.25);
  transition: all var(--t-fast);
}
.top-bar__social a:hover {
  color: var(--primary-ink);
  background: var(--primary);
  border-color: var(--primary);
  opacity: 1;
}

/* Nav bar */
.nav-bar {
  background: var(--background);
}
.nav-bar__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 14px;
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.brand img {
  height: 62px;
  width: auto;
  transition: transform var(--t-med);
}
.brand:hover img { transform: scale(1.03); }

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav__list a,
.main-nav__list .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--secondary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--t-fast);
  position: relative;
}
.main-nav__list a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-fast);
}
.main-nav__list a:hover::after,
.main-nav__list a.active::after {
  transform: scaleX(1);
}
.main-nav__list a:hover,
.main-nav__list a.active,
.main-nav__list .dropdown-toggle:hover {
  color: var(--primary);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}
.dropdown-toggle svg { transition: transform var(--t-fast); }
.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown.is-open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 240px;
  background: var(--background);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-med);
  z-index: 20;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  color: var(--text);
  font-size: 0.82rem;
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

/* Nav CTA */
.nav-bar__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-phone svg { color: var(--primary); }
.nav-phone:hover { color: var(--primary); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px 7px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--secondary);
  transition: all var(--t-fast);
  transform-origin: center;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 780px);
  display: flex;
  align-items: center;
  color: var(--primary-ink);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(var(--secondary-dark-rgb), 0.55) 0%, rgba(var(--secondary-dark-rgb), 0.70) 60%, rgba(var(--secondary-dark-rgb), 0.85) 100%),
    linear-gradient(90deg, rgba(var(--secondary-dark-rgb), 0.55) 0%, rgba(var(--secondary-dark-rgb), 0.20) 55%);
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-block: clamp(60px, 10vh, 110px);
}
.hero__content {
  max-width: 720px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  padding: 8px 18px;
  border: 1px solid rgba(var(--primary-ink-rgb), 0.45);
  margin-bottom: 26px;
  color: var(--primary-ink);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: var(--primary-ink);
  margin: 0 0 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  letter-spacing: -0.015em;
}
.hero__title em {
  font-style: italic;
  color: var(--primary-light);
  font-weight: 400;
}
.hero__lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(var(--primary-ink-rgb), 0.95);
  max-width: 620px;
  margin-bottom: 34px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid rgba(var(--primary-ink-rgb), 0.20);
}
.hero__proof li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__proof strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary-ink);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero__proof span {
  font-size: 0.78rem;
  color: rgba(var(--primary-ink-rgb), 0.85);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

/* ========================================================================
   SECTIONS
   ======================================================================== */
.section {
  padding-block: clamp(60px, 8vw, 110px);
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--soft { background: #faf7f2; }
.section--dark {
  background: var(--secondary);
  color: var(--primary-ink);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--primary-ink); }
.section--dark p:not(.lead) { color: rgba(var(--primary-ink-rgb), 0.88); }
.section--dark .lead { color: rgba(var(--primary-ink-rgb), 0.95); }

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section__head h2 { margin-bottom: 14px; }
.section__lede {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0;
}
.section--dark .section__lede { color: rgba(var(--primary-ink-rgb), 0.85); }

.section__head--split {
  max-width: none;
  text-align: left;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.section__head--split h2 { margin-bottom: 0; }

/* ========================================================================
   STORY (Historique)
   ======================================================================== */
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.story__media {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95);
}
.story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 8px rgba(var(--primary-ink-rgb), 0.05);
  pointer-events: none;
}
.story__text .lead {
  color: rgba(var(--primary-ink-rgb), 0.95);
}
.story__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
  margin: 28px 0;
  border-top: 1px solid rgba(var(--primary-ink-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--primary-ink-rgb), 0.15);
}
.story__meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story__meta strong {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--primary-light);
  font-weight: 700;
  line-height: 1;
}
.story__meta span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(var(--primary-ink-rgb), 0.75);
  font-weight: 500;
}

/* ========================================================================
   SPLIT (unequal 2-column, alternating)
   ======================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-block: 0;
  align-items: stretch;
}
.split--flip { grid-template-columns: 1fr 1fr; }
.split--flip .split__media { order: 2; }
.split--flip .split__text { order: 1; }

.split__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 480px;
}

.split__text {
  display: flex;
  align-items: center;
  padding: clamp(50px, 7vw, 100px) clamp(30px, 5vw, 80px);
  background: var(--background);
}
.split__inner {
  max-width: 520px;
}
.split__inner .lead { margin-bottom: 20px; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 2px;
  background: var(--primary);
}
.feature-list li span {
  font-weight: 700;
  color: var(--secondary);
  display: inline;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all var(--t-fast);
}
.link-arrow svg { transition: transform var(--t-fast); }
.link-arrow:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}
.link-arrow:hover svg { transform: translateX(4px); }

/* ========================================================================
   BANNER CTA (full bleed image with overlay + text)
   ======================================================================== */
.banner-cta {
  position: relative;
  padding-block: clamp(90px, 12vw, 160px);
  color: var(--primary-ink);
  overflow: hidden;
  text-align: center;
}
.banner-cta__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.banner-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-cta__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(var(--secondary-dark-rgb), 0.60), rgba(var(--secondary-dark-rgb), 0.78));
}
.banner-cta__inner {
  position: relative;
  z-index: 3;
  text-align: center;
}
.banner-cta__inner .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.banner-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--primary-ink);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  max-width: 780px;
  margin: 0 auto 16px;
}
.banner-cta p {
  font-size: 1.05rem;
  color: rgba(var(--primary-ink-rgb), 0.92);
  max-width: 640px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.banner-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================================================
   SEASONAL EVENTS GRID
   ======================================================================== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.event-card {
  background: var(--background);
  overflow: hidden;
  transition: box-shadow var(--t-med), transform var(--t-med);
  position: relative;
}
.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.event-card__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--text);
  height: 100%;
  min-height: 320px;
}
.event-card__link:hover { color: var(--text); }
.event-card__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-slow);
}
.event-card:hover .event-card__media img {
  transform: scale(1.05);
}
.event-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}
.event-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 40px);
  gap: 14px;
  min-width: 0;
  background: var(--background);
}
.event-card__body h3 {
  font-family: var(--font-serif);
  color: var(--secondary);
  margin: 0;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
}
.event-card__body p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}
.event-card__body .link-arrow { margin-top: 6px; }

/* ========================================================================
   MENU FEATURED (Menu de Noël)
   ======================================================================== */
.menu-featured__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.menu-featured__media {
  position: sticky;
  top: 140px;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  align-self: start;
}
.menu-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.menu-featured__text .eyebrow { display: inline-block; }
.menu-featured__text h2 { margin-bottom: 12px; }
.menu-featured__text h2 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}

.menu-list { margin: 32px 0; }
.menu-list h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.menu-list__items {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.menu-list__items li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(var(--border-rgb), 0.35);
  font-size: 0.98rem;
  line-height: 1.5;
}
.menu-list__items li:last-child { border-bottom: 0; }
.menu-list__num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}
.pricing__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-alt);
  border-left: 3px solid var(--secondary);
}
.pricing__row--accent {
  border-left-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.04);
}
.pricing__label {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  display: block;
}
.pricing__note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.pricing__note--footer {
  margin-top: 12px;
  font-style: italic;
}
.pricing__amount {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}
.pricing__amount small {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.menu-featured__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========================================================================
   OTHER MENUS LIST
   ======================================================================== */
.menu-docs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-light);
}
.menu-docs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  transition: padding-left var(--t-med);
}
.menu-docs li:hover { padding-left: 12px; }
.menu-docs__meta { flex: 1; min-width: 240px; }
.menu-docs__tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--primary);
  padding: 3px 10px;
  background: rgba(var(--primary-rgb), 0.08);
  margin-bottom: 8px;
}
.menu-docs__meta h3 {
  font-size: 1.3rem;
  margin: 4px 0 6px;
  color: var(--secondary);
}
.menu-docs__meta p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}
.menu-docs__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}
.menu-docs__link svg { transition: transform var(--t-fast); }
.menu-docs__link:hover svg { transform: translateX(4px); }

/* ========================================================================
   GALLERY BAND
   ======================================================================== */
.gallery-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  min-height: 380px;
}
.gallery-band__item {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 380px;
}
.gallery-band__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-slow), filter var(--t-slow);
  min-height: 380px;
  filter: brightness(0.75);
}
.gallery-band__item:hover img {
  transform: scale(1.05);
  filter: brightness(0.60);
}
.gallery-band__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: rgba(var(--secondary-dark-rgb), 0.50);
  color: var(--primary-ink);
  padding: 24px;
  pointer-events: none;
}
.gallery-band__overlay h2 {
  color: var(--primary-ink);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.55);
  margin: 0 0 8px;
}
.gallery-band__overlay .btn { pointer-events: auto; }

/* ========================================================================
   RESERVATION SECTION
   ======================================================================== */
.reservation__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.reservation__text .lead { color: rgba(var(--primary-ink-rgb), 0.92); }

.contact-quick {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}
.contact-quick li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-quick__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(var(--primary-ink-rgb), 0.08);
  border: 1px solid rgba(var(--primary-ink-rgb), 0.16);
  color: var(--primary-light);
}
.contact-quick__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(var(--primary-ink-rgb), 0.65);
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-quick__value {
  display: block;
  color: var(--primary-ink);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}
a.contact-quick__value:hover { color: var(--primary-light); }

/* Form */
.reservation__form {
  background: var(--background);
  padding: clamp(28px, 4vw, 44px);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 0;
  transition: border-color var(--t-fast);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: var(--font-sans); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 14px 0 0;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--background);
  padding-top: clamp(50px, 6vw, 80px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 50px);
  padding-bottom: 50px;
}
.site-footer__logo {
  width: auto;
  height: 102px;
  margin-bottom: 20px;
}
.site-footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--footer-hours);
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.site-footer__desc {
  color: rgba(var(--background-rgb), 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 340px;
}
.site-footer__social {
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(var(--background-rgb), 0.25);
  color: var(--background);
  transition: all var(--t-fast);
}
.site-footer__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-ink);
}

.site-footer__col h4 {
  color: var(--background);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.site-footer__col li,
.site-footer__col a {
  color: rgba(var(--background-rgb), 0.82);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.site-footer__col a:hover { color: var(--primary-light); }
.site-footer__phone {
  font-weight: 700;
  font-size: 1.05rem !important;
  color: var(--background) !important;
  white-space: nowrap;
}
.site-footer__phone:hover { color: var(--primary-light) !important; }
.site-footer__hours {
  color: var(--footer-hours) !important;
  font-style: italic;
  margin-top: 6px;
}

.site-footer__base {
  border-top: 1px solid rgba(var(--background-rgb), 0.10);
  padding-block: 20px;
  margin-top: 20px;
}
.site-footer__baseline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer__baseline p {
  color: rgba(var(--background-rgb), 0.55);
  font-size: 0.82rem;
  margin: 0;
}

/* ========================================================================
   MEDIA QUERIES / RESPONSIVE
   ======================================================================== */

/* Show nav phone at larger screens */
@media (min-width: 1200px) {
  .nav-phone { display: inline-flex; }
}

/* Tablet */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: -1; }
  .split__media { min-height: 360px; aspect-ratio: 16 / 10; }
  .split__media img { min-height: 360px; }
  .split__text { padding: clamp(40px, 6vw, 60px) var(--gutter); }

  .story__grid { grid-template-columns: 1fr; }
  .menu-featured__grid { grid-template-columns: 1fr; }
  .menu-featured__media {
    position: relative;
    top: 0;
    aspect-ratio: 16 / 10;
    max-width: 640px;
    margin: 0 auto;
  }

  .reservation__grid { grid-template-columns: 1fr; }

  .gallery-band { grid-template-columns: repeat(2, 1fr); }
  .gallery-band__item { min-height: 300px; }
  .gallery-band__item img { min-height: 300px; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Small tablet / large mobile — mobile nav kicks in */
@media (max-width: 980px) {
  .top-bar__meta .top-bar__hours { display: none; }
  .top-bar__contact .top-bar__email span { display: none; }

  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84%);
    background: var(--background);
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform var(--t-med);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 90;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav__list > li { width: 100%; }
  .main-nav__list a,
  .main-nav__list .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
  }
  .main-nav__list a::after { display: none; }

  .has-dropdown { position: static; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    padding: 0 0 6px 12px;
    background: transparent;
    display: none;
  }
  .has-dropdown.is-open .dropdown-menu { display: block; }
  .dropdown-menu a {
    padding: 10px 4px;
    border-bottom: 1px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 600;
  }

  .nav-bar__cta { margin-left: auto; gap: 10px; }
  .nav-bar__cta .nav-cta { display: inline-flex; }
}

/* Mobile */
@media (max-width: 640px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }

  .top-bar { font-size: 0.72rem; }
  .top-bar__inner { justify-content: center; }
  .top-bar__contact { gap: 14px; }
  .top-bar__meta { display: none; }

  .brand img { height: 52px; }
  .nav-bar__inner { min-height: 70px; padding-block: 10px; gap: 12px; }
  .nav-bar__cta .nav-cta {
    padding: 9px 14px;
    font-size: 0.72rem;
  }

  .hero { min-height: 640px; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero__lede { font-size: 1rem; }
  .hero__proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero__proof strong { font-size: 1.15rem; }
  .hero__ctas .btn { width: 100%; }

  .story__meta { grid-template-columns: 1fr; gap: 14px; }

  .event-grid { grid-template-columns: 1fr; gap: 20px; }
  .event-card__link { grid-template-columns: 1fr; }
  .event-card__media { min-height: 240px; }

  .form-grid { grid-template-columns: 1fr; gap: 16px; }

  .gallery-band { grid-template-columns: 1fr 1fr; }
  .gallery-band__item, .gallery-band__item img { min-height: 200px; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer__baseline { justify-content: flex-start; }
  .site-footer__baseline p { font-size: 0.75rem; }

  .menu-docs li { flex-direction: column; align-items: flex-start; gap: 12px; }

  .pricing__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .banner-cta__buttons { flex-direction: column; align-items: stretch; }
  .banner-cta__buttons .btn { width: 100%; }
}

/* ========================================================================
   BODY SCROLL LOCK when mobile menu is open
   ======================================================================== */
body.no-scroll { overflow: hidden; }

/* ========================================================================
   PAGE: ABOUT (Historique) — trust_narrative / LetterTrust
   Scoped to body.page-about so no global chrome or index.html is affected.
   ======================================================================== */

/* Narrative hero: keep the shared .hero shell, just center the copy and
   soften the min-height so it feels editorial rather than a landing page. */
body.page-about .hero--narrative { min-height: clamp(440px, 62vh, 620px); }
body.page-about .hero--narrative .hero__inner { padding-block: clamp(70px, 10vh, 120px); }
body.page-about .hero__content--centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
body.page-about .hero__content--centered .hero__eyebrow { margin-inline: auto; }
body.page-about .hero__content--centered .hero__lede { margin-inline: auto; }
body.page-about .hero--narrative .hero__scrim {
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 70%),
    linear-gradient(180deg, rgba(var(--secondary-dark-rgb), 0.78) 0%, rgba(var(--secondary-dark-rgb), 0.82) 60%, rgba(var(--secondary-dark-rgb), 0.92) 100%);
}
body.page-about .hero__title em {
  font-weight: 600;
  color: var(--primary-ink);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75), 0 0 24px rgba(var(--primary-light-rgb), 0.55);
}
body.page-about .hero__lede {
  color: var(--primary-ink);
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

/* ---------- COMPANY LETTER ---------- */
body.page-about .letter { background: var(--background); }
body.page-about .letter__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
body.page-about .letter__aside {
  position: sticky;
  top: 140px;
  padding-right: 10px;
}
body.page-about .letter__aside-title {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
body.page-about .letter__aside-lede {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
body.page-about .letter__seal {
  margin: 0;
  padding: 26px 28px 24px;
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--primary);
  background: var(--bg-alt);
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
body.page-about .letter__seal-year {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.05;
}
body.page-about .letter__seal-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 700;
}

body.page-about .letter__paper {
  background: #faf7f2;
  padding: clamp(30px, 4vw, 56px) clamp(28px, 4vw, 60px);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
  position: relative;
}
body.page-about .letter__paper::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 14px;
  width: 1px;
  background: rgba(var(--primary-rgb), 0.15);
}
body.page-about .letter__opener {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 18px;
}
body.page-about .letter__paper p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-body-dark);
  margin-bottom: 1.15em;
}
body.page-about .letter__signoff {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--secondary);
  margin-top: 30px;
  margin-bottom: 8px;
}
body.page-about .letter__signature {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--secondary);
  margin: 0;
  line-height: 1.5;
}
body.page-about .letter__signature em {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 500;
}
body.page-about .letter__signature-role {
  display: block;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- TIMELINE (trust proof) ---------- */
body.page-about .timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 860px;
  position: relative;
}
body.page-about .timeline::before {
  content: "";
  position: absolute;
  left: 108px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.15) 100%);
}
body.page-about .timeline__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding-block: clamp(22px, 3vw, 34px);
  position: relative;
}
body.page-about .timeline__item + .timeline__item {
  border-top: 1px dotted rgba(var(--border-rgb), 0.30);
}
body.page-about .timeline__marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  width: 92px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--primary);
  color: var(--primary-ink);
  margin-left: 24px;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.28);
}
body.page-about .timeline__marker span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-ink);
  text-align: center;
  letter-spacing: 0.02em;
  padding: 0 6px;
  line-height: 1.15;
}
body.page-about .timeline__body h3 {
  font-family: var(--font-serif);
  color: var(--secondary);
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}
body.page-about .timeline__body p {
  color: var(--text-body-dark);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- LEGACY (family succession) ---------- */
body.page-about .legacy .section__head--split {
  align-items: flex-end;
  margin-bottom: clamp(30px, 4vw, 50px);
}
body.page-about .legacy__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}
body.page-about .legacy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
body.page-about .legacy__card {
  background: var(--background);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--secondary);
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
body.page-about .legacy__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
body.page-about .legacy__card--accent {
  border-top-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.03);
}
body.page-about .legacy__badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--primary);
  padding: 4px 10px;
  background: rgba(var(--primary-rgb), 0.08);
  align-self: flex-start;
}
body.page-about .legacy__name {
  font-family: var(--font-serif);
  color: var(--secondary);
  margin: 4px 0 2px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  letter-spacing: -0.01em;
}
body.page-about .legacy__role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 6px;
}
body.page-about .legacy__card p:not(.legacy__role) {
  color: var(--text-body-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Philosophy split: looser leading + rhythm between paragraphs */
body.page-about .split .split__inner p {
  line-height: 1.75;
  margin-bottom: 1.1em;
}
body.page-about .split .split__inner p.lead {
  color: var(--text-body-dark);
  font-size: 1.1rem;
  line-height: 1.65;
}

/* ---------- ABOUT CTA (team conversation) ---------- */
body.page-about .about-cta { text-align: center; }
body.page-about .about-cta__inner {
  max-width: 780px;
  margin: 0 auto;
}
body.page-about .about-cta .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
body.page-about .about-cta h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 18px;
}
body.page-about .about-cta h2 em {
  color: var(--primary-light);
  font-style: italic;
  font-weight: 400;
}
body.page-about .about-cta__lede {
  font-size: 1.1rem;
  color: rgba(var(--primary-ink-rgb), 0.90);
  max-width: 640px;
  margin: 0 auto 34px;
  line-height: 1.6;
}
body.page-about .about-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
body.page-about .about-cta__phone {
  white-space: nowrap;
}
body.page-about .about-cta__phone svg { color: currentColor; }
body.page-about .about-cta__note {
  font-size: 0.82rem;
  color: rgba(var(--primary-ink-rgb), 0.65);
  letter-spacing: 0.06em;
  margin: 0;
}

/* ---------- ABOUT RESPONSIVE ---------- */
@media (max-width: 1024px) {
  body.page-about .letter__grid { grid-template-columns: 1fr; }
  body.page-about .letter__aside { position: relative; top: 0; padding-right: 0; }
  body.page-about .letter__seal { align-self: flex-start; }
  body.page-about .legacy__grid { grid-template-columns: 1fr 1fr; }
  body.page-about .legacy .section__head--split { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 640px) {
  body.page-about .letter__paper { padding: 26px 22px; }
  body.page-about .letter__paper::before { display: none; }
  body.page-about .letter__opener { font-size: 1.15rem; }
  body.page-about .letter__signature { font-size: 1.05rem; }
  body.page-about .letter__signature em { font-size: 1.3rem; }

  body.page-about .timeline::before { left: 34px; }
  body.page-about .timeline__item { grid-template-columns: 72px 1fr; gap: 16px; }
  body.page-about .timeline__marker { margin-left: 0; width: 68px; height: 68px; border-width: 2px; }
  body.page-about .timeline__marker span { font-size: 0.8rem; padding: 0 4px; }

  body.page-about .legacy__grid { grid-template-columns: 1fr; gap: 20px; }

  body.page-about .about-cta__actions { flex-direction: column; align-items: stretch; }
  body.page-about .about-cta__actions .btn { width: 100%; }
}

/* ========================================================================
   PAGE: AMBIANCE (Gallery) — ProofSummary
   Scoped to body.page-ambiance. No global chrome or index.html is affected.
   ======================================================================== */

/* ---------- TOPIC INTRO: editorial masthead ---------- */
body.page-ambiance .masthead {
  padding-block: clamp(56px, 8vw, 100px);
  background: var(--background);
}
body.page-ambiance .masthead__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
body.page-ambiance .masthead__intro { min-width: 0; }
body.page-ambiance .masthead__overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}
body.page-ambiance .masthead__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--secondary);
  margin: 0 0 26px;
}
body.page-ambiance .masthead__title em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-ambiance .masthead__lede {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-body-dark);
  margin: 0 0 22px;
  max-width: 480px;
}
body.page-ambiance .masthead__note {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 480px;
}
body.page-ambiance .masthead__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 6px;
}
body.page-ambiance .masthead__media {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  min-height: 520px;
}
body.page-ambiance .masthead__media > figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}
body.page-ambiance .masthead__media > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.98);
}
body.page-ambiance .masthead__media .masthead-figure--tall {
  grid-row: 1 / span 2;
}

/* ---------- ANATOMY: source-grounded 4-part proof band ---------- */
body.page-ambiance .anatomy {
  background: var(--bg-alt);
  padding-block: clamp(50px, 6vw, 84px);
  border-block: 1px solid var(--hairline);
}
body.page-ambiance .anatomy__row {
  display: grid;
  grid-template-columns: 0.9fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
body.page-ambiance .anatomy__intro {
  padding-right: 20px;
  border-right: 1px solid rgba(var(--secondary-rgb), 0.12);
}
body.page-ambiance .anatomy__intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.15;
  color: var(--secondary);
  margin: 12px 0 0;
}
body.page-ambiance .anatomy__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
}
body.page-ambiance .anatomy__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
body.page-ambiance .anatomy__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
body.page-ambiance .anatomy__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 6px 0 2px;
  line-height: 1.25;
}
body.page-ambiance .anatomy__desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ---------- SEASONS: asymmetric 12-col grid ---------- */
body.page-ambiance .seasons {
  padding-block: clamp(60px, 8vw, 110px);
  background: var(--background);
}
body.page-ambiance .seasons__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
body.page-ambiance .seasons__head h2 { margin-bottom: 14px; }
body.page-ambiance .seasons__head .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
body.page-ambiance .seasons__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 2.5vw, 34px);
}
body.page-ambiance .season {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body.page-ambiance .season--noel { grid-column: span 7; }
body.page-ambiance .season--sucres { grid-column: span 5; }
body.page-ambiance .season--homards { grid-column: span 5; }
body.page-ambiance .season--ete { grid-column: span 7; }

body.page-ambiance .season__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--secondary);
}
body.page-ambiance .season--sucres .season__frame,
body.page-ambiance .season--homards .season__frame {
  aspect-ratio: 4 / 5;
}
body.page-ambiance .season__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-slow);
}
body.page-ambiance .season:hover .season__frame img { transform: scale(1.03); }
body.page-ambiance .season__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary-ink);
  color: var(--secondary);
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
body.page-ambiance .season__caption {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: start;
}
body.page-ambiance .season__count {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  border-top: 2px solid var(--primary);
  padding-top: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
body.page-ambiance .season__text {
  border-top: 1px solid rgba(var(--secondary-rgb), 0.14);
  padding-top: 10px;
}
body.page-ambiance .season__title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 8px;
  line-height: 1.2;
}
body.page-ambiance .season__desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* ---------- DECOR: dark split with numbered service list ---------- */
body.page-ambiance .decor {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  padding-block: 0;
  align-items: stretch;
  background: var(--secondary);
  color: var(--primary-ink);
}
body.page-ambiance .decor__media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  margin: 0;
}
body.page-ambiance .decor__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 540px;
}
body.page-ambiance .decor__text {
  display: flex;
  align-items: center;
  padding: clamp(50px, 7vw, 100px) clamp(30px, 5vw, 80px);
  color: var(--primary-ink);
}
body.page-ambiance .decor__inner { max-width: 540px; }
body.page-ambiance .decor__inner h2 {
  color: var(--primary-ink);
  margin-bottom: 18px;
}
body.page-ambiance .decor__inner h2 em {
  color: var(--primary-light);
  font-style: italic;
  font-weight: 500;
}
body.page-ambiance .decor__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(var(--primary-ink-rgb), 0.92);
  margin-bottom: 24px;
  line-height: 1.6;
}
body.page-ambiance .decor__list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 22px;
}
body.page-ambiance .decor__list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--primary-ink-rgb), 0.15);
}
body.page-ambiance .decor__list li strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
body.page-ambiance .decor__list li p {
  margin: 0;
  color: rgba(var(--primary-ink-rgb), 0.88);
  font-size: 0.96rem;
  line-height: 1.6;
}
body.page-ambiance .decor__list li p b {
  color: var(--primary-ink);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

/* ---------- MOSAIC: full-bleed image mosaic ---------- */
body.page-ambiance .mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
  background: var(--background);
}
body.page-ambiance .mosaic__cell {
  overflow: hidden;
  position: relative;
  display: block;
  background: var(--bg-alt);
}
body.page-ambiance .mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-slow), filter var(--t-slow);
  filter: brightness(0.94);
}
body.page-ambiance .mosaic__cell:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
body.page-ambiance .mosaic__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(var(--secondary-dark-rgb), 0.35) 100%);
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
}
body.page-ambiance .mosaic__cell:hover::after { opacity: 1; }
body.page-ambiance .mosaic__cell--wide { grid-column: span 3; grid-row: span 2; }
body.page-ambiance .mosaic__cell--tall { grid-column: span 2; grid-row: span 2; }
body.page-ambiance .mosaic__cell--square { grid-column: span 1; grid-row: span 1; }
body.page-ambiance .mosaic__cell--half { grid-column: span 2; grid-row: span 1; }

/* ---------- BOOK: single restrained CTA ---------- */
body.page-ambiance .book {
  padding-block: clamp(60px, 7vw, 90px);
  background: #faf7f2;
  border-top: 1px solid var(--hairline);
}
body.page-ambiance .book__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
body.page-ambiance .book__text .eyebrow { margin-bottom: 14px; }
body.page-ambiance .book__text h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  color: var(--secondary);
  margin: 0 0 10px;
}
body.page-ambiance .book__text h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-ambiance .book__text p {
  color: var(--text-body-dark);
  font-size: 1rem;
  margin: 0;
  max-width: 540px;
  line-height: 1.6;
}
body.page-ambiance .book__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
body.page-ambiance .book__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  padding: 8px 4px;
  transition: color var(--t-fast);
}
body.page-ambiance .book__phone svg { color: var(--primary); }
body.page-ambiance .book__phone:hover { color: var(--primary); }

/* ---------- AMBIANCE RESPONSIVE ---------- */
@media (max-width: 1024px) {
  body.page-ambiance .masthead__grid { grid-template-columns: 1fr; }
  body.page-ambiance .masthead__media { min-height: 440px; }

  body.page-ambiance .anatomy__row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  body.page-ambiance .anatomy__intro {
    grid-column: 1 / -1;
    border-right: none;
    padding-right: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(var(--secondary-rgb), 0.12);
  }

  body.page-ambiance .seasons__grid { grid-template-columns: 1fr 1fr; }
  body.page-ambiance .season--noel,
  body.page-ambiance .season--sucres,
  body.page-ambiance .season--homards,
  body.page-ambiance .season--ete { grid-column: span 1; }
  body.page-ambiance .season--sucres .season__frame,
  body.page-ambiance .season--homards .season__frame,
  body.page-ambiance .season--noel .season__frame,
  body.page-ambiance .season--ete .season__frame { aspect-ratio: 16 / 10; }

  body.page-ambiance .decor { grid-template-columns: 1fr; }
  body.page-ambiance .decor__media { min-height: 380px; }
  body.page-ambiance .decor__media img { min-height: 380px; }

  body.page-ambiance .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  body.page-ambiance .mosaic__cell--wide { grid-column: span 2; grid-row: span 2; }
  body.page-ambiance .mosaic__cell--tall { grid-column: span 2; grid-row: span 2; }
  body.page-ambiance .mosaic__cell--half { grid-column: span 2; grid-row: span 1; }
  body.page-ambiance .mosaic__cell--square { grid-column: span 2; grid-row: span 1; }

  body.page-ambiance .book__inner { grid-template-columns: 1fr; }
  body.page-ambiance .book__actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  body.page-ambiance .masthead__media {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  body.page-ambiance .masthead__media > figure { aspect-ratio: 16 / 10; }
  body.page-ambiance .masthead__media .masthead-figure--tall {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  body.page-ambiance .anatomy__row { grid-template-columns: 1fr; gap: 26px; }

  body.page-ambiance .seasons__grid { grid-template-columns: 1fr; }
  body.page-ambiance .season__frame { aspect-ratio: 16 / 10 !important; }
  body.page-ambiance .season__caption { grid-template-columns: 56px 1fr; gap: 16px; }

  body.page-ambiance .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  body.page-ambiance .mosaic__cell--wide,
  body.page-ambiance .mosaic__cell--tall { grid-column: span 2; grid-row: span 2; }
  body.page-ambiance .mosaic__cell--half { grid-column: span 2; grid-row: span 1; }
  body.page-ambiance .mosaic__cell--square { grid-column: span 1; grid-row: span 1; }

  body.page-ambiance .book__actions { flex-direction: column; align-items: stretch; }
  body.page-ambiance .book__actions .btn { width: 100%; text-align: center; }
  body.page-ambiance .book__phone { justify-content: center; }
}

/* ========================================================================
   PAGE: MENUS — NarrativeWorkflow (scenario_intro / service_process / service_specific_faq)
   Scoped to body.page-menus. No global chrome or index.html is affected.
   ======================================================================== */

/* ---------- SCENARIO INTRO: masthead with 4 cases ---------- */
body.page-menus .scenario {
  padding-block: clamp(56px, 8vw, 100px);
  background: var(--background);
  border-bottom: 1px solid var(--hairline);
}
body.page-menus .scenario__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
body.page-menus .scenario__intro { min-width: 0; padding-top: 6px; }
body.page-menus .scenario__overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}
body.page-menus .scenario__title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--secondary);
  margin: 0 0 22px;
}
body.page-menus .scenario__title em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-menus .scenario__lede {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-body-dark);
  margin: 0 0 18px;
  max-width: 520px;
}
body.page-menus .scenario__note {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 520px;
}
body.page-menus .scenario__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  padding-top: 4px;
}
body.page-menus .scenario__cta-primary {
  padding: 20px 40px;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.28), 0 2px 6px rgba(var(--primary-rgb), 0.18);
  position: relative;
}
body.page-menus .scenario__cta-primary::after {
  content: "→";
  font-size: 1.15rem;
  line-height: 1;
  margin-left: 4px;
  transition: transform var(--t-fast);
}
body.page-menus .scenario__cta-primary:hover {
  box-shadow: 0 14px 30px rgba(var(--primary-rgb), 0.36), 0 3px 8px rgba(var(--primary-rgb), 0.22);
}
body.page-menus .scenario__cta-primary:hover::after {
  transform: translateX(4px);
}
body.page-menus .scenario__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  transition: color var(--t-fast);
}
body.page-menus .scenario__phone svg { color: var(--primary); }
body.page-menus .scenario__phone:hover { color: var(--primary); }

body.page-menus .scenario__cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
}
body.page-menus .scenario__case {
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
body.page-menus .scenario__case:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--background);
}
body.page-menus .scenario__case-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--primary);
  align-self: flex-start;
}
body.page-menus .scenario__case-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  color: var(--secondary);
  margin: 2px 0 2px;
  line-height: 1.25;
}
body.page-menus .scenario__case-name em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-menus .scenario__case-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}

/* ---------- MENU WORKFLOW: 5-step numbered process ---------- */
body.page-menus .menu-workflow {
  padding-block: clamp(60px, 8vw, 100px);
}
body.page-menus .menu-workflow .section__head {
  margin-bottom: clamp(40px, 5vw, 60px);
}
body.page-menus .menu-workflow__steps {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  gap: 22px;
  counter-reset: none;
}
body.page-menus .menu-workflow__step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  background: var(--background);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--primary);
  padding: 26px clamp(20px, 3vw, 34px);
  transition: box-shadow var(--t-med), transform var(--t-med);
}
body.page-menus .menu-workflow__step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
body.page-menus .menu-workflow__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 0.95;
  letter-spacing: -0.02em;
  padding-top: 4px;
}
body.page-menus .menu-workflow__body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  color: var(--secondary);
  margin: 0 0 10px;
  line-height: 1.2;
}
body.page-menus .menu-workflow__body p {
  color: var(--text-body-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- OTHER MENUS: split header intro ---------- */
body.page-menus .other-menus__intro {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-body-dark);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 480px;
  margin: 0;
}

/* ---------- MENU INCLUDES: what's always in the price ---------- */
body.page-menus .menu-includes {
  padding-block: clamp(60px, 8vw, 100px);
  background: #faf7f2;
  border-block: 1px solid var(--hairline);
}
body.page-menus .menu-includes__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
body.page-menus .menu-includes__lede {
  position: sticky;
  top: 140px;
  padding-right: 10px;
}
body.page-menus .menu-includes__lede .eyebrow em {
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-serif);
  font-weight: 500;
}
body.page-menus .menu-includes__lede h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin: 0 0 18px;
  color: var(--secondary);
}
body.page-menus .menu-includes__lede p {
  color: var(--text-body-dark);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}
body.page-menus .menu-includes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
body.page-menus .menu-includes__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--background);
  padding: 24px clamp(22px, 3vw, 32px);
  border-top: 3px solid var(--secondary);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
body.page-menus .menu-includes__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--primary);
}
body.page-menus .menu-includes__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.10);
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
body.page-menus .menu-includes__check svg { width: 16px; height: 16px; }
body.page-menus .menu-includes__item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--secondary);
  margin: 0 0 8px;
  line-height: 1.25;
}
body.page-menus .menu-includes__item p {
  color: var(--text-body-dark);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- MENU FAQ: menu-specific accordion ---------- */
body.page-menus .menu-faq {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--background);
}
body.page-menus .menu-faq__wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
body.page-menus .menu-faq__head {
  position: sticky;
  top: 140px;
  padding-right: 10px;
}
body.page-menus .menu-faq__head .eyebrow em {
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-serif);
  font-weight: 500;
}
body.page-menus .menu-faq__head h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--secondary);
  margin: 0 0 18px;
}
body.page-menus .menu-faq__head .section__lede {
  text-align: left;
  color: var(--text-body-dark);
  max-width: 400px;
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}
body.page-menus .menu-faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
body.page-menus .menu-faq__item {
  border-bottom: 1px solid var(--hairline);
  transition: background var(--t-fast);
}
body.page-menus .menu-faq__item[open] {
  background: rgba(var(--primary-rgb), 0.025);
}
body.page-menus .menu-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
  line-height: 1.35;
}
body.page-menus .menu-faq__q::-webkit-details-marker { display: none; }
body.page-menus .menu-faq__q::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform var(--t-fast);
  margin-right: 6px;
}
body.page-menus .menu-faq__item[open] > .menu-faq__q::after {
  transform: rotate(-135deg);
  margin-top: 6px;
}
body.page-menus .menu-faq__q:hover { color: var(--primary); }
body.page-menus .menu-faq__a {
  padding: 0 4px 22px;
}
body.page-menus .menu-faq__a p {
  color: var(--text-body-dark);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  max-width: 660px;
}

/* ---------- MENU CTA: final book_specific_service ---------- */
body.page-menus .menu-cta { text-align: center; }
body.page-menus .menu-cta__inner {
  max-width: 780px;
  margin: 0 auto;
}
body.page-menus .menu-cta .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
body.page-menus .menu-cta h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 18px;
  color: var(--primary-ink);
}
body.page-menus .menu-cta__lede {
  font-size: 1.1rem;
  color: rgba(var(--primary-ink-rgb), 0.90);
  max-width: 640px;
  margin: 0 auto 34px;
  line-height: 1.65;
}
body.page-menus .menu-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
body.page-menus .menu-cta__phone {
  white-space: nowrap;
}
body.page-menus .menu-cta__phone svg { color: currentColor; }
body.page-menus .menu-cta__note {
  font-size: 0.85rem;
  color: rgba(var(--primary-ink-rgb), 0.7);
  letter-spacing: 0.04em;
  margin: 0;
}
body.page-menus .menu-cta__note a {
  color: var(--primary-light);
  border-bottom: 1px solid rgba(var(--primary-light-rgb), 0.5);
}
body.page-menus .menu-cta__note a:hover {
  color: var(--primary-ink);
  border-bottom-color: var(--primary-ink);
}

/* ---------- MENUS RESPONSIVE ---------- */
@media (max-width: 1024px) {
  body.page-menus .scenario__grid { grid-template-columns: 1fr; }
  body.page-menus .scenario__cases { grid-template-columns: 1fr 1fr; }

  body.page-menus .menu-includes__grid { grid-template-columns: 1fr; }
  body.page-menus .menu-includes__lede { position: relative; top: 0; padding-right: 0; max-width: 640px; }

  body.page-menus .menu-faq__wrap { grid-template-columns: 1fr; }
  body.page-menus .menu-faq__head { position: relative; top: 0; padding-right: 0; }
}

@media (max-width: 640px) {
  body.page-menus .scenario__cases { grid-template-columns: 1fr; }
  body.page-menus .scenario__cta { flex-direction: column; align-items: stretch; gap: 14px; }
  body.page-menus .scenario__cta .btn { width: 100%; }
  body.page-menus .scenario__phone { justify-content: center; }

  body.page-menus .menu-workflow__step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }
  body.page-menus .menu-workflow__num { font-size: 2.3rem; padding-top: 0; }

  body.page-menus .menu-includes__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  body.page-menus .menu-faq__q {
    font-size: 1rem;
    padding: 18px 4px;
    gap: 16px;
  }
  body.page-menus .menu-faq__q::after { width: 10px; height: 10px; }

  body.page-menus .menu-cta__actions { flex-direction: column; align-items: stretch; }
  body.page-menus .menu-cta__actions .btn { width: 100%; }
}

/* ========================================================================
   PAGE: PARTYS DE NOËL — ConversationalFAQ
   Scoped to body.page-partys-noel. No global chrome or index.html is affected.
   ======================================================================== */

/* ---------- HERO: narrative question-led hero ---------- */
body.page-partys-noel .noel-hero { min-height: clamp(500px, 72vh, 700px); }
body.page-partys-noel .noel-hero .hero__inner { padding-block: clamp(70px, 10vh, 120px); }
body.page-partys-noel .noel-hero__content { max-width: 900px; text-align: center; margin: 0 auto; }
body.page-partys-noel .noel-hero__content .hero__eyebrow { margin-inline: auto; }
body.page-partys-noel .noel-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--primary-ink);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.6);
  margin: 0 0 22px;
}
body.page-partys-noel .noel-hero__title em {
  color: var(--primary-light);
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 22px rgba(var(--primary-light-rgb), 0.55);
}
body.page-partys-noel .noel-hero__lede {
  color: var(--primary-ink);
  font-size: 1.08rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.65;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.6);
}
body.page-partys-noel .noel-hero .hero__scrim {
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.30) 70%),
    linear-gradient(180deg, rgba(var(--secondary-dark-rgb), 0.80) 0%, rgba(var(--secondary-dark-rgb), 0.88) 55%, rgba(var(--secondary-dark-rgb), 0.94) 100%);
}

/* Hero CTAs — primary above-the-fold action + phone */
body.page-partys-noel .noel-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 18px;
}
body.page-partys-noel .noel-hero__cta-primary {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
body.page-partys-noel .noel-hero__cta-phone {
  background: rgba(0, 0, 0, 0.55);
  color: var(--primary-ink);
  border: 2px solid var(--primary-ink);
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
  text-align: left;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
body.page-partys-noel .noel-hero__cta-phone:hover,
body.page-partys-noel .noel-hero__cta-phone:focus {
  background: var(--primary-ink);
  color: var(--secondary-dark);
  border-color: var(--primary-ink);
}
body.page-partys-noel .noel-hero__cta-phone svg {
  color: currentColor;
  flex-shrink: 0;
}
body.page-partys-noel .noel-hero__cta-phone-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 2px;
}
body.page-partys-noel .noel-hero__cta-phone-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
body.page-partys-noel .noel-hero__meta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--primary-ink-rgb), 0.88);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* ---------- OPENER + QUESTION INDEX ---------- */
body.page-partys-noel .noel-opener {
  padding-block: clamp(56px, 8vw, 100px);
  background: var(--background);
  border-bottom: 1px solid var(--hairline);
}
body.page-partys-noel .noel-opener__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
body.page-partys-noel .noel-opener__lede h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--secondary);
  margin: 0 0 20px;
  line-height: 1.15;
  max-width: 480px;
}
body.page-partys-noel .noel-opener__lede h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-noel .noel-opener__intro {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-body-dark);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 480px;
}
body.page-partys-noel .noel-opener__intro-tail {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

body.page-partys-noel .noel-index {
  background: #faf7f2;
  border-top: 3px solid var(--primary);
  padding: clamp(20px, 2.5vw, 30px) clamp(22px, 3vw, 34px);
}
body.page-partys-noel .noel-index__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
  display: grid;
  gap: 4px;
}
body.page-partys-noel .noel-index__list li {
  border-bottom: 1px solid rgba(var(--border-rgb), 0.22);
}
body.page-partys-noel .noel-index__list li:last-child { border-bottom: 0; }
body.page-partys-noel .noel-index__list a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 6px;
  min-height: 56px;
  color: var(--secondary);
  transition: color var(--t-fast), padding-left var(--t-fast), background var(--t-fast);
  border-radius: 2px;
}
body.page-partys-noel .noel-index__list a:hover {
  color: var(--primary);
  padding-left: 10px;
  background: rgba(var(--primary-rgb), 0.04);
}
body.page-partys-noel .noel-index__num {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
body.page-partys-noel .noel-index__text {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 500;
}

/* ---------- Q&A BLOCKS: the ConversationalFAQ engine ---------- */
body.page-partys-noel .noel-qa {
  padding-block: clamp(60px, 8vw, 96px);
  scroll-margin-top: 120px;
}
body.page-partys-noel .noel-qa__wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
body.page-partys-noel .noel-qa__wrap--wide {
  grid-template-columns: 180px 1fr;
  max-width: 1180px;
}
body.page-partys-noel .noel-qa__marker {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  position: sticky;
  top: 130px;
}
body.page-partys-noel .noel-qa__num {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 0.85;
  letter-spacing: -0.03em;
  display: block;
}
body.page-partys-noel .noel-qa__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--secondary);
  padding-top: 8px;
  border-top: 2px solid var(--primary);
  display: inline-block;
  align-self: flex-start;
}
body.page-partys-noel .section--alt .noel-qa__label,
body.page-partys-noel .section--soft .noel-qa__label { color: var(--secondary); }
body.page-partys-noel .noel-qa__body { min-width: 0; }
body.page-partys-noel .noel-qa__question {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.9vw, 2.2rem);
  line-height: 1.2;
  color: var(--secondary);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-style: italic;
  max-width: 720px;
}
body.page-partys-noel .noel-qa__question em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-noel .noel-qa__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-body-dark);
  margin: 0 0 24px;
  max-width: 720px;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}
body.page-partys-noel .noel-qa__body-text {
  color: var(--text-body-dark);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 20px;
  max-width: 720px;
}
body.page-partys-noel .noel-qa__closer {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 24px 0 0;
  padding: 18px 22px;
  background: rgba(var(--primary-rgb), 0.04);
  border-left: 2px solid var(--primary);
  max-width: 720px;
}
body.page-partys-noel .noel-qa__closer em {
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* Answer checklist bullets */
body.page-partys-noel .noel-qa__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: grid;
  gap: 14px;
  max-width: 720px;
}
body.page-partys-noel .noel-qa__checks--twocol {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  body.page-partys-noel .noel-qa__checks--twocol { grid-template-columns: 1fr 1fr; gap: 16px 22px; max-width: none; }
}
body.page-partys-noel .noel-qa__checks li {
  position: relative;
  padding: 12px 14px 12px 40px;
  background: var(--background);
  border-bottom: 1px solid var(--hairline);
  color: var(--text-body-dark);
  font-size: 0.98rem;
  line-height: 1.6;
}
body.page-partys-noel .section--alt .noel-qa__checks li,
body.page-partys-noel .section--soft .noel-qa__checks li { background: var(--background); }
body.page-partys-noel .noel-qa__checks li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}
body.page-partys-noel .noel-qa__checks li strong {
  color: var(--secondary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  display: inline;
  margin-right: 4px;
}

/* Fact strip inside Q2 */
body.page-partys-noel .noel-qa__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
  max-width: 720px;
}
body.page-partys-noel .noel-qa__fact {
  background: var(--background);
  border-top: 3px solid var(--primary);
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-partys-noel .noel-qa__fact-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1;
}
body.page-partys-noel .noel-qa__fact p {
  color: var(--text-body-dark);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* Menu plate — Q3 */
body.page-partys-noel .noel-plate {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin: 12px 0 24px;
  background: var(--background);
  padding: clamp(24px, 3vw, 36px);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
}
body.page-partys-noel .noel-plate__col { min-width: 0; }
body.page-partys-noel .noel-plate__title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
body.page-partys-noel .noel-plate__list { margin: 0; }
body.page-partys-noel .noel-plate__list li strong {
  color: var(--secondary);
  font-family: var(--font-serif);
  font-weight: 700;
}
body.page-partys-noel .noel-plate__aside {
  background: #faf7f2;
  padding: 22px clamp(20px, 2.5vw, 28px);
  border-left: 3px solid var(--secondary);
  align-self: start;
}
body.page-partys-noel .noel-plate__aside-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  font-weight: 700;
  margin: 0 0 16px;
}
body.page-partys-noel .noel-plate__def {
  margin: 0;
  display: grid;
  gap: 16px;
}
body.page-partys-noel .noel-plate__def dt {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
body.page-partys-noel .noel-plate__def dd {
  margin: 0;
  color: var(--text-body-dark);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Pricing wrapper on Q4 */
body.page-partys-noel .noel-pricing { margin: 24px 0; max-width: 720px; }

/* Timeline of the evening (Q5) */
body.page-partys-noel .noel-timeline {
  list-style: none;
  padding: 0;
  margin: 12px 0 8px;
  display: grid;
  gap: 0;
  max-width: 720px;
  border-top: 1px solid var(--hairline);
}
body.page-partys-noel .noel-timeline__moment {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
body.page-partys-noel .noel-timeline__hour {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding-top: 2px;
}
body.page-partys-noel .noel-timeline__moment h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--secondary);
  margin: 0 0 6px;
  line-height: 1.25;
}
body.page-partys-noel .noel-timeline__moment p {
  color: var(--text-body-dark);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

/* Timing table (Q8) */
body.page-partys-noel .noel-timing {
  display: grid;
  gap: 0;
  margin: 20px 0 6px;
  max-width: 720px;
  border-top: 1px solid var(--hairline);
}
body.page-partys-noel .noel-timing__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
body.page-partys-noel .noel-timing__row--accent {
  background: rgba(var(--primary-rgb), 0.05);
  padding-left: 18px;
  padding-right: 18px;
  border-left: 3px solid var(--primary);
}
body.page-partys-noel .noel-timing__when {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
}
body.page-partys-noel .noel-timing__row--accent .noel-timing__when { color: var(--primary); }
body.page-partys-noel .noel-timing__what {
  color: var(--text-body-dark);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Ensure Q&A markers work well on dark cards */
body.page-partys-noel .noel-qa--last { border-bottom: none; }

/* ---------- FINAL CTA ---------- */
body.page-partys-noel .noel-cta {
  text-align: center;
  background: var(--secondary);
  color: var(--primary-ink);
}
body.page-partys-noel .noel-cta__inner {
  max-width: 780px;
  margin: 0 auto;
}
body.page-partys-noel .noel-cta .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary-ink);
}
body.page-partys-noel .noel-cta__phone {
  color: var(--primary-ink);
  border-color: rgba(var(--primary-ink-rgb), 0.75);
}
body.page-partys-noel .noel-cta__phone:hover,
body.page-partys-noel .noel-cta__phone:focus {
  color: var(--secondary);
  background: var(--primary-ink);
  border-color: var(--primary-ink);
}
body.page-partys-noel .noel-cta__note span {
  color: rgba(var(--primary-ink-rgb), 0.85);
}
body.page-partys-noel .noel-cta h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 18px;
  color: var(--primary-ink);
  font-weight: 700;
}
body.page-partys-noel .noel-cta h2 em {
  color: var(--primary-light);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-noel .noel-cta__lede {
  font-size: 1.08rem;
  color: rgba(var(--primary-ink-rgb), 0.92);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
body.page-partys-noel .noel-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
body.page-partys-noel .noel-cta__phone { white-space: nowrap; }
body.page-partys-noel .noel-cta__phone svg { color: currentColor; }
body.page-partys-noel .noel-cta__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
}
body.page-partys-noel .noel-cta__meta a {
  color: var(--primary-light);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(var(--primary-light-rgb), 0.5);
  transition: color var(--t-fast), border-bottom-color var(--t-fast);
}
body.page-partys-noel .noel-cta__meta a:hover {
  color: var(--primary-ink);
  border-bottom-color: var(--primary-ink);
}
body.page-partys-noel .noel-cta__note {
  font-size: 0.85rem;
  color: rgba(var(--primary-ink-rgb), 0.68);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  body.page-partys-noel .noel-opener__wrap { grid-template-columns: 1fr; }
  body.page-partys-noel .noel-qa__wrap,
  body.page-partys-noel .noel-qa__wrap--wide {
    grid-template-columns: 1fr;
    max-width: 780px;
  }
  body.page-partys-noel .noel-qa__marker {
    position: relative;
    top: 0;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding-top: 0;
    padding-bottom: 4px;
  }
  body.page-partys-noel .noel-qa__num { font-size: 3rem; }
  body.page-partys-noel .noel-qa__label { border-top: 0; padding-top: 0; }
  body.page-partys-noel .noel-plate { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body.page-partys-noel .noel-hero__title { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  body.page-partys-noel .noel-hero__lede { font-size: 1rem; }
  body.page-partys-noel .noel-hero__ctas { flex-direction: column; align-items: stretch; }
  body.page-partys-noel .noel-hero__ctas .btn { width: 100%; }
  body.page-partys-noel .noel-hero__cta-phone { justify-content: center; }
  body.page-partys-noel .noel-hero__meta { font-size: 0.72rem; letter-spacing: 0.1em; }

  body.page-partys-noel .noel-index__list a { grid-template-columns: 36px 1fr; gap: 12px; }
  body.page-partys-noel .noel-index__text { font-size: 0.95rem; }

  body.page-partys-noel .noel-qa__question { font-size: 1.4rem; }
  body.page-partys-noel .noel-qa__lede { font-size: 1rem; padding-left: 16px; }

  body.page-partys-noel .noel-qa__facts { grid-template-columns: 1fr; }

  body.page-partys-noel .noel-timeline__moment {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
  body.page-partys-noel .noel-timeline__hour {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }

  body.page-partys-noel .noel-timing__row { grid-template-columns: 1fr; gap: 4px; }
  body.page-partys-noel .noel-timing__row--accent { padding-left: 14px; padding-right: 14px; }

  body.page-partys-noel .noel-plate { padding: 22px; }

  body.page-partys-noel .noel-cta__actions { flex-direction: column; align-items: stretch; }
  body.page-partys-noel .noel-cta__actions .btn { width: 100%; }
  body.page-partys-noel .noel-cta__meta { flex-direction: column; gap: 10px; }
}

/* ========================================================================
   PAGE: LE TEMPS DES SUCRES (temps-des-sucres)
   LongDocument macrostructure — text-led opener, decision criteria, scoped CTA
   ======================================================================== */

/* ---------- Text-led opener ---------- */
body.page-temps-des-sucres .sucres-open {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding-block: clamp(72px, 10vw, 120px);
  border-bottom: 1px solid rgba(var(--secondary-rgb), 0.08);
}
body.page-temps-des-sucres .sucres-open__inner {
  max-width: 900px;
  margin: 0 auto;
}
body.page-temps-des-sucres .sucres-open__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(var(--primary-rgb), 0.06);
  border-left: 3px solid var(--primary);
}
body.page-temps-des-sucres .sucres-open__sep {
  color: rgba(var(--secondary-rgb), 0.4);
  font-weight: 400;
}
body.page-temps-des-sucres .sucres-open__since {
  color: var(--secondary);
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-open__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--secondary);
  margin: 0 0 28px;
  letter-spacing: -0.015em;
}
body.page-temps-des-sucres .sucres-open__title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-open__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.7;
  color: var(--text-body-dark);
  max-width: 780px;
  margin: 0 0 18px;
}
body.page-temps-des-sucres .sucres-open__lede--last {
  margin-bottom: 36px;
}
body.page-temps-des-sucres .sucres-open__lede em {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-open__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin: 0 0 30px;
}
body.page-temps-des-sucres .sucres-open__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
body.page-temps-des-sucres .sucres-open__phone:hover { color: var(--primary); }
body.page-temps-des-sucres .sucres-open__phone svg { color: var(--primary); }
body.page-temps-des-sucres .sucres-open__hint {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 12px 0 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(var(--secondary-rgb), 0.18);
}
body.page-temps-des-sucres .sucres-open__hint a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
}
body.page-temps-des-sucres .sucres-open__hint a:hover {
  border-bottom-color: var(--primary);
}

/* ---------- Tradition (3 pillars) ---------- */
body.page-temps-des-sucres .sucres-tradition__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
body.page-temps-des-sucres .sucres-tradition__prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.15;
  color: var(--secondary);
  margin: 0 0 22px;
}
body.page-temps-des-sucres .sucres-tradition__prose h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-tradition__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text-body-dark);
  padding-left: 20px;
  border-left: 3px solid var(--primary);
  margin: 0 0 20px;
}
body.page-temps-des-sucres .sucres-tradition__lede em {
  color: var(--primary);
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-tradition__note {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

body.page-temps-des-sucres .sucres-pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}
body.page-temps-des-sucres .sucres-pillars__item {
  background: var(--background);
  padding: clamp(24px, 3vw, 32px);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 10px;
  align-items: start;
}
body.page-temps-des-sucres .sucres-pillars__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 0.9;
  letter-spacing: -0.03em;
  padding-top: 4px;
  grid-column: 1;
  grid-row: 1 / span 2;
}
body.page-temps-des-sucres .sucres-pillars__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--secondary);
  margin: 0;
  line-height: 1.3;
  grid-column: 2;
  grid-row: 1;
}
body.page-temps-des-sucres .sucres-pillars__name em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-pillars__item p {
  color: var(--text-body-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
}

/* ---------- Menu de l'érablière ---------- */
body.page-temps-des-sucres .sucres-menu__head {
  max-width: 780px;
  margin: 0 auto clamp(38px, 5vw, 54px);
  text-align: center;
}
body.page-temps-des-sucres .sucres-menu__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  color: var(--secondary);
  margin: 0 0 18px;
  line-height: 1.15;
}
body.page-temps-des-sucres .sucres-menu__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-menu__intro {
  color: var(--text-body-dark);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}
body.page-temps-des-sucres .sucres-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
body.page-temps-des-sucres .sucres-menu__card {
  background: var(--background);
  padding: 26px 24px 28px;
  border-top: 2px solid rgba(var(--primary-rgb), 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-temps-des-sucres .sucres-menu__card--feature {
  border-top-color: var(--primary);
  border-top-width: 3px;
  background: #fdfbf7;
  box-shadow: var(--shadow-sm);
}
body.page-temps-des-sucres .sucres-menu__card--intro {
  grid-column: span 1;
}
body.page-temps-des-sucres .sucres-menu__step {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--primary);
}
body.page-temps-des-sucres .sucres-menu__card h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--secondary);
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}
body.page-temps-des-sucres .sucres-menu__card h3 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-menu__card p {
  color: var(--text-body-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
body.page-temps-des-sucres .sucres-menu__foot {
  text-align: center;
  max-width: 760px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.65;
  padding: 18px 24px;
  background: rgba(var(--primary-rgb), 0.04);
  border-top: 1px solid rgba(var(--primary-rgb), 0.15);
}

/* ---------- How the day unfolds ---------- */
body.page-temps-des-sucres .sucres-journee__head {
  max-width: 780px;
  margin: 0 auto clamp(38px, 5vw, 54px);
  text-align: center;
}
body.page-temps-des-sucres .sucres-journee__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  color: var(--secondary);
  margin: 0 0 18px;
  line-height: 1.15;
}
body.page-temps-des-sucres .sucres-journee__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-journee__lede {
  color: var(--text-body-dark);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}
body.page-temps-des-sucres .sucres-journee__flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
body.page-temps-des-sucres .sucres-journee__phase {
  background: var(--background);
  padding: 26px 28px 28px;
  border: 1px solid var(--hairline);
  border-left: 4px solid rgba(var(--primary-rgb), 0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-temps-des-sucres .sucres-journee__phase--accent {
  border-left-color: var(--primary);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  grid-column: span 2;
}
body.page-temps-des-sucres .sucres-journee__phase-num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--primary);
}
body.page-temps-des-sucres .sucres-journee__phase h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--secondary);
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}
body.page-temps-des-sucres .sucres-journee__phase p {
  color: var(--text-body-dark);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}
body.page-temps-des-sucres .sucres-journee__phase p em {
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-journee__note {
  max-width: 900px;
  margin: clamp(32px, 4vw, 44px) auto 0;
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}

/* ---------- Decision criteria (yes / no cards) ---------- */
body.page-temps-des-sucres .sucres-criteres__head {
  max-width: 820px;
  margin: 0 auto clamp(38px, 5vw, 54px);
  text-align: center;
}
body.page-temps-des-sucres .sucres-criteres__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  color: var(--secondary);
  margin: 0 0 18px;
  line-height: 1.15;
}
body.page-temps-des-sucres .sucres-criteres__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-criteres__lede {
  color: var(--text-body-dark);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}
body.page-temps-des-sucres .sucres-criteres__lede em {
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-criteres__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
body.page-temps-des-sucres .sucres-criteres__card {
  background: var(--background);
  padding: clamp(24px, 3vw, 34px);
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.page-temps-des-sucres .sucres-criteres__card--no {
  border-top-color: var(--secondary);
}
body.page-temps-des-sucres .sucres-criteres__card h3 {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
}
body.page-temps-des-sucres .sucres-criteres__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-sm);
}
body.page-temps-des-sucres .sucres-criteres__tag--yes {
  background: var(--primary);
  color: var(--primary-ink);
}
body.page-temps-des-sucres .sucres-criteres__tag--no {
  background: var(--secondary);
  color: var(--secondary-ink);
}
body.page-temps-des-sucres .sucres-criteres__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
body.page-temps-des-sucres .sucres-criteres__card li {
  position: relative;
  padding-left: 30px;
  color: var(--text-body-dark);
  font-size: 0.99rem;
  line-height: 1.65;
}
body.page-temps-des-sucres .sucres-criteres__card--yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}
body.page-temps-des-sucres .sucres-criteres__card--no li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 12px;
  height: 2px;
  background: var(--secondary);
}
body.page-temps-des-sucres .sucres-criteres__card li strong {
  color: var(--secondary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  display: inline;
  margin-right: 4px;
}
body.page-temps-des-sucres .sucres-criteres__card li strong em {
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-criteres__card li a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
}
body.page-temps-des-sucres .sucres-criteres__card li a:hover {
  border-bottom-color: var(--primary);
}
body.page-temps-des-sucres .sucres-criteres__foot {
  max-width: 1100px;
  margin: clamp(36px, 4vw, 52px) auto 0;
  padding-top: clamp(28px, 3vw, 36px);
  border-top: 1px solid rgba(var(--secondary-rgb), 0.12);
}
body.page-temps-des-sucres .sucres-criteres__foot-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  font-weight: 700;
  margin: 0 0 22px;
  text-align: center;
}
body.page-temps-des-sucres .sucres-criteres__foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
body.page-temps-des-sucres .sucres-criteres__foot-grid > div {
  padding: 22px 26px;
  background: var(--background);
  border-left: 3px solid var(--primary);
}
body.page-temps-des-sucres .sucres-criteres__foot-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
body.page-temps-des-sucres .sucres-criteres__foot-grid p {
  color: var(--text-body-dark);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}
body.page-temps-des-sucres .sucres-criteres__foot-grid p em {
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* ---------- FAQ (details/summary) ---------- */
body.page-temps-des-sucres .sucres-faq__wrap {
  max-width: 900px;
  margin: 0 auto;
}
body.page-temps-des-sucres .sucres-faq__head {
  margin: 0 0 clamp(30px, 4vw, 44px);
  text-align: center;
}
body.page-temps-des-sucres .sucres-faq__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  color: var(--secondary);
  margin: 0 0 18px;
  line-height: 1.15;
}
body.page-temps-des-sucres .sucres-faq__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-faq__lede {
  color: var(--text-body-dark);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
}
body.page-temps-des-sucres .sucres-faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
body.page-temps-des-sucres .sucres-faq__item {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
}
body.page-temps-des-sucres .sucres-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 8px 22px 4px;
  min-height: 60px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.35;
  transition: color var(--t-fast);
}
body.page-temps-des-sucres .sucres-faq__item summary::-webkit-details-marker { display: none; }
body.page-temps-des-sucres .sucres-faq__item summary:hover { color: var(--primary); }
body.page-temps-des-sucres .sucres-faq__q em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-faq__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--t-fast), background var(--t-fast);
}
body.page-temps-des-sucres .sucres-faq__item summary:hover .sucres-faq__toggle,
body.page-temps-des-sucres .sucres-faq__item summary:focus-visible .sucres-faq__toggle {
  background: rgba(var(--primary-rgb), 0.16);
}
body.page-temps-des-sucres .sucres-faq__item[open] .sucres-faq__toggle {
  transform: rotate(45deg);
  background: rgba(var(--primary-rgb), 0.16);
}
body.page-temps-des-sucres .sucres-faq__a {
  padding: 4px 8px 26px 4px;
}
body.page-temps-des-sucres .sucres-faq__a p {
  color: var(--text-body-dark);
  font-size: 0.99rem;
  line-height: 1.7;
  margin: 0;
  max-width: 780px;
}
body.page-temps-des-sucres .sucres-faq__a a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
}
body.page-temps-des-sucres .sucres-faq__a a:hover {
  border-bottom-color: var(--primary);
}

/* ---------- Final CTA ---------- */
body.page-temps-des-sucres .sucres-cta { text-align: center; }
body.page-temps-des-sucres .sucres-cta__inner {
  max-width: 820px;
  margin: 0 auto;
}
body.page-temps-des-sucres .sucres-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-ink);
  margin: 8px 0 22px;
  line-height: 1.1;
  font-weight: 700;
}
body.page-temps-des-sucres .sucres-cta h2 em {
  color: var(--primary-light);
  font-style: italic;
  font-weight: 500;
}
body.page-temps-des-sucres .sucres-cta__lede {
  color: rgba(var(--primary-ink-rgb), 0.92);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 32px;
}
body.page-temps-des-sucres .sucres-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 30px;
}
body.page-temps-des-sucres .sucres-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.page-temps-des-sucres .sucres-cta__links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
body.page-temps-des-sucres .sucres-cta__links a {
  color: rgba(var(--primary-ink-rgb), 0.88);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(var(--primary-ink-rgb), 0.3);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-bottom-color var(--t-fast);
}
body.page-temps-des-sucres .sucres-cta__links a:hover {
  color: var(--primary-ink);
  border-bottom-color: var(--primary-ink);
}
body.page-temps-des-sucres .sucres-cta__note {
  color: rgba(var(--primary-ink-rgb), 0.75);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--primary-ink-rgb), 0.15);
}
body.page-temps-des-sucres .sucres-cta__email {
  color: rgba(var(--primary-ink-rgb), 0.85);
  border-bottom: 1px solid rgba(var(--primary-ink-rgb), 0.3);
  padding-bottom: 1px;
}
body.page-temps-des-sucres .sucres-cta__email:hover {
  color: var(--primary-ink);
  border-bottom-color: var(--primary-ink);
}

/* ---------- Responsive (temps-des-sucres) ---------- */
@media (max-width: 900px) {
  body.page-temps-des-sucres .sucres-tradition__grid { grid-template-columns: 1fr; }
  body.page-temps-des-sucres .sucres-menu__grid { grid-template-columns: 1fr 1fr; }
  body.page-temps-des-sucres .sucres-journee__flow { grid-template-columns: 1fr; }
  body.page-temps-des-sucres .sucres-journee__phase--accent { grid-column: span 1; }
  body.page-temps-des-sucres .sucres-criteres__grid { grid-template-columns: 1fr; }
  body.page-temps-des-sucres .sucres-criteres__foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body.page-temps-des-sucres .sucres-open__meta { flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 14px; }
  body.page-temps-des-sucres .sucres-open__sep { display: none; }
  body.page-temps-des-sucres .sucres-open__actions { flex-direction: column; align-items: stretch; }
  body.page-temps-des-sucres .sucres-open__actions .btn { width: 100%; }
  body.page-temps-des-sucres .sucres-menu__grid { grid-template-columns: 1fr; }
  body.page-temps-des-sucres .sucres-pillars__item { grid-template-columns: 1fr; column-gap: 0; row-gap: 8px; padding: 22px 22px 24px; }
  body.page-temps-des-sucres .sucres-pillars__num { padding-top: 0; font-size: 1.9rem; grid-column: 1; grid-row: auto; }
  body.page-temps-des-sucres .sucres-pillars__name { grid-column: 1; grid-row: auto; }
  body.page-temps-des-sucres .sucres-pillars__item p { grid-column: 1; grid-row: auto; }
  body.page-temps-des-sucres .sucres-cta__actions { flex-direction: column; align-items: stretch; }
  body.page-temps-des-sucres .sucres-cta__actions .btn { width: 100%; }
  body.page-temps-des-sucres .sucres-cta__links { flex-direction: column; gap: 10px; }
  body.page-temps-des-sucres .sucres-faq__item summary { font-size: 1.02rem; }
}

/* ========================================================================
   PAGE — PARTYS HOMARDS
   NarrativeWorkflow: scenario intro → combo → process → banquet → FAQ → CTA
   ======================================================================== */

/* ---------- Scenario intro (opener) ---------- */
body.page-partys-homards .homard-scenario {
  padding-block: clamp(60px, 8vw, 110px);
  background: linear-gradient(180deg, #faf7f2 0%, var(--background) 100%);
  border-bottom: 1px solid var(--hairline);
}
body.page-partys-homards .homard-scenario__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
body.page-partys-homards .homard-scenario__overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
body.page-partys-homards .homard-scenario__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 22px;
}
body.page-partys-homards .homard-scenario__title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
body.page-partys-homards .homard-scenario__lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-body-dark);
  margin: 0 0 28px;
  max-width: 55ch;
}
body.page-partys-homards .homard-scenario__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
body.page-partys-homards .homard-scenario__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: rgba(var(--primary-rgb), 0.08);
  border: 2px solid var(--primary);
  border-radius: var(--r-sm);
  padding: 14px 26px;
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.14);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
body.page-partys-homards .homard-scenario__phone svg { color: var(--primary); transition: color var(--t-fast); }
body.page-partys-homards .homard-scenario__phone:hover {
  background: var(--primary);
  color: var(--primary-ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.28);
}
body.page-partys-homards .homard-scenario__phone:hover svg { color: var(--primary-ink); }
body.page-partys-homards .homard-scenario__meta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 0;
  letter-spacing: 0.04em;
}

body.page-partys-homards .homard-scenario__cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
body.page-partys-homards .homard-scenario__case {
  background: var(--background);
  padding: 22px 20px;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--primary);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
body.page-partys-homards .homard-scenario__case:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
body.page-partys-homards .homard-scenario__case-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
body.page-partys-homards .homard-scenario__case-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 8px;
}
body.page-partys-homards .homard-scenario__case-desc {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
}

/* ---------- Image band with caption ---------- */
body.page-partys-homards .homard-band {
  position: relative;
  height: clamp(280px, 40vh, 420px);
  overflow: hidden;
  background: var(--secondary);
}
body.page-partys-homards .homard-band__media {
  position: absolute;
  inset: 0;
}
body.page-partys-homards .homard-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) saturate(1.05);
}
body.page-partys-homards .homard-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  align-items: flex-end;
  padding-block: 44px;
}
body.page-partys-homards .homard-band__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  line-height: 1.4;
  color: #fff;
  max-width: 780px;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.75), 0 1px 2px rgba(0,0,0,0.6);
}
body.page-partys-homards .homard-band__caption em {
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 400;
}

/* ---------- Combo (sea + fire pillars) ---------- */
body.page-partys-homards .homard-combo__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
body.page-partys-homards .homard-combo__head h2 {
  margin-bottom: 16px;
}
body.page-partys-homards .homard-combo__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-homards .homard-combo__lede {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0;
}
body.page-partys-homards .homard-combo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
body.page-partys-homards .homard-combo__pillar {
  background: var(--background);
  border: 1px solid var(--hairline);
  padding: 34px 32px 32px;
  position: relative;
}
body.page-partys-homards .homard-combo__pillar--sea {
  border-top: 4px solid var(--secondary-light);
}
body.page-partys-homards .homard-combo__pillar--fire {
  border-top: 4px solid var(--primary);
}
body.page-partys-homards .homard-combo__pillar-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 12px;
}
body.page-partys-homards .homard-combo__pillar--sea .homard-combo__pillar-tag { color: var(--secondary-light); }
body.page-partys-homards .homard-combo__pillar--fire .homard-combo__pillar-tag { color: var(--primary); }
body.page-partys-homards .homard-combo__pillar-name {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
}
body.page-partys-homards .homard-combo__pillar-name em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
body.page-partys-homards .homard-combo__pillar-body {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-body-dark);
  margin: 0 0 24px;
}
body.page-partys-homards .homard-combo__pillar-facts {
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-partys-homards .homard-combo__pillar-facts li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: baseline;
}
body.page-partys-homards .homard-combo__fact-key {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-body);
}
body.page-partys-homards .homard-combo__fact-val {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
body.page-partys-homards .homard-combo__foot {
  max-width: 780px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-body);
  font-style: italic;
}

/* ---------- Process (6 steps) ---------- */
body.page-partys-homards .homard-process__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
body.page-partys-homards .homard-process__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-homards .homard-process__lede {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 12px 0 0;
}
body.page-partys-homards ol.homard-process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: none;
}
body.page-partys-homards .homard-process__step {
  background: var(--background);
  border: 1px solid var(--hairline);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body.page-partys-homards .homard-process__step--accent {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-ink);
}
body.page-partys-homards .homard-process__step.homard-process__step--accent .homard-process__body h3 {
  color: var(--primary-ink);
}
body.page-partys-homards .homard-process__step.homard-process__step--accent .homard-process__body p {
  color: rgba(var(--primary-ink-rgb), 0.9);
}
body.page-partys-homards .homard-process__marker {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.page-partys-homards .homard-process__num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
body.page-partys-homards .homard-process__step--accent .homard-process__num {
  color: var(--primary-light);
}
body.page-partys-homards .homard-process__marker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
body.page-partys-homards .homard-process__step--accent .homard-process__marker::after {
  background: rgba(var(--primary-ink-rgb), 0.2);
}
body.page-partys-homards .homard-process__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 10px;
}
body.page-partys-homards .homard-process__body p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ---------- Banquet posts ---------- */
body.page-partys-homards .homard-banquet__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
body.page-partys-homards .homard-banquet__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-homards .homard-banquet__lede {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 12px 0 0;
}
body.page-partys-homards .homard-banquet__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
body.page-partys-homards .homard-banquet__post {
  background: #faf7f2;
  border: 1px solid var(--hairline);
  padding: 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.page-partys-homards .homard-banquet__post--feature {
  background: var(--background);
  border-top: 4px solid var(--primary);
}
body.page-partys-homards .homard-banquet__post-head {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 12px;
}
body.page-partys-homards .homard-banquet__post-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
body.page-partys-homards .homard-banquet__post-head h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
body.page-partys-homards .homard-banquet__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-partys-homards .homard-banquet__list li {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-body-dark);
  padding-left: 18px;
  position: relative;
}
body.page-partys-homards .homard-banquet__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--primary);
}
body.page-partys-homards .homard-banquet__foot {
  max-width: 780px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.94rem;
  color: var(--text-body);
  font-style: italic;
}

/* ---------- Service-specific FAQ ---------- */
body.page-partys-homards .homard-faq__wrap {
  max-width: 880px;
}
body.page-partys-homards .homard-faq__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
body.page-partys-homards .homard-faq__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-homards .homard-faq__lede {
  font-size: 1.02rem;
  color: var(--text-body);
  margin: 12px 0 0;
}
body.page-partys-homards .homard-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.page-partys-homards .homard-faq__item {
  background: var(--background);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--primary);
  transition: box-shadow var(--t-fast);
}
body.page-partys-homards .homard-faq__item[open] {
  box-shadow: var(--shadow-sm);
}
body.page-partys-homards .homard-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--text);
  transition: color var(--t-fast);
}
body.page-partys-homards .homard-faq__item summary::-webkit-details-marker { display: none; }
body.page-partys-homards .homard-faq__item summary::marker { content: ""; }
body.page-partys-homards .homard-faq__item summary:hover {
  color: var(--primary);
}
body.page-partys-homards .homard-faq__q em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-homards .homard-faq__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  transition: transform var(--t-fast), background var(--t-fast);
}
body.page-partys-homards .homard-faq__item[open] .homard-faq__toggle {
  background: var(--secondary);
  transform: rotate(45deg);
}
body.page-partys-homards .homard-faq__a {
  padding: 0 24px 22px;
  border-top: 1px solid var(--hairline);
  margin-top: -1px;
  padding-top: 18px;
}
body.page-partys-homards .homard-faq__a p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body-dark);
  margin: 0;
}
body.page-partys-homards .homard-faq__a a {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 1px;
}
body.page-partys-homards .homard-faq__a a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

/* ---------- Final CTA ---------- */
body.page-partys-homards .homard-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
body.page-partys-homards .homard-cta__inner h2 {
  margin: 10px 0 20px;
}
body.page-partys-homards .homard-cta__inner h2 em {
  color: var(--primary-light);
  font-style: italic;
  font-weight: 500;
}
body.page-partys-homards .homard-cta__price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 22px;
  padding: 10px 22px;
  border: 1px solid rgba(var(--primary-ink-rgb), 0.28);
  border-radius: 999px;
  background: rgba(var(--primary-ink-rgb), 0.06);
}
body.page-partys-homards .homard-cta__price-amount {
  font-family: var(--font-serif, var(--font-sans));
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.01em;
}
body.page-partys-homards .homard-cta__price-qualifier {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(var(--primary-ink-rgb), 0.75);
}
body.page-partys-homards .homard-cta__lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(var(--primary-ink-rgb), 0.9);
  margin: 0 auto 32px;
  max-width: 720px;
}
body.page-partys-homards .homard-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
body.page-partys-homards .homard-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.page-partys-homards .homard-cta__phone svg { color: currentColor; }
body.page-partys-homards .homard-cta__links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
body.page-partys-homards .homard-cta__links a {
  color: rgba(var(--primary-ink-rgb), 0.88);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(var(--primary-ink-rgb), 0.3);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-bottom-color var(--t-fast);
}
body.page-partys-homards .homard-cta__links a:hover {
  color: var(--primary-ink);
  border-bottom-color: var(--primary-ink);
}
body.page-partys-homards .homard-cta__note {
  color: rgba(var(--primary-ink-rgb), 0.75);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--primary-ink-rgb), 0.15);
}
body.page-partys-homards .homard-cta__email {
  color: rgba(var(--primary-ink-rgb), 0.85);
  border-bottom: 1px solid rgba(var(--primary-ink-rgb), 0.3);
  padding-bottom: 1px;
}
body.page-partys-homards .homard-cta__email:hover {
  color: var(--primary-ink);
  border-bottom-color: var(--primary-ink);
}

/* ---------- Responsive (partys-homards) ---------- */
@media (max-width: 1000px) {
  body.page-partys-homards .homard-scenario__grid { grid-template-columns: 1fr; }
  body.page-partys-homards ol.homard-process__steps { grid-template-columns: repeat(2, 1fr); }
  body.page-partys-homards .homard-banquet__posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  body.page-partys-homards .homard-combo__grid { grid-template-columns: 1fr; }
  body.page-partys-homards .homard-scenario__cases { grid-template-columns: 1fr; }
  body.page-partys-homards ol.homard-process__steps { grid-template-columns: 1fr; }
  body.page-partys-homards .homard-banquet__posts { grid-template-columns: 1fr; }
  body.page-partys-homards .homard-scenario__cta { flex-direction: column; align-items: stretch; }
  body.page-partys-homards .homard-scenario__cta .btn { width: 100%; }
  body.page-partys-homards .homard-scenario__phone { justify-content: center; }
  body.page-partys-homards .homard-scenario__break { display: none; }
  body.page-partys-homards .homard-cta__actions { flex-direction: column; align-items: stretch; }
  body.page-partys-homards .homard-cta__actions .btn { width: 100%; }
  body.page-partys-homards .homard-cta__links { flex-direction: column; gap: 10px; }
  body.page-partys-homards .homard-combo__pillar-facts li { grid-template-columns: 1fr; gap: 2px; }
  body.page-partys-homards .homard-faq__item summary { font-size: 1rem; padding: 18px 18px; }
  body.page-partys-homards .homard-faq__a { padding: 16px 18px 20px; }
}

/* ========================================================================
   MÉCHOUIS D'ÉTÉ — page-scoped (body.page-mechouis-ete)
   ConversationalFAQ macrostructure · scenario_intro · service_process · service_specific_faq
   ======================================================================== */

/* ---------- 1. Opener (objection scenario intro) ---------- */
body.page-mechouis-ete .ete-opener {
  background:
    linear-gradient(180deg, rgba(var(--bg-alt-rgb), 0.6) 0%, rgba(var(--bg-alt-rgb), 1) 100%),
    var(--bg-alt);
  padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 7vw, 90px);
  border-bottom: 1px solid var(--hairline);
}
body.page-mechouis-ete .ete-opener__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
body.page-mechouis-ete .ete-opener__overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 22px;
}
body.page-mechouis-ete .ete-opener__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}
body.page-mechouis-ete .ete-opener__title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
body.page-mechouis-ete .ete-opener__intro {
  font-family: var(--font-sans);
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-body-dark);
  margin: 0 0 32px;
  max-width: 640px;
}
body.page-mechouis-ete .ete-opener__intro em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--secondary);
  font-weight: 500;
}
body.page-mechouis-ete .ete-opener__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
body.page-mechouis-ete .ete-opener__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--text-body-dark);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 4px 2px;
  border-bottom: 1px dashed rgba(var(--text-rgb), 0.35);
  transition: color var(--t-fast), border-color var(--t-fast);
}
body.page-mechouis-ete .ete-opener__phone svg {
  color: var(--primary);
  transition: color var(--t-fast);
  position: relative;
  top: 2px;
}
body.page-mechouis-ete .ete-opener__phone-label {
  color: var(--text-body);
  font-weight: 400;
  font-size: 0.86rem;
  margin-right: 2px;
}
body.page-mechouis-ete .ete-opener__phone:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
body.page-mechouis-ete .ete-opener__phone:hover svg { color: var(--primary); }
body.page-mechouis-ete .ete-opener__meta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 0;
  letter-spacing: 0.04em;
}

body.page-mechouis-ete .ete-opener__hesitations {
  background: var(--background);
  border: 1px solid var(--hairline);
  padding: clamp(24px, 3vw, 34px);
  position: relative;
}
body.page-mechouis-ete .ete-opener__hesitations::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
}
body.page-mechouis-ete .ete-opener__hesitations-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
body.page-mechouis-ete .ete-opener__hesitations-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
body.page-mechouis-ete .ete-opener__hesitation {
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--hairline);
}
body.page-mechouis-ete .ete-opener__hesitation:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
body.page-mechouis-ete .ete-opener__hesitation-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
body.page-mechouis-ete .ete-opener__hesitation-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 8px;
}
body.page-mechouis-ete .ete-opener__hesitation-line {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body-dark);
  margin: 0;
}

/* ---------- 2. Full-bleed image band ---------- */
body.page-mechouis-ete .ete-band {
  position: relative;
  height: clamp(280px, 40vh, 420px);
  overflow: hidden;
  background: var(--secondary);
}
body.page-mechouis-ete .ete-band__media {
  position: absolute;
  inset: 0;
}
body.page-mechouis-ete .ete-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.82) saturate(1.05);
}
body.page-mechouis-ete .ete-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  align-items: flex-end;
  padding-block: 44px;
}
body.page-mechouis-ete .ete-band__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  line-height: 1.4;
  color: #fff;
  max-width: 780px;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.75), 0 1px 2px rgba(0,0,0,0.6);
}
body.page-mechouis-ete .ete-band__caption em {
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 400;
}

/* ---------- 3. Grouped Q&A clusters ---------- */
body.page-mechouis-ete .ete-clusters__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
body.page-mechouis-ete .ete-clusters__head h2 {
  margin-bottom: 16px;
}
body.page-mechouis-ete .ete-clusters__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-mechouis-ete .ete-clusters__lede {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0;
}
body.page-mechouis-ete .ete-clusters__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 34px);
}
body.page-mechouis-ete .ete-cluster {
  background: var(--background);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--primary);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
body.page-mechouis-ete .ete-cluster:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
body.page-mechouis-ete .ete-cluster__tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
body.page-mechouis-ete .ete-cluster__pair {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-mechouis-ete .ete-cluster__q {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}
body.page-mechouis-ete .ete-cluster__q em {
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}
body.page-mechouis-ete .ete-cluster__a {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-body-dark);
  margin: 0;
}
body.page-mechouis-ete .ete-cluster__a a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
}
body.page-mechouis-ete .ete-cluster__a a:hover {
  color: var(--primary-dark);
}

/* ---------- 4. Day-of flow ---------- */
body.page-mechouis-ete .ete-flow__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
body.page-mechouis-ete .ete-flow__head h2 {
  margin-bottom: 16px;
}
body.page-mechouis-ete .ete-flow__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-mechouis-ete .ete-flow__lede {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0;
}
body.page-mechouis-ete .ete-flow__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
body.page-mechouis-ete .ete-flow__phase {
  background: var(--background);
  border: 1px solid var(--hairline);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
body.page-mechouis-ete .ete-flow__phase:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
body.page-mechouis-ete .ete-flow__phase--accent {
  background: var(--secondary);
  color: var(--secondary-ink);
  border-color: var(--secondary);
}
body.page-mechouis-ete .ete-flow__moment {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
  gap: 12px;
}
body.page-mechouis-ete .ete-flow__phase--accent .ete-flow__moment {
  border-bottom-color: rgba(255,255,255,0.18);
}
body.page-mechouis-ete .ete-flow__moment-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}
body.page-mechouis-ete .ete-flow__phase--accent .ete-flow__moment-label {
  color: #f7d3a1;
}
body.page-mechouis-ete .ete-flow__moment-time {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  font-style: italic;
}
body.page-mechouis-ete .ete-flow__phase--accent .ete-flow__moment-time {
  color: #fff;
}
body.page-mechouis-ete .ete-flow__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 10px;
}
body.page-mechouis-ete .ete-flow__phase--accent .ete-flow__body h3 {
  color: #fff;
}
body.page-mechouis-ete .ete-flow__body p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body-dark);
  margin: 0;
}
body.page-mechouis-ete .ete-flow__phase--accent .ete-flow__body p {
  color: rgba(255,255,255,0.88);
}
body.page-mechouis-ete .ete-flow__note {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
  font-style: italic;
  margin: clamp(24px, 3vw, 32px) auto 0;
  max-width: 820px;
  text-align: center;
}

/* ---------- 5. Menu spec table ---------- */
body.page-mechouis-ete .ete-menu__wrap {
  max-width: 1080px;
  margin: 0 auto;
}
body.page-mechouis-ete .ete-menu__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 52px);
  text-align: center;
}
body.page-mechouis-ete .ete-menu__head h2 {
  margin-bottom: 16px;
}
body.page-mechouis-ete .ete-menu__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-mechouis-ete .ete-menu__lede {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0;
}
body.page-mechouis-ete .ete-menu__pricing {
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--primary, var(--secondary));
  border-radius: var(--r-sm);
  background: var(--bg-alt, var(--background));
  padding: 20px 24px;
  margin-bottom: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-mechouis-ete .ete-menu__pricing-title {
  font-family: var(--font-display, inherit);
  font-size: 1.15rem;
  margin: 0;
  color: var(--text-heading, var(--text-body));
  letter-spacing: 0.01em;
}
body.page-mechouis-ete .ete-menu__pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-mechouis-ete .ete-menu__pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--hairline);
}
body.page-mechouis-ete .ete-menu__pricing-row:last-child { border-bottom: 0; }
body.page-mechouis-ete .ete-menu__pricing-day {
  font-weight: 500;
  color: var(--text-body);
}
body.page-mechouis-ete .ete-menu__pricing-price {
  color: var(--text-body);
  white-space: nowrap;
}
body.page-mechouis-ete .ete-menu__pricing-price strong {
  font-family: var(--font-display, inherit);
  font-size: 1.25rem;
  color: var(--primary, var(--secondary));
  margin-right: 4px;
}
body.page-mechouis-ete .ete-menu__pricing-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted, var(--text-body));
  font-style: italic;
}
@media (max-width: 640px) {
  body.page-mechouis-ete .ete-menu__pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
body.page-mechouis-ete .ete-menu__spec {
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  overflow: hidden;
}
body.page-mechouis-ete .ete-menu__row {
  display: grid;
  grid-template-columns: 1.05fr 2.6fr 1.35fr;
  gap: 24px;
  padding: 18px 24px;
  align-items: baseline;
  border-bottom: 1px solid var(--hairline);
  background: var(--background);
  transition: background var(--t-fast);
}
body.page-mechouis-ete .ete-menu__row:last-child { border-bottom: 0; }
body.page-mechouis-ete .ete-menu__row:hover:not(.ete-menu__row--head) {
  background: var(--bg-alt);
}
body.page-mechouis-ete .ete-menu__row--head {
  background: var(--secondary);
  color: var(--secondary-ink);
}
body.page-mechouis-ete .ete-menu__row--head .ete-menu__col-label,
body.page-mechouis-ete .ete-menu__row--head .ete-menu__col-item,
body.page-mechouis-ete .ete-menu__row--head .ete-menu__col-note {
  color: var(--secondary-ink);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
}
body.page-mechouis-ete .ete-menu__row--feature {
  background: rgba(var(--primary-rgb), 0.035);
}
body.page-mechouis-ete .ete-menu__col-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}
body.page-mechouis-ete .ete-menu__col-item {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--text);
  font-weight: 500;
}
body.page-mechouis-ete .ete-menu__row--feature .ete-menu__col-item {
  font-style: italic;
}
body.page-mechouis-ete .ete-menu__col-note {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}
body.page-mechouis-ete .ete-menu__foot {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
  font-style: italic;
  margin: clamp(20px, 2.4vw, 28px) auto 0;
  max-width: 820px;
  text-align: center;
}
body.page-mechouis-ete .ete-menu__foot a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
body.page-mechouis-ete .ete-menu__foot a:hover {
  color: var(--primary-dark);
}

/* ---------- 6. Last-mile FAQ (accordion) ---------- */
body.page-mechouis-ete .ete-lastmile__wrap {
  max-width: 880px;
  margin: 0 auto;
}
body.page-mechouis-ete .ete-lastmile__head {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 44px);
}
body.page-mechouis-ete .ete-lastmile__head h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
body.page-mechouis-ete .ete-lastmile__lede {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0 auto;
  max-width: 720px;
}
body.page-mechouis-ete .ete-lastmile__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-mechouis-ete .ete-lastmile__item {
  background: var(--background);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--primary);
  transition: box-shadow var(--t-fast);
}
body.page-mechouis-ete .ete-lastmile__item[open] {
  box-shadow: var(--shadow-md);
}
body.page-mechouis-ete .ete-lastmile__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 1.06rem;
  line-height: 1.35;
  color: var(--text);
  font-weight: 500;
  transition: background var(--t-fast);
}
body.page-mechouis-ete .ete-lastmile__item summary::-webkit-details-marker { display: none; }
body.page-mechouis-ete .ete-lastmile__item summary::marker { content: ""; }
body.page-mechouis-ete .ete-lastmile__item summary:hover {
  background: var(--bg-alt);
}
body.page-mechouis-ete .ete-lastmile__q em {
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}
body.page-mechouis-ete .ete-lastmile__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
body.page-mechouis-ete .ete-lastmile__item[open] .ete-lastmile__toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--primary-ink);
}
body.page-mechouis-ete .ete-lastmile__a {
  padding: 4px 22px 22px;
}
body.page-mechouis-ete .ete-lastmile__a p {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-body-dark);
  margin: 0;
}
body.page-mechouis-ete .ete-lastmile__a a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
body.page-mechouis-ete .ete-lastmile__a a:hover {
  color: var(--primary-dark);
}

/* ---------- 7. Final CTA (dark) ---------- */
body.page-mechouis-ete .ete-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
body.page-mechouis-ete .ete-cta__inner h2 {
  color: #fff;
  margin: 16px 0 20px;
}
body.page-mechouis-ete .ete-cta__inner h2 em {
  color: #f7d3a1;
  font-style: italic;
  font-weight: 500;
}
body.page-mechouis-ete .ete-cta__lede {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0 0 30px;
}
body.page-mechouis-ete .ete-cta__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
body.page-mechouis-ete .ete-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.page-mechouis-ete .ete-cta__phone svg { color: currentColor; }
body.page-mechouis-ete .ete-cta__links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}
body.page-mechouis-ete .ete-cta__links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.35);
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
body.page-mechouis-ete .ete-cta__links a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
body.page-mechouis-ete .ete-cta__note {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  letter-spacing: 0.03em;
}
body.page-mechouis-ete .ete-cta__email {
  color: #f7d3a1;
  border-bottom: 1px solid rgba(247, 211, 161, 0.5);
  padding-bottom: 1px;
}
body.page-mechouis-ete .ete-cta__email:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ---------- Responsive (mechouis-ete) ---------- */
@media (max-width: 1000px) {
  body.page-mechouis-ete .ete-opener__grid { grid-template-columns: 1fr; }
  body.page-mechouis-ete .ete-clusters__grid { grid-template-columns: 1fr; }
  body.page-mechouis-ete .ete-flow__timeline { grid-template-columns: repeat(2, 1fr); }
  body.page-mechouis-ete .ete-menu__row { grid-template-columns: 1fr 2fr 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  body.page-mechouis-ete .ete-flow__timeline { grid-template-columns: 1fr; }
  body.page-mechouis-ete .ete-opener__cta { flex-direction: column; align-items: stretch; }
  body.page-mechouis-ete .ete-opener__cta .btn { width: 100%; }
  body.page-mechouis-ete .ete-opener__phone { justify-content: center; }
  body.page-mechouis-ete .ete-menu__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 18px;
  }
  body.page-mechouis-ete .ete-menu__row--head {
    display: none;
  }
  body.page-mechouis-ete .ete-cta__actions { flex-direction: column; align-items: stretch; }
  body.page-mechouis-ete .ete-cta__actions .btn { width: 100%; }
  body.page-mechouis-ete .ete-cta__links { flex-direction: column; gap: 10px; }
  body.page-mechouis-ete .ete-lastmile__item summary { font-size: 1rem; padding: 18px 18px; }
  body.page-mechouis-ete .ete-lastmile__a { padding: 4px 18px 20px; }
}

/* ========================================================================
   RESERVATION PAGE (scoped to body.page-reservation)
   Functional contact archetype — form + channels + availability + hours
   ======================================================================== */

/* Hero variant — a bit shorter, form-focused */
body.page-reservation .hero--reserve { min-height: clamp(440px, 62vh, 620px); }
body.page-reservation .hero--reserve .hero__inner { padding-block: clamp(60px, 9vh, 100px); }
body.page-reservation .hero--reserve .hero__scrim {
  background:
    linear-gradient(180deg, rgba(var(--secondary-dark-rgb), 0.50) 0%, rgba(var(--secondary-dark-rgb), 0.62) 60%, rgba(var(--secondary-dark-rgb), 0.78) 100%),
    linear-gradient(90deg, rgba(var(--secondary-dark-rgb), 0.55) 0%, rgba(var(--secondary-dark-rgb), 0.15) 65%);
}
body.page-reservation .hero--reserve .hero__media img {
  filter: brightness(1.08) saturate(1.05);
}
body.page-reservation .hero--reserve .hero__title em {
  color: var(--primary-light);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75), 0 0 22px rgba(0, 0, 0, 0.55);
}
body.page-reservation .reserve-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border-width: 2px;
}
body.page-reservation .reserve-hero__phone svg { color: currentColor; }

/* ---------- Quick channels strip ---------- */
body.page-reservation .reserve-channels__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 4vw, 54px);
  text-align: center;
}
body.page-reservation .reserve-channels__head .eyebrow {
  margin-inline: auto;
}
body.page-reservation .reserve-channels__head h2 { margin-bottom: 14px; }
body.page-reservation .reserve-channels__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}
body.page-reservation .reserve-channel {
  background: var(--background);
  padding: clamp(24px, 3vw, 34px);
  border-top: 3px solid rgba(var(--primary-rgb), 0.25);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--t-med), transform var(--t-med), border-color var(--t-med);
}
body.page-reservation .reserve-channel:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-top-color: var(--primary);
}
body.page-reservation .reserve-channel--accent {
  background: var(--bg-alt);
  border-top: 3px solid var(--primary);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.10);
  position: relative;
}
body.page-reservation .reserve-channel--accent::before {
  content: "Recommandé";
  position: absolute;
  top: -11px;
  right: clamp(20px, 3vw, 28px);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--primary);
  color: var(--primary-ink);
  line-height: 1;
}
body.page-reservation .reserve-channel--accent .reserve-channel__icon {
  background: rgba(var(--primary-rgb), 0.14);
  border-color: rgba(var(--primary-rgb), 0.28);
  color: var(--primary);
}
body.page-reservation .reserve-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  color: var(--primary);
  margin-bottom: 4px;
}
body.page-reservation .reserve-channel__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 700;
}
body.page-reservation .reserve-channel__value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  line-height: 1.2;
}
body.page-reservation a.reserve-channel__value:hover { color: var(--primary); }
body.page-reservation .reserve-channel__value--link {
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.30);
  padding-bottom: 2px;
  display: inline-block;
  width: fit-content;
}
body.page-reservation .reserve-channel__note {
  font-size: 0.92rem;
  color: var(--text-body);
  margin: 6px 0 0;
  line-height: 1.55;
}

/* ---------- Main: aside + form ---------- */
body.page-reservation .reserve-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
body.page-reservation .reserve-main__aside .eyebrow { margin-bottom: 18px; }
body.page-reservation .reserve-main__aside h2 { margin-bottom: 20px; }
body.page-reservation .reserve-main__lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 30px;
}

body.page-reservation .reserve-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 22px;
}
body.page-reservation .reserve-checklist li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: flex-start;
}
body.page-reservation .reserve-checklist__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
body.page-reservation .reserve-checklist h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--secondary);
}
body.page-reservation .reserve-checklist p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.6;
}

body.page-reservation .reserve-callback {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
}
body.page-reservation .reserve-callback__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.10);
  border-radius: 50%;
  flex-shrink: 0;
}
body.page-reservation .reserve-callback strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--secondary);
  margin-bottom: 6px;
}
body.page-reservation .reserve-callback p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
}
body.page-reservation .reserve-callback em {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}

/* Form container tweaks */
body.page-reservation .reserve-main__form {
  position: sticky;
  top: 130px;
}
body.page-reservation .reserve-form__head {
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
body.page-reservation .reserve-form__head .eyebrow { margin-bottom: 12px; }
body.page-reservation .reserve-form__head h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin: 0 0 8px;
}
body.page-reservation .reserve-form__head p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.92rem;
}
body.page-reservation .reserve-form__consent {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
body.page-reservation .reserve-form__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin: 0;
  flex-shrink: 0;
}
body.page-reservation .reserve-form__consent-text {
  font-size: 0.9rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text-body) !important;
  font-weight: 500 !important;
  line-height: 1.5;
}
body.page-reservation .reserve-main__form .form-field input,
body.page-reservation .reserve-main__form .form-field select,
body.page-reservation .reserve-main__form .form-field textarea {
  border: 1.5px solid var(--hairline);
  background: var(--bg-alt);
  box-shadow: inset 0 1px 0 rgba(var(--secondary-rgb), 0.04);
}
body.page-reservation .reserve-main__form .form-field input:hover,
body.page-reservation .reserve-main__form .form-field select:hover,
body.page-reservation .reserve-main__form .form-field textarea:hover {
  border-color: rgba(var(--secondary-rgb), 0.38);
}
body.page-reservation .reserve-main__form .form-field input:focus,
body.page-reservation .reserve-main__form .form-field select:focus,
body.page-reservation .reserve-main__form .form-field textarea:focus {
  border-color: var(--primary);
  background: var(--background);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}
body.page-reservation .reserve-main__form .form-field span {
  color: var(--secondary);
  margin-bottom: 2px;
}

/* ---------- Availability grid ---------- */
body.page-reservation .reserve-avail__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}
body.page-reservation .reserve-avail__card {
  background: var(--background);
  padding: clamp(22px, 2.5vw, 30px);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--t-med), transform var(--t-med);
}
body.page-reservation .reserve-avail__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
body.page-reservation .reserve-avail__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  padding: 4px 10px;
  border: 1px solid rgba(var(--primary-rgb), 0.35);
  width: fit-content;
}
body.page-reservation .reserve-avail__card h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin: 0;
}
body.page-reservation .reserve-avail__window {
  font-size: 0.95rem;
  color: var(--text-body-dark);
  margin: 0 0 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
  line-height: 1.5;
}
body.page-reservation .reserve-avail__window strong {
  color: var(--primary);
  font-weight: 700;
}
body.page-reservation .reserve-avail__card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
body.page-reservation .reserve-avail__card p strong { color: var(--secondary); font-weight: 700; }
body.page-reservation .reserve-avail__link {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
body.page-reservation .reserve-avail__link svg { transition: transform var(--t-fast); }
body.page-reservation .reserve-avail__link:hover { color: var(--primary-dark); }
body.page-reservation .reserve-avail__link:hover svg { transform: translateX(4px); }

/* ---------- Hours + territory ---------- */
body.page-reservation .reserve-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 60px);
  align-items: start;
}
body.page-reservation .reserve-info__col .eyebrow { margin-bottom: 14px; }
body.page-reservation .reserve-info__col h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 14px;
}
body.page-reservation .reserve-info__col > p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
body.page-reservation .reserve-hours {
  margin: 0;
  padding: 4px 0 0;
  border-top: 1px solid var(--hairline);
}
body.page-reservation .reserve-hours__row {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
body.page-reservation .reserve-hours__row dt {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  font-weight: 700;
  margin: 0;
}
body.page-reservation .reserve-hours__row dd {
  margin: 0;
  color: var(--text-body-dark);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.4;
}
body.page-reservation .reserve-territory {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
body.page-reservation .reserve-territory li {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  align-items: baseline;
}
body.page-reservation .reserve-territory li:first-child { border-top: 1px solid var(--hairline); }
body.page-reservation .reserve-territory__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  font-weight: 700;
}
body.page-reservation .reserve-territory__value {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-body-dark);
}
body.page-reservation .reserve-info__cta {
  margin-top: 8px;
}

/* ---------- Final direct-contact fallback ---------- */
body.page-reservation .reserve-fallback__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
body.page-reservation .reserve-fallback__inner .eyebrow { margin-inline: auto; }
body.page-reservation .reserve-fallback__inner h2 { margin-bottom: 18px; }
body.page-reservation .reserve-fallback__inner h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary-light);
  font-weight: 400;
}
body.page-reservation .reserve-fallback__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(var(--primary-ink-rgb), 0.90);
  margin: 0 0 32px;
}
body.page-reservation .reserve-fallback__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
body.page-reservation .reserve-fallback__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.page-reservation .reserve-fallback__phone svg { color: currentColor; }
body.page-reservation .reserve-fallback__note {
  font-size: 0.86rem;
  color: rgba(var(--primary-ink-rgb), 0.72);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ---------- Responsive (reservation) ---------- */
@media (max-width: 1000px) {
  body.page-reservation .reserve-channels__list { grid-template-columns: 1fr; }
  body.page-reservation .reserve-main__grid { grid-template-columns: 1fr; }
  body.page-reservation .reserve-main__form { position: static; }
  body.page-reservation .reserve-avail__grid { grid-template-columns: repeat(2, 1fr); }
  body.page-reservation .reserve-info__grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  body.page-reservation .reserve-avail__grid { grid-template-columns: 1fr; }
  body.page-reservation .reserve-fallback__actions { flex-direction: column; align-items: stretch; }
  body.page-reservation .reserve-fallback__actions .btn { width: 100%; }
  body.page-reservation .reserve-hours__row,
  body.page-reservation .reserve-territory li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  body.page-reservation .reserve-callback { grid-template-columns: 1fr; gap: 12px; }
}

/* ========================================================================
   CONTACT PAGE — body.page-contact
   Distinct from reservation: NAP-first, functional short layout,
   compact form, hours/location panel, region visual, quick-answers strip.
   ======================================================================== */

body.page-contact .hero--contact { min-height: clamp(440px, 62vh, 600px); }
body.page-contact .hero--contact .hero__inner { padding-block: clamp(50px, 8vh, 90px); }
body.page-contact .hero--contact .hero__scrim {
  background:
    linear-gradient(180deg, rgba(var(--secondary-dark-rgb), 0.72) 0%, rgba(var(--secondary-dark-rgb), 0.84) 60%, rgba(var(--secondary-dark-rgb), 0.92) 100%),
    linear-gradient(90deg, rgba(var(--secondary-dark-rgb), 0.65) 0%, rgba(var(--secondary-dark-rgb), 0.30) 55%);
}
body.page-contact .hero--contact .hero__title em {
  color: #fff;
  font-style: italic;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--primary-light);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.90), 0 1px 2px rgba(0, 0, 0, 0.75);
}
body.page-contact .contact-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* --- NAP CARD GRID --- */
body.page-contact .contact-nap__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(30px, 4vw, 50px);
}
body.page-contact .contact-nap__head .eyebrow { justify-content: center; }
body.page-contact .contact-nap__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}
body.page-contact .contact-nap__card {
  background: var(--background);
  padding: clamp(26px, 3vw, 36px);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
body.page-contact .contact-nap__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
body.page-contact .contact-nap__card--accent {
  border-top-width: 3px;
  box-shadow: var(--shadow-md);
  position: relative;
}
body.page-contact .contact-nap__card--accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--primary);
}
body.page-contact .contact-nap__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--primary-ink);
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.22);
}
body.page-contact .contact-nap__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 700;
}
body.page-contact .contact-nap__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1.2;
}
body.page-contact .contact-nap__value--email {
  color: var(--primary);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  white-space: normal;
  word-break: break-word;
}
body.page-contact .contact-nap__value--plain {
  color: var(--text);
  white-space: normal;
}
body.page-contact a.contact-nap__value:hover { color: var(--primary-light); }
body.page-contact .contact-nap__note {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 6px 0 0;
}

/* --- CONTACT SPLIT: form + side panel --- */
body.page-contact .contact-split__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4.5vw, 60px);
  align-items: start;
}
body.page-contact .contact-form-head {
  margin-bottom: clamp(24px, 3vw, 34px);
}
body.page-contact .contact-form-head h2 { margin-bottom: 12px; }
body.page-contact .contact-form-head__lede {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}
body.page-contact .contact-form-head__link {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
}
body.page-contact .contact-form-head__link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}
body.page-contact .contact-form { position: sticky; top: 0; }
body.page-contact .contact-form .form-field input,
body.page-contact .contact-form .form-field select,
body.page-contact .contact-form .form-field textarea {
  border: 1.5px solid #c8c8c8;
  background: var(--background);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
body.page-contact .contact-form .form-field input:hover,
body.page-contact .contact-form .form-field select:hover,
body.page-contact .contact-form .form-field textarea:hover {
  border-color: #9a9a9a;
}
body.page-contact .contact-form .form-field input:focus,
body.page-contact .contact-form .form-field select:focus,
body.page-contact .contact-form .form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}
body.page-contact .contact-split__side {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
  position: sticky;
  top: 110px;
}

/* --- CONTACT PANEL (hours + territory blocks) --- */
body.page-contact .contact-panel {
  background: var(--background);
  border: 1px solid var(--hairline);
  padding: clamp(24px, 3vw, 34px);
}
body.page-contact .contact-panel--accent {
  background: var(--bg-alt);
  border-color: transparent;
  border-left: 3px solid var(--primary);
}
body.page-contact .contact-panel__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 8px 0 18px;
  color: var(--text);
}
body.page-contact .contact-panel__lede {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 18px;
}
body.page-contact .contact-hours {
  margin: 0;
  display: grid;
  gap: 14px;
}
body.page-contact .contact-hours__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
body.page-contact .contact-hours__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
body.page-contact .contact-hours__row dt {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--secondary);
  padding-top: 3px;
}
body.page-contact .contact-hours__row dd {
  margin: 0;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}
body.page-contact .contact-hours__row dd small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.45;
}

body.page-contact .contact-territory {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
body.page-contact .contact-territory li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
body.page-contact .contact-territory li:last-child { border-bottom: 1px solid var(--hairline); }
body.page-contact .contact-territory span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 700;
}
body.page-contact .contact-territory strong {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 500;
}

/* --- CONTACT LOCATION visual --- */
body.page-contact .contact-location__head {
  max-width: 720px;
  margin: 0 auto clamp(30px, 4vw, 50px);
  text-align: center;
}
body.page-contact .contact-location__head .eyebrow { justify-content: center; }
body.page-contact .contact-location__frame {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--background);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
body.page-contact .contact-location__media {
  margin: 0;
  position: relative;
  min-height: 320px;
}
body.page-contact .contact-location__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-contact .contact-location__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  background: linear-gradient(0deg, rgba(var(--secondary-dark-rgb), 0.85), rgba(var(--secondary-dark-rgb), 0));
  color: var(--primary-ink);
  font-size: 0.82rem;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
body.page-contact .contact-location__meta {
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.page-contact .contact-location__pin {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
body.page-contact .contact-location__pin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--primary-ink);
  flex-shrink: 0;
}
body.page-contact .contact-location__pin strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.2;
}
body.page-contact .contact-location__pin span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-body);
  margin-top: 2px;
}
body.page-contact .contact-location__facts {
  margin: 0;
  display: grid;
  gap: 12px;
}
body.page-contact .contact-location__facts > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--hairline);
  align-items: baseline;
}
body.page-contact .contact-location__facts > div:last-child { border-bottom: 0; }
body.page-contact .contact-location__facts dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 700;
}
body.page-contact .contact-location__facts dd {
  margin: 0;
  font-family: var(--font-serif);
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}
body.page-contact .contact-location__note {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  margin: 0;
  font-style: italic;
}

/* --- QUICK ANSWERS strip --- */
body.page-contact .contact-qa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
body.page-contact .contact-qa {
  padding: clamp(22px, 2.5vw, 30px);
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
}
body.page-contact .contact-qa h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--secondary);
  margin: 0 0 12px;
  line-height: 1.3;
}
body.page-contact .contact-qa p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}
body.page-contact .contact-qa a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
}
body.page-contact .contact-qa a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

/* --- DIRECT DARK BAND --- */
body.page-contact .contact-direct__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
body.page-contact .contact-direct__inner .eyebrow { justify-content: center; }
body.page-contact .contact-direct h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}
body.page-contact .contact-direct h2 em {
  color: var(--primary-light);
  font-style: italic;
  font-weight: 400;
}
body.page-contact .contact-direct__lede {
  font-size: 1.05rem;
  color: rgba(var(--primary-ink-rgb), 0.88);
  line-height: 1.65;
  margin: 0 0 30px;
}
body.page-contact .contact-direct__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
body.page-contact .contact-direct__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.page-contact .contact-direct__actions .btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.page-contact .contact-direct__note {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(var(--primary-ink-rgb), 0.65);
  margin: 0;
}

/* --- CONTACT RESPONSIVE --- */
@media (max-width: 960px) {
  body.page-contact .contact-nap__grid { grid-template-columns: 1fr; }
  body.page-contact .contact-split__grid { grid-template-columns: 1fr; }
  body.page-contact .contact-form { position: static; }
  body.page-contact .contact-split__side { position: static; top: auto; }
  body.page-contact .contact-location__frame { grid-template-columns: 1fr; }
  body.page-contact .contact-location__media { min-height: 260px; }
  body.page-contact .contact-qa__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-contact .contact-hours__row,
  body.page-contact .contact-territory li,
  body.page-contact .contact-location__facts > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  body.page-contact .contact-direct__actions {
    flex-direction: column;
    align-items: stretch;
  }
  body.page-contact .contact-direct__actions .btn { width: 100%; justify-content: center; }
  body.page-contact .contact-nap__value { white-space: normal; word-break: break-word; }
}

/* ========================================================================
   PRINT
   ======================================================================== */
@media print {
  .site-header, .site-footer, .banner-cta, .gallery-band, .menu-toggle { display: none !important; }
  .section { padding-block: 20px; }
}

/* ========================================================================
   SHARED PAGE-LEDE-BAND — edge-to-edge photography for narrative pages
   used to satisfy the "photography leads the design" contract on
   menus / partys-homards / temps-des-sucres.
   ======================================================================== */
.page-lede-band {
  position: relative;
  height: clamp(300px, 46vh, 480px);
  overflow: hidden;
  background: var(--secondary);
}
.page-lede-band__media {
  position: absolute;
  inset: 0;
}
.page-lede-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) brightness(0.92);
}
.page-lede-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.65) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  align-items: flex-end;
  padding-block: 36px;
}
.page-lede-band__eyebrow {
  display: inline-block;
  font-family: var(--font-sans, inherit);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}
.page-lede-band__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: #fff;
  max-width: 780px;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.5);
}


/* W17 deterministic card text contrast repair: about p.legacy__role */
.page-about p.legacy__role {
  color: var(--text);
}

/* W17 deterministic card text contrast repair: contact span.contact-nap__label */
.page-contact span.contact-nap__label {
  color: var(--text);
}



/* Page-scoped restoration: about-cta must remain a dark brand surface (overrides W115 light-source override above). */
body.page-about .about-cta {
  background: var(--secondary) !important;
  color: var(--primary-ink) !important;
}

/* Page-scoped restoration: ambiance .decor must remain a dark brand surface (overrides W115 light-source override above). */
body.page-ambiance .decor {
  background: var(--secondary) !important;
  color: var(--primary-ink) !important;
}

/* Page-scoped restoration: menus .menu-cta must remain a dark brand surface (overrides W115 light-source override above). */
body.page-menus .menu-cta {
  background: var(--secondary) !important;
  color: var(--primary-ink) !important;
}
body.page-menus .menu-cta .eyebrow,
body.page-menus .menu-cta h2,
body.page-menus .menu-cta__lede,
body.page-menus .menu-cta__note {
  color: var(--primary-ink);
}
body.page-menus .menu-cta__lede { color: rgba(var(--primary-ink-rgb), 0.90); }
body.page-menus .menu-cta__note { color: rgba(var(--primary-ink-rgb), 0.80); }
body.page-menus .menu-cta__note a { color: var(--primary-ink); border-bottom-color: rgba(var(--primary-ink-rgb), 0.6); }


/* Page-scoped restoration: partys-de-noel .noel-cta final CTA section must remain a dark brand surface (overrides W115 light-source override and any other safety-net rules). */
body.page-partys-noel section.noel-cta {
  background: #101827 !important;
  color: #ffffff !important;
}
body.page-partys-noel section.noel-cta .eyebrow,
body.page-partys-noel section.noel-cta .eyebrow--light,
body.page-partys-noel section.noel-cta h2,
body.page-partys-noel section.noel-cta h2 em,
body.page-partys-noel section.noel-cta .noel-cta__lede,
body.page-partys-noel section.noel-cta .noel-cta__phone,
body.page-partys-noel section.noel-cta .noel-cta__note,
body.page-partys-noel section.noel-cta .noel-cta__note span,
body.page-partys-noel section.noel-cta .noel-cta__meta a {
  color: #ffffff !important;
}
body.page-partys-noel section.noel-cta .noel-cta__meta a {
  border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}
body.page-partys-noel section.noel-cta .noel-cta__meta a:hover,
body.page-partys-noel section.noel-cta .noel-cta__meta a:focus {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
body.page-partys-noel section.noel-cta .noel-cta__phone {
  border-color: rgba(255, 255, 255, 0.75) !important;
}
body.page-partys-noel section.noel-cta .noel-cta__phone:hover,
body.page-partys-noel section.noel-cta .noel-cta__phone:focus {
  background: #ffffff !important;
  color: #101827 !important;
  border-color: #ffffff !important;
}
body.page-partys-noel section.noel-cta .btn--primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
body.page-partys-noel section.noel-cta .btn--primary:hover,
body.page-partys-noel section.noel-cta .btn--primary:focus {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
}


/* Page-scoped restoration: temps-des-sucres .sucres-cta final CTA section must remain a dark brand surface (overrides W115 light-source override and any other safety-net rules). */
body.page-temps-des-sucres main > section.sucres-cta,
body.page-temps-des-sucres section.sucres-cta {
  background: #101827 !important;
  color: #ffffff !important;
}
body.page-temps-des-sucres section.sucres-cta .eyebrow,
body.page-temps-des-sucres section.sucres-cta .eyebrow--light,
body.page-temps-des-sucres section.sucres-cta h2,
body.page-temps-des-sucres section.sucres-cta h2 em,
body.page-temps-des-sucres section.sucres-cta .sucres-cta__lede,
body.page-temps-des-sucres section.sucres-cta .sucres-cta__phone,
body.page-temps-des-sucres section.sucres-cta .sucres-cta__note,
body.page-temps-des-sucres section.sucres-cta .sucres-cta__email,
body.page-temps-des-sucres section.sucres-cta .sucres-cta__links a {
  color: #ffffff !important;
}
body.page-temps-des-sucres section.sucres-cta .sucres-cta__links a {
  border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}
body.page-temps-des-sucres section.sucres-cta .sucres-cta__links a:hover,
body.page-temps-des-sucres section.sucres-cta .sucres-cta__links a:focus {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
body.page-temps-des-sucres section.sucres-cta .sucres-cta__email {
  border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}
body.page-temps-des-sucres section.sucres-cta .sucres-cta__email:hover,
body.page-temps-des-sucres section.sucres-cta .sucres-cta__email:focus {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
body.page-temps-des-sucres section.sucres-cta .sucres-cta__note {
  border-top-color: rgba(255, 255, 255, 0.18) !important;
}
body.page-temps-des-sucres section.sucres-cta .sucres-cta__phone {
  border-color: rgba(255, 255, 255, 0.75) !important;
}
body.page-temps-des-sucres section.sucres-cta .sucres-cta__phone:hover,
body.page-temps-des-sucres section.sucres-cta .sucres-cta__phone:focus {
  background: #ffffff !important;
  color: #101827 !important;
  border-color: #ffffff !important;
}
body.page-temps-des-sucres section.sucres-cta .btn--primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
body.page-temps-des-sucres section.sucres-cta .btn--primary:hover,
body.page-temps-des-sucres section.sucres-cta .btn--primary:focus {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
}


/* Page-scoped restoration: partys-homards .homard-cta final CTA section must remain a dark brand surface (overrides W115 light-source override and any other safety-net rules). */
body.page-partys-homards main > section.homard-cta,
body.page-partys-homards section.homard-cta {
  background: #101827 !important;
  color: #ffffff !important;
}
body.page-partys-homards section.homard-cta .eyebrow,
body.page-partys-homards section.homard-cta .eyebrow--light,
body.page-partys-homards section.homard-cta h2,
body.page-partys-homards section.homard-cta h2 em,
body.page-partys-homards section.homard-cta .homard-cta__lede,
body.page-partys-homards section.homard-cta .homard-cta__phone,
body.page-partys-homards section.homard-cta .homard-cta__note,
body.page-partys-homards section.homard-cta .homard-cta__email,
body.page-partys-homards section.homard-cta .homard-cta__links a {
  color: #ffffff !important;
}
body.page-partys-homards section.homard-cta .homard-cta__links a {
  border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}
body.page-partys-homards section.homard-cta .homard-cta__links a:hover,
body.page-partys-homards section.homard-cta .homard-cta__links a:focus {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
body.page-partys-homards section.homard-cta .homard-cta__email {
  border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}
body.page-partys-homards section.homard-cta .homard-cta__email:hover,
body.page-partys-homards section.homard-cta .homard-cta__email:focus {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
body.page-partys-homards section.homard-cta .homard-cta__note {
  border-top-color: rgba(255, 255, 255, 0.18) !important;
}
body.page-partys-homards section.homard-cta .homard-cta__phone {
  border-color: rgba(255, 255, 255, 0.75) !important;
}
body.page-partys-homards section.homard-cta .homard-cta__phone:hover,
body.page-partys-homards section.homard-cta .homard-cta__phone:focus {
  background: #ffffff !important;
  color: #101827 !important;
  border-color: #ffffff !important;
}
body.page-partys-homards section.homard-cta .btn--primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
body.page-partys-homards section.homard-cta .btn--primary:hover,
body.page-partys-homards section.homard-cta .btn--primary:focus {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
}
body.page-partys-homards section.homard-cta .homard-cta__price {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}
body.page-partys-homards section.homard-cta .homard-cta__price-amount {
  color: #ffffff !important;
}
body.page-partys-homards section.homard-cta .homard-cta__price-qualifier {
  color: rgba(255, 255, 255, 0.78) !important;
}



/* Page-scoped restoration: mechouis-ete .ete-cta final CTA section must remain a dark brand surface (overrides W115 light-source override and any other safety-net rules). */
body.page-mechouis-ete main > section.ete-cta,
body.page-mechouis-ete section.ete-cta {
  background: #101827 !important;
  color: #ffffff !important;
}
body.page-mechouis-ete section.ete-cta .eyebrow,
body.page-mechouis-ete section.ete-cta .eyebrow--light,
body.page-mechouis-ete section.ete-cta h2,
body.page-mechouis-ete section.ete-cta h2 em,
body.page-mechouis-ete section.ete-cta .ete-cta__lede,
body.page-mechouis-ete section.ete-cta .ete-cta__phone,
body.page-mechouis-ete section.ete-cta .ete-cta__note,
body.page-mechouis-ete section.ete-cta .ete-cta__email,
body.page-mechouis-ete section.ete-cta .ete-cta__links a {
  color: #ffffff !important;
}
body.page-mechouis-ete section.ete-cta .ete-cta__links a {
  border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}
body.page-mechouis-ete section.ete-cta .ete-cta__links a:hover,
body.page-mechouis-ete section.ete-cta .ete-cta__links a:focus {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
body.page-mechouis-ete section.ete-cta .ete-cta__email {
  border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}
body.page-mechouis-ete section.ete-cta .ete-cta__email:hover,
body.page-mechouis-ete section.ete-cta .ete-cta__email:focus {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
body.page-mechouis-ete section.ete-cta .ete-cta__note {
  border-top-color: rgba(255, 255, 255, 0.18) !important;
}
body.page-mechouis-ete section.ete-cta .ete-cta__phone {
  border-color: rgba(255, 255, 255, 0.75) !important;
}
body.page-mechouis-ete section.ete-cta .ete-cta__phone:hover,
body.page-mechouis-ete section.ete-cta .ete-cta__phone:focus {
  background: #ffffff !important;
  color: #101827 !important;
  border-color: #ffffff !important;
}
body.page-mechouis-ete section.ete-cta .btn--primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
body.page-mechouis-ete section.ete-cta .btn--primary:hover,
body.page-mechouis-ete section.ete-cta .btn--primary:focus {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
}


/* Page-scoped restoration: reservation .reserve-fallback final CTA section must remain a dark brand surface (overrides W115 light-source override and any other safety-net rules). */
body.page-reservation main > section.reserve-fallback,
body.page-reservation section.reserve-fallback {
  background: #101827 !important;
  color: #ffffff !important;
}
body.page-reservation section.reserve-fallback .eyebrow,
body.page-reservation section.reserve-fallback .eyebrow--light,
body.page-reservation section.reserve-fallback h2,
body.page-reservation section.reserve-fallback h2 em,
body.page-reservation section.reserve-fallback .reserve-fallback__lede,
body.page-reservation section.reserve-fallback .reserve-fallback__note,
body.page-reservation section.reserve-fallback .reserve-fallback__phone,
body.page-reservation section.reserve-fallback .reserve-fallback__actions a[href^="mailto:"],
body.page-reservation section.reserve-fallback .btn--outline-light {
  color: #ffffff !important;
}
body.page-reservation section.reserve-fallback .btn--outline-light {
  border-color: rgba(255, 255, 255, 0.75) !important;
}
body.page-reservation section.reserve-fallback .btn--outline-light:hover,
body.page-reservation section.reserve-fallback .btn--outline-light:focus {
  background: #ffffff !important;
  color: #101827 !important;
  border-color: #ffffff !important;
}
body.page-reservation section.reserve-fallback .btn--primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
body.page-reservation section.reserve-fallback .btn--primary:hover,
body.page-reservation section.reserve-fallback .btn--primary:focus {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
}


/* Page-scoped restoration: contact .contact-direct final CTA section must remain a dark brand surface (overrides W115 light-source override and any other safety-net rules). */
body.page-contact main > section.contact-direct,
body.page-contact section.contact-direct {
  background: #101827 !important;
  color: #ffffff !important;
}
body.page-contact section.contact-direct .eyebrow,
body.page-contact section.contact-direct .eyebrow--light,
body.page-contact section.contact-direct h2,
body.page-contact section.contact-direct h2 em,
body.page-contact section.contact-direct .contact-direct__lede,
body.page-contact section.contact-direct .contact-direct__note,
body.page-contact section.contact-direct .contact-direct__phone,
body.page-contact section.contact-direct .contact-direct__actions a[href^="mailto:"],
body.page-contact section.contact-direct .btn--outline-light {
  color: #ffffff !important;
}
body.page-contact section.contact-direct .btn--outline-light {
  border-color: rgba(255, 255, 255, 0.75) !important;
}
body.page-contact section.contact-direct .btn--outline-light:hover,
body.page-contact section.contact-direct .btn--outline-light:focus {
  background: #ffffff !important;
  color: #101827 !important;
  border-color: #ffffff !important;
}
body.page-contact section.contact-direct .btn--primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
body.page-contact section.contact-direct .btn--primary:hover,
body.page-contact section.contact-direct .btn--primary:focus {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
}

/* W174 FAQ page (page-faq) scoped fixes */
body.page-faq main .faq {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--hairline);
}
body.page-faq main .faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
}
body.page-faq main .faq-item[open] {
  background: rgba(var(--primary-rgb), 0.03);
}
body.page-faq main .faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary);
  line-height: 1.4;
  transition: color 0.2s ease;
}
body.page-faq main .faq-item > summary::-webkit-details-marker { display: none; }
body.page-faq main .faq-item > summary::marker { content: ""; }
body.page-faq main .faq-item > summary:hover { color: var(--primary); }
body.page-faq main .faq-item__q { flex: 1 1 auto; }
body.page-faq main .faq-item__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
body.page-faq main .faq-item__icon::before,
body.page-faq main .faq-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
body.page-faq main .faq-item__icon::before {
  width: 12px;
  height: 2px;
}
body.page-faq main .faq-item__icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.page-faq main .faq-item[open] > summary .faq-item__icon {
  background: var(--primary);
  color: var(--primary-ink);
}
body.page-faq main .faq-item[open] > summary .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
body.page-faq main .faq-item__answer {
  padding: 0 8px 22px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}
body.page-faq main .faq-item__answer p { margin: 0; }

/* Constrain "Trois façons" split head so it does not stretch wide */
body.page-faq main .section__head--split {
  max-width: 960px;
  margin-inline: auto;
}
body.page-faq main .contact-nap__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin-inline: auto;
  margin-top: 40px;
}
body.page-faq main .contact-nap__card {
  padding: 26px 24px;
  background: var(--background);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
body.page-faq main .contact-nap__card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
body.page-faq main .contact-nap__card--accent {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.04);
}
body.page-faq main .contact-nap__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
body.page-faq main .contact-nap__value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
body.page-faq main .contact-nap__value:hover { color: var(--primary); }
body.page-faq main .contact-nap__value--email { font-size: 1.05rem; }
body.page-faq main .contact-nap__note {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Boost secondary hero CTA weight on dark hero */
body.page-faq main .faq-hero .hero__ctas .btn--outline-light {
  background: rgba(var(--primary-ink-rgb), 0.14);
  border-color: var(--primary-ink);
  color: var(--primary-ink);
  backdrop-filter: blur(4px);
}
body.page-faq main .faq-hero .hero__ctas .btn--outline-light:hover {
  background: var(--primary-ink);
  color: var(--secondary);
}

/* "Aller plus loin" cleaner grid */
body.page-faq main .link-grid {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 28px;
  max-width: 1080px;
  margin-inline: auto;
}
body.page-faq main .link-grid li {
  border-top: 1px solid var(--hairline);
}
body.page-faq main .link-grid .link-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  border-bottom: none;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--secondary);
  font-family: var(--font-sans);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
body.page-faq main .link-grid .link-arrow::after {
  content: "→";
  color: var(--primary);
  font-weight: 700;
  transition: transform 0.2s ease;
}
body.page-faq main .link-grid .link-arrow:hover {
  color: var(--primary);
  padding-left: 6px;
}
body.page-faq main .link-grid .link-arrow:hover::after { transform: translateX(4px); }

@media (max-width: 760px) {
  body.page-faq main .contact-nap__grid { grid-template-columns: 1fr; }
  body.page-faq main .link-grid { grid-template-columns: 1fr; }
  body.page-faq main .faq-item > summary { font-size: 1rem; padding: 16px 4px; }
}

/* W170 mobile overflow repair (project 271) */
@media (max-width: 480px) {
  .split__media {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .homard-scenario__intro,
  .homard-scenario__cta {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.page-reservation .reserve-main__grid,
  body.page-reservation .reserve-channels__list,
  .reservation__grid,
  .story__grid,
  body.page-contact .contact-split__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .btn,
  a[href^="mailto:"] {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: center;
  }

  .contact-quick li,
  .contact-quick li > div {
    min-width: 0 !important;
  }

  .contact-quick__value {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}
/* /W170 mobile overflow repair (project 271) */


/* W170 mobile overflow repair */
@media (max-width: 480px) {
  a.active { min-width: 0 !important; max-width: 100% !important; }
  nav#mainNav.main-nav { min-width: 0 !important; max-width: 100% !important; }
  ul.main-nav__list { min-width: 0 !important; max-width: 100% !important; }
}
/* /W170 mobile overflow repair */

/* W174 FAQ deferred repair (project 271) */
@media (min-width: 981px) {
  .main-nav .dropdown-menu {
    display: none;
  }
  .main-nav .has-dropdown:hover .dropdown-menu,
  .main-nav .has-dropdown:focus-within .dropdown-menu,
  .main-nav .has-dropdown.is-open .dropdown-menu {
    display: block;
  }
}

/* Ensure FAQ hero section has explicit dark base so title/CTA read as
   passing contrast even if the hero image is delayed or the scanner
   samples the section background rather than the scrim overlay. */
body.page-faq main .faq-hero {
  background: var(--secondary-dark);
  color: var(--primary-ink);
}
body.page-faq main .faq-hero .hero__title,
body.page-faq main .faq-hero .hero__lede,
body.page-faq main .faq-hero .hero__eyebrow {
  color: var(--primary-ink);
}

body.page-faq main .faq-hero .hero__ctas .btn--outline-light,
body.page-faq main section.section--dark .btn--outline-light {
  background: var(--secondary-dark);
  border-color: var(--primary-ink);
  color: var(--primary-ink);
  backdrop-filter: none;
}
body.page-faq main .faq-hero .hero__ctas .btn--outline-light:hover,
body.page-faq main .faq-hero .hero__ctas .btn--outline-light:focus,
body.page-faq main section.section--dark .btn--outline-light:hover,
body.page-faq main section.section--dark .btn--outline-light:focus {
  background: var(--primary-ink);
  color: var(--secondary-dark);
  border-color: var(--primary-ink);
}

body.page-faq main .faq-hero .hero__eyebrow {
  background: var(--secondary-dark);
  border-color: var(--primary-ink);
  color: var(--primary-ink);
}

/* Desktop nav wrap repair — shrink typography and gaps across the full
   range where 8 items + phone + reserve CTA would otherwise wrap. */
@media (min-width: 981px) and (max-width: 1400px) {
  .nav-bar__inner { gap: 14px; }
  .main-nav__list { gap: 0; }
  .main-nav__list a,
  .main-nav__list .dropdown-toggle { padding: 10px 7px; font-size: 0.74rem; letter-spacing: 0.03em; }
  .nav-bar__cta { gap: 10px; }
  .nav-phone { font-size: 0.8rem; }
  .brand img { height: 54px; }
}
@media (min-width: 981px) {
  .nav-bar__inner { flex-wrap: nowrap; }
  .main-nav__list { flex-wrap: nowrap; white-space: nowrap; }
  .main-nav__list a,
  .main-nav__list .dropdown-toggle { white-space: nowrap; }
}

.site-footer .generated-page-links {
  grid-column: 1 / -1;
  margin-top: 24px;
}
.site-footer .generated-page-links h3 {
  color: var(--primary-ink);
  font-size: 0.95rem;
  margin: 0 0 12px;
}
.site-footer .generated-page-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.site-footer .generated-page-links a,
.site-footer .generated-page-links a.active,
.site-footer .generated-page-links li.active a {
  color: var(--primary-ink);
  opacity: 0.85;
  font-size: 0.88rem;
  text-decoration: none;
}
.site-footer .generated-page-links a:hover,
.site-footer .generated-page-links a:focus,
.site-footer .generated-page-links a.active {
  color: var(--primary-ink);
  opacity: 1;
  text-decoration: underline;
}
/* /W174 FAQ deferred repair */


/* ============================================================
   PAGE-SCOPED: body.page-traiteur (Service traiteur)
   ============================================================ */
body.page-traiteur .hero--traiteur {
  min-height: clamp(440px, 60vh, 600px);
  background-color: rgb(var(--secondary-dark-rgb));
}
body.page-traiteur .hero--traiteur .hero__inner { padding-block: clamp(70px, 10vh, 120px); }
body.page-traiteur .hero--traiteur .hero__scrim {
  background-color: rgba(var(--secondary-dark-rgb), 0.78);
  background-image:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(var(--secondary-dark-rgb), 0.80) 60%,
      rgba(var(--secondary-dark-rgb), 0.90) 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.20) 60%);
}
body.page-traiteur .hero--traiteur .hero__media { z-index: 1; }
body.page-traiteur .hero--traiteur .hero__scrim { z-index: 2; }
body.page-traiteur .hero--traiteur .hero__inner { z-index: 3; }
body.page-traiteur .hero--traiteur .hero__content {
  background-color: rgba(var(--secondary-dark-rgb), 0.55);
  padding: 28px 30px;
  border-radius: 4px;
}
body.page-traiteur .hero--traiteur .hero__title {
  background-color: rgba(var(--secondary-dark-rgb), 0.55);
}
body.page-traiteur .hero--traiteur .hero__lede {
  background-color: rgba(var(--secondary-dark-rgb), 0.55);
}
body.page-traiteur .hero--traiteur .hero__title,
body.page-traiteur .hero--traiteur .hero__title em {
  color: var(--primary-ink);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}
body.page-traiteur .hero--traiteur .hero__title em {
  font-style: italic;
  font-weight: 400;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}
body.page-traiteur .hero--traiteur .hero__phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 22px;
}
body.page-traiteur .hero--traiteur .hero__phone-cta__icon {
  flex-shrink: 0;
  opacity: 0.9;
}
body.page-traiteur .hero--traiteur .hero__phone-cta__label {
  font-weight: 700;
  letter-spacing: 0.06em;
}
body.page-traiteur .hero--traiteur .hero__phone-cta__number {
  font-weight: 500;
  opacity: 0.92;
  border-left: 1px solid rgba(var(--primary-ink-rgb), 0.35);
  padding-left: 10px;
  margin-left: 2px;
}

body.page-traiteur .traiteur-scenario { background: var(--surface); }
body.page-traiteur .traiteur-scenario__wrap { max-width: 1100px; margin: 0 auto; }
body.page-traiteur .traiteur-scenario__head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
body.page-traiteur .traiteur-scenario__head h2 { margin: 10px 0 16px; }
body.page-traiteur .traiteur-scenario__head h2 em { color: var(--primary); font-style: italic; }
body.page-traiteur .traiteur-scenario__lede { color: var(--text-body-dark); font-size: 1.05rem; line-height: 1.7; }
body.page-traiteur .traiteur-scenario__head span { color: var(--text-body-dark); }
body.page-traiteur .traiteur-scenario__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
body.page-traiteur .traiteur-scenario__item {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
}
body.page-traiteur .traiteur-scenario__num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  min-width: 42px;
}
body.page-traiteur .traiteur-scenario__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: var(--secondary);
}
body.page-traiteur .traiteur-scenario__body p { margin: 0; color: var(--text); font-size: 0.98rem; line-height: 1.6; }

body.page-traiteur .traiteur-services__head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
body.page-traiteur .traiteur-services__head h2 { margin: 10px 0 16px; }
body.page-traiteur .traiteur-services__head h2 em { color: var(--primary); font-style: italic; }
body.page-traiteur .traiteur-services__lede { color: var(--text-body-dark); font-size: 1.05rem; line-height: 1.7; }
body.page-traiteur .traiteur-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
body.page-traiteur .traiteur-service {
  background: var(--surface);
  padding: 28px 28px 30px;
  border-top: 3px solid var(--primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
body.page-traiteur .traiteur-service__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
body.page-traiteur .traiteur-service__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--secondary);
  margin: 0 0 12px;
}
body.page-traiteur .traiteur-service__desc {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 16px;
}
body.page-traiteur .traiteur-service__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
body.page-traiteur .traiteur-service__list li {
  padding-left: 20px;
  position: relative;
  color: var(--text-body-dark);
  font-size: 0.92rem;
  line-height: 1.55;
}
body.page-traiteur .traiteur-service__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 2px;
  background: var(--primary);
}

body.page-traiteur .traiteur-band {
  min-height: clamp(260px, 34vh, 360px);
  background: var(--surface, #ffffff);
}
body.page-traiteur .traiteur-band .page-lede-band__media {
  background-color: var(--surface, #ffffff);
}
body.page-traiteur .traiteur-band .page-lede-band__overlay {
  background-color: var(--surface, #ffffff);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 60%);
}

/* Hero eyebrow: solid pill so detector reads bg pixel, not scrim-transparent */
body.page-traiteur .hero--traiteur .hero__eyebrow {
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: none;
}

/* Ghost CTA on hero: give it a solid dark fill so contrast passes independently of scrim */
body.page-traiteur .hero--traiteur .btn--ghost,
body.page-traiteur .hero--traiteur a.btn.btn--ghost {
  background: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: none;
}
body.page-traiteur .hero--traiteur .btn--ghost:hover,
body.page-traiteur .hero--traiteur a.btn.btn--ghost:hover {
  background: var(--primary);
  color: var(--primary-ink, #ffffff);
  border-color: var(--primary);
}

body.page-traiteur .traiteur-pricing__wrap { max-width: 900px; margin: 0 auto; }
body.page-traiteur .traiteur-pricing__head { text-align: center; margin-bottom: 20px; }
body.page-traiteur .traiteur-pricing__head h2 { margin: 10px 0 14px; }
body.page-traiteur .traiteur-pricing__head h2 em { color: var(--primary); font-style: italic; }
body.page-traiteur .traiteur-pricing__lede { color: var(--text-body-dark); font-size: 1.02rem; line-height: 1.7; }
body.page-traiteur .traiteur-pricing [data-aeo-pricing-freshness="true"] {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  margin-top: 10px;
}

body.page-traiteur .traiteur-flex__wrap { max-width: 1000px; margin: 0 auto; }
body.page-traiteur .traiteur-flex__head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
body.page-traiteur .traiteur-flex__head h2 { margin: 10px 0 14px; }
body.page-traiteur .traiteur-flex__head h2 em { color: var(--primary); font-style: italic; }
body.page-traiteur .traiteur-flex__lede {
  color: var(--text-body-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}
body.page-traiteur .traiteur-flex__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
body.page-traiteur .traiteur-flex__item {
  display: flex;
  gap: 22px;
  padding: 22px 26px;
  background: var(--surface);
  border-left: 3px solid var(--primary);
}
body.page-traiteur .traiteur-flex__num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  min-width: 42px;
}
body.page-traiteur .traiteur-flex__item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 6px;
  color: var(--secondary);
}
body.page-traiteur .traiteur-flex__item p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
}

body.page-traiteur .traiteur-faq__wrap { max-width: 860px; margin: 0 auto; }
body.page-traiteur .traiteur-faq__head { text-align: center; margin-bottom: 40px; }
body.page-traiteur .traiteur-faq__head h2 { margin: 10px 0 14px; }
body.page-traiteur .traiteur-faq__head h2 em { color: var(--primary); font-style: italic; }
body.page-traiteur .traiteur-faq__lede { color: var(--text-body-dark); font-size: 1.02rem; line-height: 1.7; }
body.page-traiteur .traiteur-faq__list { display: grid; gap: 16px; }
body.page-traiteur .traiteur-faq__item {
  background: var(--surface);
  padding: 22px 26px 24px;
  border-left: 3px solid var(--primary);
}
body.page-traiteur .traiteur-faq__item h3 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--secondary);
  margin: 0 0 10px;
  line-height: 1.4;
}
body.page-traiteur .traiteur-faq__item p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
}

body.page-traiteur .traiteur-cta { background: var(--bg-alt); overflow-x: clip; }
body.page-traiteur .traiteur-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
body.page-traiteur .traiteur-cta__inner > * { max-width: 100%; }
body.page-traiteur .traiteur-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--secondary);
  margin: 10px 0 14px;
}
body.page-traiteur .traiteur-cta__title em { color: var(--primary); font-style: italic; }
body.page-traiteur .traiteur-cta__lede {
  color: var(--text-body-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 26px;
}
body.page-traiteur .traiteur-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 22px;
  max-width: 100%;
  min-width: 0;
}
body.page-traiteur .traiteur-cta__actions .btn {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  padding-left: clamp(16px, 3vw, 28px);
  padding-right: clamp(16px, 3vw, 28px);
}
body.page-traiteur .traiteur-cta__phone { white-space: normal; }
body.page-traiteur .traiteur-cta__note {
  font-size: 0.9rem;
  color: var(--text-body-dark);
  line-height: 1.7;
}
body.page-traiteur .traiteur-cta__note a { color: var(--primary); text-decoration: underline; }

@media (max-width: 768px) {
  body.page-traiteur .traiteur-scenario__list,
  body.page-traiteur .traiteur-services__grid {
    grid-template-columns: 1fr;
  }
  body.page-traiteur .traiteur-cta__actions { flex-direction: column; align-items: stretch; }
  body.page-traiteur .traiteur-cta__actions .btn { width: 100%; }
}


/* W115 deterministic light-source surface repair: traiteur */
html,
body,
body[class*="page-"],
body[class*="page-"] main {
  background: var(--background, #ffffff);
  color: var(--text, #111827);
}
/* /W115 deterministic light-source surface repair */


/* ============================================================
   PAGE-SCOPED: body.page-w173a (W173A Media QA - internal)
   ============================================================ */
body.page-w173a .hero--w173a {
  min-height: clamp(420px, 55vh, 560px);
  background-color: rgb(var(--secondary-dark-rgb));
}
body.page-w173a .hero--w173a .hero__inner { padding-block: clamp(64px, 9vh, 110px); position: relative; z-index: 3; }
body.page-w173a .hero--w173a .hero__media { z-index: 1; }
body.page-w173a .hero--w173a .hero__scrim {
  z-index: 2;
  background-color: rgba(var(--secondary-dark-rgb), 0.55);
  background-image:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(var(--secondary-dark-rgb), 0.70) 55%,
      rgba(var(--secondary-dark-rgb), 0.88) 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.60) 0%,
      rgba(0, 0, 0, 0.10) 65%);
}
body.page-w173a .hero--w173a .hero__content {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 32px 34px;
  border-radius: 6px;
  border-left: 3px solid var(--primary);
  max-width: min(820px, 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
body.page-w173a .hero--w173a .hero__title,
body.page-w173a .hero--w173a .hero__title em {
  color: var(--primary-ink);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}
body.page-w173a .hero--w173a .hero__title em {
  font-style: italic;
  font-weight: 400;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}
body.page-w173a .hero--w173a .hero__lede {
  color: var(--primary-ink);
  background-color: rgba(var(--secondary-dark-rgb), 0.55);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
body.page-w173a .hero--w173a .hero__eyebrow {
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: none;
}
body.page-w173a .hero--w173a .btn--ghost,
body.page-w173a .hero--w173a a.btn.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
body.page-w173a .hero--w173a .btn--ghost:hover,
body.page-w173a .hero--w173a a.btn.btn--ghost:hover,
body.page-w173a .hero--w173a .btn--ghost:focus-visible,
body.page-w173a .hero--w173a a.btn.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
body.page-w173a .hero--w173a .hero__phone-cta__number {
  border-left-color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}
body.page-w173a .hero--w173a .hero__phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 22px;
  white-space: nowrap;
}
body.page-w173a .hero--w173a .hero__phone-cta__label {
  font-weight: 700;
  letter-spacing: 0.06em;
}
body.page-w173a .hero--w173a .hero__phone-cta__number {
  font-weight: 500;
  opacity: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  padding-left: 10px;
  margin-left: 2px;
}

body.page-w173a .w173a-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

body.page-w173a .w173a-scenario { background: var(--surface); }
body.page-w173a .w173a-scenario__wrap { max-width: 1100px; margin: 0 auto; }
body.page-w173a .w173a-scenario__head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
body.page-w173a .w173a-scenario__head h2 { margin: 6px 0 16px; }
body.page-w173a .w173a-scenario__head h2 em { color: var(--primary); font-style: italic; }
body.page-w173a .w173a-scenario__lede { color: var(--text-body-dark); font-size: 1.05rem; line-height: 1.7; }
body.page-w173a .w173a-scenario__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
body.page-w173a .w173a-scenario__item {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
}
body.page-w173a .w173a-scenario__num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  min-width: 42px;
}
body.page-w173a .w173a-scenario__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: var(--secondary);
}
body.page-w173a .w173a-scenario__body p {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
}

body.page-w173a .w173a-process__head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
body.page-w173a .w173a-process__head h2 { margin: 6px 0 16px; text-wrap: balance; overflow-wrap: break-word; }
body.page-w173a .w173a-process__head h2 em { color: var(--primary); font-style: italic; }
body.page-w173a .w173a-scenario__head h2,
body.page-w173a .w173a-specs__head h2,
body.page-w173a .w173a-faq__head h2 { text-wrap: balance; }
body.page-w173a .w173a-faq__list .faq-item h3 { text-wrap: balance; }
body.page-w173a .w173a-process__lede { color: var(--text-body-dark); font-size: 1.05rem; line-height: 1.7; }
body.page-w173a .w173a-process__steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
body.page-w173a .w173a-process__step {
  background: var(--surface);
  padding: 28px 28px 30px;
  border-top: 3px solid var(--primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
body.page-w173a .w173a-process__step-index {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
body.page-w173a .w173a-process__step h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--secondary);
  margin: 0 0 16px;
}
body.page-w173a .w173a-process__note {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 12px 0 0;
}
body.page-w173a .w173a-media {
  margin: 0 0 4px;
  background: var(--bg-alt, #f4f0e8);
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
body.page-w173a .w173a-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}
body.page-w173a .w173a-media__caption {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-body-dark);
  margin-top: 10px;
  font-style: italic;
}

body.page-w173a .w173a-specs__head { max-width: 780px; margin: 0 auto 30px; text-align: center; }
body.page-w173a .w173a-specs__head h2 { margin: 6px 0 12px; }
body.page-w173a .w173a-specs__head h2 em { color: var(--primary); font-style: italic; }
body.page-w173a .w173a-specs__lede { color: var(--text-body-dark); font-size: 1rem; line-height: 1.65; }
body.page-w173a .w173a-specs__table {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
body.page-w173a .w173a-specs__row {
  display: grid;
  grid-template-columns: 60px 1.8fr 100px 1.4fr;
  gap: 16px;
  padding: 14px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text);
  font-size: 0.95rem;
}
body.page-w173a .w173a-specs__row:last-child { border-bottom: 0; }
body.page-w173a .w173a-specs__row--head {
  background: var(--secondary);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-ink, #ffffff);
}
body.page-w173a .w173a-specs__row code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.04);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--text);
}

body.page-w173a .w173a-faq__head { max-width: 780px; margin: 0 auto 32px; text-align: center; }
body.page-w173a .w173a-faq__head h2 { margin: 6px 0 12px; }
body.page-w173a .w173a-faq__head h2 em { color: var(--primary); font-style: italic; }
body.page-w173a .w173a-faq__lede { color: var(--text-body-dark); font-size: 1rem; line-height: 1.65; }
body.page-w173a .w173a-faq__list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
body.page-w173a .w173a-faq__list .faq-item {
  background: var(--surface);
  padding: 22px 26px;
  border-left: 3px solid var(--primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
body.page-w173a .w173a-faq__list .faq-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 0 0 10px;
}
body.page-w173a .w173a-faq__list .faq-item p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

body.page-w173a .w173a-cta { color: var(--primary-ink); }
body.page-w173a .w173a-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
body.page-w173a .w173a-cta__title {
  color: var(--primary-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0 0 14px;
}
body.page-w173a .w173a-cta__lede {
  color: var(--primary-ink);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 24px;
  opacity: 0.92;
}
body.page-w173a .w173a-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
body.page-w173a .w173a-cta__actions a[href^="tel:"] { white-space: nowrap; }
body.page-w173a .w173a-cta__note {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-ink);
  opacity: 0.7;
  margin: 0;
}
body.page-w173a .site-footer__tagline,
body.page-w173a .site-footer__hours {
  color: var(--background) !important;
  font-style: italic;
}

@media (max-width: 860px) {
  body.page-w173a .w173a-scenario__list { grid-template-columns: 1fr; }
  body.page-w173a .w173a-specs__row {
    grid-template-columns: 50px 1fr;
    row-gap: 6px;
    padding: 14px 16px;
  }
  body.page-w173a .w173a-specs__row--head { display: none; }
}

/* =========================================================
   page-salle — Location de salle (service detail, no image)
   ========================================================= */
body.page-salle .hero--salle {
  position: relative;
  min-height: clamp(440px, 62vh, 620px);
  background-color: var(--secondary);
  color: #fff;
  overflow: hidden;
}
body.page-salle .hero--salle .hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
body.page-salle .hero--salle .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-salle .hero--salle .hero__inner {
  padding-block: clamp(70px, 10vh, 120px);
  position: relative;
  z-index: 3;
}
body.page-salle .salle-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.20) 60%);
  z-index: 2;
  pointer-events: none;
}
body.page-salle .hero--salle .hero__title,
body.page-salle .hero--salle .hero__lede,
body.page-salle .hero--salle .hero__eyebrow {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
body.page-salle .hero--salle .hero__title em {
  color: rgba(var(--primary-rgb), 1);
  background: linear-gradient(180deg, transparent 60%, rgba(var(--primary-rgb), 0.25) 60%);
  padding: 0 0.15em;
  font-style: italic;
}

/* Section: intro (answer-first) */
body.page-salle .salle-intro__wrap {
  max-width: 900px;
  margin: 0 auto;
}
body.page-salle .salle-intro__head { margin-bottom: 1.5rem; }
body.page-salle .salle-intro__answer {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: inherit;
}

/* Section: programs (three blocks) */
body.page-salle .salle-programs__head { max-width: 780px; margin-bottom: 2.5rem; }
body.page-salle .salle-programs__lede { color: inherit; opacity: 0.85; }
body.page-salle .salle-programs__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  body.page-salle .salle-programs__grid { grid-template-columns: repeat(3, 1fr); }
}
body.page-salle .salle-program {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 3px solid var(--primary);
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
body.page-salle .salle-program__tag {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
body.page-salle .salle-program__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  margin: 0;
  line-height: 1.25;
}
body.page-salle .salle-program__desc {
  margin: 0;
  line-height: 1.6;
  color: inherit;
}

/* Section: flexibility (ordered list w/ letter numbers) */
body.page-salle .salle-flex__wrap {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  body.page-salle .salle-flex__wrap { grid-template-columns: 1fr 1.35fr; align-items: start; }
}
body.page-salle .salle-flex__head { max-width: 480px; }
body.page-salle .salle-flex__lede { color: inherit; opacity: 0.85; }
body.page-salle ol.salle-flex__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
body.page-salle .salle-flex__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.25rem;
}
body.page-salle .salle-flex__item:first-child { border-top: none; padding-top: 0; }
body.page-salle .salle-flex__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1;
  font-style: italic;
  font-weight: 700;
}
body.page-salle .salle-flex__item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0 0 0.35rem 0;
}
body.page-salle .salle-flex__item p { margin: 0; line-height: 1.6; }

/* Section: location (no map, no address) */
body.page-salle .salle-location__wrap {
  max-width: 820px;
  margin: 0 auto;
}
body.page-salle .salle-location__head { margin-bottom: 1.25rem; }
body.page-salle .salle-location__answer {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: inherit;
  margin: 0 0 1rem 0;
}
body.page-salle .salle-location__note {
  font-size: 0.9rem;
  opacity: 0.72;
  font-style: italic;
  margin: 0;
}

/* Section: FAQ */
body.page-salle .salle-faq__wrap { max-width: 900px; margin: 0 auto; }
body.page-salle .salle-faq__head { margin-bottom: 2rem; }
body.page-salle .salle-faq__lede { color: inherit; opacity: 0.85; }
body.page-salle .salle-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.page-salle .salle-faq__item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1.1rem, 2vw, 1.6rem);
}
body.page-salle .salle-faq__item h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  margin: 0 0 0.6rem 0;
  line-height: 1.35;
}
body.page-salle .salle-faq__item p {
  margin: 0;
  line-height: 1.65;
  color: inherit;
}

/* Section: final CTA */
body.page-salle .salle-cta {
  position: relative;
  background-color: var(--secondary);
  color: #fff;
  overflow: hidden;
}
body.page-salle .salle-cta__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
body.page-salle .salle-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-salle .salle-cta__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%),
    radial-gradient(ellipse at 25% 30%, rgba(var(--primary-rgb), 0.32), transparent 55%);
  pointer-events: none;
}
body.page-salle .salle-cta > .container {
  position: relative;
  z-index: 3;
}
body.page-salle .salle-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding-block: clamp(1rem, 2vw, 1.5rem);
}
body.page-salle .salle-cta .eyebrow { color: rgba(255,255,255,0.7); }
body.page-salle .salle-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0.5rem 0 1rem 0;
  color: #fff;
  line-height: 1.2;
}
body.page-salle .salle-cta__title em {
  font-style: italic;
  color: rgba(var(--primary-rgb), 1);
  background: linear-gradient(180deg, transparent 62%, rgba(var(--primary-rgb), 0.35) 62%);
  padding: 0 0.15em;
}
body.page-salle .salle-cta__lede {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  margin: 0 auto 1.5rem;
  max-width: 640px;
}
body.page-salle .salle-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
body.page-salle .salle-cta__phone {
  white-space: nowrap;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
body.page-salle .salle-cta__phone:hover,
body.page-salle .salle-cta__phone:focus {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
body.page-salle .salle-cta__note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}
body.page-salle .salle-cta__note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.page-salle .salle-cta__note a:hover,
body.page-salle .salle-cta__note a:focus { color: rgba(var(--primary-rgb), 1); }

/* Phone link — differentiated from primary CTA button, icon-led, less button-like */
body.page-salle .salle-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
body.page-salle .salle-phone-link span {
  white-space: nowrap;
}
body.page-salle .salle-phone-link:hover,
body.page-salle .salle-phone-link:focus {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.85);
  background: transparent;
}
body.page-salle .salle-phone-link__icon {
  flex-shrink: 0;
  opacity: 0.9;
}
body.page-salle .hero--salle .hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* Hero texture — subtle diagonal linework, breaks solid dark fill */
body.page-salle .hero--salle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 22px
    ),
    radial-gradient(circle at 15% 25%, rgba(var(--primary-rgb), 0.18) 0, transparent 38%),
    radial-gradient(circle at 85% 75%, rgba(var(--primary-rgb), 0.14) 0, transparent 42%);
  pointer-events: none;
  opacity: 0.9;
}
body.page-salle .hero--salle::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Trust strip — source-grounded, sits between hero and intro */
body.page-salle .salle-trust {
  background: var(--background);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-block: clamp(1.25rem, 2.4vw, 1.75rem);
}
body.page-salle .salle-trust__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
}
@media (min-width: 640px) {
  body.page-salle .salle-trust__list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  body.page-salle .salle-trust__list { grid-template-columns: repeat(4, 1fr); }
}
body.page-salle .salle-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.35rem 0;
}
body.page-salle .salle-trust__icon {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
body.page-salle .salle-trust__item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}
body.page-salle .salle-trust__item span {
  display: block;
  font-size: 0.83rem;
  line-height: 1.45;
  opacity: 0.72;
}

/* Program-card icons — variety, addresses flat_section_rhythm */
body.page-salle .salle-program__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.10);
  color: var(--primary);
  margin-bottom: 0.15rem;
}

/* betterly-css-safety-net:start */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img, .hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 760px) {
  .intro-grid,
  .founder-grid,
  .visit-grid,
  .feature-grid,
  .trust-grid,
  .value-grid,
  .value__grid,
  .program-grid,
  .pillar-grid,
  .link-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .value__list,
  .values-list,
  .trust-list,
  .checklist,
  .bullets {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    display: grid;
  }
  .cta-banner-inner {
    display: grid;
  }
}
/* betterly-css-safety-net:end */

/* W175 generated nav submenu */
.generated-nav-parent { position: relative; }
.generated-nav-submenu {
  display: none;
  position: absolute;
  z-index: 1000;
  inset-block-start: 100%;
  inset-inline-start: 0;
  min-width: max-content;
  max-width: min(20rem, calc(100vw - 2rem));
  margin: 0;
  padding: .5rem;
  list-style: none;
  background: var(--background, Canvas);
  color: var(--text, inherit);
  box-shadow: 0 .5rem 1.5rem rgb(0 0 0 / 15%);
}
.generated-nav-parent:hover > .generated-nav-submenu,
.generated-nav-parent:focus-within > .generated-nav-submenu { display: block; }
@media (max-width: 900px) {
  .generated-nav-submenu {
    display: block;
    position: static;
    min-width: 0;
    max-width: 100%;
    box-shadow: none;
  }
}

/* W176 generated nav submenu theme:begin */
.generated-nav-submenu {
  box-sizing: border-box;
  background: var(--background, Canvas);
  color: var(--text, inherit);
  border: 1px solid var(--border-light, var(--border, currentColor));
  border-radius: var(--radius, .5rem);
  font-family: var(--font-sans, inherit);
  overflow-wrap: anywhere;
}
.generated-nav-submenu > li { margin: 0; padding: 0; }
.generated-nav-submenu > li > a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: .65rem .85rem;
  color: var(--text, inherit);
  font-family: var(--font-sans, inherit);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}
.generated-nav-submenu > li > a:hover {
  background: transparent;
  background: var(--bg-alt, color-mix(in srgb, currentColor 8%, transparent));
  color: var(--primary, currentColor);
}
.generated-nav-submenu > li > a:focus-visible {
  outline: 2px solid var(--primary, currentColor);
  outline-offset: -2px;
  background: transparent;
  background: var(--bg-alt, color-mix(in srgb, currentColor 8%, transparent));
}
/* W176 generated nav submenu theme:end */

