/* ==========================================================================
   Semaforo Borbonico dell'Eremita — informational guide
   Palette: Mediterranean Blue / Sicilian Gold / Coastal Sage / Limestone
   Fonts: Cormorant Garamond (display) + Inter (body)
   ========================================================================== */

:root {
  /* === COLOUR ROLES === */
  --c-primary:        #2F6F9F;  /* Mediterranean Blue — CTAs, links */
  --c-primary-deep:   #1F4E72;  /* Deep sea blue — headings on light, hover */
  --c-accent:         #D9A441;  /* Sicilian Gold — icons, decorative */
  --c-accent-bright:  #E6B450;  /* Brighter gold — hero CTA + dark-bg eyebrow */
  --c-cream:          #FAF8F4;  /* Limestone White — base background */
  --c-cream-soft:     #F1ECE3;  /* Sea Mist Beige — alt section bg */
  --c-travertine:     #E4DCCE;  /* Subtle surface / borders */
  --c-travertine-soft:#EDE6D8;  /* Light tan — tan sections + card outer */
  --c-olive:          #5C7062;  /* Coastal Sage (deepened for AA on cream text) */
  --c-olive-deep:     #50624F;  /* Deeper sage — hover / border */
  --c-charcoal:       #2F3338;  /* Volcanic Slate — gallery, footer, body text */
  --c-charcoal-mute:  #5B626E;  /* Weathered Stone (darkened for AA on cream) */
  --c-white:          #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* === SPACING === */
  --section-py: clamp(3rem, 6vw, 5rem);
  --space-xs:   0.5rem;
  --space-sm:   0.875rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  4.5rem;

  /* === LAYOUT === */
  --max-width:        1240px;
  --container:        min(1240px, 100% - 2rem);
  --container-narrow: min(820px, 100% - 2rem);
  /* Two concentric content rails — keep every section's content edges consistent.
     --w-wide: all structural blocks (grids, tables, media splits, card lists, FAQ).
     --w-read: all single-column prose (section heads, body text, callouts, notes). */
  --w-wide:           min(980px, 100% - 2rem);
  --w-read:           min(720px, 100% - 2rem);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --transition: 220ms ease;
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 10px 28px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 18px 40px -14px rgba(0, 0, 0, 0.35);

  /* === LEGACY/AUDIT ALIASES (contrast_audit.py compatibility — literal hex) === */
  --c-ice:           #FAF8F4;
  --c-navy:          #2F3338;
  --c-ocean:         #2F3338;
  --c-slate:         #5B626E;
  --c-amber:         #E6B450;
  --c-amber-bright:  #E6B450;
  --c-gold:          #D9A441;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  line-height: 1.7;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-deep); }
strong { font-weight: 700; color: var(--c-charcoal); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.55rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); }
p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--c-primary); outline-offset: 2px; border-radius: 2px; }

.container { width: var(--container); max-width: var(--max-width); margin-inline: auto; }
.section { padding-block: var(--section-py); }
.section--alt   { background: var(--c-cream-soft); }
.section--tan   { background: var(--c-travertine-soft); }
.section--olive { background: var(--c-olive); color: var(--c-cream); }
.section--dark  { background: var(--c-charcoal); color: var(--c-cream); }
section[id] { scroll-margin-top: 5.5rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Eyebrow + section head (centered block)
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}
.section-head {
  text-align: center;
  max-width: var(--w-read);
  margin: 0 auto var(--space-xl);
}
.section-head h2 { margin-bottom: var(--space-sm); }
.section-head__sub {
  font-size: 1.05rem;
  color: var(--c-charcoal-mute);
  max-width: 60ch;
  margin: var(--space-xs) auto 0;
}

/* Dark-section eyebrow + heading overrides */
.section--olive .eyebrow,
.section--dark .eyebrow,
.hero .eyebrow,
.cta-band .eyebrow,
.gallery .eyebrow,
.status .eyebrow { color: var(--c-accent-bright); }

.section--olive h2, .section--olive h3,
.section--dark h2, .section--dark h3 { color: var(--c-cream); }
.section--olive .section-head__sub,
.section--dark .section-head__sub { color: rgba(250, 248, 244, 0.82); }
.section--olive a, .section--dark a { color: var(--c-accent-bright); }
.section--olive strong, .section--dark strong { color: var(--c-cream); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer; text-align: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn--primary { background: var(--c-primary); color: var(--c-white); }
.btn--primary:hover { background: var(--c-primary-deep); color: var(--c-white); transform: translateY(-2px); }
.btn--secondary {
  background: rgba(250, 248, 244, 0.12);
  color: var(--c-cream);
  border-color: rgba(250, 248, 244, 0.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btn--secondary:hover { background: rgba(250, 248, 244, 0.22); color: var(--c-white); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--c-primary-deep); border-color: var(--c-primary);
}
.btn--ghost:hover { background: var(--c-primary); color: var(--c-white); }

/* ==========================================================================
   Header / sticky nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); min-height: 4.25rem;
}
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; color: var(--c-primary-deep);
}
.brand__sub {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-charcoal-mute); font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  font-size: 0.93rem; font-weight: 500; color: var(--c-charcoal);
  padding: 0.35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--c-primary-deep); border-bottom-color: var(--c-accent); }
.nav__cta { color: var(--c-primary) !important; font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 2.75rem; height: 2.75rem; padding: 0.55rem; color: var(--c-charcoal);
}
.nav-toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 4.25rem 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-travertine);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) var(--space-md) var(--space-lg);
    transform: translateY(-130%); transition: transform 280ms ease;
    max-height: calc(100vh - 4.25rem); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--c-travertine); }
  .nav a:hover { border-bottom-color: var(--c-travertine); }
}

/* ==========================================================================
   Hero (two-zone, frosted panel)
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(540px, 86vh, 820px);
  display: flex; align-items: center;
  padding-block: var(--space-2xl);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* No-panel variant: deeper two-axis wash carries legibility for the left-aligned text zone */
  background:
    linear-gradient(90deg, rgba(20, 26, 34, 0.72) 0%, rgba(20, 26, 34, 0.40) 45%, rgba(20, 26, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(20, 26, 34, 0.46) 0%, rgba(20, 26, 34, 0.12) 38%, rgba(20, 26, 34, 0.50) 100%);
}
.hero-content {
  width: var(--container); max-width: 760px; margin: 0 auto;
  text-align: left;
}
.hero-overlay { margin-bottom: var(--space-lg); }
.hero-overlay > :last-child { margin-bottom: 0; }
.hero .eyebrow { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55); }
.hero h1 {
  color: var(--c-cream);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 2px 22px rgba(0, 0, 0, 0.45);
  margin-bottom: var(--space-md);
}
.hero strong { color: inherit; }
.hero-lede {
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.28rem);
  color: rgba(250, 248, 244, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 2px 16px rgba(0, 0, 0, 0.4);
  max-width: 60ch;
}
.hero-meta {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  margin-top: var(--space-md);
  font-size: 0.96rem; color: var(--c-cream);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-accent-bright); }
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-lg);
}
.hero-pills span {
  font-size: 0.84rem; font-weight: 600; color: var(--c-cream);
  background: rgba(33, 39, 48, 0.42);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1px solid rgba(250, 248, 244, 0.22);
  padding: 0.45rem 0.85rem; border-radius: 999px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); }
.hero .btn--primary:hover { background: var(--c-accent); color: var(--c-charcoal); }

/* ==========================================================================
   Facts strip
   ========================================================================== */
.facts {
  background: var(--c-cream-soft);
  border-bottom: 1px solid var(--c-travertine);
  padding-block: clamp(1rem, 2vw, 1.4rem);
}
.facts__row {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1rem;
}
.facts__item {
  display: flex; flex-direction: column; gap: 0.15rem; text-align: center;
  padding: 0.4rem 0.6rem;
}
.facts__value {
  font-family: var(--font-display); font-weight: 700;
  color: var(--c-primary-deep);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem); line-height: 1.05;
}
.facts__label {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem); color: var(--c-charcoal-mute);
}
@media (min-width: 720px) { .facts__row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) {
  .facts__row { grid-template-columns: repeat(5, 1fr); gap: 0; }
  .facts__item:not(:last-child) { border-right: 1px solid var(--c-travertine); }
}

/* ==========================================================================
   Status banner
   ========================================================================== */
.status { background: var(--c-cream); border-block: 1px solid var(--c-travertine); padding-block: var(--section-py); }
.status__inner {
  display: flex; flex-direction: column; gap: var(--space-sm); align-items: flex-start;
  max-width: var(--w-wide); margin: 0 auto;
}
.status__badge {
  flex-shrink: 0;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-white); background: var(--c-olive-deep);
  padding: 0.4rem 0.7rem; border-radius: 999px;
}
.status__badge--closed { background: #9B4634; }
.status h2 { font-size: 1.3rem; margin-bottom: 0.35rem; }
.status p { font-size: 0.98rem; margin-bottom: 0.5rem; }
.status .eyebrow { color: var(--c-charcoal-mute); }
.status time { font-weight: 600; color: var(--c-primary-deep); }

/* ==========================================================================
   Intro (combined editorial + grid)
   ========================================================================== */
.intro__body { max-width: var(--w-read); margin: 0 auto; }
.intro__body p { font-size: 1.08rem; }
.feature-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
  max-width: var(--w-wide); margin: var(--space-xl) auto var(--space-md);
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.3rem, 2.6vw, 1.8rem);
  box-shadow: var(--shadow-sm);
}
.feature-card h3 {
  border-bottom: 1px solid var(--c-travertine);
  padding-bottom: 0.6rem; margin-bottom: 0.9rem;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem;
  font-size: 0.98rem;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.05rem;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.center-cta { text-align: center; margin-top: var(--space-lg); }

/* ==========================================================================
   Inline feature figure (image + caption beside / above prose)
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
  align-items: center; max-width: var(--w-wide); margin: 0 auto;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-2xl); }
  .split--reverse .split__media { order: 2; }
}
.split__media { margin: 0; }
.split__media img {
  width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.split__media figcaption {
  font-size: 0.85rem; color: var(--c-charcoal-mute); margin-top: 0.55rem; font-style: italic;
}
.section--dark .split__media figcaption,
.section--olive .split__media figcaption { color: rgba(250, 248, 244, 0.75); }
.prose { max-width: 60ch; }
.prose h2 { margin-bottom: var(--space-md); }
.prose .eyebrow { display: block; }
.prose > p + p { margin-top: 0; }

/* ==========================================================================
   Numbered itinerary list (#hike route + #day-plan)
   ========================================================================== */
.itinerary__list {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: var(--w-wide);
  display: flex; flex-direction: column; gap: var(--space-md);
}
.itinerary__item {
  display: flex; gap: var(--space-md); align-items: flex-start;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  box-shadow: var(--shadow-sm);
}
.section--alt .itinerary__item { background: var(--c-white); }
.itinerary__num {
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--c-primary-deep);
  line-height: 1; min-width: 2.4ch;
}
.itinerary__item h3 { margin-bottom: 0.35rem; }
.itinerary__item p { font-size: 0.98rem; margin-bottom: 0; }
.itinerary__item p + p { margin-top: 0.5rem; }
.itinerary__time {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  color: var(--c-olive-deep); letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

/* ==========================================================================
   Card grids (worth-it pros/cons, etiquette, highlights-style)
   ========================================================================== */
.card-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
  max-width: var(--w-wide); margin: 0 auto;
}
@media (min-width: 760px) { .card-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.info-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.3rem, 2.6vw, 1.7rem);
  box-shadow: var(--shadow-sm);
}
.section--olive .info-card, .section--dark .info-card {
  background: rgba(250, 248, 244, 0.07);
  border-color: rgba(250, 248, 244, 0.18);
}
.info-card .eyebrow { color: var(--c-primary-deep); }
.section--olive .info-card .eyebrow, .section--dark .info-card .eyebrow { color: var(--c-accent-bright); }
.info-card h3 { margin-bottom: 0.55rem; }
.info-card p { font-size: 0.97rem; }
.info-card p:last-child { margin-bottom: 0; }

/* pro / con accent cards */
.judge-card { border-top: 4px solid var(--c-travertine); }
.judge-card--pro { border-top-color: var(--c-olive); }
.judge-card--con { border-top-color: var(--c-accent); }
.judge-card .judge-card__tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 0.6rem; display: inline-block;
}
.judge-card--pro .judge-card__tag { color: var(--c-olive-deep); }
.judge-card--con .judge-card__tag { color: #9B6B1F; }
.judge-card ul { list-style: none; padding: 0; margin: 0; }
.judge-card li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; font-size: 0.97rem; }
.judge-card li:last-child { margin-bottom: 0; }
.judge-card li::before {
  position: absolute; left: 0; top: 0; font-weight: 800;
}
.judge-card--pro li::before { content: "+"; }
.judge-card--con li::before { content: "–"; }
.judge-card--pro li::before { color: var(--c-olive); }
.judge-card--con li::before { color: var(--c-accent); }

/* do / don't lists for etiquette */
.rules-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); max-width: var(--w-wide); margin: 0 auto; }
@media (min-width: 760px) { .rules-grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Callout boxes ("Good to know")
   ========================================================================== */
.callout {
  max-width: var(--w-read); margin: var(--space-lg) auto 0;
  background: var(--c-travertine-soft);
  border: 1px solid var(--c-travertine);
  border-left: 5px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  font-size: 0.97rem;
}
.callout strong { color: var(--c-primary-deep); }
.section--olive .callout, .section--dark .callout {
  background: rgba(250, 248, 244, 0.08);
  border-color: rgba(250, 248, 244, 0.2);
  border-left-color: var(--c-accent-bright);
  color: var(--c-cream);
}
.section--olive .callout strong, .section--dark .callout strong { color: var(--c-accent-bright); }

/* ==========================================================================
   Comparison table (#alternatives) + costs table
   ========================================================================== */
.table-wrap { max-width: var(--w-wide); margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table {
  width: 100%; border-collapse: collapse; min-width: 560px;
  background: var(--c-white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table caption { text-align: left; font-size: 0.85rem; color: var(--c-charcoal-mute); padding-bottom: 0.6rem; }
.data-table th, .data-table td {
  text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--c-travertine);
  font-size: 0.95rem; vertical-align: top;
}
.data-table thead th {
  background: var(--c-cream-soft); color: var(--c-primary-deep);
  font-family: var(--font-body); font-weight: 700; font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.data-table tbody th { font-weight: 700; color: var(--c-charcoal); }
.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table .highlight { color: var(--c-primary-deep); font-weight: 700; }
.table-note { max-width: var(--w-read); margin: var(--space-md) auto 0; text-align: center; font-size: 0.96rem; }
.table-note strong { color: var(--c-primary-deep); }

/* ==========================================================================
   Gallery (full-width horizontal scroll)
   ========================================================================== */
.gallery { background: var(--c-charcoal); color: var(--c-cream); position: relative; }
.gallery h2 { color: var(--c-white); }
.gallery .section-head__sub { color: rgba(250, 248, 244, 0.82); }
.gallery__wrapper { position: relative; margin-top: var(--space-lg); }
.gallery__wrapper--full {
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.gallery__wrapper--full::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 14px; width: 64px;
  background: linear-gradient(90deg, rgba(47,51,56,0) 0%, var(--c-charcoal) 100%);
  pointer-events: none; z-index: 2;
}
.gallery__strip {
  display: flex; flex-wrap: nowrap; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  padding-left: max(1rem, calc((100vw - 1240px) / 2));
  padding-right: max(1rem, calc((100vw - 1240px) / 2));
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) rgba(250,248,244,0.15);
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(250,248,244,0.12); border-radius: 999px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 999px; }
.gallery__item {
  flex: 0 0 78vw; max-width: 480px; scroll-snap-align: start; margin: 0;
}
@media (min-width: 720px) { .gallery__item { flex-basis: 46vw; } }
@media (min-width: 1080px) { .gallery__item { flex-basis: 30vw; } }
.gallery__item img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius-md);
}
.gallery__item figcaption { font-size: 0.82rem; color: rgba(250,248,244,0.72); margin-top: 0.5rem; }
.gallery__arrow {
  display: none;
  position: absolute; top: calc(50% - 14px); transform: translateY(-50%);
  z-index: 3; width: 46px; height: 46px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(250,248,244,0.92); color: var(--c-charcoal);
  font-size: 1.5rem; line-height: 1;
  box-shadow: var(--shadow-md);
  align-items: center; justify-content: center;
}
.gallery__arrow:hover { background: var(--c-white); }
.gallery__arrow--prev { left: max(1rem, calc((100vw - 1240px) / 2)); }
.gallery__arrow--next { right: max(1rem, calc((100vw - 1240px) / 2)); }
@media (min-width: 1080px) and (hover: hover) { .gallery__arrow { display: flex; } }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq__list { max-width: var(--w-wide); margin: 0 auto; }
.faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem; overflow: hidden;
}
.section--olive .faq__item, .section--dark .faq__item {
  background: rgba(250,248,244,0.07); border-color: rgba(250,248,244,0.18);
}
.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.2rem; position: relative;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.005em;
  color: var(--c-primary-deep);
}
.section--olive .faq__item summary, .section--dark .faq__item summary { color: var(--c-cream); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--c-accent); transition: transform var(--transition);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { padding: 0 1.2rem 1.2rem; font-size: 0.98rem; }
.faq__answer p:first-child { margin-top: 0; }
.section--olive .faq__answer, .section--dark .faq__answer { color: rgba(250,248,244,0.9); }

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.cta-band { background: var(--c-olive); color: var(--c-cream); text-align: center; }
.cta-band h2 { color: var(--c-cream); }
.cta-band .eyebrow { color: var(--c-accent-bright); }
.cta-band__inner { max-width: var(--w-read); margin: 0 auto; }
.cta-band p { color: rgba(250,248,244,0.92); }
.cta-band__list {
  list-style: none; padding: 0; margin: var(--space-lg) 0;
  display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center;
}
.cta-band__list li {
  font-size: 0.88rem; font-weight: 600;
  background: rgba(250,248,244,0.1); border: 1px solid rgba(250,248,244,0.22);
  padding: 0.45rem 0.9rem; border-radius: 999px;
}
.cta-band .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); }
.cta-band .btn--primary:hover { background: var(--c-accent); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-charcoal); color: rgba(250,248,244,0.8); }
.site-footer__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-xl);
  padding-block: var(--space-2xl) var(--space-xl);
}
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer h2 { color: var(--c-cream); font-size: 1.35rem; margin-bottom: 0.6rem; }
.site-footer h3 {
  color: var(--c-cream); font-family: var(--font-body); font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem;
}
.site-footer p { font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(250,248,244,0.82); font-size: 0.92rem; }
.site-footer a:hover { color: var(--c-accent-bright); }
.site-footer__bar {
  border-top: 1px solid rgba(250,248,244,0.14);
  padding-block: var(--space-md);
  display: flex; flex-wrap: wrap; gap: 0.6rem var(--space-md);
  justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(250,248,244,0.62);
}
.site-footer__bar p { margin: 0; font-size: 0.82rem; }

/* ==========================================================================
   Generic prose section helpers
   ========================================================================== */
.lead { font-size: 1.12rem; color: var(--c-charcoal); max-width: 70ch; }
.text-block { max-width: var(--w-read); margin: 0 auto; }
.text-block h3 { margin: var(--space-lg) 0 var(--space-sm); }
.text-block ul { margin: 0 0 var(--space-md) 1.2rem; }
.text-block li { margin-bottom: 0.45rem; }
.muted { color: var(--c-charcoal-mute); font-size: 0.9rem; }
.section--dark .muted, .section--olive .muted { color: rgba(250,248,244,0.7); }

/* legal pages */
.legal { padding-block: var(--space-2xl); }
.legal__inner { max-width: var(--w-read); margin: 0 auto; }
.legal h1 { color: var(--c-primary-deep); margin-bottom: var(--space-md); }
.legal h2 { font-size: 1.4rem; margin: var(--space-xl) 0 var(--space-sm); }
.legal p, .legal li { font-size: 0.98rem; }
.legal ul { margin: 0 0 var(--space-md) 1.2rem; }
.legal li { margin-bottom: 0.5rem; }
