/* ============================================================
   ABV CLUB — private members' network, Sydney
   Direction: midnight ledger. One grotesk family (Archivo,
   variable width+weight) carries the whole system; Bodoni
   italic appears only as the signature accent. Gold is used
   like a wax seal — rarely, and on purpose.
   ============================================================ */

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2-variations"),
       url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni";
  src: url("../fonts/bodoni-var-italic.woff2") format("woff2-variations"),
       url("../fonts/bodoni-var-italic.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #070d17;          /* page ground */
  --ink-2: #0b1322;        /* raised panel */
  --ink-3: #101a2d;        /* higher panel */
  --cream: #ece5d2;        /* primary text */
  --cream-dim: #9b978a;    /* secondary text */
  --cream-faint: #6b6a62;  /* tertiary / metadata */
  --gold: #c8a24a;
  --gold-hi: #eacf7f;
  --line: rgba(236, 229, 210, 0.1);
  --line-strong: rgba(236, 229, 210, 0.2);
  --gold-line: rgba(200, 162, 74, 0.35);
  --shell: 1280px;
  --pad: clamp(20px, 4.5vw, 56px);

  --disp: "Archivo", "Arial Narrow", sans-serif;
  --serif: "Bodoni", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--disp);
  font-variation-settings: "wdth" 100;
  font-weight: 340;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 300;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 9s steps(9) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.shell { width: min(var(--shell), 100% - var(--pad) * 2); margin-inline: auto; }

.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;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 400;
  padding: 10px 16px; background: var(--cream); color: var(--ink);
  transform: translateY(-200%); text-decoration: none; font-size: 13px;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---- type utilities ------------------------------------------------ */

.k-label {
  font-variation-settings: "wdth" 110;
  font-weight: 620;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.k-meta {
  font-variation-settings: "wdth" 105;
  font-weight: 480;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
h1, h2, h3 {
  font-family: var(--disp);
  font-variation-settings: "wdth" 120;
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream);
}
.accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 560;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-hi);
  padding-right: 0.08em; /* italic overshoot */
}

/* ---- header -------------------------------------------------------- */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--ink) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 24px; position: relative;
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand b {
  font-variation-settings: "wdth" 125;
  font-weight: 800; font-size: 24px; letter-spacing: 0.02em; line-height: 1;
  color: var(--cream);
}
.brand span {
  font-variation-settings: "wdth" 108;
  font-weight: 500; font-size: 9px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gold);
}
.pill-nav {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px; padding: 5px;
  border: 1px solid var(--line); border-radius: 999px;
  background: color-mix(in srgb, var(--ink-2) 65%, transparent);
  backdrop-filter: blur(10px);
}
.pill-nav a {
  padding: 9px 18px; border-radius: 999px; text-decoration: none;
  font-size: 13px; font-weight: 430; color: var(--cream-dim);
  transition: color 0.2s, background 0.2s;
}
.pill-nav a:hover { color: var(--cream); background: rgba(236,229,210,0.06); }
.cta-pill {
  display: inline-flex; align-items: stretch; text-decoration: none;
  border-radius: 999px; overflow: hidden;
  border: 1px solid var(--gold-line);
  transition: border-color 0.25s, transform 0.25s;
}
.cta-pill:hover { border-color: var(--gold); transform: translateY(-1px); }
.cta-pill i {
  display: grid; place-items: center; width: 40px;
  background: var(--gold); color: var(--ink); font-style: normal; font-size: 14px;
  transition: background 0.25s;
}
.cta-pill:hover i { background: var(--gold-hi); }
.cta-pill em {
  display: flex; align-items: center; padding: 0 18px;
  font-style: normal; font-size: 12px; font-weight: 560;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
}
.menu-button {
  display: none; background: none; border: 0; padding: 12px; cursor: pointer;
}
.menu-button i { display: block; width: 26px; height: 1.5px; background: var(--cream); margin: 7px 0; transition: 0.3s; }

/* ---- mobile menu --------------------------------------------------- */

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 24px var(--pad) 40px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.mobile-menu.open { clip-path: inset(0 0 0 0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; height: 60px; }
.menu-close {
  background: none; border: 1px solid var(--line-strong); border-radius: 999px;
  color: var(--cream); padding: 10px 20px; cursor: pointer;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.mobile-menu nav { margin: auto 0; display: flex; flex-direction: column; }
.mobile-menu nav a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 4vh 0; border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-variation-settings: "wdth" 120;
  font-weight: 740; font-size: clamp(34px, 9vw, 54px);
  line-height: 1; text-transform: uppercase; letter-spacing: -0.01em;
  transition: color 0.2s, padding-left 0.3s;
}
.mobile-menu nav a:active { color: var(--gold-hi); }
.mobile-menu nav a small {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 14px; text-transform: none; color: var(--gold);
}
.mobile-menu footer { display: flex; justify-content: space-between; }

/* ---- hero ---------------------------------------------------------- */

.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 130px var(--pad) 90px;
  overflow: hidden;
  background:
    radial-gradient(60% 45% at 50% 0%, rgba(200, 162, 74, 0.13), transparent 70%),
    radial-gradient(45% 40% at 50% 105%, rgba(23, 42, 76, 0.6), transparent 70%),
    var(--ink);
}
/* ghost letters behind everything */
.hero-ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-variation-settings: "wdth" 125;
  font-weight: 850; font-size: min(46vw, 640px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 229, 210, 0.05);
  user-select: none; pointer-events: none; white-space: nowrap;
}
.hero > :not(.hero-ghost) { position: relative; }
.hero-seal { width: clamp(60px, 8vw, 78px); margin-bottom: 24px; filter: drop-shadow(0 6px 30px rgba(200,162,74,0.25)); }
.hero .k-label { display: flex; align-items: center; gap: 14px; }
.hero .k-label::before, .hero .k-label::after {
  content: ""; width: 34px; height: 1px; background: var(--gold-line);
}
.hero h1 {
  margin-top: 22px;
  font-size: clamp(42px, 7vw, 100px);
  max-width: 16ch;
}
.hero-sub {
  margin-top: 26px; max-width: 58ch;
  font-size: clamp(15px, 1.35vw, 18px); line-height: 1.7;
  color: var(--cream-dim); font-weight: 380;
}
.hero-sub strong { color: var(--cream); font-weight: 520; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.cta-main {
  display: inline-flex; align-items: stretch; text-decoration: none;
  border-radius: 999px; overflow: hidden; height: 58px;
  background: var(--gold); color: var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cta-main:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(200, 162, 74, 0.35); }
.cta-main em {
  display: flex; align-items: center; padding: 0 26px;
  font-style: normal; font-size: 13px; font-weight: 640; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta-main i {
  display: grid; place-items: center; width: 52px; font-style: normal;
  border-left: 1px solid rgba(7, 13, 23, 0.25); font-size: 16px;
  transition: transform 0.25s;
}
.cta-main:hover i { transform: translate(2px, -2px); }
.cta-ghost {
  text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim);
  border-bottom: 1px solid var(--line-strong); padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-ghost:hover { color: var(--cream); border-color: var(--gold); }
.hero-note { margin-top: 26px; font-size: 11px; letter-spacing: 0.1em; color: var(--cream-faint); text-transform: uppercase; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 52px; overflow: hidden; background: var(--line);
}
.hero-scroll::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold); transform: translateY(-100%);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip { 60% { transform: translateY(100%); } 100% { transform: translateY(100%); } }

/* staged hero entrance */
.hero > :not(.hero-ghost) { animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero > :nth-child(2) { animation-delay: 0.05s; }
.hero > :nth-child(3) { animation-delay: 0.15s; }
.hero > :nth-child(4) { animation-delay: 0.25s; }
.hero > :nth-child(5) { animation-delay: 0.35s; }
.hero > :nth-child(6) { animation-delay: 0.45s; }
.hero > :nth-child(7) { animation-delay: 0.55s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } }

/* ---- ticker -------------------------------------------------------- */

.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden; padding: 15px 0;
  background: var(--ink-2);
}
.ticker-track { display: flex; width: max-content; animation: tick 36s linear infinite; }
.ticker span {
  font-variation-settings: "wdth" 112;
  font-weight: 520; font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream-faint);
  padding: 0 18px; white-space: nowrap;
}
.ticker b { color: var(--gold); font-weight: 520; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---- statement ----------------------------------------------------- */

.statement { padding: clamp(90px, 15vw, 190px) 0; text-align: center; }
.statement p {
  font-variation-settings: "wdth" 118;
  font-weight: 720; text-transform: uppercase;
  font-size: clamp(28px, 5.4vw, 64px); line-height: 1.06;
  letter-spacing: -0.01em;
  color: rgba(236, 229, 210, 0.13);
  transition: color 0.9s ease;
}
.statement p.lit { color: var(--cream); }
.statement p.lit .accent { color: var(--gold-hi); }
.statement p .accent { color: rgba(234, 207, 127, 0.15); transition: color 0.9s ease; }

/* ---- contact sheet (photos) ---------------------------------------- */

.sheet { padding: 0 0 clamp(80px, 11vw, 150px); }
.sheet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sheet-grid figure {
  margin: 0; padding: 9px;
  border: 1px solid var(--line-strong); background: var(--ink-2);
  transition: border-color 0.3s;
}
.sheet-grid figure:hover { border-color: var(--gold-line); }
.sheet-grid figure.wide { grid-column: 1 / -1; }
.sheet-grid figure.wide img { aspect-ratio: 1320 / 608; }
.sheet-grid figure:nth-child(3) { transform: translateY(28px); }
.sheet-grid figure:nth-child(3).reveal { transform: translateY(50px); }
.sheet-grid figure:nth-child(3).reveal.in-view { transform: translateY(28px); }
.sheet-grid img {
  display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.94);
  transition: filter 0.45s ease;
}
.sheet-grid figure:hover img { filter: saturate(1) contrast(1.02) brightness(1); }
.sheet-grid figcaption {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 4px 4px;
}

/* ---- section scaffold ---------------------------------------------- */

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-head h2 { font-size: clamp(38px, 5.6vw, 76px); max-width: 14ch; margin-top: 18px; }
.sec-head aside { max-width: 300px; padding-bottom: 8px; }
.sec-head aside p { font-size: 14px; line-height: 1.7; color: var(--cream-dim); }
.sec-rule {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--gold-line); padding-top: 14px; margin-bottom: 40px;
}

/* ---- benefits ledger ----------------------------------------------- */

.benefits { padding: clamp(80px, 10vw, 140px) 0; }
.ledger {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.ledger article {
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  padding: 26px 28px 30px;
  position: relative;
  transition: background 0.3s;
}
.ledger article:hover { background: var(--ink-2); }
.ledger article:hover .l-num { color: var(--gold-hi); }
.l-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.l-num {
  font-variation-settings: "wdth" 120;
  font-weight: 700; font-size: 15px; color: var(--gold); letter-spacing: 0.05em;
  transition: color 0.3s;
}
.ledger h3 {
  font-variation-settings: "wdth" 114;
  font-weight: 680; font-size: clamp(19px, 1.8vw, 24px); line-height: 1.05;
}
.ledger article > p { margin-top: 10px; font-size: 13.5px; line-height: 1.6; color: var(--cream-dim); max-width: 44ch; }

/* ---- standard ------------------------------------------------------ */

.standard { padding: clamp(80px, 10vw, 140px) 0; background: var(--ink-2); border-block: 1px solid var(--line); }
.standard-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.standard-cards article {
  border: 1px solid var(--line); background: var(--ink);
  padding: 24px 22px 26px;
  min-height: 300px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.standard-cards article:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.standard-cards article::before {
  content: ""; position: absolute; inset: auto -20% -35% -20%; height: 60%;
  background: radial-gradient(closest-side, rgba(200, 162, 74, 0.1), transparent);
  pointer-events: none;
}
.st-top { display: flex; justify-content: space-between; }
.st-big {
  margin-top: auto; padding-top: 30px;
  font-variation-settings: "wdth" 122;
  font-weight: 790; font-size: clamp(34px, 3.2vw, 46px); line-height: 0.95;
  letter-spacing: -0.02em; color: var(--cream);
}
.st-big small { display: block; font-size: 0.42em; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); margin-top: 6px; }
.standard-cards h3 {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  font-variation-settings: "wdth" 112;
  font-weight: 620; font-size: 15px; letter-spacing: 0.03em;
}
.standard-cards article > p:not(.st-big) { margin-top: 8px; font-size: 12.5px; line-height: 1.55; color: var(--cream-dim); }

/* criteria strip under cards */
.criteria {
  margin-top: clamp(48px, 7vw, 80px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.criteria blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 520;
  font-size: clamp(22px, 2.5vw, 32px); line-height: 1.35; color: var(--cream);
}
.criteria blockquote footer { margin-top: 20px; }
.criteria ul { list-style: none; padding: 0; border-top: 1px solid var(--line-strong); }
.criteria li {
  display: flex; gap: 20px; align-items: baseline;
  padding: 17px 4px; border-bottom: 1px solid var(--line);
  font-size: 14.5px; color: var(--cream-dim); line-height: 1.55;
}
.criteria li b {
  font-variation-settings: "wdth" 120;
  font-weight: 700; font-size: 12px; color: var(--gold); min-width: 30px;
}

/* ---- lodge line ---------------------------------------------------- */

.lodge {
  padding: clamp(90px, 13vw, 170px) 0; text-align: center;
  background:
    radial-gradient(55% 65% at 50% 100%, rgba(200, 162, 74, 0.1), transparent 70%),
    var(--ink);
  overflow: hidden;
}
.lodge .k-label { justify-content: center; display: flex; }
.lodge-num {
  font-variation-settings: "wdth" 125;
  font-weight: 830; font-size: clamp(110px, 24vw, 300px); line-height: 0.85;
  letter-spacing: -0.03em; margin-top: 22px;
  background: linear-gradient(178deg, var(--cream) 30%, rgba(236, 229, 210, 0.1));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lodge-addr {
  margin-top: 14px;
  font-variation-settings: "wdth" 112;
  font-weight: 540; font-size: clamp(12px, 1.6vw, 16px);
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
}
.lodge .shell > p:last-child { margin-top: 22px; font-size: 14.5px; color: var(--cream-dim); max-width: 46ch; margin-inline: auto; line-height: 1.7; }

/* ---- inside the room (video) --------------------------------------- */

.room { padding: 0 0 clamp(80px, 11vw, 150px); }
.player {
  position: relative; margin: 0;
  border: 1px solid var(--line-strong);
  padding: 10px; background: var(--ink-2);
}
.player video {
  display: block; width: 100%; aspect-ratio: 16 / 9;
  object-fit: cover; background: #000;
}
.player-cover {
  position: absolute; inset: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; padding: 0;
  background: linear-gradient(180deg, rgba(7, 13, 23, 0.1) 40%, rgba(7, 13, 23, 0.82));
  transition: opacity 0.4s ease;
}
.player-cover.hidden { opacity: 0; pointer-events: none; }
.play-seal {
  display: grid; place-items: center;
  width: clamp(72px, 9vw, 96px); height: clamp(72px, 9vw, 96px);
  border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-size: clamp(22px, 2.6vw, 30px); text-indent: 4px;
  box-shadow: 0 0 0 1px var(--gold-line), 0 0 0 14px rgba(200, 162, 74, 0.14), 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s, box-shadow 0.25s;
}
.player-cover:hover .play-seal {
  transform: scale(1.06);
  box-shadow: 0 0 0 1px var(--gold-line), 0 0 0 20px rgba(200, 162, 74, 0.2), 0 18px 50px rgba(0, 0, 0, 0.55);
}
.player-meta {
  position: absolute; left: clamp(16px, 3vw, 34px); bottom: clamp(14px, 2.6vw, 28px);
  text-align: left; color: var(--cream);
}
.player-meta b {
  display: block;
  font-variation-settings: "wdth" 116;
  font-weight: 700; font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.02em; text-transform: uppercase;
}
.player-meta small {
  display: block; margin-top: 5px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-hi);
}

/* ---- letter -------------------------------------------------------- */

.letter { padding: clamp(80px, 10vw, 150px) 0; border-top: 1px solid var(--line); }
.letter-inner { max-width: 760px; margin-inline: auto; }
.letter-salute {
  font-family: var(--serif); font-style: italic; font-weight: 540;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.2; color: var(--gold-hi);
  margin-top: 26px;
}
.letter-body { margin-top: 30px; display: grid; gap: 22px; }
.letter-body p { font-size: clamp(15.5px, 1.4vw, 18px); line-height: 1.8; color: var(--cream-dim); font-weight: 370; }
.letter-body p strong { color: var(--cream); font-weight: 520; }
.letter-sign { margin-top: 36px; display: flex; align-items: center; gap: 18px; }
.letter-sign img { width: 54px; opacity: 0.9; }
.letter-sign div b { display: block; font-variation-settings: "wdth" 112; font-weight: 620; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.letter-sign div span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-faint); }

/* ---- process ------------------------------------------------------- */

.process { padding: clamp(80px, 10vw, 140px) 0; background: var(--ink-2); border-block: 1px solid var(--line); }
.process-cols { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line-strong); }
.process-cols article { border-right: 1px solid var(--line); padding: 8px 30px 10px; position: relative; }
.process-cols article:first-child { padding-left: 0; border-left: 0; }
.p-step {
  font-variation-settings: "wdth" 125;
  font-weight: 820; font-size: clamp(52px, 6vw, 84px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--gold-line);
}
.process-cols h3 { margin-top: 18px; font-variation-settings: "wdth" 114; font-weight: 680; font-size: 21px; }
.process-cols p:not(.p-step) { margin-top: 12px; font-size: 13.5px; line-height: 1.65; color: var(--cream-dim); max-width: 34ch; }

/* ---- application --------------------------------------------------- */

.apply { padding: clamp(80px, 10vw, 150px) 0; }
.apply-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.apply-copy { position: sticky; top: 110px; }
.apply-copy h2 { font-size: clamp(38px, 5vw, 68px); margin-top: 18px; }
.apply-copy > p { margin-top: 22px; font-size: 15.5px; line-height: 1.7; color: var(--cream-dim); max-width: 42ch; }
.apply-copy .mail-line { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; }
.apply-copy .mail-line a { color: var(--gold-hi); text-underline-offset: 4px; }

.apply-form {
  background: var(--ink-2); border: 1px solid var(--line-strong);
  padding: clamp(26px, 3.5vw, 46px);
  position: relative;
}
.apply-form::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid var(--line); pointer-events: none;
}
.apply-form > * { position: relative; }
.form-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 20px; margin-bottom: 10px; border-bottom: 1px solid var(--line-strong);
}
.form-head strong { font-variation-settings: "wdth" 116; font-weight: 700; font-size: 19px; letter-spacing: 0.02em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.apply-form label {
  display: block; padding: 20px 0 0;
  font-variation-settings: "wdth" 108;
  font-weight: 540; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cream-faint);
}
.apply-form label small { float: right; font-size: 9px; color: var(--cream-faint); letter-spacing: 0.1em; }
.apply-form input, .apply-form select, .apply-form textarea {
  display: block; width: 100%; margin-top: 8px;
  background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  border-radius: 0; padding: 10px 2px 12px;
  color: var(--cream); font-size: 15px; font-weight: 380;
  letter-spacing: 0; text-transform: none;
  transition: border-color 0.25s;
}
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.apply-form select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M0 0l5 6 5-6z' fill='%23c8a24a'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center;
}
.apply-form select option { background: var(--ink-2); }
.apply-form textarea { resize: vertical; min-height: 90px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.submit-row { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.submit-row .cta-main { border: 0; cursor: pointer; background: var(--gold); }
.submit-row p { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-faint); }

/* ---- footer -------------------------------------------------------- */

.site-footer { border-top: 1px solid var(--line); overflow: hidden; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px; padding: clamp(50px, 7vw, 80px) 0 60px;
}
.footer-grid > div > .k-label { display: block; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { font-size: 14px; line-height: 1.75; color: var(--cream-dim); text-decoration: none; }
.footer-grid a:hover { color: var(--gold-hi); }
.footer-motto {
  font-family: var(--serif); font-style: italic; font-weight: 520;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.3; color: var(--cream); max-width: 14ch;
}
.footer-ghost {
  font-variation-settings: "wdth" 125;
  font-weight: 850; font-size: clamp(88px, 16.5vw, 236px); line-height: 0.78;
  text-transform: uppercase; letter-spacing: -0.01em; text-align: center;
  white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(236, 229, 210, 0.08);
  transform: translateY(18%);
  user-select: none;
}
.footer-base {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding: 22px 0 26px;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-faint);
}
.footer-base a { text-decoration: none; color: inherit; }
.footer-base a:hover { color: var(--gold-hi); }

/* ---- thanks page --------------------------------------------------- */

.thanks-main {
  min-height: 100svh; display: grid; place-items: center;
  text-align: center; padding: 130px var(--pad) 80px;
  background: radial-gradient(55% 45% at 50% 0%, rgba(200, 162, 74, 0.12), transparent 70%), var(--ink);
}
.thanks-card { max-width: 640px; }
.thanks-card img { width: 90px; margin: 0 auto 28px; }
.thanks-card h1 { font-size: clamp(42px, 7.5vw, 84px); margin-top: 22px; }
.thanks-card > p:not(.k-label) { margin: 26px auto 0; max-width: 46ch; color: var(--cream-dim); line-height: 1.7; }
.thanks-card .cta-main { margin-top: 38px; }

/* ---- reveal -------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in-view { opacity: 1; transform: none; }
.ledger article, .standard-cards article { transition-delay: calc(var(--i, 0) * 60ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .statement p { color: var(--cream); }
  .statement p .accent { color: var(--gold-hi); }
}

/* ---- responsive ---------------------------------------------------- */

@media (max-width: 1060px) {
  .pill-nav { display: none; }
  .standard-cards { grid-template-columns: 1fr 1fr; }
  .process-cols { grid-template-columns: 1fr; border-left: 0; }
  .process-cols article { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0 30px; }
  .process-cols article:first-child { padding-top: 0; }
  .apply-grid { grid-template-columns: 1fr; }
  .apply-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .cta-pill { display: none; }
  .menu-button { display: block; }
  .header-inner { height: 70px; }

  .hero { padding-top: 100px; padding-bottom: 110px; }
  .hero .k-label { font-size: 9px; letter-spacing: 0.22em; }
  .hero .k-label::before, .hero .k-label::after { width: 18px; }
  .hero h1 { font-size: clamp(40px, 12.5vw, 64px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 20px; width: 100%; }
  .cta-main { width: 100%; max-width: 340px; justify-content: space-between; }

  .sec-head { flex-direction: column; align-items: flex-start; gap: 18px; }

  .sheet-grid { grid-template-columns: 1fr; gap: 16px; }
  .sheet-grid figure:nth-child(3),
  .sheet-grid figure:nth-child(3).reveal,
  .sheet-grid figure:nth-child(3).reveal.in-view { transform: none; }
  .sheet-grid figure:nth-child(3).reveal:not(.in-view) { transform: translateY(22px); }

  .ledger { grid-template-columns: 1fr; border-left: 0; border-top: 1px solid var(--line-strong); }
  .ledger article { border-right: 0; padding: 22px 0 26px; }

  .standard-cards { grid-template-columns: 1fr; }
  .standard-cards article { min-height: 0; }
  .st-big { padding-top: 22px; }

  .criteria { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-base { flex-direction: column; gap: 8px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .submit-row { flex-direction: column; align-items: stretch; text-align: center; }
  .submit-row .cta-main { max-width: none; }
}
