/* ==========================================================================
   Inkwenkwezi Private Game Reserve
   Design direction: "Written in the stars" — quiet safari luxury.
   Inkwenkwezi means "star" in isiXhosa; the night sky is the brand motif.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette — 4 hues, used with discipline */
  --ebony:        #121814;   /* deepest ground, hero + footer */
  --ebony-soft:   #1B2320;   /* raised dark surface */
  --ebony-line:   #2C3733;   /* dark-mode divider */
  --bone:         #F4F0E7;   /* page ground */
  --bone-soft:    #EAE4D7;   /* raised light surface */
  --bone-line:    #DAD2C0;   /* light-mode divider */
  /* Brass comes in four weights so contrast is never a guess. Measured against
     --bone / --bone-soft; the lighter values are decorative only. */
  --brass:        #A9834A;   /* decorative only: hairlines, frames, rules */
  --brass-mid:    #96723D;   /* large glyphs & display numerals — 3.87:1 */
  --brass-text:   #7E5F2F;   /* small text on light — 5.18:1 / 4.65:1 */
  --brass-fill:   #836230;   /* button fill behind white text — 5.59:1 */
  --brass-lift:   #D3A86A;   /* on ebony — 8.21:1 */
  --khaki:        #65614B;   /* muted secondary on light — 5.49:1 / 4.93:1 */

  /* Semantic tokens */
  --surface:            var(--bone);
  --surface-raised:     var(--bone-soft);
  --surface-inverse:    var(--ebony);
  --on-surface:         #1A211D;
  --on-surface-muted:   #55584A;
  --on-inverse:         var(--bone);
  --on-inverse-muted:   #B3B7AC;
  --line:               var(--bone-line);
  --line-inverse:       var(--ebony-line);
  --accent:             var(--brass-text);   /* text-safe accent on light */
  --accent-decor:       var(--brass);        /* rules, frames, tick marks */
  --accent-large:       var(--brass-mid);    /* 24px+ text and UI glyphs */
  --accent-fill:        var(--brass-fill);   /* solid button background */
  --accent-on-dark:     var(--brass-lift);
  --focus:              var(--brass-text);   /* dark enough to ring on bone */

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Figtree", "Segoe UI", system-ui, sans-serif;

  --t-xs:   0.75rem;   /* 12 */
  --t-sm:   0.875rem;  /* 14 */
  --t-base: 1rem;      /* 16 */
  --t-md:   1.125rem;  /* 18 */
  --t-lg:   1.5rem;    /* 24 */
  --t-xl:   2rem;      /* 32 */
  --t-2xl:  3rem;      /* 48 */
  --t-3xl:  4.5rem;    /* 72 */

  /* Spacing — 8px rhythm, generous (luxury = whitespace) */
  --s-1: 0.5rem;   --s-2: 1rem;    --s-3: 1.5rem;  --s-4: 2rem;
  --s-5: 3rem;     --s-6: 4rem;    --s-7: 6rem;    --s-8: 8.75rem;

  --container: 1200px;
  --measure:   66ch;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 0.84, 0.44, 1);
  --dur-fast: 180ms;
  --dur:      260ms;

  /* Layers */
  --z-base: 0; --z-raised: 10; --z-sticky: 40; --z-nav: 100; --z-overlay: 1000;

  --radius: 2px;   /* near-square: editorial, not bubbly */
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;   /* clears the taller logo bar when jumping to an anchor */
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--on-surface);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

/* Visible, branded focus — never removed */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.on-dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible {
  outline-color: var(--brass-lift);
}

::selection { background: var(--accent-fill); color: #fff; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 7vw, var(--t-3xl)); }
h2 { font-size: clamp(2rem, 4.6vw, var(--t-2xl)); }
h3 { font-size: clamp(1.375rem, 2.4vw, var(--t-xl)); }
h4 { font-size: var(--t-md); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

p { text-wrap: pretty; }
a { color: inherit; }

/* Eyebrow — the small brass label that opens most sections */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 1px;
  background: var(--accent-decor);
  flex: none;
}
.on-dark .eyebrow { color: var(--on-inverse-muted); }
.on-dark .eyebrow::before { background: var(--accent-on-dark); }

.lead {
  font-size: clamp(var(--t-md), 2vw, 1.375rem);
  line-height: 1.6;
  color: var(--on-surface-muted);
  max-width: var(--measure);
}
.on-dark .lead { color: var(--on-inverse-muted); }

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: var(--s-2); }
.prose h3 { margin-top: var(--s-4); }

/* Pull-quote: the reserve's own voice, set large */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 34ch;
}
.pullquote cite {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--khaki);
}
.on-dark .pullquote cite { color: var(--on-inverse-muted); }

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-3);
}
@media (min-width: 768px)  { .container { padding-inline: var(--s-5); } }
@media (min-width: 1280px) { .container { padding-inline: var(--s-4); } }

.section { padding-block: var(--s-6); }
@media (min-width: 768px)  { .section { padding-block: var(--s-7); } }
@media (min-width: 1024px) { .section { padding-block: var(--s-8); } }
.section--tight { padding-block: var(--s-5); }
@media (min-width: 768px) { .section--tight { padding-block: var(--s-6); } }

.on-dark {
  background: var(--surface-inverse);
  color: var(--on-inverse);
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--on-inverse); }
.section--raised { background: var(--surface-raised); }

/* The hero, interior page-hero and mobile sheet all sit on ebony but bring
   their own background, so they never matched `.on-dark`. Without this they
   inherit light-mode text colours onto a dark ground. */
.hero, .page-hero, .mobile-nav { color: var(--on-inverse); }

.hero .eyebrow, .page-hero .eyebrow, .mobile-nav .eyebrow,
.hero .figcaption, .page-hero .figcaption {
  color: var(--on-inverse-muted);
}
.hero .eyebrow::before, .page-hero .eyebrow::before, .mobile-nav .eyebrow::before {
  background: var(--accent-on-dark);
}
.hero .link, .page-hero .link, .mobile-nav .link { color: var(--accent-on-dark); }

.hero .btn--ghost, .page-hero .btn--ghost, .mobile-nav .btn--ghost {
  color: var(--on-inverse);
  border-color: rgba(244,240,231,.32);
}
.hero .btn--ghost:hover, .page-hero .btn--ghost:hover, .mobile-nav .btn--ghost:hover {
  border-color: var(--accent-on-dark);
  color: var(--accent-on-dark);
}

.skip-link {
  position: absolute;
  left: var(--s-2); top: var(--s-2);
  z-index: var(--z-overlay);
  padding: 0.75rem 1.25rem;
  background: var(--ebony);
  color: var(--bone);
  font-size: var(--t-sm);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform var(--dur-fast) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* Star-field: the brand motif. Three layers of fine points, no image. */
.starfield { position: relative; isolation: isolate; }
.starfield::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 18%, rgba(244,240,231,.55) 50%, transparent 51%),
    radial-gradient(1px 1px   at 68% 12%, rgba(244,240,231,.40) 50%, transparent 51%),
    radial-gradient(1px 1px   at 84% 32%, rgba(211,168,106,.50) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 42% 40%, rgba(244,240,231,.30) 50%, transparent 51%),
    radial-gradient(1px 1px   at 12% 62%, rgba(244,240,231,.35) 50%, transparent 51%),
    radial-gradient(1px 1px   at 92% 72%, rgba(244,240,231,.25) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 58% 84%, rgba(211,168,106,.35) 50%, transparent 51%),
    radial-gradient(1px 1px   at 32% 92%, rgba(244,240,231,.28) 50%, transparent 51%);
  background-size: 100% 100%;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 48px;
  padding: 0.875rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.985); }

.btn--primary { background: var(--accent-fill); color: #fff; }
.btn--primary:hover { background: #6B5127; }

.btn--ghost {
  background: transparent;
  color: var(--on-surface);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.on-dark .btn--ghost { color: var(--on-inverse); border-color: rgba(244,240,231,.32); }
.on-dark .btn--ghost:hover { border-color: var(--accent-on-dark); color: var(--accent-on-dark); }

/* Text link with an underline that grows on hover */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;          /* touch target */
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
}
.link svg { flex: none; transition: transform var(--dur-fast) var(--ease-out); }
.link:hover svg { transform: translateX(4px); }
.on-dark .link { color: var(--accent-on-dark); }

/* --------------------------------------------------------------------------
   6. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  padding-block: var(--s-2);
  background: linear-gradient(to bottom, rgba(18,24,20,.78), rgba(18,24,20,0));
  transition: background-color var(--dur) var(--ease-out),
              padding var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(18,24,20,.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-inverse);
  padding-block: 0.625rem;
}
/* Interior pages start solid — no hero image behind the bar */
.site-header--solid {
  background: rgba(18,24,20,.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-inverse);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

/* Wordmark: star glyph + name + isiXhosa translation */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;          /* touch target, not just the glyph height */
  text-decoration: none;
  color: var(--bone);
  flex: none;
}
.brand svg { flex: none; }
/* The reserve's own lion medallion, cut out of the original masthead artwork.
   Fixed box + explicit width/height attributes keep the bar free of layout shift. */
.brand-mark {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
/* The client's own dark-ground lockup, background keyed to transparency so it sits on the
   ebony bar and over the hero scrim alike. Sized so "PRIVATE GAME RESERVE" stays legible —
   it dies below about 180px — then shrunk once the bar condenses on scroll. */
.brand--logo { display: block; min-height: 0; gap: 0; }
/* One width per breakpoint, mobile-first. Deliberately NOT animated on scroll: the anchor is
   a flex item sizing to a replaced child, so a transitioned width left the used width stuck
   at its old value even though the declared width updated. A constant, correct size beats a
   shrink effect that only half works — the bar still condenses via its padding and ground. */
.brand-logo {
  display: block;
  width: 178px;
  height: auto;          /* width/height attrs carry the ratio, so no layout shift */
  max-width: 100%;
}
@media (min-width: 900px) { .brand-logo { width: 230px; } }

/* Footer carries the same lockup at a fixed size. */
.brand--lockup {
  display: block;
  min-height: 0;
  gap: 0;
  max-width: 260px;
}
.brand-lockup {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;          /* width/height attrs hold the ratio, so no layout shift */
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.5625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,240,231,.62);
  margin-top: 0.3125rem;
}

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: 0.25rem; }
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 44px;
  padding: 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244,240,231,.86);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--brass-lift); }
/* Active location gets a brass rule, not just colour */
.nav-link[aria-current="page"] { color: var(--brass-lift); }
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.875rem; right: 0.875rem; bottom: 0.375rem;
  height: 1px;
  background: var(--brass-lift);
}
.nav-link svg { transition: transform var(--dur-fast) var(--ease-out); }
.nav-link[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 15rem;
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  background: rgba(27,35,32,.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-inverse);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  /* visibility must NOT be interpolated — it would stay `hidden` for the whole
     duration and the menu could not receive focus. Delay only the hide. */
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              visibility 0s linear var(--dur-fast);
}
.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-menu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              visibility 0s;
}
.nav-menu a {
  display: block;
  padding: 0.6875rem 0.875rem;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: rgba(244,240,231,.84);
  border-radius: var(--radius);
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.nav-menu a:hover { background: rgba(211,168,106,.14); color: var(--brass-lift); }
.nav-menu a[aria-current="page"] { color: var(--brass-lift); }

.header-cta { display: none; }
@media (min-width: 1280px) {
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0 1rem;
    /* The number is one unit — never let it break across lines, and don't let the
       flex row shrink it below its content width. */
    white-space: nowrap;
    flex: none;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--bone);
    border: 1px solid rgba(244,240,231,.3);
    border-radius: var(--radius);
    transition: border-color var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out);
    font-variant-numeric: tabular-nums;
  }
  .header-cta:hover { border-color: var(--brass-lift); color: var(--brass-lift); }
}

/* Mobile menu toggle — 48px target */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--bone);
  touch-action: manipulation;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle-bars { position: relative; width: 22px; height: 12px; }
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 10.5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { transform: translateY(-5.25px) rotate(-45deg); }

/* Mobile sheet — a designed panel, not a shrunk desktop nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  background: var(--ebony);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: max(var(--s-2), env(safe-area-inset-top)) var(--s-3)
           max(var(--s-4), env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5rem);
  /* See .nav-menu: visibility flips instantly on open so the sheet is focusable
     straight away, and its hide is delayed so the fade-out stays visible. */
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              visibility 0s linear var(--dur);
}
.mobile-nav.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              visibility 0s;
}
@media (min-width: 1024px) { .mobile-nav { display: none; } }

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s-1);
  margin-bottom: var(--s-3);
}
.mobile-nav-close {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: none; border: 0; cursor: pointer; color: var(--bone);
}
.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-nav-list > li { border-bottom: 1px solid var(--line-inverse); }
.mobile-nav-list > li > a,
.mobile-nav-list > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  width: 100%;
  min-height: 60px;
  padding: 0.875rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-align: left;
  text-decoration: none;
  color: var(--bone);
  background: none;
  border: 0;
  cursor: pointer;
}
.mobile-nav-list button svg { transition: transform var(--dur) var(--ease-out); flex: none; }
.mobile-nav-list button[aria-expanded="true"] svg { transform: rotate(45deg); }
.mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease-out);
}
.mobile-sub.is-open { grid-template-rows: 1fr; }
.mobile-sub > div { overflow: hidden; }
.mobile-sub a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.5rem 0 0.5rem var(--s-2);
  font-size: var(--t-base);
  text-decoration: none;
  color: rgba(244,240,231,.72);
  border-left: 1px solid var(--line-inverse);
  margin-left: 0.25rem;
}
.mobile-sub a:hover, .mobile-sub a[aria-current="page"] { color: var(--brass-lift); }
.mobile-sub > div > :last-child { margin-bottom: var(--s-2); }

.mobile-nav-foot {
  margin-top: auto;
  padding-top: var(--s-5);
  display: grid;
  gap: var(--s-2);
}
.mobile-nav-foot .btn { width: 100%; }
.mobile-nav-foot p {
  font-size: var(--t-sm);
  color: var(--on-inverse-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding-top: 7rem;
  padding-bottom: var(--s-6);
  background: var(--ebony);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  /* Very slow drift — reads as stillness with life, not a slideshow */
  animation: hero-drift 32s var(--ease-out) infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.2%, -1.2%, 0); }
}
/* Two-stop scrim: keeps headline at AAA while the photo stays legible */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18,24,20,.95) 0%, rgba(18,24,20,.55) 42%, rgba(18,24,20,.28) 72%, rgba(18,24,20,.5) 100%),
    linear-gradient(to right, rgba(18,24,20,.6) 0%, transparent 62%);
}
.hero-inner { position: relative; width: 100%; }
.hero h1 { max-width: 20ch; margin-bottom: var(--s-3); }
.hero .lead { max-width: 46ch; color: rgba(244,240,231,.86); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.hero-actions .btn { flex: 1 1 auto; min-width: 13rem; }
@media (min-width: 640px) { .hero-actions .btn { flex: 0 0 auto; } }

/* Fact strip along the bottom of the hero */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-2);
  margin-top: var(--s-6);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(244,240,231,.18);
}
@media (min-width: 900px) { .hero-facts { grid-template-columns: repeat(4, 1fr); } }
.hero-fact dt {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,240,231,.62);
  margin-bottom: 0.375rem;
}
.hero-fact dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.15;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}

.scroll-cue {
  position: absolute;
  right: var(--s-3);
  bottom: var(--s-4);
  display: none;
  writing-mode: vertical-rl;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,240,231,.5);
  text-decoration: none;
}
@media (min-width: 1280px) { .scroll-cue { display: flex; align-items: center; gap: 0.75rem; } }
.scroll-cue::after {
  content: "";
  width: 1px; height: 3.5rem;
  background: linear-gradient(to bottom, rgba(244,240,231,.5), transparent);
}

/* --------------------------------------------------------------------------
   8. Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 56vh;
  padding-top: 9rem;
  padding-bottom: var(--s-5);
  background: var(--ebony);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 1024px) { .page-hero { min-height: 62vh; } }
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,24,20,.94) 0%, rgba(18,24,20,.6) 48%, rgba(18,24,20,.42) 100%);
}
.page-hero h1 { max-width: 24ch; }
.page-hero .lead { margin-top: var(--s-2); max-width: 52ch; color: rgba(244,240,231,.85); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--s-3);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,231,.62);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before { content: "/"; color: rgba(244,240,231,.34); }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--brass-lift); }
.breadcrumb [aria-current="page"] { color: rgba(244,240,231,.9); }

/* --------------------------------------------------------------------------
   9. Section headers & grids
   -------------------------------------------------------------------------- */
.section-head { max-width: 46rem; margin-bottom: var(--s-5); }
@media (min-width: 1024px) { .section-head { margin-bottom: var(--s-6); } }
.section-head p { margin-top: var(--s-2); }

.section-head--split {
  display: grid;
  gap: var(--s-3);
  max-width: none;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1fr auto; gap: var(--s-5); }
}

.grid { display: grid; gap: var(--s-3); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid { gap: var(--s-4); } }

/* --------------------------------------------------------------------------
   10. Editorial split (image + prose, asymmetric)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: var(--s-4);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 1fr; gap: var(--s-6); }
  .split--wide-media { grid-template-columns: 1.35fr 1fr; }
  .split--reverse > .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius); display: block; }
/* Brass hairline offset behind the image — a designed frame, cheap to render.
   This wraps the image ONLY. It must not sit on .split-media, because that column can
   also carry a .figcaption: the frame would then be sized and anchored to the caption
   too, and hang below the photo as a stray rule in the whitespace. */
.split-media--framed { position: relative; display: block; }
.split-media--framed::before {
  content: "";
  position: absolute;
  inset: auto -1rem -1rem auto;
  width: 62%; height: 62%;
  border: 1px solid var(--accent-decor);
  border-radius: var(--radius);
  z-index: -1;
}
.on-dark .split-media--framed::before { border-color: rgba(211,168,106,.5); }
.split-body > * + * { margin-top: var(--s-2); }
.split-body .btn, .split-body .link { margin-top: var(--s-3); }

/* Caption for images that need provenance or context */
.figcaption {
  margin-top: 0.75rem;
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  color: var(--on-surface-muted);
}
.on-dark .figcaption { color: var(--on-inverse-muted); }

/* --------------------------------------------------------------------------
   11. Cards
   -------------------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.on-dark .card { background: var(--ebony-soft); border-color: var(--line-inverse); }
a.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(18,24,20,.12);
}
.on-dark a.card:hover { box-shadow: 0 16px 38px rgba(0,0,0,.4); }

.card-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bone-soft); }
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
a.card:hover .card-media img { transform: scale(1.045); }

.card-badge {
  position: absolute;
  top: var(--s-2); left: var(--s-2);
  padding: 0.375rem 0.75rem;
  background: rgba(18,24,20,.86);
  backdrop-filter: blur(6px);
  color: var(--bone);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
  padding: var(--s-3);
}
@media (min-width: 1024px) { .card-body { padding: var(--s-3) var(--s-3) var(--s-4); } }
.card-body h3 { font-size: var(--t-lg); }
.card-body p { font-size: var(--t-base); color: var(--on-surface-muted); }
.on-dark .card-body p { color: var(--on-inverse-muted); }
.card-body .link, .card-meta { margin-top: auto; }

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--khaki);
}
.on-dark .card-meta { border-top-color: var(--line-inverse); color: var(--on-inverse-muted); }
.card-meta strong {
  font-weight: 600;
  color: var(--on-surface);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.on-dark .card-meta strong { color: var(--bone); }

/* --------------------------------------------------------------------------
   12. Feature list (icon + text)
   -------------------------------------------------------------------------- */
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
@media (min-width: 640px) { .features--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features--3 { grid-template-columns: repeat(3, 1fr); } }
.feature { display: flex; gap: var(--s-2); }
.feature-icon {
  flex: none;
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--accent-large);
  border-radius: 50%;
  color: var(--accent-large);
}
.on-dark .feature-icon { border-color: rgba(211,168,106,.5); color: var(--accent-on-dark); }
/* Feature headings are h3 (they sit under a section h2), styled as a label
   rather than a display heading. */
.feature h3 {
  font-family: var(--font-body);
  font-size: var(--t-md);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}
.feature p { font-size: var(--t-sm); color: var(--on-surface-muted); }
.on-dark .feature p { color: var(--on-inverse-muted); }

/* Plain amenity list with brass ticks */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.625rem; }
@media (min-width: 640px) { .ticks--2 { grid-template-columns: repeat(2, 1fr); } }
.ticks li {
  display: flex;
  gap: 0.75rem;
  font-size: var(--t-base);
  line-height: 1.55;
}
.ticks li::before {
  content: "";
  flex: none;
  width: 1.125rem; height: 1.125rem;
  margin-top: 0.28rem;
  background: var(--accent-large);
  clip-path: polygon(41% 68%, 82% 22%, 92% 33%, 43% 86%, 8% 53%, 18% 42%);
}
.on-dark .ticks li::before { background: var(--accent-on-dark); }

/* --------------------------------------------------------------------------
   13. Stat band
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4) var(--s-3);
  margin: 0;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: left; }
.stat dt {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-top: 0.5rem;
}
.on-dark .stat dt { color: var(--on-inverse-muted); }
.stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-large);
  font-variant-numeric: tabular-nums;
}
.on-dark .stat dd { color: var(--accent-on-dark); }

/* --------------------------------------------------------------------------
   14. Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--bone-soft);
  cursor: zoom-in;
  touch-action: manipulation;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), opacity var(--dur) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); opacity: 0.9; }
/* Let a hero shot span two cells on wider screens */
@media (min-width: 768px) {
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
  .gallery-item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-2);
  background: rgba(9,12,10,.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease-out), visibility 0s linear var(--dur);
}
.lightbox.is-open {
  opacity: 1; visibility: visible;
  transition: opacity var(--dur) var(--ease-out), visibility 0s;
}
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.97);
  transition: transform var(--dur) var(--ease-out);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-caption {
  position: absolute;
  left: 50%; bottom: max(var(--s-3), env(safe-area-inset-bottom));
  transform: translateX(-50%);
  max-width: min(90%, 44rem);
  text-align: center;
  font-size: var(--t-sm);
  color: rgba(244,240,231,.78);
}
.lightbox-btn {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: rgba(244,240,231,.1);
  border: 1px solid rgba(244,240,231,.22);
  border-radius: 50%;
  color: var(--bone);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.lightbox-btn:hover { background: rgba(244,240,231,.2); }
.lightbox-close { top: max(var(--s-2), env(safe-area-inset-top)); right: var(--s-2); }
.lightbox-prev { left: var(--s-2); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--s-2); top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   15. Tables (conference capacities, rates)
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.on-dark .table-wrap { border-color: var(--line-inverse); }
table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
caption {
  padding: var(--s-2) var(--s-3);
  text-align: left;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--khaki);
  border-bottom: 1px solid var(--line);
}
.on-dark caption { color: var(--on-inverse-muted); border-bottom-color: var(--line-inverse); }
th, td {
  padding: 0.875rem var(--s-2);
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.on-dark th, .on-dark td { border-bottom-color: var(--line-inverse); }
th {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--khaki);
}
.on-dark th { color: var(--on-inverse-muted); }
td:first-child { font-weight: 600; white-space: normal; }
td { font-variant-numeric: tabular-nums; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   16. Anchor sub-nav (weddings page)
   -------------------------------------------------------------------------- */
.subnav {
  position: sticky;
  top: 4.25rem;
  z-index: var(--z-sticky);
  background: rgba(244,240,231,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.subnav-inner {
  display: flex;
  gap: var(--s-1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: 0.375rem;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  flex: none;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.875rem;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-surface-muted);
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.subnav a:hover { color: var(--accent); }
.subnav a.is-active { color: var(--accent); border-bottom-color: var(--accent); }

/* --------------------------------------------------------------------------
   17. Forms (static UI — no backend on this build)
   -------------------------------------------------------------------------- */
.form { display: grid; gap: var(--s-3); }
.field { display: grid; gap: 0.5rem; }
.field--half { grid-column: span 1; }
@media (min-width: 640px) {
  .form--2col { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
}
.field label {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.field .req { color: #A6402F; margin-left: 0.125rem; }
.field .hint {
  font-size: var(--t-xs);
  color: var(--on-surface-muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.875rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: var(--t-base);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 8rem; resize: vertical; line-height: 1.6; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--khaki); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(126,95,47,.22);
  outline-offset: 0;
}
.form-note {
  padding: var(--s-2);
  background: var(--bone-soft);
  border-left: 2px solid var(--accent-decor);
  font-size: var(--t-sm);
  color: var(--on-surface-muted);
}

/* --------------------------------------------------------------------------
   18. Contact blocks
   -------------------------------------------------------------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.contact-row { display: flex; gap: var(--s-2); align-items: flex-start; }
.contact-row dt {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 0.25rem;
}
.on-dark .contact-row dt { color: var(--on-inverse-muted); }
.contact-row dd { margin: 0; font-size: var(--t-md); }
.contact-row a { text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-row a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.on-dark .contact-row a { border-bottom-color: var(--line-inverse); }
.on-dark .contact-row a:hover { border-bottom-color: var(--accent-on-dark); color: var(--accent-on-dark); }
.tabular { font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bone-soft);
  aspect-ratio: 4 / 3;
}
@media (min-width: 900px) { .map-frame { aspect-ratio: 16 / 10; } }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------------------------------------------------------------------------
   19. CTA band
   -------------------------------------------------------------------------- */
.cta-band { position: relative; text-align: center; }
.cta-band .container { position: relative; }
.cta-band h2 { max-width: 24ch; margin-inline: auto; }
.cta-band .lead { margin: var(--s-2) auto 0; }
.cta-band .hero-actions { justify-content: center; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ebony);
  color: var(--on-inverse);
  padding-top: var(--s-6);
  padding-bottom: max(var(--s-3), env(safe-area-inset-bottom));
}
.footer-grid {
  display: grid;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--s-5); } }
/* Footer column labels are h2 for a clean heading outline, styled small. */
.footer-col h2 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(244,240,231,.56);
  margin-bottom: var(--s-2);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.125rem; }
.footer-col li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--t-sm);
  text-decoration: none;
  color: rgba(244,240,231,.8);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col li a:hover { color: var(--brass-lift); }
.footer-brand p {
  margin-top: var(--s-2);
  font-size: var(--t-sm);
  color: var(--on-inverse-muted);
  max-width: 34ch;
}
.footer-socials { display: flex; gap: 0.5rem; margin-top: var(--s-3); }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-inverse);
  border-radius: 50%;
  color: rgba(244,240,231,.8);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.footer-socials a:hover { border-color: var(--brass-lift); color: var(--brass-lift); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-1) var(--s-3);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line-inverse);
  font-size: var(--t-xs);
  color: rgba(244,240,231,.52);
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   21. Scroll reveal — the only entrance motion, and it whispers
   -------------------------------------------------------------------------- */
/* Content is visible by default. Only once the inline head script has proved
   JS is running do we hide it to animate in — so a JS failure can never leave
   the page blank. */
.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
/* Stagger children by 60ms — set via --i in markup */
.js .reveal[style*="--i"] { transition-delay: calc(var(--i) * 60ms); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; transform: scale(1.04); }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   22. Utilities
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.no-scroll { overflow: hidden; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.text-center { text-align: center; }
