:root {
  --ink:        #16241E;
  --pine:       #1E4034;
  --pine-2:     #2C5A48;
  --amber:      #E6A43A;
  --amber-deep: #C4871C;
  --paper:      #F6F5EF;
  --sand:       #EFEADD;
  --sage:       #E4EBE1;
  --surface:    #FFFFFF;
  --line:       #D8D6C9;
  --text:       var(--ink);
  --text-muted: #5A6B61;
  --muted:      #5A6B61;
  --on-pine:    #F6F5EF;
  --on-pine-muted: #9BB5A7;
  --btn-fg-on-amber: var(--ink);
  --btn-fg-on-pine:  var(--amber);
  --focus:      var(--amber-deep);
  --font-display: "Archivo Expanded", sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", monospace;
  --radius:    18px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --maxw: 1140px;
}

[data-theme="dark"] {
  --ink:        #F3F1E7;
  --pine:       #E6A43A;
  --pine-2:     #F0C46A;
  --amber:      #E6A43A;
  --amber-deep: #F0C46A;
  --paper:      #0B1712;
  --sand:       #0F1F19;
  --sage:       #152A22;
  --surface:    #0F1F19;
  --line:       #223A30;
  --text:       #F3F1E7;
  --text-muted: #9FB3A7;
  --muted:      #9FB3A7;
  --on-pine:    #F3F1E7;
  --on-pine-muted: #9FB3A7;
  --btn-fg-on-amber: #0B1712;
  --btn-fg-on-pine:  #0B1712;
  --focus:      #E6A43A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.mono { font-family: var(--font-mono); font-weight: 500; letter-spacing: .02em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pine); display: inline-flex; align-items: center; gap: .6em;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--amber); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.03; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }

/* NAV */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 245, 239, .82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.brand svg { display: block; }
.navlinks { display: flex; align-items: center; gap: 28px; }
.navlinks a { font-size: .92rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.navlinks a:hover { color: var(--ink); }

.btn {
  display: inline-block; font-weight: 600; font-size: .92rem;
  padding: 11px 20px; border-radius: 999px; transition: transform .15s, background .2s, box-shadow .2s;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--pine); color: var(--amber) !important; }
.btn-primary:hover { background: var(--pine-2); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(30, 64, 52, .5); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--pine); color: var(--pine); }
.nav-cta { padding: 9px 18px; }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav { display: none; flex-direction: column; gap: 0; background: var(--surface); border-top: 1px solid var(--line); padding: 16px 0 24px; }
.mobile-nav-link { padding: 14px 24px; font-size: 1rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav-cta { margin: 20px 24px 0; text-align: center; }
.mobile-nav.open { display: flex; }

@media (max-width: 720px) {
  .navlinks { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 580px) {
  .hero-split { display: flex; flex-direction: column; gap: 24px; padding-bottom: 0; }
  .hero-headline { order: 1; }
  .hero-right { order: 2; }
  .hero-right.reveal { opacity: 1; transform: none; }
  .hero-body { order: 3; }
  .ops-mock { border-radius: 12px; }
  .hero-headline { font-size: 1.85rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; width: 100%; }
  .lede { font-size: 1rem; }
  .hero-tags { margin-bottom: 0; }
  .ridge { margin-top: 16px; }
  section { padding: 40px 0; }
}

/* HERO */
.hero { position: relative; padding: 72px 0 0; overflow: hidden; }
@media (max-width: 580px) { .hero { padding-top: 20px; } }
@media (min-width: 581px) {
  .hero-split { display: grid; grid-template-columns: 1.02fr .98fr; grid-template-rows: auto 1fr; gap: 24px 48px; align-items: start; padding-bottom: 64px; }
  .hero-headline { grid-column: 1; grid-row: 1; }
  .hero-body { grid-column: 1; grid-row: 2; }
  .hero-right { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}
@media (min-width: 581px) and (max-width: 900px) { .hero-split { grid-template-columns: 1fr; gap: 32px; } .hero-headline, .hero-body, .hero-right { grid-column: 1; grid-row: auto; } }

/* OPS MOCK */
.hero-right { position: relative; }
.hero-right::before {
  content: ""; position: absolute; inset: -16px -8px -20px;
  background: radial-gradient(120% 90% at 70% 25%, rgba(30,64,52,.1), transparent 70%);
  border-radius: 30px; pointer-events: none;
}
.ops-mock {
  background: #fff; border-radius: 16px; border: 1px solid var(--line);
  box-shadow: 0 40px 70px -34px rgba(22,36,30,.45); overflow: hidden;
}
.ops-mock-bar { background: var(--sand); display: flex; align-items: center; gap: 7px; padding: 12px 15px; border-bottom: 1px solid var(--line); }
.ops-mock-body { padding: 20px; }
.ops-mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ops-mock-head strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.ops-mock-head .pill { font-family: var(--font-mono); font-size: .6rem; background: var(--sage); color: var(--pine); padding: 5px 10px; border-radius: 999px; }
.ops-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.ops-stat { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.ops-stat-label { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.ops-stat-val { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ink); line-height: 1; }
.ops-stat-val span { font-size: .88rem; color: var(--amber-deep); }
.ops-feed { display: flex; flex-direction: column; gap: 9px; }
.ops-item { display: flex; align-items: center; gap: 11px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.ops-item-text { font-size: .82rem; font-weight: 600; color: var(--ink); flex: 1; }
.ops-item-time { font-family: var(--font-mono); font-size: .62rem; color: var(--muted); }
.ops-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ops-dot--amber { background: var(--amber); }
.ops-dot--pine  { background: var(--pine); }
.ops-dot--muted { background: var(--muted); }

.hero .eyebrow { margin-bottom: 22px; }
.hero-headline { font-size: clamp(1.75rem, 3.8vw, 3rem); font-weight: 700; max-width: 18ch; margin-bottom: 0; font-family: var(--font-display); line-height: 1.15; }
.hero h1 .amber { color: var(--ink); position: relative; white-space: nowrap; }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 46ch; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; font-size: .76rem; color: var(--muted); }
.hero-tags span { background: var(--sage); padding: 6px 13px; border-radius: 999px; font-family: "JetBrains Mono", monospace; font-size: .72rem; }
.ridge { display: block; width: 100%; margin-top: 38px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1); }
.reveal.in { opacity: 1; transform: none; }

section { padding: 40px 0; }
.section-head { max-width: 60ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; margin: 0; }

/* TWO THINGS */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(22, 36, 30, .45); }
.card .num { font-family: "JetBrains Mono", monospace; font-size: .8rem; color: var(--amber-deep); }
.card h3 { font-size: 1.5rem; font-weight: 700; margin: 18px 0 12px; }
.card p { color: var(--muted); font-size: 1.02rem; }
@media (max-width: 720px) { .duo { grid-template-columns: 1fr; } }

/* FUSIX PROOF */
.proof { background: var(--pine); color: #EAF0EC; }
.proof .eyebrow { color: var(--amber); }
.proof .eyebrow::before { background: var(--amber); }
.proof h2 { color: #F6F5EF; font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 700; max-width: 16ch; }
.proof p.sub { color: #B9CABF; max-width: 50ch; margin-top: 18px; font-size: 1.08rem; }
.proof-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr; gap: 30px; } }

/* BROWSER MOCK */
.mock { background: #fff; border-radius: 14px; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .55); overflow: hidden; color: var(--ink); }
.mock-bar { background: var(--sand); display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.dot { width: 11px; height: 11px; border-radius: 50%; background: #CFC9B8; }
.mock-url { margin-left: 12px; font-family: "JetBrains Mono", monospace; font-size: .72rem; color: var(--muted); background: #fff; padding: 4px 12px; border-radius: 6px; border: 1px solid var(--line); }
.mock-body { padding: 18px 18px 22px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mock-head strong { font-family: "Bricolage Grotesque"; font-size: 1.02rem; }
.mock-head .pill { font-family: "JetBrains Mono", monospace; font-size: .64rem; background: var(--sage); color: var(--pine); padding: 4px 9px; border-radius: 999px; }
.board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.col-h { font-family: "JetBrains Mono", monospace; font-size: .6rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: flex; justify-content: space-between; }
.job { background: var(--paper); border: 1px solid var(--line); border-radius: 9px; padding: 9px 10px; margin-bottom: 8px; }
.job b { font-size: .76rem; display: block; font-family: "Hanken Grotesk"; font-weight: 600; }
.job small { font-size: .64rem; color: var(--muted); font-family: "JetBrains Mono", monospace; }
.job .bar { height: 4px; border-radius: 2px; background: var(--sage); margin-top: 7px; overflow: hidden; }
.job .bar i { display: block; height: 100%; background: var(--amber); }
.job.warn { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber) inset; }
@media (max-width: 520px) { .board { grid-template-columns: 1fr 1fr; } }

/* PHONE SCREENSHOTS */
.phone-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  justify-content: center;
}
.phone-screen {
  width: 30%;
  max-width: 180px;
  border-radius: 28px;
  box-shadow: 0 32px 64px -20px rgba(0,0,0,.6);
  display: block;
  transform: rotate(-2deg);
}
.phone-screen--mid {
  transform: rotate(0deg) translateY(-16px);
  z-index: 1;
}
.phone-screen:last-child { transform: rotate(2deg); }
@media (max-width: 860px) {
  .proof-grid { grid-template-columns: 1fr; }
  .phone-row { justify-content: center; }
  .phone-screen { max-width: 140px; }
}

/* PROCESS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .steps { grid-template-columns: 1fr; gap: 14px; } }

.step-card {
  background: var(--pine);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -24px rgba(0,0,0,.45); }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: rgba(230,164,58,.18); border: 1px solid rgba(230,164,58,.35);
  font-family: "JetBrains Mono", monospace; font-size: .72rem; font-weight: 500;
  color: var(--amber);
}
.step-card h3 { font-size: 1.4rem; font-weight: 700; color: #F6F5EF; margin: 0; }
.step-card p { color: #9BB5A7; font-size: .97rem; line-height: 1.6; }
.step-top { flex: 1; }
.step-art { position: absolute; bottom: -10px; right: -10px; width: 100px; height: 75px; opacity: .12; pointer-events: none; }
.step-art {
  margin: 24px -28px 0;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 16px;
  opacity: .9;
}
.step-art svg { width: 120px; height: 90px; }

/* PAINS */
.pains-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pains-cta { margin-top: 28px; clear: both; }
@media (max-width: 1000px) { .pains-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .pains-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s, box-shadow .2s;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(22, 36, 30, .3); }
.pain-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pain-icon { width: 32px; height: 32px; flex-shrink: 0; }
.pain-icon svg { width: 32px; height: 32px; display: block; }
.pain-card h3 { font-size: 1.08rem; font-weight: 700; margin: 0; }
.pain-card p { color: var(--muted); font-size: .94rem; line-height: 1.55; }

/* AI BELT */
.ai-belt { background: var(--pine); color: var(--on-pine); }
.ai-belt .eyebrow { color: var(--amber); }
.ai-belt .eyebrow::before { background: var(--amber); }
.ai-belt h2 { color: var(--on-pine); font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; margin: 0 0 16px; max-width: 22ch; }
.ai-belt p { color: var(--on-pine-muted); max-width: 52ch; line-height: 1.65; font-size: 1.05rem; }
.ai-belt-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.ai-belt-stats { display: flex; flex-direction: column; gap: 28px; }
.ai-stat-val { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--amber); line-height: 1; }
.ai-stat-label { font-size: .85rem; color: var(--on-pine-muted); margin-top: 4px; }
@media (max-width: 860px) { .ai-belt-inner { grid-template-columns: 1fr; gap: 36px; } .ai-belt-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; } }

/* SERVICES */
.services { background: var(--sand); }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: 10px; max-width: 50ch; }

.service-ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
@media (max-width: 1100px) { .service-ladder { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .service-ladder { grid-template-columns: 1fr; } }

.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 24px; position: relative; display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(22, 36, 30, .3); }
.service-card--featured { border-color: var(--pine); box-shadow: 0 0 0 2px var(--pine); }
.service-card--featured:hover { box-shadow: 0 0 0 2px var(--pine), 0 18px 40px -24px rgba(22, 36, 30, .4); }

.service-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--pine); color: #F6F5EF;
  font-family: "JetBrains Mono", monospace; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.service-meta { display: flex; align-items: center; justify-content: space-between; }
.service-num { font-size: .72rem; color: var(--amber-deep); }
.service-price { font-family: "JetBrains Mono", monospace; font-size: .78rem; color: var(--pine); font-weight: 500; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin: 0; }
.service-card > p { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.service-list li { font-size: .9rem; color: var(--muted); padding-left: 18px; position: relative; }
.service-list li::before { content: "→"; position: absolute; left: 0; color: var(--amber-deep); font-size: .8rem; }
.service-btn { margin-top: 6px; text-align: center; }

/* WHO */
.who { background: var(--sand); }
/* PAGE HERO (inner pages) */
.page-hero { padding: 72px 0 56px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; font-family: var(--font-display); max-width: 20ch; margin: 0 0 20px; line-height: 1.15; }
.page-hero .lede { max-width: 52ch; font-size: 1.1rem; color: var(--muted); line-height: 1.65; }

/* SERVICES TEASER */
.services--teaser { background: var(--sand); }
.service-teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0 36px; }
.service-teaser { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-teaser--featured { border-color: var(--amber); background: var(--ink); color: var(--on-pine); }
.service-teaser--featured h3 { color: var(--on-pine); }
.service-teaser--featured p { color: var(--on-pine-muted); }
.service-teaser--featured .service-num { color: var(--amber); }
.service-teaser--featured .service-price { color: var(--amber); }
.service-teaser h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.service-teaser p { font-size: .9rem; color: var(--muted); line-height: 1.5; margin: 0; flex: 1; }
.service-teaser .service-price { font-size: .82rem; font-family: var(--font-mono); color: var(--muted); }
.service-teaser .service-num { font-family: var(--font-mono); font-size: .72rem; color: var(--amber-deep); }
.services-teaser-cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .service-teaser-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .service-teaser-grid { grid-template-columns: 1fr; } .services-teaser-cta { flex-direction: column; } .services-teaser-cta .btn { text-align: center; } }

/* SERVICES PAGE */
.services--page { background: var(--paper); padding-top: 0; }

/* PROOF PAGE */
.proof--page { background: var(--pine); }
.fusix-screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; padding-top: 56px; border-top: 1px solid rgba(255,255,255,.1); }
.fusix-screen-item img { width: 100%; border-radius: 20px; margin-bottom: 20px; }
.fusix-screen-item h3 { color: var(--on-pine); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.fusix-screen-item p { color: var(--on-pine-muted); font-size: .92rem; line-height: 1.6; }
@media (max-width: 768px) { .fusix-screens { grid-template-columns: 1fr; gap: 40px; } }

/* FAQ */
.services-faq { background: var(--paper); }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.faq-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.faq-item p { color: var(--muted); font-size: .94rem; line-height: 1.6; }
@media (max-width: 680px) { .faq-list { grid-template-columns: 1fr; } }

/* WHO WE WORK WITH */
.who-we-work-with { background: var(--sand); }
.client-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.client-type { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.client-type-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.client-type-icon { flex-shrink: 0; }
.client-type h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.client-type p { color: var(--muted); font-size: .9rem; line-height: 1.55; }
@media (max-width: 1000px) { .client-types { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .client-types { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testimonials { background: var(--paper); }

/* TESTIMONIAL */
.quote { max-width: 44ch; margin: 0 auto; text-align: center; }
.quote .stars { color: var(--amber); letter-spacing: .3em; font-size: .9rem; }
.quote blockquote { font-family: "Bricolage Grotesque"; font-weight: 500; font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.25; margin: 18px 0; letter-spacing: -.01em; }
.quote cite { font-style: normal; color: var(--muted); font-size: .9rem; font-family: "JetBrains Mono", monospace; }
.placeholder-note { display: inline-block; margin-top: 14px; font-family: "JetBrains Mono", monospace; font-size: .66rem; color: var(--amber-deep); background: var(--sage); padding: 5px 12px; border-radius: 999px; }

/* ORIGIN */
.origin { background: var(--ink); color: #E7EBE7; }
.origin-inner { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; }
.origin .eyebrow { color: var(--amber); }
.origin .eyebrow::before { background: var(--amber); }
.origin h2 { color: #F6F5EF; font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 700; margin: 0 0 14px; }
.origin p { color: #AEB9B1; max-width: 52ch; }
.paw { width: 96px; height: 96px; flex-shrink: 0; }
@media (max-width: 640px) { .origin-inner { grid-template-columns: 1fr; gap: 18px; } .paw { width: 64px; height: 64px; } }

/* CONTACT */
.contact { text-align: center; }
.contact h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; max-width: 16ch; margin: 0 auto 16px; }
.contact p { color: var(--muted); max-width: 44ch; margin: 0 auto 28px; font-size: 1.08rem; }

.contact-form { max-width: 580px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.form-field input,
.form-field textarea {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: .97rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 14px; outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(30, 64, 52, .1);
}
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.form-status { font-size: .88rem; }
.form-status.success { color: var(--pine); }
.form-status.error { color: #c0392b; }

footer { border-top: 1px solid var(--line); padding: 34px 0; }
.foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: .85rem; }
.foot .brand { font-size: 1rem; color: var(--ink); }
.foot .mono { font-size: .74rem; }

:focus-visible { outline: 2.5px solid var(--amber-deep); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
