/* ============================================================
   HUNTER COACHING — shared stylesheet
   A single, deliberately committed dark "engineering blueprint
   for the body" visual world: near-black grounds, brushed-steel
   typography, mono data annotations. No adaptive light theme —
   this is a fixed brand world, colors declared explicitly.
   ============================================================ */

:root{
  color-scheme: dark;

  /* --- palette --- */
  --ink:        #0a0a0b;   /* primary ground */
  --ink-2:      #111113;   /* raised panel */
  --ink-3:      #17181b;   /* card / input surface */
  --line:       #26272b;   /* hairline */
  --line-soft:  #1c1d20;
  --steel:      #8c8f97;   /* muted secondary text, matches chrome mid-tone */
  --steel-dim:  #5d6067;
  --silver:     #d6d8dd;   /* chrome headline highlight */
  --paper:      #f2f0ea;   /* primary light text (warm off-white) */
  --paper-dim:  #b6b3ab;   /* body copy */
  --accent:     #eef0f3;   /* button fill / bright emphasis (near-white steel) */
  --accent-ink: #0a0a0b;   /* text on accent fill */
  --ok:         #9fd8b0;   /* reserved, unused decorative color kept out of scope */

  /* --- type --- */
  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --body:    'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* --- space --- */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.75rem;
  --s4: 3rem;
  --s5: 5rem;
  --s6: 8rem;
}

*{ 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(--ink);
  color: var(--paper-dim);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; }
button{ font: inherit; }

.wrap{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: var(--s3);
  padding-right: var(--s3);
}
@media (max-width: 560px){
  .wrap{ padding-left: 1.25rem; padding-right: 1.25rem; }
}

.prose{ max-width: 62ch; }

/* ---------- background texture: faint blueprint grid ---------- */
.grid-ground{
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
          mask-image: linear-gradient(to bottom, black, transparent);
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 var(--s2);
}
.eyebrow::before{
  content: "";
  width: 1.6em;
  height: 1px;
  background: var(--steel-dim);
  display: inline-block;
}
.eyebrow .idx{ color: var(--silver); }

h1, h2, h3, h4{
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  margin: 0;
  color: var(--paper);
}

h2{
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3.4rem);
  line-height: 1.02;
  margin-bottom: var(--s3);
}
h3{
  font-size: 1.4rem;
  line-height: 1.08;
  font-weight: 600;
  text-transform: none;
  font-family: var(--body);
  color: var(--paper);
}

p{ margin: 0; }
.prose p + p{ margin-top: var(--s2); }
.lead{
  font-family: var(--body);
  font-size: 1.15rem;
  color: var(--paper-dim);
  max-width: 46ch;
}

.hairline{ border: none; border-top: 1px solid var(--line); margin: 0; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.7rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary{ background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover{ transform: translateY(-1px); background: #ffffff; }
.btn-ghost{ background: transparent; border-color: var(--line); color: var(--paper); }
.btn-ghost:hover{ border-color: var(--steel); color: var(--silver); }
.btn:focus-visible{ outline: 2px solid var(--silver); outline-offset: 2px; }
.btn-block{ width: 100%; }

/* ---------- header / nav ---------- */
header.site{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  white-space: nowrap;
}
.brand img{ height: 34px; width: auto; }
.brand .word{
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--paper);
  font-size: 1.05rem;
}
.brand .word small{
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: var(--steel);
  text-transform: uppercase;
  margin-top: 0.2em;
}
.nav-links{
  display: flex;
  gap: var(--s4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--steel);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--paper); }
.nav-cta{ display: flex; align-items: center; gap: var(--s3); }
.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 860px){
  .nav-links{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-cta .btn-text{ display: none; }
}

.mobile-menu{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--ink);
}
.mobile-menu.open{ display: block; }
.mobile-menu .mm-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--s3);
  border-bottom: 1px solid var(--line);
}
.mobile-menu ul{
  list-style: none;
  margin: 0;
  padding: var(--s4) var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.mobile-menu a{
  text-decoration: none;
  color: var(--paper);
  font-family: var(--display);
  font-size: 2.1rem;
  text-transform: uppercase;
}
.mobile-menu .mm-cta{ padding: 0 var(--s3); }

/* sticky mobile cta bar */
.mobile-cta-bar{
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  background: rgba(10,10,11,0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.65rem var(--s3);
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom));
}
@media (max-width: 720px){
  .mobile-cta-bar{ display: block; }
  body{ padding-bottom: 4.2rem; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  padding-top: clamp(3.5rem, 3rem + 3vw, var(--s6));
  padding-bottom: var(--s5);
}
.hero-mark{
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 42vw);
  opacity: 0.9;
  pointer-events: none;
}
.hero-inner{ position: relative; max-width: 46rem; }
.hero h1{
  font-size: clamp(2.3rem, 1.55rem + 5vw, 5.4rem);
  line-height: 1.02;
}
@media (max-width: 430px){
  .hero h1{ font-size: 2rem; line-height: 1.08; }
}
.hero h1 .hl{ color: var(--silver); }
.hero p.lede{
  margin-top: var(--s3);
  font-size: 1.15rem;
  max-width: 42ch;
  color: var(--paper-dim);
}
.hero .cta-row{
  margin-top: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.hero .cta-row a.text-link{
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--steel);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2em;
}
.hero .cta-row a.text-link:hover{ color: var(--paper); border-color: var(--steel); }
.hero-note{
  margin-top: var(--s5);
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}
.hero-note .item{ display: flex; align-items: baseline; gap: 0.6rem; }
.hero-note .item b{
  font-family: var(--mono);
  font-size: 1.15rem;
  color: var(--silver);
  font-variant-numeric: tabular-nums;
}
.hero-note .item span{ font-size: 0.82rem; color: var(--steel); }
@media (max-width: 720px){
  .hero-mark{ display: none; }
}

/* ---------- corner-bracket / blueprint frame ---------- */
.frame{
  position: relative;
  border: 1px solid var(--line);
  padding: var(--s3);
}
.frame::before, .frame::after,
.frame .cb-tl, .frame .cb-br{ content: ""; position: absolute; width: 14px; height: 14px; }
.frame::before{ top: -1px; left: -1px; border-top: 2px solid var(--silver); border-left: 2px solid var(--silver); }
.frame::after{ bottom: -1px; right: -1px; border-bottom: 2px solid var(--silver); border-right: 2px solid var(--silver); }

/* ---------- sections ---------- */
section.clause{
  padding-top: var(--s6);
  padding-bottom: var(--s6);
  position: relative;
}
section.clause + section.clause{ border-top: 1px solid var(--line); }
section.clause.tight{ padding-top: var(--s5); padding-bottom: var(--s5); }
.panel{ background: var(--ink-2); }

.clause-head{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.clause-head .lead{ margin-top: -0.5rem; }

/* two-col split */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: start;
}
.split.split-wide{ grid-template-columns: 1.4fr 1fr; }
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; gap: var(--s4); }
  .split.split-wide{ grid-template-columns: 1fr; }
}

/* numbered list (genuinely sequential content only) */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step{
  background: var(--ink);
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.step .num{
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--silver);
  letter-spacing: 0.06em;
}
.step h3{ font-size: 1.05rem; }
.step p{ font-size: 0.92rem; color: var(--paper-dim); }
.step ul{ margin: 0; padding-left: 1.1rem; font-size: 0.88rem; color: var(--paper-dim); }
.step li + li{ margin-top: 0.3rem; }
@media (max-width: 860px){
  .steps{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .steps{ grid-template-columns: 1fr; }
}

/* card grids (non-sequential: no numbering) */
.card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card{
  background: var(--ink);
  padding: var(--s4) var(--s3);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card .ico{ width: 26px; height: 26px; color: var(--silver); }
.card h3{ font-size: 1.1rem; }
.card p{ font-size: 0.94rem; color: var(--paper-dim); }

/* philosophy list */
.principles{
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.principle{
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--line);
}
.principle .term{
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--silver);
}
.principle p{ font-size: 0.96rem; }
@media (max-width: 640px){
  .principle{ grid-template-columns: 1fr; gap: 0.4rem; }
}

/* pricing */
.price-note{ font-size: 0.92rem; color: var(--steel); margin-bottom: var(--s4); max-width: 60ch; }
.price-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s3);
}
.price-card{
  position: relative;
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: var(--s4) var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.price-card.featured{ border-color: var(--silver); }
.badge{
  position: absolute;
  top: -1px; right: -1px;
  background: var(--silver);
  color: var(--accent-ink);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}
.price-label{
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.price-amount{
  font-family: var(--display);
  font-size: 3rem;
  color: var(--paper);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-amount span{
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--steel);
  font-weight: 400;
  text-transform: none;
}
.price-term{ font-size: 0.88rem; color: var(--paper-dim); }
.price-list{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.price-list li{
  font-size: 0.92rem;
  color: var(--paper-dim);
  padding-left: 1.3rem;
  position: relative;
}
.price-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 1px;
  background: var(--silver);
}
.price-card .btn{ margin-top: var(--s2); }
.price-rules{
  margin-top: var(--s4);
  border-top: 1px solid var(--line);
  padding-top: var(--s3);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s2);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--steel);
}
.price-rules div::before{ content: "— "; color: var(--steel-dim); }

/* values */
.values{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.value b{
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--silver);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.value p{ font-size: 0.95rem; }
@media (max-width: 760px){
  .values{ grid-template-columns: 1fr; gap: var(--s3); }
}

/* brand statement */
.statement{
  padding-top: var(--s6);
  padding-bottom: var(--s6);
  text-align: center;
}
.statement p{
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.2rem + 2.6vw, 3.4rem);
  line-height: 1.08;
  color: var(--paper);
  max-width: 22ch;
  margin: 0 auto;
  text-transform: uppercase;
}
.statement p .dim{ color: var(--steel-dim); }

/* final cta */
.final-cta{ text-align: center; }
.final-cta h2{ margin: 0 auto var(--s2); max-width: 20ch; }
.final-cta .lead{ margin: 0 auto var(--s4); }
.final-cta .cta-row{ justify-content: center; margin-top: var(--s3); }
.final-cta .sub{ margin-top: var(--s2); font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }

/* stat strip */
.stat-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  padding-top: var(--s4);
  padding-bottom: var(--s4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat b{
  display: block;
  font-family: var(--mono);
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.3rem);
  color: var(--silver);
  font-variant-numeric: tabular-nums;
}
.stat span{ display: block; margin-top: 0.35rem; font-size: 0.8rem; color: var(--steel); }
@media (max-width: 560px){ .stat b{ font-size: 1.3rem; } .stat span{ font-size: 0.7rem; } }

/* footer */
footer{
  border-top: 1px solid var(--line);
  padding-top: var(--s4);
  padding-bottom: var(--s4);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--s4);
  margin-bottom: var(--s4);
}
.footer-grid .brand-col p{ font-size: 0.88rem; color: var(--steel); margin-top: var(--s2); max-width: 32ch; }
.footer-grid h4{
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--s2);
}
.footer-grid ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-grid a{ text-decoration: none; font-size: 0.9rem; color: var(--paper-dim); }
.footer-grid a:hover{ color: var(--paper); }
@media (max-width: 720px){ .footer-grid{ grid-template-columns: 1fr; gap: var(--s3); } }
.footer-row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--steel-dim);
}
.footer-row a{ text-decoration: none; color: var(--steel-dim); }
.footer-row a:hover{ color: var(--steel); }

/* reveal-on-scroll — content stays visible at rest (readable on first paint,
   in a full-page capture, or with JS disabled); only a light settle-in
   motion plays when a section enters the viewport. */
.reveal{ opacity: 1; transform: translateY(10px); transition: transform 0.6s ease; }
.reveal.visible{ transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .reveal{ transform: none; transition: none; } }

/* ---------- page hero (subpages) ---------- */
.page-hero{ padding-top: clamp(3rem, 2.5rem + 3vw, var(--s5)); padding-bottom: var(--s4); }
.page-hero h1{ font-size: clamp(2.2rem, 1.8rem + 3vw, 4rem); line-height: 1; }
.page-hero .lead{ margin-top: var(--s2); }

/* ---------- about page specifics ---------- */
.timeline{ border-top: 1px solid var(--line); }
.tl-row{ display: grid; grid-template-columns: 6rem 1fr; gap: var(--s3); padding: var(--s3) 0; border-bottom: 1px solid var(--line); }
.tl-row .yr{ font-family: var(--mono); font-size: 0.95rem; color: var(--silver); }
.tl-row h3{ font-size: 1.05rem; margin-bottom: 0.4rem; }
.tl-row p{ font-size: 0.92rem; }
@media (max-width: 620px){ .tl-row{ grid-template-columns: 1fr; gap: 0.4rem; } }

.transform-strip{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s3);
  border: 1px solid var(--line);
  padding: var(--s4);
  background: var(--ink-2);
}
.transform-strip .tblock{ text-align: center; }
.transform-strip b{ display: block; font-family: var(--mono); font-size: 2.2rem; color: var(--silver); font-variant-numeric: tabular-nums; }
.transform-strip span{ font-size: 0.8rem; color: var(--steel); text-transform: uppercase; letter-spacing: 0.06em; }
.transform-strip .arrow{ font-family: var(--mono); color: var(--steel-dim); font-size: 1.4rem; }
@media (max-width: 560px){
  .transform-strip{ grid-template-columns: 1fr; text-align: center; }
  .transform-strip .arrow{ transform: rotate(90deg); }
}

.qual-box{
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: var(--s4);
}
.qual-box .eyebrow{ margin-bottom: var(--s2); }
.qual-list{ list-style: none; margin: var(--s3) 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 2rem; }
.qual-list li{ font-size: 0.9rem; color: var(--paper-dim); text-decoration: line-through; text-decoration-color: var(--steel-dim); }
@media (max-width: 620px){ .qual-list{ grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list{ border-top: 1px solid var(--line); }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  background: none;
  border: none;
  color: var(--paper);
  text-align: left;
  padding: var(--s3) 0;
  cursor: pointer;
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 500;
}
.faq-q .plus{
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content: "";
  position: absolute;
  background: var(--silver);
  transition: transform 0.25s ease;
}
.faq-q .plus::before{ left: 0; top: 50%; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after{ top: 0; left: 50%; height: 100%; width: 1px; transform: translateX(-50%); }
.faq-item[open] .plus::after{ transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a{
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-item[open] .faq-a{ max-height: 400px; }
.faq-a-in{ padding-bottom: var(--s3); font-size: 0.95rem; color: var(--paper-dim); max-width: 62ch; }
.faq-cat{
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin: var(--s5) 0 0;
}
.faq-cat:first-child{ margin-top: 0; }

/* ---------- contact form ---------- */
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.field{ display: flex; flex-direction: column; gap: 0.5rem; }
.field.full{ grid-column: 1 / -1; }
.field label{
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.field input, .field textarea, .field select{
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 0.85rem 1rem;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.98rem;
  min-height: 48px;
}
.field textarea{ min-height: 100px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus{
  outline: none;
  border-color: var(--silver);
}
.checkbox-field{ display: flex; gap: 0.75rem; align-items: flex-start; }
.checkbox-field input{ margin-top: 0.3rem; width: 18px; height: 18px; accent-color: var(--silver); flex: none; }
.checkbox-field label{ font-family: var(--body); text-transform: none; letter-spacing: normal; font-size: 0.92rem; color: var(--paper-dim); }
.form-note{ font-size: 0.82rem; color: var(--steel); margin-top: var(--s2); }
.form-status{ margin-top: var(--s3); font-family: var(--mono); font-size: 0.85rem; color: var(--silver); display: none; }
.form-status.show{ display: block; }
@media (max-width: 640px){ .form-grid{ grid-template-columns: 1fr; } }

.contact-side{ display: flex; flex-direction: column; gap: var(--s3); }
.contact-channel{
  border: 1px solid var(--line);
  padding: var(--s3);
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
}
.contact-channel h3{ font-size: 1rem; margin-bottom: 0.3rem; }
.contact-channel p{ font-size: 0.9rem; }
.contact-channel a{ color: var(--silver); text-decoration: none; }
.contact-channel a:hover{ text-decoration: underline; }

/* ---------- legal pages ---------- */
.legal-body h2{ font-size: 1.3rem; text-transform: none; font-family: var(--body); font-weight: 600; margin-top: var(--s4); margin-bottom: var(--s2); }
.legal-body h2:first-child{ margin-top: 0; }
.legal-body p{ font-size: 0.96rem; color: var(--paper-dim); margin-bottom: var(--s2); max-width: 68ch; }
.legal-body .ph{ color: var(--steel); font-style: italic; }
