/* WAKAN — single stylesheet for the whole site.
   Ported from the approved Home-C design system. Palette + type per project/brand/style-guide.md.

   The design files are written with inline styles (a constraint of the design tool). Here the same
   system lives as classes: identical tokens, so nothing was re-derived — only re-housed.

   Reveal animation is driven by motion.js. Everything here is visible by default; motion.js
   ARMS what is below the fold and releases it on the way down, so a missed element or absent
   JS leaves content visible rather than clipped to nothing.
   ========================================================================== */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/CormorantGaramond-VF.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("assets/Jost-VF.woff2") format("woff2-variations");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --night: #141B23;
  --deep: #0E1218;
  --gold: #D9B36A;
  --cream: #F5EBD8;
  --muted: #B0A89C;
  --slate: #3A4654;
  --stone: #070607;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-label: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(20px, 4vw, 64px);
  --wrap: 1320px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

/* clip, never hidden: overflow-x:hidden makes this a scroll container and silently
   breaks position:sticky in every descendant — the pinned heroes depend on it. */
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--night);
  color: var(--cream);
  font-family: var(--font-label);
  font-weight: 300;
  line-height: 1.6;
}

main { flex: 1; }

a { color: var(--cream); text-decoration: none; }

img { max-width: 100%; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 40;
  padding: 12px 18px; background: var(--night); color: var(--gold);
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
}
.skip:focus { left: var(--gutter); top: 10px; }

/* logo SVGs carry currentColor, so one file serves every colour via CSS mask */
.wordmark, .logomark {
  display: block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
}
.wordmark {
  -webkit-mask-image: url("assets/logotype.svg");
  mask-image: url("assets/logotype.svg");
  aspect-ratio: 1929 / 250;
  color: var(--cream);
}
.logomark {
  -webkit-mask-image: url("assets/logomark.svg");
  mask-image: url("assets/logomark.svg");
  aspect-ratio: 1085 / 501;
  color: var(--gold);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(16px, 2.4vw, 28px) var(--gutter);
  background: linear-gradient(to bottom, rgba(20, 27, 35, .75), transparent);
  transition: background .5s ease;
}
.nav.is-stuck { background: rgba(20, 27, 35, .92); backdrop-filter: blur(6px); }

.nav__brand { flex: none; width: clamp(96px, 9vw, 130px); padding-block: 16px; }

.nav__links { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }

.nav__links a, .nav__support {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap;
  transition: color .3s ease;
}
/* links are short and the type is small; the padding is what makes them tappable */
.nav__links > a { padding-block: 12px; }
/* the support CTA is a filled button, not a text link: it keeps its own colour in
   both states, or its label goes gold-on-gold once it is the current page */
.nav__links a:not(.nav__support):hover { color: var(--gold); }
.nav__links a:not(.nav__support)[aria-current="page"] { color: var(--gold); }

.nav__support {
  display: inline-flex; align-items: center; gap: 12px;
  margin-left: 12px; padding: 12px 20px;
  border: 1px solid rgba(217, 179, 106, .6);
  color: var(--gold);
  transition: background .4s ease, border-color .4s ease;
}
.nav__support:hover { background: rgba(217, 179, 106, .1); border-color: var(--gold); }

.nav__menu {
  display: none;
  place-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid rgba(217, 179, 106, .5); cursor: pointer;
}
.nav__menu span { display: block; width: 20px; height: 1px; background: var(--cream); }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__menu { display: grid; }
}

/* ==========================================================================
   OVERLAY MENU
   ========================================================================== */

.menu {
  position: fixed; inset: 0; z-index: 30;
  overflow: hidden;
  background: var(--stone);
  visibility: hidden; opacity: 0;
  transition: opacity .45s ease, visibility .45s;
}
body.menu-open .menu { visibility: visible; opacity: 1; }
body.menu-open { overflow: hidden; }

.menu__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%;
  filter: saturate(.55) brightness(.32) sepia(.16);
}
.menu__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7, 6, 7, .86), rgba(7, 6, 7, .7) 45%, rgba(7, 6, 7, .92));
}

.menu__close {
  position: absolute; z-index: 2;
  top: clamp(16px, 2.4vw, 28px); right: var(--gutter);
  display: grid; place-content: center;
  width: 44px; height: 44px;
  background: none; border: 1px solid rgba(217, 179, 106, .5); cursor: pointer;
  color: var(--cream); font-family: var(--font-label); font-size: 18px; line-height: 1;
  transition: color .3s ease, border-color .3s ease;
}
.menu__close:hover { color: var(--gold); border-color: var(--gold); }

.menu__inner {
  position: relative; height: 100%;
  display: grid; grid-template-rows: 1fr auto;
  overflow-y: auto;
  padding: clamp(80px, 12vh, 130px) clamp(24px, 6vw, 80px) clamp(24px, 4vh, 44px);
}

.menu__nav { display: grid; align-content: center; justify-items: start; gap: clamp(4px, 1.2vh, 12px); }

.menu__link {
  display: flex; align-items: baseline; gap: clamp(14px, 3vw, 28px);
  min-height: 44px; padding: 9px 0;
}
.menu__num {
  color: rgba(217, 179, 106, .55);
  font-family: var(--font-label); font-size: 11px; letter-spacing: .3em;
  transition: color .5s ease;
}
.menu__link:hover .menu__num { color: var(--gold); }
.menu__txt {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, min(7vw, 6vh), 60px); line-height: 1.05;
  letter-spacing: .06em; text-transform: uppercase;
  transition: transform .6s var(--ease);
}
.menu__link:hover .menu__txt { transform: translateX(10px); color: var(--gold); }
.menu__link[aria-current="page"] .menu__txt { color: var(--gold); }

.menu__support { margin-top: clamp(18px, 3vh, 30px); }
.menu__support span {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(217, 179, 106, .6);
  color: var(--gold);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; white-space: nowrap;
}

.menu__foot {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 14px clamp(20px, 4vw, 48px);
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid rgba(176, 168, 156, .2);
  color: var(--muted); font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
}
.menu__foot p { margin: 0; }
.menu__foot a { color: var(--muted); }
.menu__foot a:hover { color: var(--gold); }
.menu__tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(16px, 2vw, 22px); letter-spacing: .02em; text-transform: none;
  color: var(--cream);
}
.menu__links { display: flex; flex-wrap: wrap; align-items: center; gap: 0 clamp(16px, 3vw, 32px); }
.menu__links a { padding-block: 11px; }

/* ==========================================================================
   REVEAL — motion.js adds .is-visible via IntersectionObserver
   ========================================================================== */

/* Everything here is visible by default and animates only when motion.js has armed it.
   The old way round — hidden until JS says otherwise — means one missed reveal leaves a
   photo clipped to nothing, permanently. Arming inverts the failure: no JS, stalled JS, a
   missed element or reduced motion all end at "visible", never at "blank". */

[data-reveal] { transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
[data-reveal].is-armed { opacity: 0; transform: translateY(28px); }

[data-reveal]:nth-child(2) { transition-delay: 80ms; }
[data-reveal]:nth-child(3) { transition-delay: 160ms; }
[data-reveal]:nth-child(4) { transition-delay: 240ms; }
[data-reveal]:nth-child(5) { transition-delay: 320ms; }
[data-reveal]:nth-child(6) { transition-delay: 400ms; }

/* a photo wiping in from the left instead of fading up */
.clip[data-reveal] { transition: clip-path 1.5s var(--ease); }
.clip[data-reveal].is-armed { opacity: 1; transform: none; clip-path: inset(0 99.9% 0 0); }

/* a gold hairline drawing itself across */
.line { height: 1px; background: linear-gradient(to right, var(--gold), rgba(217, 179, 106, .25)); }
.line[data-reveal] { transform-origin: left; transition: transform 1.8s var(--ease); }
.line[data-reveal].is-armed { opacity: 1; transform: scaleX(0); }

/* ==========================================================================
   LAYOUT PRIMITIVES
   ========================================================================== */

.wrap { max-width: var(--wrap); margin-inline: auto; }

.band { padding: clamp(80px, 13vh, 170px) var(--gutter); }
.band--deep { background: var(--deep); }

/* eyebrow / headings */
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px; letter-spacing: .32em; text-transform: uppercase;
}

.h1 {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 8vw, 124px); line-height: .95;
  letter-spacing: .1em; text-transform: uppercase;
}
.h2 {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.2vw, 48px); line-height: 1.1;
  letter-spacing: .12em; text-transform: uppercase;
  text-wrap: balance;
}
/* the softer, sentence-case variant the design uses for statements */
.h2--soft {
  font-weight: 400; letter-spacing: normal; text-transform: none;
  font-size: clamp(34px, 3.8vw, 60px);
}
.h3 {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2vw, 30px); line-height: 1.15;
  letter-spacing: .08em; text-transform: uppercase;
}

.lede {
  margin: clamp(24px, 3vh, 40px) 0 0;
  max-width: 46ch;
  font-size: clamp(17px, 1.3vw, 21px); line-height: 1.7;
  text-wrap: pretty;
}

.prose { display: grid; gap: 22px; font-size: clamp(16px, 1.15vw, 18px); line-height: 1.75; }
.prose p { margin: 0; text-wrap: pretty; }

.note { margin: 8px 0 0; color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }

/* two-column: statement left, prose right */
.two {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(32px, 5vw, 96px); align-items: start;
}

/* ---------- call to action ---------- */

.cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase; white-space: nowrap;
  color: var(--gold);
  transition: color .3s ease;
}
.cta__arrow {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(217, 179, 106, .7); border-radius: 50%;
  color: var(--gold);
  transition: transform .5s ease, background .5s ease, color .5s ease;
}
.cta__arrow svg { width: 18px; height: 18px; }
.cta:hover .cta__arrow { transform: translateX(6px); background: var(--gold); color: var(--night); }

/* ---------- section head: title left, link right ---------- */

.head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(36px, 5vh, 64px);
}

/* ---------- grids ---------- */

.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(24px, 3vw, 48px);
  padding-top: 36px;
}
.grid article { display: grid; gap: 18px; align-content: start; }
.grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.7) brightness(.72) sepia(.12); }
.grid__num { margin: 0; color: var(--gold); font-size: 12px; letter-spacing: .3em; }
.grid p { margin: 0; font-size: 16px; line-height: 1.7; text-wrap: pretty; }

/* hairline-separated tiles (Retreats: what you can host) */
.tiles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1px; margin-top: 36px;
  background: rgba(176, 168, 156, .16);
  border: 1px solid rgba(176, 168, 156, .16);
}
.tile {
  display: grid; gap: 14px; align-content: start;
  padding: clamp(28px, 3vw, 44px);
  background: var(--deep);
  transition: background .6s ease;
}
.tile:hover { background: rgba(217, 179, 106, .05); }
.tile .h3 { font-size: clamp(20px, 1.5vw, 26px); text-wrap: balance; }
.tile p { margin: 0; font-size: 15px; line-height: 1.7; text-wrap: pretty; }
.tile__num { color: var(--gold); font-size: 12px; letter-spacing: .3em; }

/* ---------- feature: image pair beside text ---------- */

.feature {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pair img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  filter: saturate(.7) brightness(.72) sepia(.12);
}
.pair img:nth-child(2) { margin-top: 48px; }

/* section photos drift very slowly. object-position, not a scale, so nothing
   overflows its box. Carried over from the shipped build. */
@keyframes drift {
  from { object-position: 50% 44%; }
  to   { object-position: 50% 56%; }
}
.pair img, .stage img, .grid img { animation: drift 30s ease-in-out infinite alternate; }
@media (prefers-reduced-motion: reduce) {
  .pair img, .stage img, .grid img { animation: none; }
}

/* ---------- centred hero (Ayni) ---------- */

.chero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: grid; place-content: center; justify-items: center; text-align: center;
  padding: clamp(120px, 18vh, 180px) var(--gutter) clamp(72px, 12vh, 120px);
  --p: 0;
}
.chero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(calc(1 + var(--p) * .1));
  filter: saturate(.68) contrast(1.06) brightness(.5) sepia(.14);
  will-change: transform;
}
.chero__shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20, 27, 35, .75) 0%, rgba(7, 6, 7, .5) 45%, rgba(7, 6, 7, .9) 100%); }
.chero__inner { position: relative; display: grid; justify-items: center; }
.chero__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(64px, 15vw, 220px); line-height: .9;
  letter-spacing: .14em; text-transform: uppercase; text-indent: .14em;
}
.chero__say { margin: clamp(20px, 3vh, 32px) 0 0; max-width: 22ch; font-size: clamp(13px, 1.3vw, 17px); letter-spacing: .3em; text-transform: uppercase; line-height: 1.9; }
.chero__note { margin: clamp(40px, 7vh, 72px) 0 0; color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }

@media (prefers-reduced-motion: reduce) { .chero__img { transform: none; } }

/* the gold rule-diamond-rule ornament */
.dia { display: flex; align-items: center; gap: 18px; color: var(--gold); font-size: 12px; }
.dia::before, .dia::after {
  content: ""; display: block;
  width: clamp(40px, 8vw, 110px); height: 1px; background: rgba(217, 179, 106, .55);
}

/* the gold value strip above the footer */
.strip {
  background: var(--stone); border-top: 1px solid rgba(217, 179, 106, .25);
  padding: 26px var(--gutter);
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px, 4vw, 48px);
  color: var(--gold); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}

/* the quieter second CTA in a pair */
.cta--plain { color: var(--cream); }
.cta--plain .cta__arrow { border-color: rgba(245, 235, 216, .4); color: var(--cream); }
.cta-pair { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 40px); margin-top: 36px; }

/* ---------- alternating stage rows (Full Cycle) ---------- */

.stage {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 80px); align-items: center;
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(48px, 8vh, 96px) var(--gutter);
  transition: background .8s ease;
}
.stage:hover { background: rgba(217, 179, 106, .04); }
.stage + .stage { border-top: 1px solid rgba(176, 168, 156, .14); }
.stage img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; filter: saturate(.7) brightness(.72) sepia(.12); }
/* even rows put the photo on the right without reordering the source */
.stage:nth-of-type(even) > :first-child { order: 2; }
.stage__num { margin: 0 0 16px; color: var(--gold); font-size: 12px; letter-spacing: .3em; }
.stage h3 { font-size: clamp(30px, 3.2vw, 48px); line-height: 1.1; letter-spacing: .1em; }
.stage p { margin: 22px 0 0; max-width: 46ch; font-size: clamp(16px, 1.15vw, 18px); line-height: 1.75; text-wrap: pretty; }

/* ---------- pull quote ---------- */

.center { text-align: center; }
.center .cta, .center .prose { margin-inline: auto; }
.quote {
  max-width: 24ch; margin: 0 auto;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(30px, 4.4vw, 64px); line-height: 1.15;
  text-wrap: balance;
}
.quote__cite {
  display: block; margin-top: clamp(20px, 3vw, 34px);
  color: var(--gold); font-family: var(--font-label); font-style: normal;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}

/* ---------- closing band: statement left, CTA right ---------- */

.close {
  max-width: var(--wrap); margin-inline: auto;
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 32px;
}
.close p { margin: 22px 0 0; max-width: 46ch; font-size: clamp(16px, 1.15vw, 18px); line-height: 1.75; text-wrap: pretty; }

/* ---------- full-bleed image band with a centred statement ---------- */

.cover { position: relative; overflow: hidden; padding: clamp(90px, 16vh, 190px) var(--gutter); }
.cover__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;
  filter: saturate(.6) brightness(.4) sepia(.14);
}
.cover__shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20, 27, 35, .5), rgba(7, 6, 7, .82)); }
.cover__inner { position: relative; max-width: 900px; margin-inline: auto; text-align: center; }
.cover__quote {
  margin: 0;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(32px, 4.6vw, 66px); line-height: 1.12;
  text-wrap: balance;
}
.cover__inner p + p { margin: 26px auto 0; max-width: 52ch; font-size: clamp(16px, 1.15vw, 18px); line-height: 1.75; text-wrap: pretty; }
.cover .cta { margin-top: 36px; }

/* ==========================================================================
   HOMEPAGE HERO — a tall section holding a sticky stage; --p is scroll
   progress through it, set by motion.js ([data-pin]).
   ========================================================================== */

.mhero { position: relative; height: 260vh; --p: 0; }
.mhero__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.mhero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%;
  transform: scale(calc(1 + var(--p) * .12));
  filter: saturate(.7) contrast(1.08) brightness(.66) sepia(.12);
  will-change: transform;
}
.mhero__grade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(20, 27, 35, .85) 0%, rgba(20, 27, 35, .35) 30%, rgba(20, 27, 35, .1) 55%, rgba(7, 6, 7, .6) 100%);
}
.mhero__dim { position: absolute; inset: 0; background: rgba(7, 6, 7, .55); opacity: calc(var(--p) * 1.3); }

.mhero__lockup {
  position: absolute; inset: 0;
  display: grid; place-content: center; justify-items: center;
  text-align: center; padding-inline: 24px;
  opacity: calc(1 - var(--p) * 2.4);
  transform: translateY(calc(var(--p) * -120px));
}
.mhero__lockup .logomark { width: clamp(110px, 13vw, 190px); }

/* a gold ring drawing itself around the lockup as you scroll — conic sweep, masked to a hairline.
   --ring-p runs 0..1 over the first quarter of the pin, so it closes while the lockup is still lit. */
.mhero__lockup::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: min(88vmin, 720px); aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(-90deg);
  border-radius: 50%;
  --ring-p: clamp(0, var(--p) * 4, 1);
  background: conic-gradient(var(--gold) calc(var(--ring-p) * 360deg), transparent 0);
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1px));
  mask: radial-gradient(closest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1px));
  filter: drop-shadow(0 0 6px rgba(217, 179, 106, .45));
  pointer-events: none;
}
.mhero__lockup .wordmark { width: min(70vw, 560px); margin-top: clamp(14px, 2.4vw, 28px); }
.mhero__tagline {
  margin: clamp(16px, 2vw, 26px) 0 0;
  color: var(--gold); font-size: clamp(11px, 1vw, 14px); letter-spacing: .34em; text-transform: uppercase;
}
.mhero__place {
  margin: clamp(40px, 7vh, 72px) 0 0;
  color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}

/* the gold seam opening from the centre as you scroll */
.mhero__seam, .mhero__seam--up {
  position: absolute; left: 50%; top: 50%;
  width: 1px; height: calc(var(--p) * 60vh);
  box-shadow: 0 0 14px rgba(217, 179, 106, .35);
}
.mhero__seam { transform: translateX(-.5px); background: linear-gradient(to bottom, rgba(217, 179, 106, 0), var(--gold) 20%, var(--gold) 80%, rgba(217, 179, 106, 0)); }
.mhero__seam--up { transform: translate(-.5px, -100%); background: linear-gradient(to top, rgba(217, 179, 106, 0), var(--gold) 20%, var(--gold) 80%, rgba(217, 179, 106, 0)); }

.mhero__statement {
  position: absolute; inset: 0;
  display: grid; place-content: center; text-align: center; padding-inline: 24px;
  opacity: calc((var(--p) - .4) * 3);
  transform: translateY(calc((1 - var(--p)) * 40px));
}
.mhero__statement p:first-child {
  margin: 0;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(32px, 5vw, 80px); line-height: 1.08; letter-spacing: -.01em;
  text-shadow: 0 2px 40px rgba(7, 6, 7, .6);
}
.mhero__statement p + p { margin: clamp(22px, 3vw, 36px) 0 0; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; }
/* the statement sits over the lockup, so it only takes clicks once it has faded in */
.mhero__statement { pointer-events: none; }
/* a gold button, not a rule: an opaque pill so the seam passes behind it, never through the type */
.mhero__statement a {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-block; padding: 14px 28px;
  color: var(--gold); text-decoration: none;
  background: rgba(7, 6, 7, .72);
  border: 1px solid rgba(217, 179, 106, .5); border-radius: 999px;
  box-shadow: 0 0 0 rgba(217, 179, 106, 0);
  transition: color .5s var(--ease), border-color .5s var(--ease), background-color .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
}
/* the sheen: a narrow gold light crossing the pill every few seconds, and on hover */
.mhero__statement a::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(217, 179, 106, .28) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: sheen 5.5s var(--ease) infinite;
}
@keyframes sheen { 0%, 65% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.mhero__statement a:hover, .mhero__statement a:focus-visible {
  color: var(--stone); background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 28px rgba(217, 179, 106, .35);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .mhero__statement a::before { animation: none; }
}
.mhero.is-statement .mhero__statement a { pointer-events: auto; }

.mhero__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(217, 179, 106, .18); }
.mhero__bar i { display: block; height: 100%; width: calc(var(--p) * 100%); background: var(--gold); }

.mhero__scroll {
  position: absolute; left: var(--gutter); bottom: 28px; margin: 0;
  color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  opacity: calc(1 - var(--p) * 4);
}

/* no scroll-driven motion: two ordinary stacked screens, everything visible */
@media (prefers-reduced-motion: reduce) {
  .mhero { height: auto; }
  .mhero__stage { position: relative; height: auto; }
  .mhero__lockup, .mhero__statement {
    position: relative; inset: auto;
    min-height: 100vh; opacity: 1; transform: none;
  }
  .mhero__img { position: absolute; }
  .mhero__stage video.mhero__img { display: none; }
  .mhero__stage { background: url("assets/home-hero-poster.jpg") 50% 40% / cover no-repeat; }
  .mhero__seam, .mhero__seam--up, .mhero__bar, .mhero__scroll, .mhero__dim { display: none; }
  .mhero__lockup::after { --ring-p: 1; }
}

/* ==========================================================================
   TWO DOORS — the split that follows the homepage hero. The widening on hover
   is :has(), so it needs no JS; without :has() the doors simply stay even.
   ========================================================================== */

.doors {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--deep);
  min-height: min(100vh, 900px);
  transition: grid-template-columns 1.1s var(--ease);
}
.doors:has(.door:first-of-type:hover) { grid-template-columns: 1.5fr 1fr; }
.doors:has(.door:last-of-type:hover)  { grid-template-columns: 1fr 1.5fr; }

.door {
  position: relative; overflow: hidden;
  display: grid; align-content: end; justify-items: start;
  min-height: min(100vh, 900px);
  padding: clamp(40px, 6vw, 96px) var(--gutter);
  transition: filter 1s ease;
}
.doors:has(.door:first-of-type:hover) .door:last-of-type,
.doors:has(.door:last-of-type:hover)  .door:first-of-type { filter: brightness(.55) saturate(.6); }

.door img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%;
  filter: saturate(.9) brightness(.86);
  transition: transform 1.4s var(--ease);
}
.door:hover img { transform: scale(1.05); }
.door__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 6, 7, .86) 0%, rgba(7, 6, 7, .4) 45%, rgba(20, 27, 35, .1) 100%);
}
.door__text { position: relative; max-width: 46ch; }
.door__text .h2 { font-size: clamp(40px, 4.6vw, 72px); line-height: 1; }
.door__text p { margin: 24px 0 32px; font-size: clamp(16px, 1.15vw, 18px); line-height: 1.7; max-width: 38ch; text-wrap: pretty; }
.door .cta { color: var(--cream); }

.door--right { justify-items: end; text-align: right; }
.door--right img { object-position: 50% 55%; }

.doors__seam {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
  background: linear-gradient(to bottom, rgba(217, 179, 106, .2), var(--gold) 20%, var(--gold) 80%, rgba(217, 179, 106, .2));
  box-shadow: 0 0 16px rgba(217, 179, 106, .35);
  pointer-events: none;
  transition: left 1.1s var(--ease);
}
.doors:has(.door:first-of-type:hover) .doors__seam { left: 60%; }
.doors:has(.door:last-of-type:hover)  .doors__seam { left: 40%; }

.doors__hint {
  position: absolute; left: 50%; top: clamp(32px, 5vh, 56px); transform: translateX(-50%);
  margin: 0; color: var(--muted);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  pointer-events: none; white-space: nowrap;
}

@media (max-width: 720px) {
  .doors, .doors:has(.door:hover) { grid-template-columns: 1fr; }
  .door { min-height: 80vh; }
  .door--right { justify-items: start; text-align: left; }
  .doors__seam, .doors__hint { display: none; }
  .doors:has(.door:hover) .door { filter: none; }
}

/* ==========================================================================
   VIDEO HERO — kept from the shipped build. A tall section holds a sticky
   100vh stage; scroll progress scrubs the clip while the copy stays pinned.
   ========================================================================== */

.vhero { position: relative; height: 320vh; }
.vhero__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--night); }
.vhero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.8) contrast(1.08) brightness(.8) sepia(.12);
}
.vhero__grade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(20, 27, 35, .50) 0%, rgba(7, 6, 7, .15) 45%, rgba(7, 6, 7, .55) 80%, rgba(7, 6, 7, .85) 100%);
}
.vhero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 52% at 14% 88%, rgba(20, 27, 35, .55) 0%, rgba(20, 27, 35, 0) 72%);
}
.vhero__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(217, 179, 106, .18); }
.vhero__bar i { display: block; height: 100%; width: 0; background: var(--gold); }

.vhero__eyebrow {
  position: absolute; z-index: 2;
  top: clamp(70px, 13vh, 150px); left: var(--gutter);
  margin: 0; color: var(--muted);
  font-size: 12px; letter-spacing: .32em; text-transform: uppercase;
}

.vhero__mark {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  margin: 0; padding-inline: var(--gutter);
  text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 3.2vw, 44px); line-height: 1.1;
  letter-spacing: .32em; text-transform: uppercase;
  transition: opacity .6s ease, transform .6s ease;
}
.vhero__line { display: inline-block; padding-left: .32em; }
.vhero__sp { display: inline-block; width: .6em; }
.vhero__lockup { display: flex; flex-direction: column; align-items: center; gap: clamp(10px, 1.6vw, 22px); transition: opacity .7s ease, transform .7s ease; }
.vhero__lockup .logomark { width: clamp(120px, 15vw, 210px); }
.wordmark--vh { width: min(62vw, 560px); }
.vhero__ch { display: inline-block; transition: opacity .25s ease, transform .25s ease; }

.vstage {
  position: absolute; z-index: 2;
  left: var(--gutter); bottom: clamp(30px, 8vh, 90px);
  margin: 0; max-width: 40ch;
  transition: opacity .3s ease, transform .3s ease;
}
.vstage__label { margin: 0 0 clamp(10px, 1.2vw, 16px); color: var(--gold); font-size: clamp(11px, .8vw, 12px); letter-spacing: .34em; text-transform: uppercase; }
.vstage__line { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.25; }
.vhero__cta { margin: clamp(22px, 3vw, 36px) 0 0; transition: opacity .5s ease; }

.js .vhero:not(.is-static) .vhero__ch { opacity: 0; transform: translateY(10px); }
.js .vhero:not(.is-static) .vhero__ch.on { opacity: 1; transform: none; }
.js .vhero:not(.is-static) .vhero__lockup { opacity: 0; transform: translateY(14px); }
.js .vhero:not(.is-static) .vhero__lockup.on { opacity: 1; transform: none; }
.js .vhero:not(.is-static) .vstage { opacity: 0; transform: translateY(12px); pointer-events: none; }
.js .vhero:not(.is-static) .vstage.out { transform: translateY(-12px); }
.js .vhero:not(.is-static) .vstage.on {
  opacity: 1; transform: none; pointer-events: auto;
  transition: opacity .5s ease, transform .5s ease;
}
.js .vhero:not(.is-static) .vhero__cta { opacity: 0; pointer-events: none; }
.js .vhero:not(.is-static).is-end .vhero__cta { opacity: 1; pointer-events: auto; }

/* Full Cycle quote block over the sweeping clip — reuses the vhero language.
   Poster doubles as the fallback: video 404 or reduced motion still shows the still. */
.band--video {
  position: relative; overflow: hidden;
  background: var(--night) url("assets/full-cycle-sweep-poster.jpg") center/cover no-repeat;
}
.band--video > :not(video):not(.vhero__grade) { position: relative; z-index: 1; }
.band--video .vhero__video { filter: saturate(.8) contrast(1.06) sepia(.12); }
.band--video .vhero__grade {
  background: linear-gradient(to bottom, rgba(7, 6, 7, .42) 0%, rgba(7, 6, 7, .28) 50%, rgba(7, 6, 7, .48) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .band--video .vhero__video { display: none; }
}

@media (max-width: 860px) {
  .vhero { height: 240vh; }
  .vhero__stage { height: 100svh; }
  .vhero__mark { font-size: clamp(18px, 5vw, 26px); }
  .wordmark--vh { width: min(78vw, 360px); }
  .vhero__line { display: block; }
  .vstage { left: 20px; right: 20px; bottom: clamp(24px, 6vh, 60px); }
  .vhero__eyebrow { left: 20px; }
}

/* no motion, or no video: static poster, no scroll length, copy unchanged */
.vhero.is-static { height: auto; }
.vhero.is-static .vhero__stage { position: relative; height: auto; min-height: clamp(520px, 86vh, 820px); }
.vhero.is-static .vhero__bar { display: none; }
.vhero.is-static .vstage:not(:last-of-type) { display: none; }

/* ==========================================================================
   INNER-PAGE HERO — still image, parallax on --p ([data-pin])
   ========================================================================== */

.phero {
  position: relative; height: 88vh; min-height: 520px; overflow: hidden;
  display: grid; align-content: end;
  padding: clamp(40px, 8vh, 96px) var(--gutter);
  --p: 0;
}
.phero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;
  transform: scale(calc(1 + var(--p) * .1)) translateY(calc(var(--p) * 40px));
  filter: saturate(.7) contrast(1.06) brightness(.6) sepia(.12);
  will-change: transform;
}
.phero__grade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 6, 7, .92) 0%, rgba(7, 6, 7, .4) 50%, rgba(20, 27, 35, .7) 100%);
}
.phero__text { position: relative; width: 100%; max-width: var(--wrap); margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
  .phero__img { transform: none; }
}

/* ---------- hero that holds a film ----------
   A silent ambient loop sits in the hero; pressing play swaps in the full film with sound,
   letterboxed and with native controls, and takes the page furniture out of the way. */

.phero__grade, .phero__text { transition: opacity .5s ease; }

.phero__loop { z-index: 0; }
.phero__film { z-index: 1; object-fit: contain; background: #000; }
.phero--film.is-playing .phero__img { transform: none; }
.phero--film.is-playing .phero__grade,
.phero--film.is-playing .phero__text { opacity: 0; pointer-events: none; }

/* The one control on the page that has to read as a button, over moving footage —
   so it is solid gold with dark text, not the site's usual gold-on-dark hairline. */
.playbtn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 14px 28px 14px 14px;
  background: var(--gold); border: 0; border-radius: 999px; cursor: pointer;
  color: var(--night);
  font-family: var(--font-label); font-weight: 400;
  font-size: clamp(12px, 1.05vw, 14px); letter-spacing: .18em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 30px rgba(7, 6, 7, .45);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.playbtn .cta__arrow {
  width: 38px; height: 38px;
  background: var(--night); border-color: var(--night); color: var(--gold);
  transition: none;
}
.playbtn .cta__arrow svg { width: 20px; height: 20px; margin-left: 2px; }
.playbtn:hover { background: #E7C684; transform: translateY(-1px); box-shadow: 0 10px 34px rgba(7, 6, 7, .55); }
.playbtn:hover .cta__arrow { transform: none; background: var(--night); color: var(--gold); }

.filmclose {
  position: absolute; z-index: 3;
  top: clamp(70px, 11vh, 120px); right: var(--gutter);
  display: none; place-content: center;
  width: 44px; height: 44px;
  background: rgba(7, 6, 7, .6); border: 1px solid rgba(217, 179, 106, .5); cursor: pointer;
  color: var(--cream); font-family: var(--font-label); font-size: 18px; line-height: 1;
  transition: color .3s ease, border-color .3s ease;
}
.filmclose:hover { color: var(--gold); border-color: var(--gold); }
.phero--film.is-playing .filmclose { display: grid; }

/* the load-in: hero copy settles once, no scroll needed. Armed the same way as the
   reveals — visible unless motion.js is there to play it in. */
.ld { transition: opacity 1.6s var(--ease), transform 1.6s var(--ease); }
.ld.is-armed { opacity: 0; transform: translateY(14px); }

/* ==========================================================================
   CONTACT — hero holding the form card
   ========================================================================== */

.chero--contact { align-content: center; justify-items: stretch; text-align: left; padding-bottom: clamp(64px, 10vh, 110px); }
.chero--contact .chero__img { filter: saturate(.68) contrast(1.05) brightness(.42) sepia(.13); transform: scale(calc(1 + var(--p) * .08)); }
.chero--contact .chero__shade { background: linear-gradient(to bottom, rgba(20, 27, 35, .8) 0%, rgba(7, 6, 7, .7) 55%, rgba(7, 6, 7, .92) 100%); }

.contact {
  position: relative; width: 100%; max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
.contact__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 4.6vw, 78px); line-height: 1; letter-spacing: .04em; text-transform: uppercase; }
.contact__lines a { padding-block: 11px; }
.contact__lines { display: grid; gap: 2px; margin-top: clamp(32px, 5vh, 52px); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; }
.contact__lines p { margin: 0; color: var(--muted); }

.form {
  min-width: 0;
  background: rgba(7, 6, 7, .62);
  border: 1px solid rgba(217, 179, 106, .4);
  padding: clamp(26px, 3.2vw, 44px);
  display: grid; gap: 22px;
}
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr)); gap: 18px; }

.lbl, .field label { display: block; margin: 0 0 10px; color: var(--muted); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; }

.field input, .field textarea, .fld {
  width: 100%; padding: 15px 16px;
  background: rgba(7, 6, 7, .4);
  border: 1px solid rgba(176, 168, 156, .3); border-radius: 0;
  color: var(--cream);
  font-family: var(--font-label); font-weight: 300; font-size: 16px;
  transition: border-color .4s ease;
}
.field textarea, textarea.fld { resize: vertical; line-height: 1.7; }
.field input::placeholder, .field textarea::placeholder, .fld::placeholder { color: rgba(176, 168, 156, .65); }
.field input:focus, .field textarea:focus, .fld:focus { outline: none; border-color: rgba(217, 179, 106, .8); }

/* "I am writing about" — radios styled as a segmented control, no JS */
.topic { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(104px, 100%), 1fr)); gap: 8px; }
.topic input { position: absolute; opacity: 0; pointer-events: none; }
.topic label {
  display: block; margin: 0; padding: 13px 8px;
  border: 1px solid rgba(176, 168, 156, .35);
  color: var(--cream);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; text-align: center;
  cursor: pointer;
  transition: background .4s ease, color .4s ease, border-color .4s ease;
}
.topic input:checked + label { background: var(--gold); color: var(--night); border-color: var(--gold); }
.topic input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }

.submit {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--night); border: none; cursor: pointer;
  font-family: var(--font-label); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
}
.submit .cta__arrow { width: 40px; height: 40px; border-color: rgba(20, 27, 35, .5); color: var(--night); }
.submit:hover .cta__arrow { transform: translateX(6px); background: var(--night); color: var(--gold); }

.form__note { margin: 0; color: var(--muted); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; text-align: center; }

/* ==========================================================================
   SUPPORT — giving panel. Frequency, amount and the tier note are radios plus
   sibling selectors, so the panel works with no JS at all.
   ========================================================================== */

.nav__support[aria-current="page"] { background: var(--gold); color: var(--night); border-color: var(--gold); }

.give { display: grid; gap: 26px; }
.give__freq { display: flex; border: 1px solid rgba(176, 168, 156, .3); }
.give__freq label {
  flex: 1; margin: 0; padding: 14px 10px;
  color: var(--muted); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; text-align: center;
  cursor: pointer; transition: background .4s ease, color .4s ease;
}
.give__amounts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(88px, 100%), 1fr)); gap: 10px; }
/* 2x2 rather than 3 + a lonely one on a phone */
@media (max-width: 520px) { .give__amounts { grid-template-columns: 1fr 1fr; } }
.give__amounts label {
  margin: 0; padding: 18px 8px;
  border: 1px solid rgba(176, 168, 156, .35);
  color: var(--cream); font-family: var(--font-display); font-size: 26px; text-align: center;
  cursor: pointer; transition: background .4s ease, color .4s ease, border-color .4s ease;
}
.give__amounts label:hover { border-color: rgba(217, 179, 106, .7); }
.give input { position: absolute; opacity: 0; pointer-events: none; }
.give input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }

.give__tiers { border-top: 1px solid rgba(176, 168, 156, .25); padding-top: 22px; }
.tier { display: none; }
.tier p:first-child { margin: 0; color: var(--gold); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.tier p + p { margin: 12px 0 0; font-size: 16px; line-height: 1.7; text-wrap: pretty; }

/* the checked radio lights its own control and reveals its tier note */
#give-monthly:checked ~ .give__freq label[for="give-monthly"],
#give-once:checked    ~ .give__freq label[for="give-once"] { background: rgba(217, 179, 106, .18); color: var(--gold); }
#a25:checked  ~ .give__amounts label[for="a25"],
#a60:checked  ~ .give__amounts label[for="a60"],
#a150:checked ~ .give__amounts label[for="a150"],
#a500:checked ~ .give__amounts label[for="a500"] { background: var(--gold); color: var(--night); border-color: var(--gold); }
#a25:checked  ~ .give__tiers .tier--25,
#a60:checked  ~ .give__tiers .tier--60,
#a150:checked ~ .give__tiers .tier--150,
#a500:checked ~ .give__tiers .tier--500 { display: block; }

/* ==========================================================================
   LEGAL PAGES — long-form body copy
   ========================================================================== */

.legal { max-width: 70ch; }
.legal h2 {
  margin: clamp(40px, 6vh, 72px) 0 18px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2vw, 30px); line-height: 1.2;
  letter-spacing: .08em; text-transform: uppercase;
}
.legal h2:first-of-type { margin-top: clamp(24px, 4vh, 40px); }
.legal p, .legal li { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.8; text-wrap: pretty; }
.legal p { margin: 0 0 18px; }
.legal ul { margin: 0 0 18px; padding-left: 1.4em; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.foot {
  background: var(--stone);
  border-top: 1px solid rgba(217, 179, 106, .45);
  padding: clamp(56px, 9vh, 96px) var(--gutter) 32px;
}
.foot__cols {
  max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 40px; align-items: start;
}
.foot__mark { width: 64px; }
.foot__word { width: 130px; margin-top: 14px; }
.foot__line {
  margin: 24px 0 0;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(22px, 2vw, 30px); line-height: 1.2;
}
.foot__nav, .foot__meta {
  display: grid; gap: 2px; align-content: start;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
}
.foot__nav a, .foot__meta a { padding-block: 11px; }
.foot__nav a { transition: color .3s ease; }
.foot__nav a:hover, .foot__meta a:hover { color: var(--gold); }
.foot__nav a.is-support { color: var(--gold); }
.foot__meta { color: var(--muted); }
.foot__meta p { margin: 0; padding-block: 5px; }
.foot__meta p:first-child { color: var(--cream); }
.foot__meta a { color: var(--muted); }
.foot__meta a:first-of-type { margin-top: 12px; }

.foot__legal {
  max-width: var(--wrap); margin: 56px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(176, 168, 156, .2);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  color: var(--muted); font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
}
.foot__legal p { margin: 0; }
.foot__legal a { color: var(--muted); }
.foot__legal a:hover { color: var(--gold); }
.foot__legal p:last-child { display: flex; gap: 24px; }
.foot__legal a { display: inline-block; padding-block: 10px; }
