/* Betermaker — visual system
   Geometric-modern sans-only, sober/sharp owner-led consultancy.
   See branding/colors.md, branding/fonts.md, design-choice/direction.md */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* palette — per branding/colors.md */
  --green: #2E5840;
  --green-dk: #1F3D2D;
  --green-deep: #14271D;
  --red: #B83A2E;
  --red-dk: #9A2F25;
  --cream: #F5F2EB;
  --cream-dk: #ECE7DA;
  --paper: #FFFFFF;
  --ink: #1A201C;
  --muted: #5C6660;
  --hair: rgba(26, 32, 28, 0.12);
  --hair-strong: rgba(26, 32, 28, 0.22);

  /* type */
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* tunables (tweak panel) */
  --red-intensity: 1;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11", "tnum" 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ────────────────── Browser chrome (custom, light) ────────────────── */
.app-shell {
  min-height: 100vh;
  background: #d8d4c8;
  padding: 18px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.window {
  width: 100%;
  max-width: 1440px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 80px -20px rgba(20, 25, 22, 0.25), 0 0 0 1px rgba(20, 25, 22, 0.08);
  display: flex;
  flex-direction: column;
}
.chrome {
  background: #ece8dc;
  border-bottom: 1px solid var(--hair);
}
.chrome-top {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  gap: 12px;
}
.dots { display: flex; gap: 7px; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--hair-strong); }
.dot.r { background: #e8755e; }
.dot.y { background: #e8c25e; }
.dot.g { background: #6db05e; }
.chrome-nav { display: flex; gap: 6px; color: var(--muted); }
.chrome-nav button {
  appearance: none; border: 0; background: transparent;
  width: 26px; height: 26px; border-radius: 6px;
  color: inherit; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px;
}
.chrome-nav button:hover { background: rgba(0,0,0,0.05); color: var(--ink); }
.url-bar {
  flex: 1;
  height: 28px;
  background: var(--cream);
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  gap: 8px;
  border: 1px solid var(--hair);
}
.url-bar .lock {
  width: 11px; height: 11px; border-radius: 2px;
  background: var(--muted); opacity: 0.5;
  display: inline-block; flex-shrink: 0;
}
.url-bar .host { color: var(--ink); }
.url-bar .path { color: var(--muted); }
.chrome-right { display: flex; gap: 6px; color: var(--muted); font-family: var(--mono); font-size: 12px; }

.viewport {
  flex: 1;
  overflow: auto;
  background: var(--cream);
  position: relative;
  min-height: 720px;
  max-height: calc(100vh - 36px);
}

/* ────────────────── Site nav ────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  max-width: 1320px;
  margin: 0 auto;
}
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.site-nav li {
  display: flex;
  align-items: center;
}
.site-nav a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.005em;
  cursor: pointer;
}
.site-nav a:hover { color: var(--green); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: color-mix(in oklch, var(--red), transparent calc((1 - var(--red-intensity)) * 30%));
}
.nav-cta {
  font-size: 13px !important;
  padding: 9px 16px !important;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--green-dk); color: var(--cream) !important; }
.nav-cta:hover::after { display: none; }

/* ────────────────── Wordmark ────────────────── */
.wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.012em;
  color: var(--green);
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  text-decoration: none;
  cursor: pointer;
}
.wordmark .pipe {
  display: inline-block;
  width: 1.5px;
  height: 0.78em;
  background: var(--red);
  margin: 0 2px;
  transform: translateY(0.04em);
  opacity: var(--red-intensity);
}
.wordmark.lg { font-size: 56px; letter-spacing: -0.025em; font-weight: 500; }
.wordmark.lg .pipe { width: 2.5px; margin: 0 5px; }
.wordmark.xl { font-size: 88px; letter-spacing: -0.03em; font-weight: 500; }
.wordmark.xl .pipe { width: 3px; margin: 0 7px; }

/* ────────────────── Page architecture ────────────────── */
.page {
  position: relative;
}
.page-rail {
  display: none;
  position: absolute;
  top: 80px;
  left: 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  gap: 22px;
  align-items: center;
  pointer-events: none;
}
.page-rail .rail-mark {
  width: 6px; height: 6px;
  background: var(--red);
  display: inline-block;
  opacity: var(--red-intensity);
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 80px;
}
.container.narrow { max-width: 880px; }

/* small mono label */
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ink);
  display: inline-block;
}
.label.red::before { background: var(--red); opacity: var(--red-intensity); }
.label.no-mark::before { display: none; }

/* ────────────────── Display type ────────────────── */
.display {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
}
.display-1 { font-size: clamp(56px, 7vw, 104px); font-weight: 400; }
.display-2 { font-size: clamp(40px, 4.6vw, 68px); font-weight: 400; line-height: 1.05; }
.display-3 { font-size: clamp(28px, 2.4vw, 40px); font-weight: 500; line-height: 1.12; letter-spacing: -0.018em; }
.h-section {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(22px, 1.6vw, 28px);
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 0;
}
.lead {
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  max-width: 56ch;
  text-wrap: pretty;
}
p { text-wrap: pretty; }
.muted { color: var(--muted); }
.italic { font-style: italic; }

/* the arrow motif */
.arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}

/* ────────────────── Hero ────────────────── */
.hero {
  padding: 100px 0 110px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: end;
}
.hero h1 {
  margin: 0;
  font-weight: 400;
}
.hero h1 .beter { font-weight: 500; color: var(--green); }
.hero h1 .arrow {
  color: var(--red);
  opacity: var(--red-intensity);
  font-weight: 300;
  margin: 0 0.04em;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  padding-bottom: 12px;
}
.hero-portrait {
  width: 260px;
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-dk);
  position: relative;
  filter: saturate(0.85) contrast(1.02);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-coords {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

.hero-sub {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 36px;
  border-top: 1px solid var(--hair);
}
.hero-etym {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 48ch;
}
.hero-etym .latin {
  font-style: italic;
  color: var(--green);
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* ────────────────── Buttons ────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  border: 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.002em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--green-dk); }
.btn:hover .arrow { transform: translateX(4px); }
.btn .arrow { color: rgba(245,242,235,0.85); font-weight: 300; }
.btn.red {
  background: color-mix(in oklch, var(--red) calc(100% * var(--red-intensity)), var(--green) calc(100% * (1 - var(--red-intensity))));
}
.btn.red:hover { background: var(--red-dk); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hair-strong);
}
.btn.ghost:hover { background: rgba(26,32,28,0.04); border-color: var(--ink); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  cursor: pointer;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  font-family: var(--sans);
}
.btn-link:hover { color: var(--green); border-color: var(--green); }
.btn-link:hover .arrow { transform: translateX(4px); }

/* ────────────────── Pillars block ────────────────── */
.pillars {
  padding: 64px 0 120px;
}
.pillars-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair-strong);
}
.pillar {
  border-bottom: 1px solid var(--hair-strong);
  border-right: 1px solid var(--hair);
  padding: 36px 28px 32px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--cream-dk); }
.pillar:hover .pillar-num { color: var(--green); }
.pillar:hover .pillar-more .arrow { transform: translateX(4px); }
.pillar-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: color 0.25s;
}
.pillar-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.18;
  margin: 0;
}
.pillar-teaser {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.pillar-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.pillar-sub li { display: flex; align-items: center; gap: 8px; }
.pillar-sub li::before {
  content: '';
  width: 8px;
  height: 1px;
  background: var(--muted);
}
.pillar-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-top: auto;
}
.pillar-more .arrow { color: var(--red); opacity: var(--red-intensity); transition: transform 0.3s; }

/* ────────────────── Closing CTA band ────────────────── */
.cta-band {
  background: var(--green-deep);
  color: var(--cream);
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.cta-band h2 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0;
}
.cta-band h2 .beter { font-weight: 500; }
.cta-band h2 .arrow { color: var(--red); opacity: var(--red-intensity); font-weight: 300; }
.cta-band .reassure {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 242, 235, 0.7);
  max-width: 38ch;
}
.cta-band .btn {
  background: var(--cream);
  color: var(--green-deep);
}
.cta-band .btn:hover { background: #fff; }
.cta-band .btn .arrow { color: var(--red); opacity: var(--red-intensity); }
.cta-band-cluster {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ────────────────── Footer ────────────────── */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 72px 0 36px;
  border-top: 1px solid var(--hair);
}
.site-footer.no-top { border-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 242, 235, 0.15);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.55);
  font-weight: 400;
  margin: 0 0 18px;
}
.footer-col p, .footer-col a {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(245, 242, 235, 0.88);
  text-decoration: none;
  display: block;
  margin: 0 0 6px;
  cursor: pointer;
}
.footer-col a:hover { color: #fff; }
.footer-brand .wordmark {
  color: var(--cream);
  font-size: 28px;
  letter-spacing: -0.018em;
}
.footer-brand .wordmark .pipe { background: var(--red); opacity: var(--red-intensity); }
.footer-legal {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245, 242, 235, 0.45);
  margin-top: 10px !important;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.4);
}

/* ────────────────── Section ────────────────── */
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section + .section { padding-top: 0; }
.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head .label { margin-bottom: 24px; }

/* ────────────────── Service section (verbatim copy blocks) ────────────────── */
.service {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--hair-strong);
  align-items: start;
}
.service:last-child { border-bottom: 1px solid var(--hair-strong); }
.service-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-aside .num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.service-body p {
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 64ch;
}
.service-body p.intro {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 60ch;
}
.service-body h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 32px 0 16px;
}
.service-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.service-list li {
  padding: 16px 0;
  border-top: 1px solid var(--hair);
  font-size: 16px;
  line-height: 1.55;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  max-width: 68ch;
}
.service-list li:last-child { border-bottom: 1px solid var(--hair); }
.service-list .lead-word {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  opacity: var(--red-intensity);
  letter-spacing: 0.04em;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.service-list .item strong {
  font-weight: 500;
}

.pullquote {
  border-left: 2px solid var(--red);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  font-weight: 400;
  max-width: 52ch;
}
.pullquote.green { border-left-color: var(--green); }

/* page end CTAs */
.page-end-cta {
  padding: 96px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  border-top: 1px solid var(--hair);
  margin-top: 32px;
}
.page-end-cta .label { margin-bottom: 8px; }
.page-end-cta-double {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ────────────────── About page ────────────────── */
.about-hero {
  padding: 80px 0 88px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-areas:
    "head portrait"
    "lead portrait";
  column-gap: 72px;
  row-gap: 28px;
  align-items: start;
}
.about-hero-head { grid-area: head; max-width: 56ch; align-self: end; }
.about-portrait {
  grid-area: portrait;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-dk);
  filter: saturate(0.9);
  align-self: center;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about-hero-lead {
  grid-area: lead;
  max-width: 50ch;
  font-size: 17.5px;
  line-height: 1.55;
  margin: 0;
  align-self: start;
}
.about-hero h1 {
  font-size: clamp(48px, 5.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-top: 18px;
}
.years {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(64px, 9vw, 132px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.years .em-dash {
  width: 80px;
  height: 4px;
  background: var(--red);
  opacity: var(--red-intensity);
  display: inline-block;
  align-self: center;
  margin: 0 6px;
}
.years-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.career-arc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 24px 0 64px;
}
.career-row {
  display: grid;
  grid-template-columns: 130px 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--hair-strong);
  align-items: baseline;
}
.career-row:last-child { border-bottom: 1px solid var(--hair-strong); }
.career-years {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.career-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.career-content h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 6px;
}
.career-content p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 60ch;
}

.stage-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 48px 0;
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.stage-shot {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-dk);
  filter: saturate(0.88);
}
.stage-shot img { width: 100%; height: 100%; object-fit: cover; }

/* ────────────────── Coaching primer page ────────────────── */
.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair-strong);
  margin: 48px 0 64px;
}
.compare-cell {
  padding: 32px 24px 36px;
  border-bottom: 1px solid var(--hair-strong);
  border-right: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-cell:last-child { border-right: 0; }
.compare-cell .label { margin-bottom: 4px; }
.compare-cell h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.012em; margin: 0; }
.compare-cell p { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin: 0; }
.compare-cell .focus {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.intake-flow {
  margin: 56px 0;
}
.intake-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--hair-strong);
  align-items: baseline;
}
.intake-step:last-child { border-bottom: 1px solid var(--hair-strong); }
.intake-step .step-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.intake-step h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 10px;
}
.intake-step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 64ch;
}

/* ────────────────── Contact ────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding: 64px 0 96px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--paper);
  padding: 40px 40px 32px;
  border-radius: 8px;
  border: 1px solid var(--hair);
}
.toggle {
  display: inline-flex;
  background: var(--cream);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--hair);
  margin-bottom: 28px;
}
.toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.toggle button.active {
  background: var(--green);
  color: var(--cream);
}

.field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  padding: 12px 14px;
  border: 1px solid var(--hair-strong);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  background: var(--paper);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-row .field { margin-bottom: 18px; }
.business-fields {
  background: var(--cream);
  margin: -4px 0 18px;
  padding: 22px 22px 4px;
  border-radius: 6px;
  border-left: 2px solid var(--green);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 24px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--green);
  width: 16px; height: 16px;
}
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 12px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--hair);
  font-size: 15px;
  line-height: 1.5;
}
.contact-card-row:last-child { border-bottom: 1px solid var(--hair); }
.contact-card-row .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}
.whatsapp-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--hair);
}
.whatsapp-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
}
.btn.whatsapp {
  background: color-mix(in oklch, var(--red) calc(100% * var(--red-intensity)), var(--green) calc(100% * (1 - var(--red-intensity))));
  color: var(--cream);
}
.btn.whatsapp:hover { background: var(--red-dk); }

/* ────────────────── Long-form page (services on pillar pages) ────────────────── */
.pillar-hero {
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.pillar-hero h1 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}
.pillar-hero h1 .green { color: var(--green); font-weight: 500; }
.pillar-hero .intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 44ch;
  padding-bottom: 8px;
}

/* ────────────────── Responsive niceties ────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 56px; }
  .page-rail { display: none; }
}
@media (max-width: 900px) {
  .site-nav-inner { padding: 16px 24px; }
  .site-nav ul { display: none; }
  .container { padding: 0 24px; }
  .hero { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: row; align-items: center; }
  .hero-sub { grid-template-columns: 1fr; gap: 32px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0; }
  .cta-band .container { grid-template-columns: 1fr; }
  .service { grid-template-columns: 1fr; gap: 24px; }
  .service-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  /* Let grid/flex children shrink below their intrinsic width so the
     long <select> option labels don't push the form past the viewport. */
  .contact-form-wrap, .contact-aside { min-width: 0; }
  .field, .field input, .field select, .field textarea { min-width: 0; max-width: 100%; }
  .contact-form-wrap { padding: 28px 22px 24px; }
  .whatsapp-card { padding: 24px 22px; }
  /* Over page: collapse multi-column sections to a single mobile column. */
  .career-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .stage-shots { grid-template-columns: 1fr; gap: 12px; margin: 36px 0; }
  .duo-grid { grid-template-columns: 1fr; gap: 40px; }
  .years { font-size: clamp(48px, 14vw, 64px); gap: 12px; }
  .years .em-dash { width: 48px; margin: 0 4px; }
  /* Home hero portrait: fill the column on mobile like the Over page does. */
  .hero-portrait { width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .about-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "portrait"
      "lead";
    row-gap: 32px;
    padding: 48px 0 64px;
  }
  .about-hero h1 { font-size: clamp(40px, 9vw, 64px); }
  .about-portrait { max-width: 480px; margin: 0 auto; }
  .pillar-hero { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
}

/* ────────────────── Mobile nav (burger + drawer) ────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), opacity 0.2s, background 0.2s;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(.2,.7,.2,1);
  padding: 88px 24px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hair);
}
.nav-drawer li {
  border-bottom: 1px solid var(--hair);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 40ms + 80ms);
}
.nav-drawer.is-open li {
  opacity: 1;
  transform: translateY(0);
}
.nav-drawer a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--green); }
.nav-drawer .drawer-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  opacity: var(--red-intensity);
  letter-spacing: 0.08em;
  padding-top: 6px;
}
.nav-drawer .drawer-arrow {
  font-size: 22px;
  color: var(--muted);
  transition: transform 0.3s, color 0.2s;
}
.nav-drawer a:hover .drawer-arrow,
.nav-drawer a.active .drawer-arrow {
  transform: translateX(4px);
  color: var(--green);
}
.nav-drawer .drawer-cta-row { border-bottom: 0; padding-top: 16px; }
.nav-drawer .drawer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--cream);
  font-family: var(--sans, system-ui, sans-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px 20px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}
.nav-drawer .drawer-cta .arrow { color: rgba(245,242,235,0.85); }
.nav-drawer .drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-drawer .drawer-foot a { color: var(--muted); text-decoration: none; display: inline; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; padding: 0; grid-template-columns: none; }
.nav-drawer .drawer-foot a:hover { color: var(--green); }

/* show burger only on mobile (must come after the base .nav-burger rule above) */
@media (max-width: 900px) {
  .nav-burger { display: flex; }
}

/* hide drawer entirely on desktop just in case */
@media (min-width: 901px) {
  .nav-drawer { display: none; }
}
