/* ============================================================
   DNA Agency — site.css  (Editorial / Warm Studio system)
   Shared by index.html · work.html · start.html · thanks.html · 404.html
   Tokens mirror demos/index.html so the agency site and its
   portfolio read as ONE studio. Zero external deps except Google
   Fonts. All motion lives in motion.css; bespoke keyframes here
   ship their own prefers-reduced-motion kill-switch.
   ============================================================ */

:root{
  /* NEUTRAL base (near-black ink / true grays / off-white paper, faint cool
     bias so it reads "expensive minimalist"). ONE accent = refined orange,
     rationed. --brand RE-VALUED to graphite (property name kept: 7 HTML files
     + scene3d.js read var(--brand)). All hex WCAG-AA verified. */
  --ink:#17181c; --ink-soft:#565b64; --paper:#f7f7f5; --paper-deep:#f1f1ee;
  --line:#e2e2df; --white:#ffffff; --accent:#ee5622; --brand:#3a3f47;
  /* --line-strong: UI borders that must READ (inputs, tier cards).
     --ink-mute: large-text/caption ONLY, never body (~3.2:1).
     --accent: DISPLAY ONLY (counters, borders, flags, em, helix). 3.27:1 on
       light BY DESIGN — never text on light.
     --accent-deep: text-bearing accent + white-on-accent buttons (5.11:1 paper).
     --accent-text: orange-as-text (eyebrow, links) 4.83:1 paper. */
  --line-strong:#c9c9c3; --ink-mute:#6b6e74;
  --accent-deep:#bb3f0c; --accent-text:#c2410c;
  --focus:#c2410c; --shadow:rgba(23,24,28,0.12);
  --font-display:'Fraunces',Georgia,'Times New Roman',serif;
  --font-body:'Archivo','Helvetica Neue',Arial,sans-serif;
  --fs-hero:clamp(2.1rem,4.6vw,3.4rem); --fs-h2:clamp(1.6rem,3vw,2.3rem);
  --fs-h3:clamp(1.2rem,2vw,1.5rem); --fs-lede:clamp(1.05rem,1.5vw,1.2rem);
  --fs-body:1rem; --fs-small:0.9rem; --fs-eyebrow:0.7rem; --fs-micro:.82rem;
  --sp-section:clamp(3.5rem,8vw,7rem); --wrap:68rem; --radius:0.5rem;
  --shadow-hard:7px 7px 0 var(--ink); --border-ink:2px solid var(--ink);
}

/* Restrained NEUTRAL dark set. On dark, accent-as-text = the bright value
   (#ff6a3d) so it clears AA; --brand stays graphite-slate chrome. */
/* LIGHT-ONLY SITE (owner directive): the whole design is a clean light page.
   The dark-theme overrides are deliberately set to the LIGHT values so an OS
   dark preference (or a stray data-theme=dark) can NEVER flip text tokens to
   near-white and make text invisible on the forced-light cards. This is the
   root-cause fix for every "text blends into the background" instance. */
@media(prefers-color-scheme:dark){
  :root{
    --paper:#f7f7f5; --paper-deep:#f1f1ee; --white:#ffffff;
    --ink:#17181c; --ink-soft:#565b64; --line:#e2e2df; --line-strong:#c9c9c3; --ink-mute:#6b6e74;
    --accent:#ee5622; --accent-deep:#bb3f0c; --accent-text:#c2410c; --brand:#3a3f47;
    --shadow:rgba(23,24,28,0.12); --focus:#c2410c;
  }
}
:root[data-theme="dark"]{
  --paper:#f7f7f5; --paper-deep:#f1f1ee; --white:#ffffff;
  --ink:#17181c; --ink-soft:#565b64; --line:#e2e2df; --line-strong:#c9c9c3; --ink-mute:#6b6e74;
  --accent:#ee5622; --accent-deep:#bb3f0c; --accent-text:#c2410c; --brand:#3a3f47;
  --shadow:rgba(23,24,28,0.12); --focus:#c2410c;
}
:root[data-theme="light"]{
  --paper:#f7f7f5; --paper-deep:#f1f1ee; --white:#ffffff;
  --ink:#17181c; --ink-soft:#565b64; --line:#e2e2df; --line-strong:#c9c9c3; --ink-mute:#6b6e74;
  --accent:#ee5622; --accent-deep:#bb3f0c; --accent-text:#c2410c; --brand:#3a3f47;
  --shadow:rgba(23,24,28,0.12); --focus:#c2410c;
}

/* ---- reset ---- */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; font-optical-sizing:auto; }
body{
  background:var(--paper); color:var(--ink);
  font-family:var(--font-body); font-size:var(--fs-body); line-height:1.6; letter-spacing:-.006em;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  min-height:100vh; display:flex; flex-direction:column;
  overflow-x:hidden;
}
/* static grain (zero-dep, data-URI) — the gallery motif */
body::after{
  content:""; position:fixed; inset:0; pointer-events:none; z-index:60; opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
:focus-visible{ outline:3px solid var(--focus); outline-offset:2px; border-radius:2px; }

/* ---- skip link (WCAG 2.4.1 bypass-blocks) — hidden until focused ---- */
.skip-link{ position:absolute; left:-9999px; top:0; z-index:100; }
.skip-link:focus{ position:fixed; left:1rem; top:1rem; background:var(--ink); color:var(--paper);
  padding:.6rem 1rem; border-radius:6px; font-weight:700; outline:3px solid var(--focus); outline-offset:2px; }

/* ---- layout ---- */
.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 1.25rem; width:100%; }
main{ flex:1; }
.section{ padding:var(--sp-section) 0; position:relative; }
.section--deep{ background:var(--paper-deep); }
.section--tight{ padding:clamp(2.2rem,5vw,3.5rem) 0; }
.section-head{ max-width:44rem; margin-bottom:clamp(2rem,4vw,3rem); }
.center{ text-align:center; }
.center .section-head{ margin-left:auto; margin-right:auto; }

/* ---- type ---- */
h1,h2,h3{ font-family:var(--font-display); font-weight:450;
  font-variation-settings:'opsz' 40,'SOFT' 0,'WONK' 0; letter-spacing:-.012em;
  text-wrap:balance; color:var(--ink); }
h1{ font-size:var(--fs-hero); line-height:1.03; }
h2{ font-size:var(--fs-h2); line-height:1.08; }
h3{ font-size:var(--fs-h3); line-height:1.15; letter-spacing:-.012em; }
h1 em, h2 em{ font-style:italic; font-weight:500; color:var(--accent-deep); }
p{ color:var(--ink-soft); }
.prose{ max-width:38rem; }
.lede{ font-size:var(--fs-lede); line-height:1.55; color:var(--ink-soft); max-width:40rem; }
.eyebrow{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:var(--font-body); font-size:var(--fs-eyebrow); font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:1rem;
}
/* eyebrows are now neutral gray; only the tiny tick keeps a hint of accent */
.eyebrow::before{ content:""; width:2.2rem; height:2px; background:var(--accent); flex:none; }
.muted{ color:var(--ink-soft); }
.mono-nums{ font-variant-numeric:tabular-nums; }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:.5rem; cursor:pointer;
  font-family:var(--font-body); font-weight:700; font-size:.98rem; line-height:1;
  text-decoration:none; padding:.95rem 1.4rem; border-radius:var(--radius);
  border:var(--border-ink); background:var(--white); color:var(--ink);
  box-shadow:3px 3px 0 var(--shadow);
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.btn:hover{ transform:translate(-2px,-2px); box-shadow:var(--shadow-hard); }
.btn:active{ transform:translate(0,0); box-shadow:2px 2px 0 var(--ink); }
.btn--primary{ background:var(--accent-deep); color:var(--white); border-color:var(--ink); }
.btn--primary:hover{ background:var(--accent-deep); }
.btn--ghost{ background:transparent; box-shadow:none; }
.btn--ghost:hover{ background:var(--white); box-shadow:3px 3px 0 var(--shadow); }
.btn--wide{ width:100%; justify-content:center; }
.btn svg{ width:1.05em; height:1.05em; }

.mo-underline{ position:relative; text-decoration:none; color:inherit;
  background-image:linear-gradient(var(--accent),var(--accent));
  background-size:0% 2px; background-position:0 100%; background-repeat:no-repeat;
  transition:background-size .22s ease; }
.mo-underline:hover, .mo-underline:focus-visible{ background-size:100% 2px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{ position:sticky; top:0; z-index:50;
  background:color-mix(in srgb, var(--paper) 85%, transparent);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  border-bottom:2px solid transparent; transition:border-color .2s ease, background .2s ease; }
.site-header.is-stuck{ background:color-mix(in srgb, var(--white) 92%, transparent);
  border-bottom-color:var(--ink); }
.nav{ display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:.85rem 0; }
.brand{ display:inline-flex; align-items:baseline; gap:.4rem; text-decoration:none; color:var(--ink); }
.brand__mark{ font-family:var(--font-display); font-weight:900; font-size:1.35rem;
  letter-spacing:-.02em; }
.brand__mark em{ font-style:normal; color:var(--accent); }
.brand__word{ font-family:var(--font-body); font-weight:700; font-size:.72rem;
  letter-spacing:.18em; text-transform:uppercase; color:var(--ink-soft); }
.nav__links{ display:flex; align-items:center; gap:1.6rem; list-style:none; }
.nav__links a{ font-weight:600; font-size:.95rem; text-decoration:none; color:var(--ink); }
.nav__cta{ padding:.6rem 1rem; }
.nav__toggle{ display:none; background:none; border:2px solid var(--ink);
  border-radius:var(--radius); width:2.75rem; height:2.75rem; cursor:pointer;
  align-items:center; justify-content:center; color:var(--ink); }
.nav__toggle svg{ width:1.4rem; height:1.4rem; }

/* mobile nav overlay */
.nav-overlay{ position:fixed; inset:0; z-index:70; background:var(--paper);
  display:none; flex-direction:column; padding:1.25rem; }
.nav-overlay.is-open{ display:flex; }
.nav-overlay__top{ display:flex; align-items:center; justify-content:space-between; }
.nav-overlay__links{ list-style:none; margin-top:2.5rem; display:flex;
  flex-direction:column; gap:1.4rem; }
.nav-overlay__links a{ font-family:var(--font-display); font-size:2rem; font-weight:700;
  text-decoration:none; color:var(--ink); }
.nav-overlay .btn{ margin-top:1rem; }

@media(max-width:760px){
  .nav__links{ display:none; }
  .nav > .btn.nav__cta{ display:none; }
  .nav__toggle{ display:inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{ padding:clamp(3rem,7vw,5.5rem) 0 clamp(2.5rem,5vw,4rem); }
.hero h1{ max-width:20ch; margin:.4rem 0 1.3rem; }
.hero .lede{ max-width:44rem; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:.9rem; margin-top:1.8rem; }
.hero__trust{ margin-top:1.4rem; font-size:.85rem; color:var(--ink-soft);
  display:flex; flex-wrap:wrap; gap:.5rem .9rem; align-items:center; }
.hero__trust span{ display:inline-flex; align-items:center; gap:.5rem; }
.hero__trust span::before{ content:""; width:6px; height:6px; border-radius:50%;
  background:var(--accent); }

/* ============================================================
   COUNTER BAR
   ============================================================ */
.counters{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.counter{ border:var(--border-ink); border-radius:var(--radius); background:var(--white);
  padding:1.6rem 1.2rem; box-shadow:3px 3px 0 var(--shadow); }
.counter__num{ font-family:var(--font-display); font-weight:800; font-size:clamp(2.2rem,5vw,3.2rem);
  line-height:1; color:var(--accent); letter-spacing:-.02em; font-variant-numeric:tabular-nums; }
.counter__label{ margin-top:.6rem; font-size:.9rem; color:var(--ink-soft); }
.counters__note{ margin-top:1.4rem; font-size:.95rem; color:var(--ink-soft); max-width:44rem; }

/* ============================================================
   TWO-COLUMN (problem/promise)
   ============================================================ */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:start; }
.two-col > div{ background:var(--white); border:var(--border-ink); border-radius:var(--radius);
  padding:1.8rem; box-shadow:3px 3px 0 var(--shadow); }
.two-col h3{ margin-bottom:.6rem; }
.col-kicker{ font-weight:700; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--brand); display:block; margin-bottom:.5rem; }

/* ============================================================
   CARD GRID (services)
   ============================================================ */
.grid{ display:grid; gap:1.4rem; }
.grid--4{ grid-template-columns:repeat(4,1fr); }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--2{ grid-template-columns:repeat(2,1fr); }
.card{ background:var(--white); border:var(--border-ink); border-radius:var(--radius);
  padding:1.6rem 1.5rem; box-shadow:3px 3px 0 var(--shadow);
  transition:transform .16s ease, box-shadow .16s ease; display:flex; flex-direction:column; gap:.55rem; }
.card:hover{ transform:translate(-3px,-3px); box-shadow:var(--shadow-hard); }
.card__kicker{ font-weight:700; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent-deep); }
.card h3{ font-size:1.3rem; }
.card p{ font-size:.96rem; margin:0; }
.badge{ align-self:flex-start; font-size:.68rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--brand); border:1.5px solid var(--brand);
  border-radius:100px; padding:.2rem .6rem; }

/* ============================================================
   HOW IT WORKS (numbered steps)
   ============================================================ */
.steps{ display:grid; gap:1.2rem; }
.step{ display:grid; grid-template-columns:auto 1fr; gap:1.2rem; align-items:start;
  padding:1.4rem 0; border-top:2px solid var(--line); }
.step:first-child{ border-top:none; }
.step__n{ font-family:var(--font-display); font-weight:800; font-size:2.4rem; line-height:1;
  color:var(--brand); font-variant-numeric:tabular-nums; }
.step__body h3{ font-size:1.25rem; margin-bottom:.3rem; }
.step__body p{ font-size:.98rem; margin:0; }

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.work-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.work-card{ display:flex; flex-direction:column; background:var(--white);
  border:var(--border-ink); border-radius:var(--radius); overflow:hidden;
  box-shadow:3px 3px 0 var(--shadow); text-decoration:none; color:var(--ink);
  transition:transform .16s ease, box-shadow .16s ease; }
.work-card:hover{ transform:translate(-3px,-3px); box-shadow:var(--shadow-hard); }
.work-card__tile{ aspect-ratio:16/10; display:grid; place-items:center; padding:1.2rem;
  background:var(--paper-deep); border-bottom:2px solid var(--ink); position:relative;
  overflow:hidden; }
.work-card__tile::before{ content:""; position:absolute; inset:0; opacity:.5;
  background-image:linear-gradient(var(--line) 1px,transparent 1px),
    linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:22px 22px; -webkit-mask-image:radial-gradient(circle at 30% 20%,#000,transparent 75%);
  mask-image:radial-gradient(circle at 30% 20%,#000,transparent 75%); }
.work-card__tilename{ position:relative; font-family:var(--font-display); font-weight:700;
  font-size:1.5rem; line-height:1.1; text-align:center; color:var(--ink); text-wrap:balance; }
.work-card__img{ aspect-ratio:16/10; object-fit:cover; border-bottom:2px solid var(--ink);
  width:100%; height:auto; }
.work-card__body{ padding:1.1rem 1.2rem 1.3rem; display:flex; flex-direction:column; gap:.25rem; flex:1; }
.work-card__kicker{ font-weight:700; font-size:.68rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent-deep); }
.work-card__name{ font-family:var(--font-display); font-weight:700; font-size:1.2rem; }
.work-card__city{ color:var(--ink-soft); font-size:.9rem; }
.work-card__link{ margin-top:auto; padding-top:.6rem; font-weight:700; font-size:.9rem;
  color:var(--brand); display:inline-flex; align-items:center; gap:.35rem; }

/* trade filter (work.html) */
.filter{ display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:2rem; }
.filter button{ font-family:var(--font-body); font-weight:700; font-size:.85rem;
  border:2px solid var(--ink); background:var(--white); color:var(--ink); cursor:pointer;
  border-radius:100px; padding:.45rem 1rem; transition:background .14s ease, color .14s ease; }
.filter button[aria-pressed="true"]{ background:var(--ink); color:var(--paper); }

/* ============================================================
   OBJECTION-KILLER (three columns)
   ============================================================ */
.opts{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; align-items:stretch; }
.opt{ background:var(--white); border:var(--border-ink); border-radius:var(--radius);
  padding:1.6rem 1.5rem; box-shadow:3px 3px 0 var(--shadow); display:flex; flex-direction:column; gap:.6rem; }
.opt h3{ font-size:1.2rem; }
.opt p{ font-size:.96rem; margin:0; }
.opt--dna{ border-color:var(--accent); box-shadow:6px 6px 0 var(--ink);
  background:var(--white); position:relative; }
.opt--dna .opt__tag{ position:absolute; top:-.9rem; left:1.3rem; background:var(--accent-deep);
  color:var(--white); font-size:.66rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  padding:.25rem .6rem; border-radius:100px; }

/* ============================================================
   PRICING (transparency ladder — no checkout anywhere)
   ============================================================ */
.pricing{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; align-items:stretch; }
.tier{ background:var(--white); border:1px solid var(--line-strong); border-radius:var(--radius);
  padding:1.5rem 1.3rem; box-shadow:3px 3px 0 var(--shadow); display:flex; flex-direction:column; gap:.5rem; }
.tier--featured{ border:2px solid var(--accent); box-shadow:6px 6px 0 var(--shadow); position:relative; }
.tier__flag{ position:absolute; top:-.9rem; left:1.2rem; background:var(--accent-deep); color:var(--white);
  font-size:.64rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:.25rem .55rem; border-radius:100px; }
.tier__name{ font-family:var(--font-display); font-weight:500; font-size:1.4rem; }
.tier__who{ font-size:.88rem; color:var(--ink-soft); min-height:2.4em; }
.tier__price{ margin-top:.4rem; font-weight:700; font-size:1.05rem; color:var(--ink);
  font-variant-numeric:tabular-nums; }
.tier__price .b{ display:block; }
.tier__price .mo{ color:var(--ink-soft); font-weight:600; font-size:.95rem; }
.terms-strip{ margin-top:1.8rem; background:var(--paper-deep); border:2px solid var(--line);
  border-radius:var(--radius); padding:1.4rem 1.5rem; }
.terms-strip p{ margin:0; color:var(--ink); font-size:.98rem; line-height:1.7; max-width:60rem; }
.terms-strip__flex{ margin-top:.9rem !important; padding-top:.9rem; border-top:1px solid var(--line);
  font-weight:600; color:var(--accent-deep) !important; font-size:.95rem !important; }
.pricing-cta{ margin-top:1.6rem; display:flex; flex-direction:column; align-items:center; gap:.7rem; text-align:center; }
.pricing-cta .micro{ font-size:.9rem; color:var(--ink-soft); }

/* ============================================================
   ABOUT
   ============================================================ */
.about{ max-width:46rem; }
.about h2{ margin-bottom:1rem; }
.about p{ font-size:1.05rem; color:var(--ink-soft); }

/* ============================================================
   FINAL CTA BAND (the one dark moment)
   ============================================================ */
.cta-band{ background:#131417; border-top:4px solid var(--accent); color:#f4f4f2;
  padding:var(--sp-section) 0; text-align:center; }
.cta-band h2{ color:#f4f4f2; max-width:18ch; margin:0 auto 1rem; }
.cta-band h2 em{ color:var(--accent); }
.cta-band .lede{ color:#dcdcd8; margin:0 auto 1.8rem; max-width:40rem; }
.cta-band .btn--primary{ border-color:#f4f4f2; }
.cta-band__mail{ margin-top:1.2rem; font-size:.98rem; color:#b9b9b4; }
.cta-band__mail a{ color:#f4f4f2; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--paper-deep); border-top:2px solid var(--ink);
  padding:clamp(2.5rem,5vw,3.5rem) 0 2rem; }
.footer-grid{ display:grid; grid-template-columns:2fr 1fr 1.4fr; gap:2rem; align-items:start; }
.footer-grid h3{ font-size:1.15rem; margin-bottom:.5rem; }
.footer-grid p, .footer-grid a{ font-size:.92rem; color:var(--ink-soft); text-decoration:none; }
.footer-nav{ list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.footer-contact a{ color:var(--ink); font-weight:600; }
.footer-legal{ margin-top:2rem; padding-top:1.2rem; border-top:2px solid var(--line);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:.6rem;
  font-size:.78rem; color:var(--ink-soft); }

/* ============================================================
   START / CONTACT PAGE
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:2.5rem; align-items:start; }
.form{ display:flex; flex-direction:column; gap:1rem; background:var(--white);
  border:var(--border-ink); border-radius:var(--radius); padding:1.8rem;
  box-shadow:var(--shadow-hard); }
.field{ display:flex; flex-direction:column; gap:.35rem; }
.field label{ font-weight:700; font-size:.85rem; }
.field input, .field textarea{ font-family:var(--font-body); font-size:1rem; color:var(--ink);
  background:var(--paper); border:2px solid var(--ink); border-radius:var(--radius);
  padding:.7rem .8rem; width:100%; }
.field textarea{ min-height:7rem; resize:vertical; }
.field input:focus, .field textarea:focus{ outline:3px solid var(--focus); outline-offset:1px; }
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.contact-aside{ display:flex; flex-direction:column; gap:1.1rem; }
.contact-aside .card{ box-shadow:3px 3px 0 var(--shadow); }
.contact-aside a{ color:var(--brand); font-weight:700; }

/* ============================================================
   SIMPLE / ERROR PAGES
   ============================================================ */
.pad-page{ display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:clamp(4rem,12vw,8rem) 1.25rem; flex:1; }
.pad-page h1{ max-width:20ch; margin-bottom:1rem; }
.pad-page .lede{ margin:0 auto 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px){
  .grid--4, .pricing{ grid-template-columns:repeat(2,1fr); }
  .work-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:760px){
  .two-col, .opts, .grid--3, .grid--2, .contact-grid{ grid-template-columns:1fr; }
  .counters{ grid-template-columns:1fr; }
  .cta-band h2{ max-width:none; }
}
@media(max-width:560px){
  .grid--4, .pricing, .work-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .step{ grid-template-columns:auto 1fr; gap:.9rem; }
  .step__n{ font-size:1.9rem; }
}

/* Bespoke keyframe kill-switch (we add none beyond motion.css, but guard anyway) */
@media(prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important;
     transition-duration:.001ms !important; }
}
