/* ============================================================
   Elysian Le Fleur — Statement Luxury
   Production stylesheet. Tokens per design handoff §4.
   Palette: Champagne (default — do not swap without approval)
   ============================================================ */

:root {
  /* Color */
  --ink:        #3D2A2C;
  --ink-soft:   #5C3E40;
  --blush:      #EDE3DA;
  --blush-deep: #E1D3C7;
  --cream:      #F6EFE6;
  --sage:       #5A6B58;
  --sage-deep:  #3F4E3E;
  --rose:       #BFA09A;
  --rose-deep:  #9B7E78;
  --accent:     #C9A86A;
  --accent-soft:#E6D3A8;
  --lavender:   #D9C9DD;

  /* Type */
  --font-display: 'Instrument Serif', 'Cormorant Garamond', serif;
  --font-body:    'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-script:  'Pinyon Script', cursive;

  /* Layout */
  --container: 1248px;
  --side-pad: 64px;

  /* Radius */
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-pill: 999px;

  /* Hairlines */
  --line-cream: rgba(246,239,230,0.15);
  --line-gold:  rgba(201,168,106,0.32);
  --line-ink:   rgba(61,42,44,0.16);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
em { font-style: italic; }
h1, h2, h3 { font-weight: 400; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── Utility ───────────────────────────────────────────── */
.wrap { max-width: var(--container); margin: 0 auto; }
.pad  { padding-left: var(--side-pad); padding-right: var(--side-pad); }
@media (max-width: 720px) { :root { --side-pad: 24px; } }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 20px;
}
.eyebrow--light { color: var(--rose-deep); }

.script { font-family: var(--font-script); line-height: 1; }

.display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 0.96;
}
.display em { color: var(--accent); }
.on-light .display em, .display.on-light em { color: var(--sage-deep); }

/* ── Buttons (CTA atom) ────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 34px; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.cta--accent { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.cta--accent:hover { background: var(--accent-soft); border-color: var(--accent-soft); }
.cta--ghost { background: transparent; color: var(--cream); border-color: rgba(246,239,230,0.45); }
.cta--ghost:hover { border-color: var(--accent); color: var(--accent); }
.cta--ghost-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta--ghost-ink:hover { border-color: var(--accent); color: var(--sage-deep); }
.cta--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cta--ink:hover { background: var(--ink-soft); }
.cta--sm { padding: 12px 22px; font-size: 12px; }

/* ── Divider atom ──────────────────────────────────────── */
.divider { display: flex; align-items: center; gap: 14px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: 0.25; }
.divider span { width: 6px; height: 6px; transform: rotate(45deg); background: currentColor; opacity: 0.6; }

/* ── Announcement bar ──────────────────────────────────── */
.announce {
  background: var(--blush); color: var(--ink);
  padding: 12px var(--side-pad);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.announce .dim { opacity: 0.7; }
.announce .star { color: var(--accent); }
.announce-center { display: flex; align-items: center; gap: 10px; text-align: center; }
@media (max-width: 900px) {
  .announce .dim { display: none; }
  .announce { justify-content: center; }
}

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  padding: 22px var(--side-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-bottom: 1px solid var(--line-cream);
}
.nav__logo img { height: 52px; width: auto; }
.nav__links {
  display: flex; gap: 38px; align-items: center;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
}
.nav__links a { color: var(--cream); opacity: 0.85; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
.nav__links a:hover { color: var(--accent); opacity: 1; }
.nav__links a[aria-current="page"] { color: var(--accent); opacity: 1; }
.nav__toggle { display: none; }

/* Experiences dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--cream); opacity: 0.85;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.nav__dropdown-btn:hover { color: var(--accent); opacity: 1; }
.nav__dropdown-btn:focus-visible {
  color: var(--accent); opacity: 1;
  outline: 1px solid var(--accent); outline-offset: 4px; border-radius: 2px;
}
.nav__dropdown-btn .chev {
  display: inline-block; width: 10px; height: 6px; flex-shrink: 0;
  transition: transform 0.2s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23F6EFE6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.nav__dropdown.is-open .nav__dropdown-btn .chev { transform: rotate(180deg); }
.nav__dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--ink); border: 1px solid var(--line-gold);
  min-width: 220px; padding: 8px 0;
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 100;
}
.nav__dropdown.is-open .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block; padding: 11px 20px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); opacity: 0.8; text-decoration: none;
  transition: color 0.15s, opacity 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover { color: var(--accent); opacity: 1; background: rgba(201,168,106,0.07); }

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; padding: 16px var(--side-pad); }
  .nav__logo img { height: 40px; }
  .nav__toggle {
    display: inline-flex; background: none; border: 1px solid rgba(246,239,230,0.4);
    color: var(--cream); border-radius: var(--r-pill); padding: 10px 16px;
    font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
  }
  .nav__links {
    display: none; width: 100%; flex-direction: column; gap: 18px; padding: 18px 0 6px;
    border-top: 1px solid var(--line-cream); margin-top: 14px;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__cta { display: none; }
  .nav.is-open .nav__cta { display: inline-flex; margin-top: 4px; }
  .nav__dropdown-menu {
    position: static; transform: none; border: none; box-shadow: none;
    background: none; padding: 0 0 0 16px; min-width: unset; z-index: auto;
  }
  .nav__dropdown.is-open .nav__dropdown-menu { display: block; }
  .nav__dropdown-menu a { padding: 6px 0; }
  .nav__dropdown-btn .chev { display: none; }
}

/* ── Split hero (home) ─────────────────────────────────── */
.hero-split { display: grid; grid-template-columns: 1fr 1.04fr; min-height: 780px; }
.hero-split__panel {
  position: relative; background: var(--ink);
  padding: 104px 72px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-split__rule { position: absolute; left: 72px; top: 64px; width: 72px; height: 1px; background: var(--accent); }
.hero-split__eyebrow { font-size: 11px; letter-spacing: 0.4em; color: var(--accent); text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.hero-split__script { font-size: clamp(34px, 3.6vw, 52px); color: var(--accent-soft); margin-bottom: 8px; }
.hero-split h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.6vw, 108px);
  line-height: 0.92; letter-spacing: -0.025em;
  color: var(--cream); margin: 0 0 26px;
}
.hero-split h1 em { color: var(--accent); }
.hero-split__body { max-width: 500px; font-size: 17px; line-height: 1.7; opacity: 0.86; margin: 0 0 38px; }
.hero-split__ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-split__media { position: relative; overflow: hidden; background: var(--ink); min-height: 480px; }
.hero-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nameplate {
  position: absolute; left: 32px; bottom: 32px;
  background: var(--accent); color: var(--ink); padding: 14px 22px;
}
.nameplate__title { font-family: var(--font-display); font-size: 22px; font-style: italic; line-height: 1; }
.nameplate__sub { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; margin-top: 5px; opacity: 0.75; }
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; min-height: 0; }
  .hero-split__panel { padding: 72px var(--side-pad) 56px; }
  .hero-split__rule { left: var(--side-pad); top: 40px; }
}

/* ── Metric strip ──────────────────────────────────────── */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); border-top: 1px solid var(--line-gold); }
.metrics__item { padding: 28px 40px; display: flex; align-items: baseline; gap: 14px; }
.metrics__item + .metrics__item { border-left: 1px solid var(--line-cream); }
.metrics__n { font-family: var(--font-display); font-size: 40px; color: var(--accent); line-height: 1; }
.metrics__n--i { font-style: italic; }
.metrics__l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.75; }
@media (max-width: 980px) {
  .metrics { grid-template-columns: 1fr 1fr; }
  .metrics__item { padding: 22px var(--side-pad); }
  .metrics__item + .metrics__item { border-left: none; }
  .metrics__item:nth-child(even) { border-left: 1px solid var(--line-cream); }
  .metrics__item:nth-child(n+3) { border-top: 1px solid var(--line-cream); }
}

/* ── Signature band ────────────────────────────────────── */
.sigband { background: var(--ink); padding: 48px var(--side-pad); border-bottom: 1px solid rgba(246,239,230,0.1); }
.sigband__row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.sigband__kicker { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.sigband__tag { font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); color: var(--cream); }
.sigband__tag--i { font-style: italic; }
.sigband__dot { width: 4px; height: 4px; background: var(--accent); border-radius: var(--r-pill); }

/* ── Sections ──────────────────────────────────────────── */
.section { padding: 112px var(--side-pad); position: relative; }
.section--ink   { background: var(--ink);   color: var(--cream); }
.section--cream { background: var(--cream); color: var(--ink); }
.section--blush { background: var(--blush); color: var(--ink); }
@media (max-width: 720px) { .section { padding: 72px var(--side-pad); } }

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 64px; align-items: end; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(42px, 6vw, 88px); line-height: 0.96; letter-spacing: -0.02em; }
.section-head p { max-width: 480px; font-size: 16px; line-height: 1.7; margin: 0; }
.section--ink .section-head p { opacity: 0.85; }
.section--cream .section-head p, .section--blush .section-head p { color: var(--ink-soft); }
@media (max-width: 980px) { .section-head { grid-template-columns: 1fr; gap: 28px; } }

/* ── Feature two-up (cart section, page heroes) ────────── */
.twoup { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.twoup__title { font-family: var(--font-display); font-size: clamp(48px, 6.6vw, 96px); line-height: 0.95; letter-spacing: -0.02em; }
.twoup__body { font-size: 17px; line-height: 1.75; max-width: 480px; margin: 0 0 32px; }
.section--ink .twoup__body { opacity: 0.88; }
.section--cream .twoup__body, .section--blush .twoup__body { color: var(--ink-soft); }
.twoup__stack { position: relative; height: 680px; }
.twoup__stack img { border-radius: var(--r-sm); border: 1px solid var(--line-gold); object-fit: cover; position: absolute; }
.twoup__stack .ph-a { right: 0; top: 0; width: 68%; height: 84%; }
.twoup__stack .ph-b { left: 0; bottom: 0; width: 46%; height: 52%; }
.twoup__stack .nameplate { left: 24px; top: 40px; bottom: auto; }
.twoup__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .twoup { grid-template-columns: 1fr; gap: 48px; }
  .twoup__stack { height: 440px; }
}

/* spec grid inside two-up */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 480px; margin: 0 0 36px; }
.specs__item { border-top: 1px solid var(--line-gold); padding-top: 14px; }
.specs__t { font-family: var(--font-display); font-size: 21px; margin-bottom: 6px; }
.specs__d { font-size: 13px; opacity: 0.72; line-height: 1.55; }
.section--cream .specs__item, .section--blush .specs__item { border-top-color: rgba(61,42,44,0.25); }
.section--cream .specs__d, .section--blush .specs__d { color: var(--ink-soft); opacity: 1; }
@media (max-width: 520px) { .specs { grid-template-columns: 1fr; } }

/* ── Process rows ──────────────────────────────────────── */
.process { display: grid; }
.process__row {
  display: grid; grid-template-columns: 110px 1fr 1.4fr 1fr;
  align-items: center; gap: 40px; padding: 36px 0;
  border-top: 1px solid rgba(61,42,44,0.18);
}
.process__row:last-child { border-bottom: 1px solid rgba(61,42,44,0.18); }
.process__n { font-family: var(--font-display); font-size: 60px; color: var(--accent); font-style: italic; line-height: 1; }
.process__t { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); line-height: 1.05; }
.process__d { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.process__when { justify-self: end; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rose-deep); }
@media (max-width: 980px) {
  .process__row { grid-template-columns: 72px 1fr; gap: 12px 24px; }
  .process__d { grid-column: 2; }
  .process__when { grid-column: 2; justify-self: start; }
}

/* ── Promo band ────────────────────────────────────────── */
.promo { background: var(--ink); }
.promo .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; }
.promo__cell { padding: 50px 48px; }
.promo__cell:first-child { padding-left: 0; }
.promo__cell + .promo__cell { border-left: 1px solid var(--line-gold); }
.promo__kicker { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; font-weight: 500; }
.promo__big { font-family: var(--font-display); font-size: clamp(34px, 4vw, 54px); line-height: 1; color: var(--cream); }
.promo__t { font-family: var(--font-display); font-size: 24px; color: var(--cream); }
.promo__d { font-size: 13px; color: var(--accent); opacity: 0.85; margin-top: 6px; }
@media (max-width: 980px) {
  .promo .wrap { grid-template-columns: 1fr; }
  .promo__cell { padding: 32px 0; }
  .promo__cell + .promo__cell { border-left: none; border-top: 1px solid var(--line-gold); }
}

/* ── Bordered grid (locations / benefits / gallery) ────── */
.gridframe { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-gold); }
.gridframe__cell { padding: 40px 32px; min-height: 200px; border-right: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); }
.gridframe__cell:nth-child(3n) { border-right: none; }
.gridframe__cell:nth-last-child(-n+3) { border-bottom: none; }
.gridframe__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.gridframe__num { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.gridframe__flag { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.5; }
.gridframe__t { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); line-height: 1.05; margin: 0 0 12px; }
.gridframe__d { font-size: 13px; opacity: 0.7; margin: 0; line-height: 1.55; }
.section--cream .gridframe, .section--blush .gridframe,
.section--cream .gridframe__cell, .section--blush .gridframe__cell { border-color: rgba(61,42,44,0.2); }
.section--cream .gridframe__d, .section--blush .gridframe__d { color: var(--ink-soft); opacity: 1; }
@media (max-width: 980px) {
  .gridframe { grid-template-columns: 1fr 1fr; }
  .gridframe__cell { min-height: 0; }
  .gridframe__cell:nth-child(3n) { border-right: 1px solid var(--line-gold); }
  .gridframe__cell:nth-child(2n) { border-right: none; }
  .gridframe__cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--line-gold); }
  .gridframe__cell:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .gridframe { grid-template-columns: 1fr; }
  .gridframe__cell { border-right: none !important; border-bottom: 1px solid var(--line-gold); }
  .gridframe__cell:last-child { border-bottom: none; }
}

/* ── Numbered list rows (customization) ────────────────── */
.numlist { display: grid; gap: 0; }
.numlist__row {
  display: grid; grid-template-columns: 110px 1fr 1.6fr; gap: 40px;
  align-items: center; padding: 34px 0; border-top: 1px solid var(--line-gold);
}
.numlist__row:last-child { border-bottom: 1px solid var(--line-gold); }
.numlist__n { font-family: var(--font-display); font-size: 56px; font-style: italic; color: var(--accent); line-height: 1; }
.numlist__t { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; }
.numlist__d { font-size: 15px; line-height: 1.65; opacity: 0.85; }
@media (max-width: 980px) {
  .numlist__row { grid-template-columns: 72px 1fr; gap: 10px 24px; }
  .numlist__d { grid-column: 2; }
}

/* ── Compact banner hero ───────────────────────────────── */
.banner { background: var(--ink); padding: 88px var(--side-pad) 96px; text-align: center; }
.banner__crumb { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.banner h1 { font-family: var(--font-display); font-size: clamp(44px, 6vw, 84px); line-height: 0.95; letter-spacing: -0.02em; color: var(--cream); }
.banner h1 em { color: var(--accent); }
.banner__lede { font-size: 16px; opacity: 0.82; margin: 18px auto 0; max-width: 560px; }

/* ── Closing CTA ───────────────────────────────────────── */
.closing { position: relative; overflow: hidden; min-height: 560px; display: grid; place-items: center; }
.closing__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closing__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(45,30,32,0.87), rgba(45,30,32,0.5)); }
.closing__inner { position: relative; padding: 100px var(--side-pad); text-align: center; color: var(--cream); }
.closing__script { font-family: var(--font-script); font-size: clamp(34px, 4vw, 50px); color: var(--accent); line-height: 1; }
.closing h2 { font-family: var(--font-display); font-size: clamp(58px, 9vw, 118px); line-height: 0.92; letter-spacing: -0.02em; margin: 12px 0 26px; }
.closing p { max-width: 560px; margin: 0 auto 36px; font-size: 17px; opacity: 0.9; }
.closing__ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { max-width: 880px; }
.faq details { border-top: 1px solid rgba(61,42,44,0.2); padding: 6px 0; }
.faq details:last-child { border-bottom: 1px solid rgba(61,42,44,0.2); }
.faq summary {
  font-family: var(--font-display); font-size: clamp(21px, 2.4vw, 27px); color: var(--ink);
  padding: 22px 44px 22px 0; cursor: pointer; list-style: none; position: relative; line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 22px; color: var(--accent);
}
.faq details[open] summary::after { content: "–"; }
.faq .faq__a { padding: 0 0 26px; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); max-width: 760px; }

/* ── Forms ─────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 500; margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 16px 18px;
  background: var(--cream); border: 1px solid rgba(61,42,44,0.25); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

/* ── Footer ────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--cream); padding: 60px var(--side-pad) 36px; border-top: 1px solid var(--line-gold); }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--line-cream); }
.footer__blurb { opacity: 0.7; font-size: 14px; line-height: 1.65; max-width: 320px; margin: 18px 0 0; }
.footer__kicker { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-family: var(--font-display); font-size: 19px; opacity: 0.92; text-decoration: none; }
.footer ul a:hover { color: var(--accent); opacity: 1; }
.footer ul .plain { font-family: var(--font-display); font-size: 19px; opacity: 0.92; }
.footer__base { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 11px; opacity: 0.55; letter-spacing: 0.18em; text-transform: uppercase; }
@media (max-width: 980px) { .footer__cols { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer__cols { grid-template-columns: 1fr; } }

/* ── Photo band / gallery ──────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--line-gold); }
.gallery figcaption { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 12px; opacity: 0.7; }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; } }
