/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:         #131110;
  --bg-lift:    #1C1916;
  --bg-warm:    #F4EFE6;
  --bg-warmer:  #EDE6D9;

  /* Gold — warmer, more contemporary */
  --gold:       #C49A38;
  --gold-hi:    #DDB84E;
  --gold-lo:    rgba(196,154,56,0.15);
  --gold-rule:  rgba(196,154,56,0.22);

  /* Text on dark — WCAG AA contrast */
  --t1:   #EDE8E0;   /* primary   */
  --t2:   #B0A898;   /* secondary */
  --t3:   #7A7265;   /* tertiary  */

  /* Text on cream */
  --c1:   #201C18;   /* primary   */
  --c2:   #4E4840;   /* secondary */
  --c3:   #8A8278;   /* tertiary  */

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
  --radius: 2px;
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-hi); }

/* Shared container */
.w { max-width: 1140px; margin: 0 auto; padding: 0 36px; }

/* Section padding */
.sp  { padding: 96px 0; }
.sp-sm { padding: 64px 0; }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  transition: background .35s, border-color .35s, padding .35s;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
#nav.inked {
  background: rgba(19,17,16,0.94);
  border-bottom-color: var(--gold-rule);
  padding: 14px 0;
  backdrop-filter: blur(16px);
}

.nav-row {
  display: flex; align-items: center; justify-content: space-between;
}

/* ── Logo image ───────────────────────── */
.site-logo-img {
  mix-blend-mode: screen;
  display: block;
}

.nav-logo-img {
  height: 48px;
  width: auto;
}

@media (max-width: 600px) {
  .nav-logo-img {
    height: 40px;
  }
}

.footer-logo-img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex; align-items: center; list-style: none;
}
.nav-links a {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--t2);
  padding: 6px 16px; transition: color .2s;
}
.nav-links a:hover { color: var(--t1); }
.nav-links a.active { color: var(--t1); }

.nav-cta-btn {
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold) !important;
  border: 1.5px solid rgba(196,154,56,0.45);
  padding: 9px 24px; margin-left: 8px;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta-btn:hover {
  background: var(--gold); color: var(--bg) !important;
  border-color: var(--gold);
}

.hamburger {
  display: none; background: none; border: 1.5px solid var(--gold-rule);
  color: var(--gold); padding: 7px 11px; cursor: pointer; font-size: 1.2rem;
}

@media (max-width: 860px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(19,17,16,0.97); border-top: 1px solid var(--gold-rule);
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-cta-btn { padding: 13px 36px; margin: 0; display: block; }
}

/* ─────────────────────────────────────────
   HERO  — full bleed, asymmetric
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--bg);
  position: relative; overflow: hidden;
}

/* Warm radial glow top-right */
.hero:before {
  content: '';
  position: absolute; top: -20%; right: -15%;
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(196,154,56,0.08) 0%, transparent 62%);
  pointer-events: none;
}

/* Thin horizontal rule marks — architectural feel */
.hero-rules {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-rules span {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,56,0.12) 30%, rgba(196,154,56,0.12) 70%, transparent);
}
.hero-rules span:nth-child(1) { top: 33%; }
.hero-rules span:nth-child(2) { top: 66%; }

.hero-inner {
  position: relative; z-index: 2;
  padding: 190px 36px 88px;
  max-width: 1140px; margin: 0 auto; width: 100%;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2.25rem;
  animation: up .8s .1s both;
}
.hero-tag::before {
  content: ''; width: 32px; height: 1px;
  background: var(--gold); opacity: 0.6;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 9.5vw, 8.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--t1);
  max-width: 900px;
  animation: up .95s .24s both;
}
.hero-h1 .gold-word {
  font-style: italic;
  color: var(--gold-hi);
  font-weight: 300;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 48px; align-items: flex-end;
  margin-top: 52px; padding-top: 28px;
  border-top: 1px solid var(--gold-rule);
  animation: up .8s .42s both;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--t2); max-width: 420px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 680px) {
  .hero-h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
}

@keyframes up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-fill {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--gold); color: var(--bg);
  padding: 14px 36px; border: none; border-radius: var(--radius);
  transition: background .22s, transform .2s; white-space: nowrap;
  cursor: pointer;
}
.btn-fill:hover {
  background: var(--gold-hi); color: var(--bg); transform: translateY(-2px);
}

.btn-outline {
  display: inline-block; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--t1); background: transparent;
  padding: 13px 36px;
  border: 1.5px solid rgba(237,232,224,0.18); border-radius: var(--radius);
  transition: border-color .22s, color .22s; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker-strip {
  background: var(--gold); overflow: hidden; padding: 14px 0;
  white-space: nowrap; user-select: none;
}
.ticker-track {
  display: inline-flex;
  animation: slide 32s linear infinite;
}
.ticker-track span {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--bg); padding: 0 32px; display: inline-block;
}
.ticker-track span::after {
  content: '·'; font-style: normal; margin-left: 32px;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SECTION LABELS
───────────────────────────────────────── */
.s-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem;
}
.s-eyebrow::after {
  content: ''; width: 32px; height: 1px;
  background: var(--gold); opacity: 0.4;
}

/* ─────────────────────────────────────────
   ABOUT  — cream, angled top, 60/40 split
───────────────────────────────────────── */
.about {
  background: var(--bg-warm);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding: 124px 0 96px;
}

.about-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: center;
}

.about-h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--c1); margin-bottom: 1.5rem;
}
.about-h2 em { font-style: italic; color: var(--gold); font-weight: 300; }

.about-body p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--c2); margin-bottom: 1.1rem;
}

.about-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-top: 12px;
}
.about-link:hover { color: var(--gold); gap: 14px; }

/* Stat stack — right column */
.stat-stack { display: flex; flex-direction: column; gap: 2px; }
.stat-block {
  padding: 28px 32px;
  background: var(--bg-warmer);
}
.stat-block:first-child { background: var(--bg-lift); }
.stat-val {
  display: block; font-family: var(--serif);
  font-size: 3.2rem; font-weight: 400; line-height: 1;
}
.stat-block .stat-val { color: var(--gold); }
.stat-block:first-child .stat-val { color: var(--gold-hi); }
.stat-lab {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 4px; display: block;
}
.stat-block .stat-lab { color: var(--c3); }
.stat-block:first-child .stat-lab { color: var(--t3); }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ─────────────────────────────────────────
   MANIFESTO STRIP  — unexpected full bleed
───────────────────────────────────────── */
.manifesto {
  background: var(--bg-lift);
  padding: 80px 36px;
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
  text-align: center;
}
.manifesto p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300; line-height: 1.45;
  color: var(--t1); max-width: 860px; margin: 0 auto;
}
.manifesto p em { font-style: normal; color: var(--gold-hi); }

/* ─────────────────────────────────────────
   WHY JOIN  — numbered rows, more readable
───────────────────────────────────────── */
.why { background: var(--bg); padding: 96px 0; }

.why-header {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 32px;
  margin-bottom: 56px; padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-rule);
}
.why-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; letter-spacing: -0.02em;
  color: var(--t1);
}
.why-header h2 em { font-style: italic; color: var(--gold-hi); }
.why-header p {
  font-size: 0.95rem; color: var(--t2);
  max-width: 280px; line-height: 1.7;
  text-align: right;
}
@media (max-width: 640px) {
  .why-header { flex-direction: column; }
  .why-header p { text-align: left; max-width: none; }
}

.feat-list { list-style: none; }
.feat-item {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 0; align-items: stretch;
  border-bottom: 1px solid rgba(196,154,56,0.12);
  transition: background .2s;
}
.feat-item:first-child { border-top: 1px solid rgba(196,154,56,0.12); }
.feat-item:hover { background: rgba(196,154,56,0.03); }

.feat-num {
  font-family: var(--serif); font-size: 0.75rem;
  color: var(--gold); opacity: 0.4;
  display: flex; align-items: flex-start; padding-top: 36px;
  border-right: 1px solid rgba(196,154,56,0.12);
}
.feat-head {
  padding: 32px 40px 32px 32px;
  border-right: 1px solid rgba(196,154,56,0.12);
  display: flex; flex-direction: column; justify-content: center;
}
.feat-head h3 {
  font-family: var(--serif); font-size: 1.55rem;
  font-weight: 400; color: var(--t1); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.feat-tag {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--t3);
}
.feat-body {
  padding: 32px 40px;
  display: flex; align-items: center;
}
.feat-body p {
  font-size: 1rem; line-height: 1.8; color: var(--t2); margin: 0;
}

@media (max-width: 700px) {
  .feat-item { grid-template-columns: 42px 1fr; }
  .feat-head { border-right: none; padding: 24px 20px; }
  .feat-body { grid-column: 2; padding: 0 20px 24px; }
  .feat-num  { padding-top: 28px; }
}

/* ─────────────────────────────────────────
   INCLUDED  — cream, angled bottom
───────────────────────────────────────── */
.included {
  background: var(--bg-warm);
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  padding: 124px 0 96px;
}

.included-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px;
  margin-bottom: 56px;
}
.included-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; letter-spacing: -0.02em;
  color: var(--c1); line-height: 1.1;
}
.included-head h2 em { font-style: italic; color: var(--gold); }
.included-head a { white-space: nowrap; }

@media (max-width: 640px) {
  .included-head { flex-direction: column; align-items: flex-start; }
}

/* 4 cards — flush, 1px gap mosaic */
.card-mosaic {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--bg-warmer);
  border: 1px solid var(--bg-warmer);
}
.m-card {
  background: var(--bg-warm); padding: 40px 28px;
  transition: background .25s;
}
.m-card:hover { background: #fff; }
.m-card:hover .m-icon { background: var(--bg); border-color: var(--bg); color: var(--gold-hi); }

.m-num {
  font-family: var(--serif); font-style: italic;
  font-size: 0.72rem; color: var(--gold); opacity: 0.5;
  display: block; margin-bottom: 20px;
}
.m-icon {
  width: 40px; height: 40px; border: 1.5px solid rgba(196,154,56,0.25);
  display: grid; place-items: center;
  font-size: 1.05rem; color: var(--gold);
  margin-bottom: 18px;
  transition: background .25s, border-color .25s, color .25s;
}
.m-card h4 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--c1); margin-bottom: 10px; letter-spacing: -0.01em;
}
.m-card p {
  font-size: 0.9rem; line-height: 1.75; color: var(--c2); margin: 0;
}

@media (max-width: 840px) { .card-mosaic { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .card-mosaic { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   PRICING  — two columns, readable
───────────────────────────────────────── */
.pricing { background: var(--bg-lift); padding: 96px 0; }
.pricing > .w > h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; letter-spacing: -0.02em; color: var(--t1);
  margin-bottom: 52px;
}
.pricing > .w > h2 em { font-style: italic; color: var(--gold-hi); }

.p-box {
  display: grid; grid-template-columns: 5fr 7fr; gap: 0;
  border: 1px solid var(--gold-rule); border-radius: var(--radius);
  overflow: hidden;
}

.p-left {
  background: var(--bg); padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px; border-right: 1px solid var(--gold-rule);
}
.p-price-row {
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 6px;
}
.p-cur { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--gold); }
.p-num {
  font-family: var(--serif); font-size: 6rem; font-weight: 300;
  line-height: 1; letter-spacing: -0.04em; color: var(--gold-hi);
}
.p-freq {
  font-size: 0.8rem; color: var(--t2); letter-spacing: 0.06em; margin-bottom: 4px;
}
.p-term-note { font-size: 0.88rem; color: var(--t3); line-height: 1.65; }

.p-right { background: var(--bg-lift); padding: 56px 48px; }
.p-right .s-eyebrow { margin-bottom: 1.2rem; }

.p-feats { list-style: none; margin: 0 0 36px; }
.p-feats li {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.97rem; color: var(--t2); line-height: 1.5;
}
.p-feats li i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.p-small {
  font-size: 0.8rem; color: var(--t3); line-height: 1.75; margin-top: 16px;
}

@media (max-width: 780px) {
  .p-box { grid-template-columns: 1fr; }
  .p-left { border-right: none; border-bottom: 1px solid var(--gold-rule); padding: 44px 32px; }
  .p-right { padding: 44px 32px; }
}

/* ─────────────────────────────────────────
   CONTACT  — dark, editorial grid
───────────────────────────────────────── */
.contact { background: var(--bg); padding: 96px 0; }
.c-header {
  display: flex; align-items: baseline; gap: 24px;
  margin-bottom: 64px; padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-rule);
}
.c-header h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300; letter-spacing: -0.025em; color: var(--t1); flex: 1;
}
.c-header h2 em { font-style: italic; color: var(--gold-hi); }
.c-header p { font-size: 0.95rem; color: var(--t2); max-width: 260px; line-height: 1.7; }

@media (max-width: 680px) {
  .c-header { flex-direction: column; gap: 16px; }
  .c-header p { max-width: none; }
}

.c-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}
@media (max-width: 760px) { .c-grid { grid-template-columns: 1fr; gap: 48px; } }

.c-aside h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--t1); margin-bottom: 16px;
}
.c-aside p { font-size: 0.97rem; line-height: 1.8; color: var(--t2); }
.c-email {
  display: inline-block; margin-top: 24px;
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(196,154,56,0.3); padding-bottom: 3px;
}

/* Underline-only inputs */
.f-group { margin-bottom: 24px; }
.f-group label {
  display: block; font-size: 0.67rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--t3); margin-bottom: 10px;
}
.f-group input,
.f-group textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(237,232,224,0.12);
  color: var(--t1); font-family: var(--sans); font-size: 1rem;
  font-weight: 300; padding: 10px 0; outline: none;
  transition: border-color .2s; appearance: none;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: rgba(237,232,224,0.2); }
.f-group input:focus,
.f-group textarea:focus { border-bottom-color: var(--gold); }
.f-group textarea { resize: vertical; min-height: 100px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 500px) { .f-row { grid-template-columns: 1fr; } }

/* Select inputs — dark form */
.f-group select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(237,232,224,0.12);
  color: var(--t1); font-family: var(--sans); font-size: 1rem;
  font-weight: 300; padding: 10px 0; outline: none;
  transition: border-color .2s; appearance: none; -webkit-appearance: none;
  cursor: pointer;
}
.f-group select:focus { border-bottom-color: var(--gold); }
.f-group select option { background: var(--bg-lift); color: var(--t1); }

/* Checkbox group */
.f-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.f-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.f-check label { font-size: 0.9rem; color: var(--t2); line-height: 1.6; }

/* Required field marker */
.req { color: #b94040; margin-left: 2px; }

/* Field hint text */
.field-hint {
  display: block; font-size: 0.78rem; color: var(--t3); margin-bottom: 6px; line-height: 1.4;
}

/* Inline validation errors */
.field-error {
  display: block; font-size: 0.78rem; color: #b94040; margin-top: 5px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #0C0A09;
  border-top: 1px solid rgba(196,154,56,0.12);
  padding: 56px 0 28px;
}
.f-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
}
.f-sub { font-size: 0.85rem; color: var(--t3); margin-top: 6px; line-height: 1.55; }

.f-nav { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.f-nav a {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--t3); transition: color .2s;
}
.f-nav a:hover { color: var(--gold); }

.f-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: 0.73rem; color: rgba(122,114,101,0.5);
}
.f-bottom a { color: inherit; }

@media (max-width: 580px) {
  .f-top { flex-direction: column; }
  .f-nav { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

/* ─────────────────────────────────────────
   SCROLL REVEALS
───────────────────────────────────────── */
.rv {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ─────────────────────────────────────────
   CREAM FORM OVERRIDES  (join.html)
───────────────────────────────────────── */
.cream-form .f-group label { color: var(--c3); }
.cream-form .f-group input,
.cream-form .f-group select,
.cream-form .f-group textarea {
  color: var(--c1);
  border-bottom-color: rgba(32,28,24,0.15);
}
.cream-form .f-group input::placeholder,
.cream-form .f-group textarea::placeholder { color: var(--c3); }
.cream-form .f-group input:focus,
.cream-form .f-group select:focus,
.cream-form .f-group textarea:focus { border-bottom-color: var(--gold); }
.cream-form .f-group select {
  background: transparent; -webkit-appearance: none; color: var(--c1);
  border-bottom-color: rgba(32,28,24,0.15);
}
.cream-form .f-group select option { background: var(--bg-warm); color: var(--c1); }
.cream-form .f-check label { color: var(--c2); }
.bio-counter {
  font-size: 0.72rem; color: var(--c3);
  text-align: right; margin-top: 4px; display: block;
}

/* ─────────────────────────────────────────
   LEGAL PAGES  (terms.html / privacy.html)
───────────────────────────────────────── */
.legal-body { max-width: 760px; margin: 0 auto; padding: 64px 36px 96px; }
.legal-meta { font-size: 0.85rem; color: var(--c3); margin-bottom: 3rem; }
.legal-body h2 {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 400;
  color: var(--c1); border-bottom: 1px solid var(--gold-rule);
  padding-bottom: 12px; margin: 2.5rem 0 1.25rem; letter-spacing: -0.01em;
}
.legal-body p, .legal-body li {
  font-size: 1.02rem; line-height: 1.85; color: var(--c2);
}
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.legal-body ul li::before { content: "—"; color: var(--gold); margin-right: 10px; }
.legal-body strong { color: var(--c1); font-weight: 500; }

/* ─────────────────────────────────────────
   PAGE HERO  (join / terms / privacy)
───────────────────────────────────────── */
.page-hero {
  background: var(--bg); padding: 160px 0 80px;
  border-bottom: 1px solid var(--gold-rule);
}
.page-hero .s-eyebrow { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; letter-spacing: -0.03em; color: var(--t1);
  line-height: 1; margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1.05rem; color: var(--t2); max-width: 480px; line-height: 1.75;
}

/* ─────────────────────────────────────────
   JOIN FORM PAGE
───────────────────────────────────────── */
.join-body {
  background: var(--bg-warm);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding: 100px 0 96px;
}
.form-section-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--c1); margin-bottom: 20px; padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-rule); letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────
   SUCCESS PAGE
───────────────────────────────────────── */
.success-section {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  background: var(--bg); padding: 100px 36px;
}
.success-inner { max-width: 520px; }
.success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.success-inner h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--t1); margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.success-inner p { font-size: 1.05rem; color: var(--t2); line-height: 1.8; margin-bottom: 2rem; }
