/* YRH.CLUB — site styles
   Palette and type follow the YRH.CLUB Brand Book v2. */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/inter-latin-opsz-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/inter-latin-ext-opsz-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Brand palette */
  --chocolate: #2B211C;   /* Primary */
  --ivory: #F2EEE7;       /* Primary light */
  --taupe: #B8ADA1;       /* Secondary */
  --bronze: #8A7664;      /* Accent */

  /* Derived working tones (same hues, adjusted only for legibility) */
  --ink: #2B211C;
  --ink-soft: #5E534B;        /* body copy on ivory, 6.9:1 */
  --bronze-ink: #6E5C4C;      /* small accent text on ivory, 5.4:1 */
  --paper: #F2EEE7;
  --paper-deep: #E9E3D9;
  --line: #D6CDC1;
  --night: #2B211C;
  --night-deep: #221A16;
  --on-night: #F2EEE7;
  --on-night-soft: #B8ADA1;   /* taupe on chocolate, 7:1 */
  --night-line: #473A32;

  --font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 5.5vw, 96px);
  --max: 1440px;
  --section: clamp(96px, 13vw, 200px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--chocolate); color: var(--ivory); }

:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }

.skip {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--chocolate); color: var(--ivory); padding: 12px 18px;
}
.skip:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- Type ---------- */

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--bronze-ink);
}
.night .label { color: var(--on-night-soft); }

.display {
  margin: 0;
  font-weight: 600;
  font-size: clamp(44px, 7.4vw, 116px);
  line-height: .98;
  letter-spacing: -.035em;
  font-variation-settings: "opsz" 32;
}
.h2 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 32;
}
.h3 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.lead {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.32;
  letter-spacing: -.018em;
  font-weight: 400;
}
.lead em { font-style: normal; color: var(--bronze-ink); }
.night .lead em { color: var(--taupe); }
.body { margin: 0; color: var(--ink-soft); max-width: 58ch; }
.night .body { color: var(--on-night-soft); }
.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  --b: var(--chocolate);
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 56px; padding: 0 30px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  background: var(--b); color: var(--ivory); border: 1px solid var(--b);
  cursor: pointer; white-space: nowrap; text-align: center;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: transparent; color: var(--b); }
.btn--ghost { background: transparent; color: var(--b); }
.btn--ghost:hover { background: var(--b); color: var(--ivory); }
.btn--light { --b: var(--ivory); color: var(--chocolate); }
.btn--light:hover { color: var(--ivory); }
.btn--light.btn--ghost { color: var(--ivory); }
.btn--light.btn--ghost:hover { color: var(--chocolate); background: var(--ivory); }
.btn svg { flex: none; }
.btn .arrow { width: 18px; height: 10px; transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.textlink {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  padding: 10px 0; white-space: nowrap;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .6s var(--ease);
}
.textlink:hover { background-size: 0 1px; background-position: 100% 100%; }

/* ---------- Wordmark ---------- */

.wordmark {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-weight: 300; letter-spacing: .42em; line-height: 1;
  white-space: nowrap;
}
.wordmark__name { font-size: 20px; margin-right: -.42em; }
.wordmark__rule { width: 100%; height: 1px; background: currentColor; opacity: .5; }
.wordmark__coords { font-size: 10px; letter-spacing: .32em; opacity: .75; margin-right: -.32em; }
.wordmark__key { width: 26px; height: 12px; opacity: .8; }

/* ---------- Header ---------- */

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  color: var(--ivory);
  transition: background .6s var(--ease), color .6s var(--ease), transform .6s var(--ease), border-color .6s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.header .wordmark__name { font-size: 18px; }
.nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.nav a:not(.btn) {
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  position: relative; padding: 8px 0;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease);
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { min-height: 44px; padding: 0 22px; font-size: 11.5px; }
.header .btn { --b: var(--ivory); background: transparent; color: var(--ivory); }
.header .btn:hover { background: var(--ivory); color: var(--chocolate); }

.header.is-solid, .header.is-light {
  background: rgba(242, 238, 231, .94);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  backdrop-filter: saturate(1.2) blur(14px);
  color: var(--chocolate);
  border-bottom-color: var(--line);
}
.header.is-solid .btn, .header.is-light .btn { --b: var(--chocolate); color: var(--chocolate); }
.header.is-solid .btn:hover, .header.is-light .btn:hover { background: var(--chocolate); color: var(--ivory); }
.header.is-hidden { transform: translateY(-100%); }

.menu-toggle {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  background: none; border: 0; cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 22px; height: 1px; background: currentColor; position: relative; transition: background .3s; }
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: currentColor;
  transition: transform .45s var(--ease), top .45s var(--ease);
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45; background: var(--chocolate); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px var(--gutter) 48px;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.menu-open .header { color: var(--ivory); background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a { font-size: 38px; font-weight: 500; letter-spacing: -.025em; line-height: 1.25; }
.mobile-menu__foot { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--night-line); display: flex; flex-direction: column; gap: 8px; color: var(--on-night-soft); font-size: 15px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header__inner { height: 72px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--ivory); background: var(--night-deep);
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); animation: heroIn 2.8s var(--ease-out) .1s forwards;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(34,26,22,.6) 0%, rgba(34,26,22,.3) 28%, rgba(34,26,22,.45) 55%, rgba(34,26,22,.88) 100%);
}
@keyframes heroIn { to { transform: scale(1); } }
.hero__content { width: 100%; padding-top: 160px; padding-bottom: clamp(48px, 7vw, 96px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: end; }
.hero .label { color: var(--ivory); opacity: .85; margin-bottom: 28px; }
.hero .display { max-width: 12ch; }
.hero__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; max-width: 480px; padding-bottom: 10px; }
.hero__aside p { margin: 0; max-width: 380px; font-size: 17px; line-height: 1.6; color: rgba(242,238,231,.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__foot {
  display: flex; justify-content: space-between; gap: 24px; margin-top: clamp(48px, 7vw, 96px);
  padding-top: 22px; border-top: 1px solid rgba(242,238,231,.28);
  font-size: 11px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: rgba(242,238,231,.8);
}
.hero__scroll { display: inline-flex; align-items: center; gap: 12px; }
.hero__scroll i { display: block; width: 1px; height: 28px; background: rgba(242,238,231,.5); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; left: 0; top: -100%; width: 1px; height: 100%; background: var(--ivory); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0% { top: -100%; } 60%, 100% { top: 100%; } }

@media (max-width: 600px) { .hero .label { letter-spacing: .14em; } }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__foot .hide-sm { display: none; }
}

/* Page hero (inner pages) */
.page-hero { padding-top: clamp(160px, 18vw, 260px); padding-bottom: clamp(64px, 8vw, 120px); }
.page-hero .label { margin-bottom: 28px; }
.page-hero .display { max-width: 14ch; }
.page-hero .lead { margin-top: 40px; max-width: 30ch; color: var(--ink-soft); }

/* ---------- Sections ---------- */

.section { padding-top: var(--section); padding-bottom: var(--section); }
.section--tight { padding-top: calc(var(--section) * .6); padding-bottom: calc(var(--section) * .6); }
.night { background: var(--night); color: var(--on-night); }
.paper-deep { background: var(--paper-deep); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.night .rule { background: var(--night-line); }

.split { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 0 clamp(20px, 2.4vw, 40px); }
.col-label { grid-column: 1 / span 3; }
.col-main { grid-column: 4 / span 9; }
@media (max-width: 900px) {
  .col-label, .col-main { grid-column: 1 / -1; }
  .col-label { margin-bottom: 28px; }
}

/* Intro statement */
.intro .lead { max-width: 24ch; font-size: clamp(28px, 3.6vw, 54px); line-height: 1.16; letter-spacing: -.028em; font-weight: 500; }
.intro__foot { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; margin-top: clamp(48px, 6vw, 88px); max-width: 880px; }
@media (max-width: 700px) { .intro__foot { grid-template-columns: 1fr; gap: 20px; } }

/* Services chapters */
.chapter { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px clamp(20px, 2.4vw, 40px); align-items: center; }
.chapter + .chapter { margin-top: clamp(96px, 11vw, 176px); }
.chapter__media { grid-column: 1 / span 7; position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper-deep); }
.chapter__media img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.chapter__text { grid-column: 9 / span 4; display: flex; flex-direction: column; gap: 26px; }
.chapter--flip .chapter__media { grid-column: 6 / span 7; order: 2; }
.chapter--flip .chapter__text { grid-column: 1 / span 4; order: 1; }
.chapter__num { font-size: 12px; font-weight: 600; letter-spacing: .22em; color: var(--bronze-ink); display: flex; align-items: center; gap: 14px; }
.chapter__num::after { content: ""; width: 40px; height: 1px; background: currentColor; opacity: .6; }
.list { list-style: none; margin: 4px 0 0; padding: 0; border-top: 1px solid var(--line); }
.list li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 900px) {
  .chapter__media, .chapter--flip .chapter__media { grid-column: 1 / -1; order: 1; aspect-ratio: 4 / 4.6; }
  .chapter__text, .chapter--flip .chapter__text { grid-column: 1 / -1; order: 2; }
}

/* Full-bleed quote band */
.band { position: relative; min-height: 88vh; display: flex; align-items: center; color: var(--ivory); overflow: hidden; isolation: isolate; background: var(--night-deep); }
.band__media { position: absolute; inset: -10% 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(34,26,22,.72) 0%, rgba(34,26,22,.45) 60%, rgba(34,26,22,.3) 100%); }
.band blockquote { margin: 0; max-width: 18ch; font-size: clamp(34px, 5vw, 76px); font-weight: 500; line-height: 1.06; letter-spacing: -.032em; }
.band .label { color: var(--ivory); opacity: .85; margin-bottom: 32px; }

/* Requests ledger */
.ledger { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--night-line); }
.ledger li {
  display: grid; grid-template-columns: 90px minmax(0, 1fr) minmax(0, .8fr); gap: 24px; align-items: baseline;
  padding: clamp(26px, 3vw, 40px) 0; border-bottom: 1px solid var(--night-line);
  transition: padding .6s var(--ease), color .4s;
}
.ledger li:hover { padding-left: 12px; }
.ledger__n { font-size: 12px; font-weight: 600; letter-spacing: .22em; color: var(--on-night-soft); }
.ledger__t { font-size: clamp(22px, 2.3vw, 34px); line-height: 1.2; letter-spacing: -.022em; font-weight: 500; }
.ledger__d { font-size: 15.5px; line-height: 1.6; color: var(--on-night-soft); }
@media (max-width: 900px) {
  .ledger li { grid-template-columns: 1fr; gap: 10px; }
  .ledger li:hover { padding-left: 0; }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); counter-reset: step; }
.step { display: flex; flex-direction: column; gap: 16px; padding-top: 28px; border-top: 1px solid var(--ink); }
.step__n { font-size: clamp(40px, 4vw, 60px); font-weight: 300; letter-spacing: -.04em; line-height: 1; color: var(--bronze); }
.step h3 { margin: 12px 0 0; font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.step p { margin: 0; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 56px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Principles */
.principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(24px, 4vw, 80px); }
.principle { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 8px 16px; padding: 34px 0; border-top: 1px solid var(--line); }
.principle svg { width: 28px; height: 28px; color: var(--bronze); margin-top: 2px; }
.principle h3 { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -.015em; }
.principle p { grid-column: 2; margin: 0; font-size: 15.5px; color: var(--ink-soft); }
@media (max-width: 800px) { .principles { grid-template-columns: 1fr; } }

/* Founder */
.founder { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px clamp(20px, 2.4vw, 40px); align-items: center; }
.founder__media { grid-column: 1 / span 5; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-deep); }
.founder__media img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.founder__text { grid-column: 7 / span 6; display: flex; flex-direction: column; gap: 28px; }
.founder__quote { margin: 0; font-size: clamp(28px, 3.2vw, 48px); font-weight: 500; line-height: 1.14; letter-spacing: -.028em; }
.founder__sig { display: flex; align-items: center; gap: 18px; padding-top: 8px; }
.founder__sig strong { font-weight: 600; }
.founder__sig span { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 900px) {
  .founder__media, .founder__text { grid-column: 1 / -1; }
}

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 64px); }
.quote { margin: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.quote blockquote { margin: 0; font-size: clamp(21px, 1.9vw, 27px); line-height: 1.34; letter-spacing: -.018em; font-weight: 500; }
.quote figcaption { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-ink); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; gap: 48px; } }

/* Engagement cards */
.ways { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 32px); }
.way { display: flex; flex-direction: column; gap: 22px; padding: clamp(32px, 4.5vw, 72px); background: var(--paper); border: 1px solid var(--line); }
.way.night { background: var(--night); color: var(--on-night); border-color: var(--night); }
.way ul { list-style: none; margin: 8px 0 0; padding: 0; }
.way li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 15.5px; color: var(--ink-soft); display: flex; gap: 14px; }
.way.night li { border-color: var(--night-line); color: var(--on-night-soft); }
.way li::before { content: ""; flex: none; width: 14px; height: 1px; background: currentColor; margin-top: 12px; }
.way .btn { align-self: flex-start; margin-top: auto; }
.way__spacer { flex: 1; min-height: 12px; }
@media (max-width: 900px) { .ways { grid-template-columns: 1fr; } }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0; font-size: clamp(19px, 1.7vw, 24px); font-weight: 500; letter-spacing: -.015em; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; position: relative; width: 16px; height: 16px; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 0; top: 7.5px; width: 16px; height: 1px; background: currentColor; transition: transform .45s var(--ease); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq__a { padding: 0 0 30px; max-width: 70ch; color: var(--ink-soft); }
.faq__a p { margin: 0 0 12px; }

/* CTA */
.cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta .display { max-width: 14ch; font-size: clamp(42px, 6.4vw, 100px); }
.cta p { margin: 0; color: var(--on-night-soft); max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }

/* ---------- Footer ---------- */

.footer { background: var(--night-deep); color: var(--on-night-soft); font-size: 14.5px; padding-top: clamp(72px, 9vw, 128px); padding-bottom: 40px; }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 48px; padding-bottom: clamp(56px, 7vw, 96px); }
.footer .wordmark { color: var(--ivory); align-items: flex-start; }
.footer .wordmark__name { font-size: 24px; }
.footer .wordmark__rule { width: 100%; }
.footer h2 { margin: 0 0 18px; font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ivory); }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { transition: color .3s; }
.footer a:hover { color: var(--ivory); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 40px; padding-top: 28px; border-top: 1px solid var(--night-line); font-size: 12.5px; line-height: 1.7; }
.footer__legal p { margin: 0; max-width: 90ch; }
@media (max-width: 900px) { .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer__brand { grid-column: 1 / -1; } }

/* ---------- Forms ---------- */

.request { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 56px clamp(20px, 2.4vw, 40px); align-items: start; }
.request__aside { grid-column: 1 / span 4; position: sticky; top: 120px; display: flex; flex-direction: column; gap: 36px; }
.request__form { grid-column: 6 / span 7; }
@media (max-width: 1000px) {
  .request__aside, .request__form { grid-column: 1 / -1; position: static; }
}
.next { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.next li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--ink-soft); }
.next b { font-weight: 600; color: var(--bronze-ink); font-size: 12px; letter-spacing: .2em; padding-top: 3px; }

.form { display: flex; flex-direction: column; gap: 36px; padding: clamp(28px, 4vw, 64px); background: #F7F4EF; border: 1px solid var(--line); }
.form fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
.form legend, .field > span { display: block; margin-bottom: 14px; font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.choices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice span {
  display: flex; align-items: center; justify-content: center; text-align: center; min-height: 56px; padding: 10px 14px;
  border: 1px solid var(--line); font-size: 14.5px; line-height: 1.3; transition: border-color .3s, background .3s, color .3s;
}
.choice input:hover + span { border-color: var(--ink); }
.choice input:checked + span { background: var(--chocolate); border-color: var(--chocolate); color: var(--ivory); }
.choice input:focus-visible + span { outline: 1px solid var(--ink); outline-offset: 3px; }
@media (max-width: 640px) { .choices { grid-template-columns: 1fr; } }

.row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
@media (max-width: 640px) { .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field > span { margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: 400 17px/1.5 var(--font); color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid #9C9086; border-radius: 0;
  padding: 12px 0; min-height: 52px; outline: none; transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { border: 1px solid #9C9086; padding: 14px 16px; min-height: 148px; resize: vertical; margin-top: 6px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%232B211C' stroke-width='1.2'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; padding-right: 28px; cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: #8F847A; }
.field small { margin-top: 8px; font-size: 13px; color: var(--ink-soft); }
.consent { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); cursor: pointer; }
.consent input { flex: none; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--chocolate); }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.form__submit { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-top: 8px; }
.form__submit p { margin: 0; font-size: 13.5px; color: var(--ink-soft); max-width: 38ch; }
.hp { position: absolute !important; left: -9999px !important; }

/* ---------- Prose (legal) ---------- */

.prose { max-width: 720px; }
.prose h2 { margin: 56px 0 14px; font-size: 22px; font-weight: 600; letter-spacing: -.015em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p { margin: 0 0 16px; }
.prose ul { padding-left: 20px; margin: 0 0 16px; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.prose .updated { font-size: 14px; color: var(--ink-soft); }

/* ---------- Motion ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.mask { overflow: hidden; }
.reveal-img { clip-path: inset(12% 0 0 0); transition: clip-path 1.6s var(--ease-out); }
.reveal-img.is-in { clip-path: inset(0 0 0 0); }
.no-js .reveal { opacity: 1; transform: none; }
.no-js .reveal-img { clip-path: none; }

.hero-line { display: block; overflow: hidden; }
.hero-line > span { display: block; transform: translateY(105%); animation: lineUp 1.4s var(--ease-out) forwards; animation-delay: var(--d, .2s); }
@keyframes lineUp { to { transform: none; } }
.fade-in { opacity: 0; animation: fadeIn 1.4s var(--ease-out) forwards; animation-delay: var(--d, .6s); }
@keyframes fadeIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; transition-duration: .01ms !important; }
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; }
  .hero-line > span { transform: none; }
  .fade-in { opacity: 1; }
}

.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; }

/* =========================================================
   v2 — section rhythm, private-office direction
   ========================================================= */
:root {
  --parchment: #FAF8F4;
  --stone: #E4DDD2;
  --stone-line: #CDC4B7;
  --charcoal: #262321;
  --near-black: #161413;
  --charcoal-line: #3D3834;
}
.bg-parchment { background: var(--parchment); }
.bg-ivory { background: var(--ivory); }
.bg-stone { background: var(--stone); }
.bg-stone .rule, .bg-stone .step { border-color: var(--ink); }
.bg-stone .principle, .bg-stone .list li { border-color: var(--stone-line); }
.bg-charcoal { background: var(--charcoal); color: var(--on-night); }
.bg-ink { background: var(--near-black); color: var(--on-night); }
.bg-charcoal .label, .bg-ink .label { color: var(--on-night-soft); }
.bg-charcoal .body, .bg-ink .body { color: var(--on-night-soft); }

/* Statement scale: brand lines sit clearly above explanatory copy */
.statement {
  margin: 0; font-weight: 500;
  font-size: clamp(32px, 4.4vw, 66px); line-height: 1.06; letter-spacing: -.034em;
  font-variation-settings: "opsz" 32;
}
.support { margin: 0; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: var(--ink-soft); max-width: 44ch; }
.bg-charcoal .support, .bg-ink .support { color: var(--on-night-soft); }

/* Intro */
.intro .statement { max-width: 17ch; }
.intro .support { margin-top: clamp(28px, 3vw, 40px); }

/* Philosophy — typographic dark chapter */
.philosophy { padding-top: clamp(120px, 16vw, 240px); padding-bottom: clamp(120px, 16vw, 240px); }
.philosophy blockquote { margin: 0; max-width: 15ch; font-size: clamp(40px, 6.6vw, 104px); font-weight: 500; line-height: 1.0; letter-spacing: -.04em; }
.philosophy__foot { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px clamp(20px, 2.4vw, 40px); margin-top: clamp(56px, 7vw, 112px); }
.philosophy__foot p { grid-column: 7 / span 5; margin: 0; font-size: 17px; line-height: 1.7; color: var(--on-night-soft); }
.philosophy__foot .label { grid-column: 1 / span 4; }
@media (max-width: 900px) { .philosophy__foot p, .philosophy__foot .label { grid-column: 1 / -1; } }

/* Requests ledger on light ground */
.ledger--light { border-top-color: var(--line); }
.ledger--light li { border-bottom-color: var(--line); }
.ledger--light .ledger__n { color: var(--bronze-ink); }
.ledger--light .ledger__d { color: var(--ink-soft); }

/* Founder — near-black editorial chapter */
.founder--dark .founder__media { background: #221F1C; }
.founder--dark .founder__quote { font-size: clamp(34px, 4.2vw, 64px); line-height: 1.06; letter-spacing: -.034em; }
.founder--dark .body { color: var(--on-night-soft); max-width: 46ch; }
.founder__facts { list-style: none; margin: 8px 0 0; padding: 0; border-top: 1px solid var(--charcoal-line); }
.founder__facts li { display: grid; grid-template-columns: minmax(0, 11em) minmax(0, 1fr); gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--charcoal-line); font-size: 15px; line-height: 1.5; }
.founder__facts b { font-weight: 500; color: var(--on-night); }
.founder__facts span { color: var(--on-night-soft); }
.founder--dark .founder__sig strong { color: var(--on-night); font-size: 18px; }
.founder--dark .founder__sig span { color: var(--on-night-soft); }
@media (max-width: 560px) { .founder__facts li { grid-template-columns: 1fr; gap: 4px; } }

/* Ways — open columns instead of boxes */
.ways--open { gap: 0; border-top: 1px solid var(--ink); }
.ways--open .way { background: transparent; border: 0; padding: clamp(36px, 4vw, 56px) clamp(0px, 4vw, 64px) 0 0; }
.ways--open .way + .way { border-left: 1px solid var(--line); padding-left: clamp(24px, 4vw, 64px); padding-right: 0; }
.ways--open .way li { border-top-color: var(--line); color: var(--ink-soft); }
@media (max-width: 900px) {
  .ways--open .way { padding-right: 0; }
  .ways--open .way + .way { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; margin-top: 48px; }
}

/* Final CTA uses brand chocolate */
.cta-dark { background: var(--chocolate); color: var(--on-night); }

/* Footer near-black */
.footer { background: var(--near-black); }
.footer__legal { border-top-color: var(--charcoal-line); }

/* Hero: destination-led image, cinematic overlay */
.hero::after {
  background:
    linear-gradient(90deg, rgba(22,20,19,.64) 0%, rgba(22,20,19,.4) 55%, rgba(22,20,19,.34) 100%),
    linear-gradient(180deg, rgba(22,20,19,.45) 0%, rgba(22,20,19,0) 24%, rgba(22,20,19,.12) 50%, rgba(22,20,19,.84) 100%);
}

/* =========================================================
   v3 — founder-led office: calmer motion, clearer hierarchy
   ========================================================= */

/* Calmer motion */
.hero__media img { transform: scale(1.03); animation-duration: 2.2s; }
.hero-line > span { transform: none; opacity: 0; animation: fadeIn 1.2s var(--ease-out) forwards; animation-delay: var(--d, .2s); }
.reveal { transform: translateY(14px); transition-duration: .9s; }
.reveal-img { clip-path: none; opacity: 0; transition: opacity 1.2s var(--ease-out); }
.reveal-img.is-in { opacity: 1; }
.no-js .reveal-img { opacity: 1; }
.band__media { inset: 0; }
.band { min-height: 72vh; }
.band blockquote { max-width: 16ch; }
.band::after { background: linear-gradient(90deg, rgba(22,20,19,.66) 0%, rgba(22,20,19,.38) 60%, rgba(22,20,19,.22) 100%); }

/* Hero copy */
.hero .display { font-size: clamp(48px, 8vw, 128px); }
.hero__aside { gap: 18px; }
.hero__aside .hero__lead { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.45; color: var(--ivory); }
.hero__aside .hero__actions { margin-top: 10px; }
.hero__foot span:first-child { letter-spacing: .2em; }

/* Stacks of explanatory copy */
.stack { display: flex; flex-direction: column; gap: 16px; margin-top: clamp(28px, 3vw, 40px); max-width: 46ch; }
.stack .support { max-width: none; }
.support--strong { color: var(--ink) !important; font-weight: 500; }
.bg-charcoal .support--strong, .bg-ink .support--strong { color: var(--on-night) !important; }
.aside-line { margin: clamp(48px, 6vw, 88px) 0 0; padding-top: 22px; border-top: 1px solid var(--line); max-width: 46ch; font-size: 15px; letter-spacing: .01em; color: var(--bronze-ink); }

/* In practice — quotes as the request, the answer beside it */
.ledger--quote .ledger__t { font-size: clamp(22px, 2.2vw, 32px); }

/* Why YRH — typographic points, no icons */
.points { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0 clamp(20px, 2.4vw, 40px); margin: clamp(64px, 8vw, 120px) 0 0; }
.points > div { padding-top: 22px; border-top: 1px solid var(--charcoal-line); }
.points dt { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--on-night); margin-bottom: 12px; }
.points dd { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--on-night-soft); }
@media (max-width: 1100px) { .points { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; } }
@media (max-width: 560px) { .points { grid-template-columns: 1fr; row-gap: 28px; } }

/* Recently handled */
.handled { display: flex; flex-direction: column; }
.handled article { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 16px 40px; padding: clamp(28px, 3vw, 40px) 0; border-bottom: 1px solid var(--line); }
.handled article:first-child { border-top: 1px solid var(--ink); }
.handled h3 { margin: 0; font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; line-height: 1.6; }
.handled p { margin: 0; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 700px) { .handled article { grid-template-columns: 1fr; } }

/* Founder */
.founder--dark .body { max-width: 50ch; }

/* Membership */
.benefits { list-style: none; margin: clamp(40px, 5vw, 64px) 0 clamp(40px, 5vw, 56px); padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(24px, 3vw, 48px); border-top: 1px solid var(--stone-line); max-width: 760px; }
.benefits li { padding: 16px 0; border-bottom: 1px solid var(--stone-line); font-size: 16px; color: var(--ink); }
@media (max-width: 640px) { .benefits { grid-template-columns: 1fr; } }

/* Single request — the strongest conversion point */
.single .display { font-size: clamp(44px, 6.6vw, 104px); }
.single .cta__actions { margin-top: clamp(36px, 4vw, 52px); }

/* Discretion */
.pledge { margin: clamp(36px, 4vw, 56px) 0 20px; padding-left: 24px; border-left: 1px solid var(--ink); font-size: clamp(24px, 2.6vw, 38px); line-height: 1.2; letter-spacing: -.02em; font-weight: 500; max-width: 22ch; }
.faq-wrap { margin-top: clamp(80px, 10vw, 144px); }

/* Footer — minimal */
.footer__top--min { grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr)); }
.footer__top--min ul { gap: 12px; }
@media (max-width: 900px) { .footer__top--min { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Mobile WhatsApp — discreet, never over content */
.wa-float { display: none; }
@media (max-width: 900px) {
  .wa-float {
    position: fixed; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 40;
    display: inline-flex; align-items: center; gap: 10px;
    height: 40px; padding: 0 14px;
    background: rgba(43,33,28,.94); color: var(--ivory);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border: 1px solid rgba(242,238,231,.18);
    font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
  .menu-open .wa-float { opacity: 0; pointer-events: none; }
  .footer { padding-bottom: 96px; }
}
