/* ============================================================
   MAPLE WEB AGENCY — styles (v2, maple-leaf art direction)
   Base: bone-white / near-black · maple-red (sparingly) · gold/amber (secondary)
   Type: Archivo Expanded (display) + Newsreader (serif body)
   ============================================================ */

:root {
  --bone: #f2ede4;
  --black: #0a0908;
  --ink: #14110d;
  --red: #9e1b1b;
  --gold: #c99a4e;        /* accent — short italic lines only, never long copy */
  --sand: #cbbda4;        /* warm secondary — body copy on dark (10.6:1 on --black) */
  --grey: #8a847a;        /* tertiary — footer meta only (5.5:1, too faint for body) */
  --display: "Archivo Expanded", "Archivo", sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --pad: clamp(20px, 5vw, 72px);      /* horizontal gutter */
  --section: clamp(80px, 11vh, 120px); /* vertical rhythm */
}

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

/* The HTML `hidden` attribute must win over layout rules like
   `display:flex` (e.g. the footer social nav, hidden until real
   profile URLs are set in js/config.js). */
[hidden] { display: none !important; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: var(--bone); }
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* -------------------- preloader -------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 200; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transition: opacity .7s ease, visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__logo { width: clamp(160px, 26vw, 240px); height: auto; }
.preloader__bar { width: min(240px, 60vw); height: 1px; background: #2a2723; }
.preloader__fill { height: 100%; width: 0%; background: var(--gold); transition: width .3s ease; }

/* -------------------- grain & vignette -------------------- */
.grain {
  position: fixed; inset: -100%; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .045; animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-5%,-8%); }
  30% { transform: translate(3%,-12%); } 50% { transform: translate(8%,4%); }
  70% { transform: translate(-9%,6%); } 90% { transform: translate(4%,10%); }
}
.vignette { position: fixed; inset: 0; z-index: 89; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 56%, rgba(0,0,0,.45) 100%); }

/* -------------------- cursor -------------------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-dot { width: 7px; height: 7px; background: var(--red); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(158,27,27,.55); transition: width .25s, height .25s, border-color .25s; }
.cursor-ring.is-hover { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* -------------------- nav -------------------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad); mix-blend-mode: difference; }
.nav__logo { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: .18em; color: #fff; }
.nav__logo span { color: var(--red); }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: .15em; text-transform: uppercase; color: #fff; opacity: .82; transition: opacity .25s; padding: 6px 2px; }
.nav__links a:hover { opacity: 1; }
.nav__cta { border: 1px solid rgba(255,255,255,.4); padding: 9px 18px; border-radius: 99px; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 32px; position: relative; }
.nav__burger span { position: absolute; left: 6px; right: 6px; height: 2px; background: #fff; transition: transform .35s, top .35s; }
.nav__burger span:nth-child(1) { top: 12px; } .nav__burger span:nth-child(2) { top: 19px; }
.nav__burger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

.menu { position: fixed; inset: 0; z-index: 95; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6vh;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s cubic-bezier(.77,0,.18,1); }
.menu.open { clip-path: inset(0 0 0% 0); }
.menu a { font-family: var(--display); font-weight: 900; font-size: clamp(32px, 8vw, 56px); letter-spacing: .03em; text-transform: uppercase; }
.menu a:last-child { color: var(--red); }

/* -------------------- buttons -------------------- */
.btn { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone); border: 1px solid rgba(242,237,228,.45); padding: 16px 34px; border-radius: 99px; background: transparent; cursor: pointer;
  text-align: center; line-height: 1.35;
  transition: background .3s, color .3s, border-color .3s, box-shadow .3s; }
.btn:hover { background: var(--bone); color: var(--black); border-color: var(--bone); }
.btn--big { font-size: 17px; padding: 22px 52px; }
/* Primary (SMS) — visually dominant: solid bone fill on dark, warm glow */
.btn--primary { background: var(--bone); color: var(--black); border-color: var(--bone);
  box-shadow: 0 14px 40px -14px rgba(242,237,228,.35); }
.btn--primary:hover { background: var(--red); color: var(--bone); border-color: var(--red);
  box-shadow: 0 14px 44px -12px rgba(158,27,27,.55); }
/* Ghost (secondary) — quieter than the default outline */
.btn--ghost { border-color: rgba(242,237,228,.3); color: rgba(242,237,228,.85); font-size: 14px; }
.btn--ghost:hover { background: transparent; color: var(--bone); border-color: var(--bone); }
/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; border-radius: 99px; }

/* -------------------- shared section head -------------------- */
.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: clamp(40px, 6vh, 64px); }
.section-head__num { font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.section-head__title { font-family: var(--display); font-weight: 900; font-size: clamp(34px, 6vw, 84px); line-height: .98; text-transform: uppercase; letter-spacing: -.01em; }
.section-head__sub { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: clamp(19px, 1.7vw, 26px); line-height: 1.5; }
.section-head--center { align-items: center; text-align: center; }

/* -------------------- 1. HERO — centered stack: headline, then leaf -------------------- */
.hero { position: relative; padding: clamp(96px, 13vh, 140px) var(--pad) 0; }
.hero__pin { display: flex; flex-direction: column; align-items: center; }
.hero__content { order: 1; }
.hero__canvas { order: 2; }
.hero__scrollcue { order: 3; }
.hero__canvas {
  position: relative; width: min(1150px, 92vw); aspect-ratio: 16/9; height: auto;
  margin-top: clamp(30px, 5vh, 54px); border-radius: 10px;
}
.hero__shade { display: none; }
.hero__content { position: relative; z-index: 2; max-width: 980px; text-align: center; }
.hero__brand { font-family: var(--display); font-weight: 900; font-size: clamp(40px, 6.2vw, 88px); line-height: .94; letter-spacing: -.015em; text-transform: uppercase; text-align: center; white-space: nowrap; }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; transform: translateY(110%); }
.hero__line--accent > span { color: var(--red); }
/* Typed conversion headline (h1) — reserve two lines to avoid layout shift */
.hero__tag { margin-top: 26px; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.3; color: var(--bone); min-height: 2.6em; max-width: 24em; margin-left: auto; margin-right: auto; }
.hero__caret { display: inline-block; width: 2px; height: 1em; background: var(--gold); vertical-align: -0.15em; margin-left: 3px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.hero__sub { margin: 10px auto 0; max-width: 34em; font-size: clamp(19px, 1.8vw, 24px); line-height: 1.6; color: var(--sand); opacity: 0; transform: translateY(14px); }
.hero__ctas { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 30px; opacity: 0; transform: translateY(14px); }
.hero__ctas .btn--primary { font-size: 16px; padding: 20px 42px; }
.hero__micro { margin-top: 16px; font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--gold); opacity: 0; }
.hero__scrollcue { margin: 34px auto 10px; text-align: center;
  font-family: var(--display); font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: rgba(242,237,228,.6); }
.hero__scrollline { width: 1px; height: 40px; margin: 10px auto 0; background: linear-gradient(var(--bone), transparent); animation: scrollline 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes scrollline { 0% { transform: scaleY(0); } 55% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* -------------------- 1b. ETHICAL URGENCY -------------------- */
.urgency { background: var(--black); padding: var(--section) var(--pad); }
.urgency__inner { max-width: 880px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.urgency__rule { width: 56px; height: 2px; background: var(--red); }
.urgency__title { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(26px, 3.2vw, 44px); line-height: 1.25; color: var(--bone); }
.urgency__body { font-size: clamp(20px, 1.9vw, 25px); line-height: 1.6; color: var(--sand); max-width: 44em; }

/* -------------------- 2. KINETIC MANIFESTO — compact editorial block -------------------- */
.manifesto {
  background: var(--black); text-align: center;
  padding: var(--section) var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: clamp(28px, 4vh, 44px);
}
.manifesto__words { display: flex; flex-direction: column; gap: clamp(2px, .8vh, 10px); }
.manifesto__word {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(38px, 6.4vw, 96px); line-height: 1.04;
  letter-spacing: -.01em; text-transform: uppercase;
  opacity: 0; white-space: nowrap; min-height: 1.04em;
}
.manifesto__word--red { color: var(--red); }
.manifesto__word .mcaret {
  display: inline-block; width: 4px; height: .82em; background: var(--gold);
  vertical-align: -0.06em; margin-left: 6px;
  animation: caret 1s steps(1) infinite;
}
.manifesto__resolve { font-family: var(--serif); font-weight: 300; font-size: clamp(24px, 3vw, 40px); line-height: 1.35; max-width: 20em; opacity: 0; }
.manifesto__resolve em { font-style: italic; color: var(--gold); }

/* -------------------- 3. SELECTED WORK -------------------- */
.work { position: relative; background: var(--black); padding: var(--section) 0; overflow: hidden; }
.work__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .10; filter: saturate(1.1); pointer-events: none; }
.work__inner { position: relative; z-index: 1; padding: 0 var(--pad); }
.work__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 34px); }
.work-card { position: relative; perspective: 900px; }
.work-card__media {
  position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 16/9; background: var(--ink);
  box-shadow: 0 24px 50px -28px rgba(0,0,0,.75);
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow .5s ease;
}
.work-card:hover .work-card__media { box-shadow: 0 46px 90px -34px rgba(0,0,0,.95), 0 0 40px -18px rgba(201,154,78,.25); }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; }
.work-card__meta { padding: 18px 2px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.work-card__meta h3 { font-family: var(--display); font-weight: 800; font-size: clamp(19px, 2vw, 27px); text-transform: uppercase; letter-spacing: .01em; }
.work-card__niche { font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.work-card__strategy { width: 100%; font-family: var(--serif); font-style: italic; color: var(--sand); font-size: 18px; line-height: 1.55; margin-top: 6px; }
.work__swipehint { display: none; }

/* -------------------- 4. SERVICES -------------------- */
.services { background: var(--bone); color: var(--black); padding: var(--section) var(--pad); }
.services .section-head { margin-bottom: clamp(24px, 4vh, 40px); }
.services .section-head__num { color: var(--red); }
.services__main { padding-bottom: clamp(40px, 6vh, 64px); border-bottom: 1px solid rgba(10,9,8,.16); margin-bottom: clamp(40px, 6vh, 60px); text-align: center; }
.services__star { font-family: var(--display); font-weight: 900; font-size: clamp(60px, 13vw, 200px); line-height: .9; letter-spacing: -.02em; text-transform: uppercase; }
.services__starsub { font-family: var(--serif); font-style: italic; font-size: clamp(21px, 2.2vw, 28px); color: #55504a; margin-top: 20px; }
/* --- What's included: quiet two-column checklist with hairline rules --- */
.included { max-width: 900px; margin: 0 auto clamp(48px, 7vh, 72px); }
.included__title { font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); text-align: center; margin-bottom: clamp(24px, 4vh, 36px); }
.included__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(32px, 5vw, 72px); }
.included__list li { font-family: var(--serif); font-size: 18px; color: #3c3833; padding: 15px 2px 15px 26px; border-top: 1px solid rgba(10,9,8,.14); position: relative; }
.included__list li::before { content: "+"; position: absolute; left: 2px; top: 13px; font-family: var(--display); font-weight: 900; color: rgba(10,9,8,.35); }
.included__list li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(10,9,8,.14); }

.services__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; gap: clamp(28px, 4vw, 64px); text-align: center; }
.services__label { grid-column: 1 / -1; font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); text-align: center; }
.services__item { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.services__idx { font-family: var(--display); font-weight: 900; font-size: 24px; line-height: 1; color: rgba(10,9,8,.32); }
.services__item h4 { font-family: var(--display); font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 4px; }
.services__item p { font-size: 18px; color: #55504a; max-width: 34ch; }

/* -------------------- 5. PROCESS -------------------- */
.process { position: relative; background: var(--black); padding: var(--section) 0; overflow: hidden; }
.process__bg { position: absolute; right: 0; top: 0; width: 55%; height: 100%; object-fit: cover; opacity: .18; mask-image: linear-gradient(90deg, transparent, #000 60%); -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%); pointer-events: none; }
.process__inner { position: relative; z-index: 1; padding: 0 var(--pad); }
.process__steps { list-style: none; }
.process__step { display: grid; grid-template-columns: 90px 1fr; gap: clamp(16px, 3vw, 40px); align-items: start; padding: clamp(26px, 4vh, 40px) 0; border-top: 1px solid rgba(242,237,228,.14); }
.process__step:last-child { border-bottom: 1px solid rgba(242,237,228,.14); }
.process__num { font-family: var(--display); font-weight: 900; font-size: clamp(30px, 3.4vw, 50px); color: transparent; -webkit-text-stroke: 1px rgba(201,154,78,.7); }
.process__step h3 { font-family: var(--display); font-weight: 800; font-size: clamp(24px, 3vw, 40px); text-transform: uppercase; margin-bottom: 8px; }
.process__step p { color: var(--sand); font-size: 20px; line-height: 1.6; max-width: 34ch; }

/* -------------------- 5b. 12-POINT QA CHECKLIST -------------------- */
.qa { background: var(--black); padding: var(--section) var(--pad); }
.qa__inner { max-width: 1080px; margin: 0 auto; }
.qa__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(32px, 5vw, 72px); counter-reset: qa; }
.qa__list li {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--serif); font-size: 18px; line-height: 1.45; color: var(--bone);
  padding: 16px 2px; border-top: 1px solid rgba(242,237,228,.13);
}
.qa__list li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(242,237,228,.13); }
.qa__n { flex: none; font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .1em; color: var(--gold); }

/* -------------------- 5c. PROOF / PRICING STRIP -------------------- */
.proof { background: var(--black); padding: 0 var(--pad) var(--section); }
.proof__grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(242,237,228,.14); border-bottom: 1px solid rgba(242,237,228,.14);
}
.proof__item { text-align: center; padding: clamp(44px, 7vh, 72px) 16px; border-left: 1px solid rgba(242,237,228,.14); }
.proof__item:first-child { border-left: 0; }
.proof__num { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(40px, 5.6vw, 78px); line-height: 1; letter-spacing: -.01em; }
.proof__num em { font-style: normal; font-size: .5em; color: var(--gold); }
.proof__label { display: block; margin-top: 14px; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--sand); }
.proof__note { max-width: 44em; margin: clamp(28px, 4vh, 40px) auto 0; text-align: center; font-size: 18px; line-height: 1.6; color: var(--sand); }

/* -------------------- 5d. FAQ -------------------- */
.faq { background: var(--black); padding: var(--section) var(--pad); }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq__item { border-top: 1px solid rgba(242,237,228,.14); }
.faq__item:last-child { border-bottom: 1px solid rgba(242,237,228,.14); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 700; font-size: clamp(17px, 1.9vw, 22px);
  text-transform: uppercase; letter-spacing: .02em; color: var(--bone);
  padding: 26px 2px; min-height: 48px;
  transition: color .25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: none;
  font-family: var(--display); font-weight: 900; font-size: 26px; line-height: 1; color: var(--gold);
  transition: transform .3s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--gold); }
.faq__item p { font-family: var(--serif); font-size: 19px; line-height: 1.6; color: var(--sand); padding: 0 2px 28px; max-width: 62ch; }

/* -------------------- 6. LOCATION / TRUST -------------------- */
.location { border-top: 1px solid rgba(242,237,228,.14); border-bottom: 1px solid rgba(242,237,228,.14); padding: clamp(56px, 9vh, 96px) var(--pad); }
.location__inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.location__mark { font-size: 22px; filter: grayscale(.15) brightness(.95); }
.location__title { font-family: var(--display); font-weight: 800; font-size: clamp(22px, 2.6vw, 36px); line-height: 1.15; text-transform: uppercase; letter-spacing: .01em; }
.location__sub { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 1.7vw, 24px); line-height: 1.55; color: var(--sand); }

/* -------------------- 7. CTA / footer — SMS-first contact -------------------- */
.cta { padding: var(--section) var(--pad) 40px; }
.cta__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(26px, 4vh, 40px); }
.cta__title { font-family: var(--display); font-weight: 900; font-size: clamp(34px, 6.2vw, 104px); line-height: .98; text-transform: uppercase; letter-spacing: -.01em; }
.cta__body { max-width: 38em; font-size: clamp(20px, 1.8vw, 25px); line-height: 1.6; color: var(--sand); }
.cta__actions { display: flex; flex-direction: column; align-items: center; gap: 18px; width: min(640px, 100%); }
.cta__actions .btn--primary { width: 100%; max-width: 560px; }
.cta__micro { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--gold); }
.cta__prefer { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.cta__alt { font-family: var(--serif); font-size: 18px; line-height: 1.55; color: var(--sand); }
.cta__alt a { color: var(--bone); border-bottom: 1px solid rgba(242,237,228,.35); padding-bottom: 2px; transition: border-color .25s, color .25s; }
.cta__alt a:hover { color: var(--gold); border-color: var(--gold); }
.cta__logo { width: 108px; height: auto; opacity: .9; }
.cta__foot { margin-top: clamp(60px, 9vh, 100px); display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--display); font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }
.cta__foot a { padding: 8px 0; display: inline-block; }
.cta__foot nav { display: flex; gap: 26px; }
.cta__foot a:hover { color: var(--gold); }

/* -------------------- split text -------------------- */
[data-split] .word { display: inline-block; overflow: hidden; vertical-align: top; }
[data-split] .word > span { display: inline-block; transform: translateY(110%); }

/* -------------------- responsive -------------------- */
@media (max-width: 860px) {
  :root { --pad: 22px; }

  .nav { padding: 16px var(--pad); }
  .nav__links { display: none; }
  .nav__burger { display: block; }

  /* --- hero: centered stack, leaf below headline --- */
  .hero { padding-top: 92px; }
  .hero__content { max-width: none; }
  .hero__brand { font-size: clamp(34px, 11.4vw, 56px); line-height: .96; }
  .hero__tag { font-size: 22px; margin-top: 18px; min-height: 3.9em; }
  .hero__sub { font-size: 19px; }
  .hero__ctas { flex-direction: column; width: 100%; gap: 14px; margin-top: 24px; }
  .hero__ctas .btn { display: block; width: 100%; min-height: 52px; }
  .hero__canvas { width: 100%; margin-top: 26px; border-radius: 8px; }
  .hero__scrollcue { display: none; }

  /* --- urgency --- */
  .urgency__title { font-size: 25px; }
  .urgency__body { font-size: 20px; }

  /* --- manifesto: prevent word overflow at 375px --- */
  .manifesto__word { font-size: clamp(26px, 8.6vw, 96px); }
  .manifesto__resolve { font-size: 24px; }

  /* --- work: full-width single-column stack, scroll-animated --- */
  .work__grid { grid-template-columns: 1fr; gap: 44px; }
  .work-card { width: 100%; }
  .work-card__meta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .work-card__strategy { font-size: 18px; }
  .work__swipehint { display: none; }

  /* --- services: WEBSITES must fit 375px --- */
  .services__star { font-size: clamp(44px, 14.5vw, 64px); }
  .services__starsub { font-size: 21px; }
  .included__list { grid-template-columns: 1fr; }
  .included__list li:nth-last-child(-n+2) { border-bottom: 0; }
  .included__list li:last-child { border-bottom: 1px solid rgba(10,9,8,.14); }
  .services__grid { grid-template-columns: 1fr; gap: 30px; }

  /* --- process / qa / proof / faq / location: clean stack, tappable --- */
  .process__step { grid-template-columns: 56px 1fr; gap: 16px; }
  .process__bg { width: 100%; opacity: .12; }

  .qa__list { grid-template-columns: 1fr; }
  .qa__list li { font-size: 18px; }
  .qa__list li:nth-last-child(-n+2) { border-bottom: 0; }
  .qa__list li:last-child { border-bottom: 1px solid rgba(242,237,228,.13); }

  .proof__grid { grid-template-columns: 1fr; }
  .proof__item { border-left: 0; border-top: 1px solid rgba(242,237,228,.14); padding: 40px 16px; }
  .proof__item:first-child { border-top: 0; }
  .proof__num { font-size: clamp(44px, 14vw, 64px); }

  .faq__item summary { font-size: 18px; padding: 22px 2px; }
  .faq__item p { font-size: 18px; padding-bottom: 24px; }

  /* body-copy floor: nothing secondary drops below 18px on phones */
  .process__step p { font-size: 18px; }
  .proof__label { font-size: 19px; }
  .proof__note { font-size: 18px; }
  .section-head__sub { font-size: 19px; }
  .cta__alt { font-size: 18px; }

  .location__title { font-size: 22px; }

  .cta__title { font-size: clamp(32px, 9.6vw, 56px); }
  .cta__actions .btn, .btn--big { width: 100%; text-align: center; min-height: 52px; }
  .btn--big { font-size: 15px; padding: 20px 24px; }
  .cta__foot { flex-direction: column; gap: 18px; text-align: center; }
  .cta__foot nav { gap: 30px; }
  .cta__logo { width: 88px; }
}

/* -------------------- cookie banner -------------------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(10, 9, 8, 0.95); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(203, 189, 164, 0.2);
  padding: clamp(16px, 3vw, 28px) clamp(16px, 4vw, 32px);
  max-height: 70vh; overflow-y: auto;
}
.cookie-banner__content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: clamp(24px, 5vw, 48px);
  align-items: center;
}
.cookie-banner__text {
  display: flex; flex-direction: column; gap: 12px;
}
.cookie-banner__title {
  font-family: var(--display); font-size: 16px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--bone); margin: 0;
}
.cookie-banner__body {
  font-size: 14px; line-height: 1.5; color: var(--sand);
  max-width: 50ch;
}
.cookie-banner__actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end;
}
.cookie-banner__btn {
  font-family: var(--display); font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 10px 18px; border: 1px solid transparent; border-radius: 2px;
  cursor: pointer; transition: all .2s;
  background: transparent; color: var(--bone);
  white-space: nowrap;
}
.cookie-banner__btn--secondary {
  border-color: var(--sand); color: var(--sand);
}
.cookie-banner__btn--secondary:hover {
  background: rgba(203, 189, 164, 0.1);
}
.cookie-banner__btn--link {
  color: var(--grey); text-decoration: underline;
}
.cookie-banner__btn--link:hover {
  color: var(--sand);
}
.cookie-banner__btn--primary {
  background: var(--bone); color: var(--black);
}
.cookie-banner__btn--primary:hover {
  background: var(--sand);
}

.cta__legal {
  display: flex; gap: 24px; font-size: 13px; color: var(--grey);
  margin-top: 16px; justify-content: center;
}
.cta__legal a {
  color: var(--grey); text-decoration: underline; transition: color .2s;
}
.cta__legal a:hover {
  color: var(--sand);
}

/* -------------------- contact form -------------------- */
.cta__divider {
  display: flex; align-items: center; gap: 16px;
  max-width: 38em; margin: clamp(32px, 5vh, 48px) auto clamp(24px, 4vh, 32px);
  font-family: var(--display); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey);
}
.cta__divider::before, .cta__divider::after {
  content: ""; flex: 1; height: 1px; background: rgba(203, 189, 164, 0.2);
}

.contact-form {
  max-width: 38em; margin: 0 auto; text-align: left;
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.contact-form__field {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-form__field label {
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--sand);
}
.contact-form__field label span {
  text-transform: none; font-weight: 400; color: var(--grey);
}
.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--serif); font-size: 16px; color: var(--bone);
  background: rgba(203, 189, 164, 0.06);
  border: 1px solid rgba(203, 189, 164, 0.25);
  border-radius: 2px; padding: 12px 14px;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(203, 189, 164, 0.1);
}
.contact-form__honeypot {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.contact-form .btn {
  align-self: flex-start;
}
.contact-form__status {
  font-size: 15px; min-height: 1.4em;
}
.contact-form__status[data-state="success"] { color: var(--sand); }
.contact-form__status[data-state="error"] { color: var(--red); }

@media (max-width: 860px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form .btn { align-self: stretch; text-align: center; }

  .cookie-banner__content { grid-template-columns: 1fr; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__btn { flex: 1 1 auto; text-align: center; }
  .cookie-banner { max-height: 85vh; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scrollline { animation: none; }
}
