/* ===========================================================
   BEAUPRÉ AVOCATS — Cabinet d'affaires premium
   Magazine business · Navy + Or + Ivoire · Fraunces + Inter
   =========================================================== */

:root {
  --navy: #0a1929;
  --navy-soft: #142a44;
  --navy-line: #1e3658;
  --gold: #c9a063;
  --gold-deep: #a07f44;
  --gold-soft: #c9a06316;
  --ivory: #faf6ef;
  --ivory-warm: #f3ead8;
  --charcoal: #1a1a1f;
  --grey-700: #475569;
  --grey-500: #64748b;
  --grey-300: #cbd5e1;
  --grey-200: #e2e8f0;
  --grey-100: #f1f5f9;
  --green: #16a34a;
  --shadow-sm: 0 2px 12px rgba(10, 25, 41, 0.06);
  --shadow-md: 0 12px 28px rgba(10, 25, 41, 0.10);
  --shadow-lg: 0 24px 60px -20px rgba(10, 25, 41, 0.30);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(80px, 11vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--navy); padding: 12px 20px; font-weight: 600; z-index: 9999; }
.skip-link:focus { left: 16px; top: 16px; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px var(--gutter);
  border-bottom-color: rgba(10, 25, 41, 0.08);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { display: inline-flex; width: 38px; height: 38px; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__group { display: flex; flex-direction: column; line-height: 1.1; }
.brand__word { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; letter-spacing: -0.01em; color: var(--navy); }
.brand__sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-deep); font-weight: 600; margin-top: 2px; }
.brand--lg .brand__mark { width: 44px; height: 44px; }
.brand--lg .brand__word { font-size: 1.7rem; }

.primary-nav { display: none; }
@media (min-width: 1024px) { .primary-nav { display: block; } }
.primary-nav ul { display: flex; gap: 34px; list-style: none; padding: 0; margin: 0; }
.primary-nav a { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--navy); transition: color 0.2s ease; position: relative; padding: 4px 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.primary-nav a:hover::after { transform: scaleX(1); }

.cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
}
.cta--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.cta--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ivory); }
.cta--ghost-light { background: transparent; color: var(--ivory); border-color: rgba(255, 255, 255, 0.4); }
.cta--ghost-light:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--ivory); }
.cta--ghost-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.cta--ghost-dark:hover { background: var(--navy); color: var(--ivory); }
.cta--lg { padding: 16px 30px; font-size: 14px; }
.cta--full { width: 100%; }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--navy);
  border-radius: 4px;
}
.burger span { display: block; height: 1.5px; width: 18px; background: var(--navy); margin: 0 auto; transition: transform 0.3s ease, opacity 0.3s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 1024px) { .burger { display: none; } }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--navy); color: var(--ivory);
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu:not([hidden]) { opacity: 1; pointer-events: auto; }
.mobile-menu nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu nav a {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 7vw, 3rem); line-height: 1.1; color: var(--ivory);
  transform: translateX(-20px); opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: calc(0.05s * var(--i, 0));
}
.mobile-menu:not([hidden]) nav a { transform: none; opacity: 1; }
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s; }
.mobile-menu:not([hidden]) .mobile-menu__foot { opacity: 1; transform: none; }
.mobile-menu__addr { font-size: 13px; color: rgba(250,246,239,0.6); margin: 0; line-height: 1.6; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: clamp(140px, 18vw, 220px) var(--gutter) 0;
  background: var(--navy);
  color: var(--ivory);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(201,160,99,0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201,160,99,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(201,160,99,0.20) 30%, rgba(201,160,99,0.20) 70%, transparent);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; gap: 56px;
  align-items: center;
  padding-bottom: clamp(80px, 12vw, 140px);
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}
.hero__content { max-width: 720px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin: 24px 0 28px;
}
.hero__title em { color: var(--gold); font-style: italic; font-weight: 500; }
.hero__lede { font-size: 17px; line-height: 1.7; color: rgba(250,246,239,0.78); max-width: 580px; margin: 0 0 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero__proof { display: flex; align-items: center; gap: 14px; padding-top: 28px; border-top: 1px solid rgba(201,160,99,0.25); }
.proof__star { color: var(--gold); font-size: 13px; letter-spacing: 0.2em; }
.proof__txt { font-size: 13px; color: rgba(250,246,239,0.68); }
.proof__txt em { color: var(--ivory); font-style: italic; font-weight: 500; font-family: var(--font-display); }

/* Hero card (sidebar) */
.hero__card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--gold);
  padding: 36px 32px;
  color: var(--ivory);
}
.hero__card-decor {
  position: absolute; top: -8px; right: -8px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.hero__card-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); font-weight: 700; margin: 0 0 14px; }
.hero__card-title { font-family: var(--font-display); font-weight: 500; font-size: 32px; line-height: 1.1; color: var(--ivory); margin: 0 0 24px; letter-spacing: -0.01em; }
.hero__card-list { list-style: none; padding: 0; margin: 0 0 28px; }
.hero__card-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13.5px; color: rgba(250,246,239,0.85); }
.hero__card-list svg { color: var(--gold); flex-shrink: 0; }
.hero__card-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: 13.5px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); width: 100%; }
.hero__card-cta:hover { color: var(--ivory); }

/* Awards band */
.hero__awards {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px;
  padding: 24px 0 36px;
  border-top: 1px solid rgba(201,160,99,0.18);
  font-size: 12px;
  color: rgba(250,246,239,0.62);
}
.awards__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); font-weight: 700; }
.awards__item em { color: var(--ivory); font-style: italic; font-family: var(--font-display); font-weight: 500; }
.awards__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(201,160,99,0.4); }

/* Eyebrow component (générique) */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow--gold { color: var(--gold); }
.eyebrow--dark { color: var(--navy); }
.eyebrow__line { display: inline-block; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }

/* ===========================================================
   STATS (compteurs)
   =========================================================== */
.stats {
  background: var(--navy);
  color: var(--ivory);
  padding: 0 var(--gutter) clamp(60px, 9vw, 100px);
  position: relative;
}
.stats__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201,160,99,0.18);
}
@media (max-width: 920px) { .stats__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats__inner { grid-template-columns: 1fr; } }
.stat {
  padding: 40px 32px;
  border-right: 1px solid rgba(201,160,99,0.15);
  text-align: left;
}
.stat:last-child { border-right: none; }
@media (max-width: 920px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(201,160,99,0.15); }
}
@media (max-width: 480px) {
  .stat { border-right: none; border-bottom: 1px solid rgba(201,160,99,0.15); }
  .stat:last-child { border-bottom: none; }
}
.stat__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  color: var(--gold);
  line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat__label { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--ivory); margin: 0 0 6px; letter-spacing: -0.005em; }
.stat__sub { font-size: 12.5px; color: rgba(250,246,239,0.58); margin: 0; line-height: 1.55; }

/* ===========================================================
   SECTIONS GENERIC
   =========================================================== */
.section { padding: var(--section-pad) 0; }
.section--expertises, .section--insights, .section--booking { background: var(--ivory); color: var(--charcoal); }
.section--dossiers { background: var(--navy); color: var(--ivory); }
.section--team { background: var(--ivory-warm); }
.section--contact { background: var(--ivory); color: var(--charcoal); }

.section__head { max-width: 760px; margin: 0 auto clamp(56px, 8vw, 88px); padding: 0 var(--gutter); text-align: center; }
.section__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.02em; margin: 18px 0 22px; color: var(--navy); }
.section--dossiers .section__title { color: var(--ivory); }
.section__title em { color: var(--gold); font-style: italic; font-weight: 500; }
.section--dossiers .section__title em { color: var(--gold); }
.section__lede { font-size: 17px; line-height: 1.65; color: var(--grey-700); }
.section--dossiers .section__lede { color: rgba(250,246,239,0.72); }

/* ===========================================================
   EXPERTISES (accordéon)
   =========================================================== */
.expertises {
  max-width: 960px; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-direction: column;
}
.expertise {
  border-bottom: 1px solid var(--grey-200);
  transition: background 0.25s;
}
.expertise:first-child { border-top: 1px solid var(--grey-200); }
.expertise[data-open="true"] { background: var(--ivory-warm); }
.expertise__head {
  display: grid; grid-template-columns: 60px 1fr 32px;
  gap: 20px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 28px 12px;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.25s;
}
.expertise__head:hover { color: var(--gold-deep); }
.expertise__num { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--gold); font-weight: 600; }
.expertise__title-row { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.expertise__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2.2vw, 1.6rem); letter-spacing: -0.01em; color: var(--navy); }
.expertise__tags { font-size: 12.5px; color: var(--grey-500); letter-spacing: 0.02em; }
.expertise__chev { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: var(--navy); transition: transform 0.35s; }
.expertise[data-open="true"] .expertise__chev { transform: rotate(180deg); color: var(--gold); }
.expertise__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 12px 0 92px;
}
.expertise[data-open="true"] .expertise__body { max-height: 800px; }
.expertise__body > * { transition: opacity 0.35s 0.05s; opacity: 0; }
.expertise[data-open="true"] .expertise__body > * { opacity: 1; }
.expertise__body p { color: var(--grey-700); font-size: 15px; line-height: 1.75; margin: 0 0 18px; }
.expertise__body p:last-child { margin-bottom: 28px; }
.expertise__list { list-style: none; padding: 0; margin: 0 0 18px; columns: 2; column-gap: 28px; }
@media (max-width: 720px) { .expertise__list { columns: 1; } }
.expertise__list li { padding: 4px 0 4px 20px; position: relative; font-size: 14px; color: var(--navy); break-inside: avoid; }
.expertise__list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.expertise__lead { color: var(--navy); font-size: 13.5px; padding: 12px 14px; background: var(--gold-soft); border-left: 2px solid var(--gold); }
.expertise__lead strong { color: var(--gold-deep); }

/* ===========================================================
   DOSSIERS (sur fond navy)
   =========================================================== */
.dossiers {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 28px;
}
@media (min-width: 920px) { .dossiers { grid-template-columns: repeat(3, 1fr); } }
.dossier {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(201,160,99,0.25);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.4s, border-color 0.4s;
}
.dossier:hover { transform: translateY(-4px); border-color: var(--gold); }
.dossier__head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(201,160,99,0.15); }
.dossier__tag { display: inline-block; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 10px; }
.dossier__sector { font-size: 11.5px; color: rgba(250,246,239,0.55); font-style: italic; }
.dossier__title { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--ivory); margin: 0 0 14px; line-height: 1.25; letter-spacing: -0.01em; }
.dossier__desc { font-size: 14px; line-height: 1.65; color: rgba(250,246,239,0.7); margin: 0 0 24px; }
.dossier__results { display: grid; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(201,160,99,0.15); }
.dossier__result { display: flex; align-items: baseline; gap: 12px; }
.dossier__result-num { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--gold); flex-shrink: 0; min-width: 80px; letter-spacing: -0.01em; }
.dossier__result-label { font-size: 12.5px; color: rgba(250,246,239,0.65); line-height: 1.5; }

/* ===========================================================
   TEAM
   =========================================================== */
.team {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 32px;
}
@media (min-width: 920px) { .team { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.member { background: var(--ivory); border: 1px solid var(--grey-200); transition: transform 0.4s, box-shadow 0.4s; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.member__media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--grey-100); position: relative; }
.member__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); filter: grayscale(0.4); }
.member:hover .member__media img { transform: scale(1.04); filter: grayscale(0); }
.member__body { padding: 28px 28px 32px; }
.member__role { display: inline-block; background: var(--navy); color: var(--gold); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; padding: 5px 10px; margin-bottom: 16px; }
.member__name { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--navy); margin: 0 0 6px; letter-spacing: -0.01em; }
.member__spec { font-size: 13px; color: var(--gold-deep); font-style: italic; margin: 0 0 22px; font-family: var(--font-display); }
.member__details { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--grey-200); padding-top: 18px; }
.member__details li { padding: 7px 0; font-size: 13px; color: var(--grey-700); display: grid; grid-template-columns: 90px 1fr; gap: 12px; line-height: 1.5; }
.member__details strong { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-deep); font-weight: 700; letter-spacing: 0.15em; }

/* ===========================================================
   INSIGHTS
   =========================================================== */
.insights-filters {
  max-width: var(--max-w); margin: 0 auto 40px; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--grey-300);
  color: var(--grey-700);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.is-active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.insights {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 28px;
}
@media (min-width: 720px) { .insights { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .insights { grid-template-columns: repeat(3, 1fr); } }
.insight {
  background: var(--ivory); border: 1px solid var(--grey-200);
  display: flex; flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s;
}
.insight.is-hidden { display: none; }
.insight:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.insight__media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; background: var(--navy); }
.insight__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.0s; filter: brightness(0.85); }
.insight:hover .insight__media img { transform: scale(1.05); filter: brightness(1); }
.insight__cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 10px; }
.insight__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.insight__date { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-deep); font-weight: 600; margin-bottom: 12px; }
.insight__title { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--navy); margin: 0 0 12px; line-height: 1.3; letter-spacing: -0.005em; }
.insight__desc { font-size: 13.5px; line-height: 1.65; color: var(--grey-700); margin: 0; }

/* ===========================================================
   BOOKING WIDGET
   =========================================================== */
.booking {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .booking { grid-template-columns: 1fr 1fr; gap: 64px; } }
.booking__intro .section__title { text-align: left; }
.booking__lede { font-size: 16px; color: var(--grey-700); margin: 16px 0 28px; line-height: 1.7; }
.booking__features { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.booking__features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--navy); padding: 12px 16px; background: var(--ivory-warm); border-left: 2px solid var(--gold); }
.booking__features svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.booking__widget { background: var(--navy); color: var(--ivory); padding: 36px 32px; position: relative; }
.booking__widget::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 4px; background: var(--gold); }
.booking__widget-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.booking__widget-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); font-weight: 700; }
.booking__widget-nav { display: flex; align-items: center; gap: 14px; }
.booking__widget-nav button { width: 30px; height: 30px; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,160,99,0.3); color: var(--gold); cursor: pointer; font-size: 16px; transition: background 0.2s; font-family: inherit; }
.booking__widget-nav button:hover { background: rgba(201,160,99,0.15); }
.booking__widget-nav span { font-size: 13px; color: rgba(250,246,239,0.78); min-width: 130px; text-align: center; font-weight: 500; }

.cal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 24px; }
.cal-day { background: rgba(255,255,255,0.04); padding: 12px 6px; text-align: center; border: 1px solid transparent; }
.cal-day__name { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,246,239,0.55); font-weight: 600; margin-bottom: 4px; }
.cal-day__num { font-family: var(--font-display); font-size: 18px; color: var(--ivory); margin-bottom: 10px; font-weight: 500; }
.cal-slots { display: flex; flex-direction: column; gap: 4px; }
.cal-slot { background: rgba(201,160,99,0.1); color: var(--gold); font-size: 11px; padding: 5px; border: 1px solid rgba(201,160,99,0.3); cursor: pointer; transition: all 0.2s; font-family: inherit; }
.cal-slot:hover { background: rgba(201,160,99,0.25); }
.cal-slot.is-selected { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }
.cal-slot.is-disabled { opacity: 0.25; cursor: not-allowed; }

.booking__widget-hint { font-size: 12px; color: rgba(250,246,239,0.55); margin: 0 0 16px; padding: 12px 14px; background: rgba(201,160,99,0.08); border-left: 2px solid var(--gold); }
.booking__widget-hint strong { color: var(--gold); }

/* ===========================================================
   MULTI-STEP FORM
   =========================================================== */
.multi-step { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.steps-bar { margin-bottom: 40px; padding-top: 8px; }
.steps-bar__progress { height: 2px; background: var(--gold); transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); margin-bottom: 14px; }
.steps-bar__labels { display: flex; justify-content: space-between; gap: 8px; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.steps-bar__label { color: var(--grey-500); transition: color 0.3s; }
.steps-bar__label.is-active { color: var(--gold-deep); }

.step { border: none; padding: 0; margin: 0; display: none; }
.step.is-active { display: block; animation: stepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.step__legend { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--navy); margin-bottom: 28px; letter-spacing: -0.01em; }

.radio-grid { display: grid; gap: 12px; margin-bottom: 32px; }
@media (min-width: 720px) { .radio-grid { grid-template-columns: 1fr 1fr; } }
.radio-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px;
  background: var(--ivory);
  border: 1.5px solid var(--grey-200);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card:hover { border-color: var(--gold); }
.radio-card:has(input:checked) { border-color: var(--navy); background: var(--ivory-warm); }
.radio-card__title { font-weight: 600; color: var(--navy); font-size: 14.5px; }
.radio-card__sub { font-size: 12.5px; color: var(--grey-500); }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-deep); font-weight: 700; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--ivory);
  border: 1.5px solid var(--grey-200);
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--navy);
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field__hint { font-size: 11.5px; color: var(--grey-500); margin: 6px 0 0; font-style: italic; }
.checkbox-card {
  display: flex; gap: 12px; padding: 14px 16px;
  background: var(--ivory-warm); border: 1px solid var(--grey-200);
  cursor: pointer;
  font-size: 13px; color: var(--grey-700); line-height: 1.55;
}
.checkbox-card input { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.step__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--grey-200); }

.form__success { background: rgba(22,163,74,0.08); color: var(--green); padding: 14px 18px; margin-top: 18px; font-weight: 500; font-size: 14px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--navy); color: var(--ivory); padding: 64px var(--gutter) 32px; }
.site-footer__inner { max-width: var(--max-w); margin: 0 auto; display: grid; gap: 48px; margin-bottom: 48px; }
@media (min-width: 920px) { .site-footer__inner { grid-template-columns: 1fr 1.4fr; gap: 80px; } }
.site-footer__tag { color: rgba(250,246,239,0.6); font-size: 14px; line-height: 1.6; margin: 16px 0 0; max-width: 280px; font-style: italic; }
.site-footer__cols { display: grid; gap: 40px; }
@media (min-width: 720px) { .site-footer__cols { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.site-footer__col-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); font-weight: 700; margin: 0 0 14px; }
.site-footer__cols ul { list-style: none; padding: 0; margin: 0; }
.site-footer__cols li { padding: 5px 0; font-size: 13.5px; color: rgba(250,246,239,0.72); line-height: 1.6; }
.site-footer__cols a { color: rgba(250,246,239,0.72); transition: color 0.2s; }
.site-footer__cols a:hover { color: var(--gold); }
.site-footer__cols strong { color: var(--ivory); font-weight: 600; font-family: var(--font-display); }
.site-footer__legal { max-width: var(--max-w); margin: 0 auto; padding-top: 32px; border-top: 1px solid rgba(201,160,99,0.18); font-size: 11.5px; color: rgba(250,246,239,0.4); letter-spacing: 0.04em; text-align: center; }

/* ===========================================================
   REVEAL ON SCROLL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===========================================================
   STICKY CTA mobile
   =========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 12px 22px;
  font-weight: 700; font-size: 13px;
  border: 1px solid var(--gold);
  z-index: 80;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  box-shadow: var(--shadow-md);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta svg { width: 14px; height: 14px; }
@media (min-width: 1024px) { .sticky-cta { display: none; } }
