:root{
  --accent:#1a6e6e;
  --dark:#0c1f1f;
  --light:#f5f1e8;
  --font:'Outfit',system-ui,sans-serif;
  --radius:2px;
  --heading-transform:uppercase;
  --heading-spacing:0.02em;
}
/* pipeline typographic safety */
img,svg,video,canvas{max-width:100%;height:auto;}
h1,h2,h3,h4,h5,h6,.footer-mark,.footer-wordmark,.footer-brand{text-wrap:balance;overflow-wrap:break-word;}
p,li,blockquote,figcaption,dd,dt{text-wrap:pretty;}
body{overflow-wrap:break-word;}
a,cite,code,.label{overflow-wrap:anywhere;}
main :where(section,article,div,ul,ol,li){min-width:0;}
/* Modern Grotesque — high-contrast editorial system for agencies & studios.
   Palette, font and corner radius arrive as CSS custom properties injected at
   render time (:root block prepended above this file). Everything here is
   static and palette-agnostic. Character comes from a confident grotesque
   display scale, a monospace label role, a split hero with a CSS-drawn
   geometric panel, an asymmetric featured-plus-rest services grid built from
   fills and space (not a bordered box each), and a big-type wordmark footer
   that bookends the hero. Two distinct trust/proof moments, never a merged bar.
   No hardcoded colour or body font — only the injected variables. */

:root {
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --line: color-mix(in srgb, var(--dark) 14%, transparent);
  --line-strong: color-mix(in srgb, var(--dark) 30%, transparent);
  --tint: color-mix(in srgb, var(--dark) 4%, var(--light));
  --tint-2: color-mix(in srgb, var(--dark) 8%, var(--light));
  --ink-soft: color-mix(in srgb, var(--dark) 58%, var(--light));
  --on-dark: color-mix(in srgb, var(--light) 74%, var(--dark));
  --on-dark-soft: color-mix(in srgb, var(--light) 22%, var(--dark));
  --accent-ink: color-mix(in srgb, var(--accent) 60%, var(--dark));
  --grain: 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.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
body::after { content: ""; position: fixed; inset: 0; background-image: var(--grain); opacity: .02; mix-blend-mode: multiply; pointer-events: none; z-index: 9999; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ── Type ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.0;
  text-transform: var(--heading-transform);
  letter-spacing: var(--heading-spacing);
  margin: 0;
}

/* Monospace label role — the modern/technical signal, used everywhere small
   text appears: eyebrow, nav, section labels, service numbers, stat units,
   footer column heads, ticker, legal. Never a rounded pill. */
.eyebrow, .nav-links a, .service-index, .stat-label, .footer-col h4,
.trust-ticker, .trust-checklist, .footer-legal, .section-label, .about-badge, .review cite {
  font-family: var(--mono);
  letter-spacing: .04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.0;
  margin-bottom: clamp(34px, 5vw, 54px);
}

/* ── Buttons (grotesque, not the mono label role) ─────────────────── */
.btn {
  --bg: var(--accent); --fg: var(--light);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 50px; padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--bg);
  background: var(--bg); color: var(--fg);
  font-family: inherit; font-weight: 800; font-size: .95rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: color .26s ease, border-color .26s ease, transform .26s cubic-bezier(.2,.7,.2,1);
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: color-mix(in srgb, var(--bg) 80%, black); transform: translateY(101%); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateY(0); }
.btn-lg { min-height: 58px; padding: 17px 38px; font-size: 1.02rem; }
.btn-accent { --bg: var(--accent); --fg: var(--light); }
.btn-ghost { --bg: transparent; --fg: currentColor; border-color: color-mix(in srgb, currentColor 40%, transparent); }
.btn-ghost::before { background: color-mix(in srgb, currentColor 12%, transparent); }
.btn-ghost:hover { border-color: currentColor; }
.hero-ctas .btn-accent::after, .final-buttons .btn:first-child::after { content: "\2192"; font-weight: 700; transition: transform .26s cubic-bezier(.2,.7,.2,1); }
.hero-ctas .btn-accent:hover::after, .final-buttons .btn:first-child:hover::after { transform: translateX(4px); }
:where(a, button):focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Header / nav ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 42px; /* the publisher pins a 42px banner above the page */
  z-index: 900;
  background: color-mix(in srgb, var(--light) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 2px solid var(--dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.wordmark { position: relative; font-weight: 900; font-size: 1.18rem; letter-spacing: -0.01em; text-decoration: none; padding-left: 16px; }
.wordmark::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: var(--accent); }
.nav { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { position: relative; text-decoration: none; font-size: .74rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta-li a { color: var(--light); }
.nav-cta-li a::after { display: none; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--dark); transition: transform 200ms ease, opacity 200ms ease; }

section { scroll-margin-top: 124px; position: relative; } /* banner + sticky header */

/* ── Hero (split ~55/45: copy + CSS-drawn or photo panel) ─────────── */
.hero { background: var(--dark); color: var(--light); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--on-dark-soft) 1px, transparent 1px), linear-gradient(90deg, var(--on-dark-soft) 1px, transparent 1px);
  background-size: 54px 54px; opacity: .5;
  -webkit-mask-image: radial-gradient(130% 110% at 4% 4%, #000 20%, transparent 62%);
  mask-image: radial-gradient(130% 110% at 4% 4%, #000 20%, transparent 62%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 11vw, 132px) 0;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-title { font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: .98; max-width: 15ch; letter-spacing: -0.01em; }
.hero-subline { font-size: clamp(1.04rem, 1.7vw, 1.24rem); max-width: 46ch; margin: 24px 0 0; color: var(--on-dark); line-height: 1.55; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* Geometric panel: accent-tinted field, faint grid, layered shapes (or photo) */
.hero-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-panel--photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-panel--photo::before { content: ""; position: absolute; top: -9px; left: -9px; width: 34px; height: 34px; border-top: 3px solid var(--accent); border-left: 3px solid var(--accent); z-index: 2; }
.hero-panel--graphic {
  background: color-mix(in srgb, var(--accent) 18%, var(--dark));
  border: 1px solid color-mix(in srgb, var(--light) 18%, transparent);
}
.hg-grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--light) 12%, transparent) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--light) 12%, transparent) 0 1px, transparent 1px 36px);
}
.hg-shape { position: absolute; display: block; }
.hg-shape--square { width: 46%; height: 46%; top: 11%; left: 9%; background: var(--accent); border-radius: var(--radius); transform: rotate(-6deg); box-shadow: 0 24px 50px -24px color-mix(in srgb, var(--accent) 70%, black); }
.hg-shape--circle { width: 40%; height: 40%; bottom: 9%; right: 10%; border: 6px solid var(--light); border-radius: 50%; opacity: .92; }
.hg-shape--bar { width: 64%; height: 15%; bottom: 15%; left: -8%; background: var(--light); border-radius: var(--radius); transform: rotate(-8deg); opacity: .95; }
.hg-shape--dot { width: 12%; height: 12%; top: 14%; right: 13%; background: var(--accent); border-radius: 50%; }

/* ── Trust — moment #1: slim monospace spec strip (hairline band) ─── */
.trust { border-top: 2px solid var(--dark); border-bottom: 2px solid var(--dark); background: var(--light); }
.trust .container { padding-top: 22px; padding-bottom: 22px; }
.trust-ticker { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px; margin: 0; font-size: .78rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.trust-ticker span { position: relative; padding-right: 27px; }
.trust-ticker span:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; width: 1px; height: 13px; background: var(--accent); transform: translateY(-50%); }
.trust-stats { display: flex; flex-wrap: wrap; gap: 14px 48px; }
.trust-stat { font-size: clamp(1.05rem, 1.9vw, 1.4rem); font-weight: 800; letter-spacing: -0.01em; }
.trust-proof { font-size: clamp(1.05rem, 2.1vw, 1.5rem); font-weight: 700; line-height: 1.35; max-width: 60ch; margin: 0; }
.trust-checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 8px 30px; list-style: none; margin: 0; padding: 0; font-size: .82rem; }
.trust-checklist li { position: relative; padding-left: 26px; }
.trust-checklist li::before { content: ""; position: absolute; left: 0; top: .28em; width: 13px; height: 7px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); transform: rotate(-45deg); }

/* ── Services (asymmetric: wide featured banner + tinted rest tiles) ─ */
.services { padding: clamp(72px, 10vw, 120px) 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
.service-card {
  position: relative;
  background: var(--tint);
  border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 32px);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 208px;
  justify-content: space-between;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background-color .3s ease;
}
.service-body { display: flex; flex-direction: column; gap: 8px; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .32s cubic-bezier(.2,.7,.2,1); }
.service-card:hover { transform: translateY(-4px); background: var(--tint-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-index { font-size: .82rem; font-weight: 500; color: var(--accent); }
.service-card h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.05; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: .96rem; line-height: 1.5; }

/* Featured: full-width dark banner — the one place a solid fill carries meaning */
.service-card:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 4vw, 56px);
  background: var(--dark);
  color: var(--light);
  padding: clamp(30px, 4vw, 52px);
  min-height: 0;
}
.service-card:first-child::before { display: none; }
.service-card:first-child:hover { transform: translateY(-4px); background: color-mix(in srgb, var(--dark) 92%, var(--accent)); }
.service-card:first-child .service-index { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: 1; flex: 0 0 auto; }
.service-card:first-child h3 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 8px; }
.service-card:first-child p { color: var(--on-dark); font-size: 1.04rem; max-width: 52ch; }
.service-card:first-child .service-body { display: flex; flex-direction: column; }

/* ── Selected Work (outlined case tiles — bold, photo-free) ───────── */
.portfolio { padding: clamp(72px, 10vw, 120px) 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
.work-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(30px, 4vw, 54px);
  min-height: 230px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 2px solid var(--dark);
  border-radius: var(--radius);
  background: var(--light);
  transition: background-color .3s ease, color .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.work-card:hover { transform: translateY(-4px); background: var(--accent); color: var(--light); border-color: var(--accent); }
.work-card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.work-index { font-family: var(--mono); font-size: clamp(1.3rem, 2.1vw, 1.7rem); font-weight: 500; letter-spacing: .01em; color: var(--accent); }
.work-card:hover .work-index { color: var(--light); }
.work-tag {
  font-family: var(--mono); font-size: .7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em; white-space: nowrap;
  color: var(--ink-soft);
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.work-card:hover .work-tag { color: var(--light); border-color: color-mix(in srgb, var(--light) 55%, transparent); }
.work-title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.02; letter-spacing: -0.01em; }

/* ── Process (dark statement band — big numbered steps) ───────────── */
.process { background: var(--dark); color: var(--light); padding: clamp(72px, 10vw, 120px) 0; position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--on-dark-soft) 1px, transparent 1px), linear-gradient(90deg, var(--on-dark-soft) 1px, transparent 1px);
  background-size: 54px 54px; opacity: .5;
  -webkit-mask-image: radial-gradient(90% 120% at 100% 0%, #000, transparent 60%);
  mask-image: radial-gradient(90% 120% at 100% 0%, #000, transparent 60%);
}
.process .container { position: relative; z-index: 1; }
.process .section-title { color: var(--light); }
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(26px, 3.4vw, 48px);
  list-style: none; margin: 0; padding: 0;
}
.step { position: relative; }
.step-index {
  display: block;
  font-family: var(--mono); font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1;
  color: var(--accent);
  margin-bottom: clamp(16px, 2vw, 22px);
}
.step-title { font-size: clamp(1.3rem, 2.1vw, 1.65rem); line-height: 1.08; margin-bottom: 12px; }
.step-body { margin: 0; color: var(--on-dark); font-size: .98rem; line-height: 1.55; max-width: 34ch; }

/* ── Proof — moment #2: oversized display numbers / reviews / photos ─ */
.proof { padding: clamp(66px, 8vw, 104px) 0; background: var(--tint-2); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; border-top: 2px solid var(--dark); }
.stat { display: flex; flex-direction: column; gap: 10px; padding: clamp(26px, 3vw, 38px) clamp(22px, 2.4vw, 32px) clamp(26px, 3vw, 38px) 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-value { font-size: clamp(2.6rem, 5.4vw, 4rem); font-weight: 900; color: var(--accent); line-height: .92; letter-spacing: -0.02em; }
.stat-label { font-size: .74rem; font-weight: 500; text-transform: uppercase; color: var(--ink-soft); }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.review { position: relative; margin: 0; padding: 28px 0 0; border-top: 3px solid var(--accent); }
.review p { margin: 0 0 16px; font-size: clamp(1.06rem, 1.5vw, 1.24rem); font-weight: 500; line-height: 1.45; }
.review cite { font-style: normal; font-size: .78rem; text-transform: uppercase; color: var(--ink-soft); }

.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }

/* ── About (large editorial lead beside a sticky heading) ─────────── */
.about { padding: clamp(72px, 10vw, 120px) 0; }
.about-inner { display: grid; grid-template-columns: minmax(170px, 260px) 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.about-aside { position: sticky; top: 124px; }
.about-lead { font-size: clamp(1.4rem, 2.8vw, 2.2rem); font-weight: 500; line-height: 1.3; max-width: 26ch; margin: 0; color: var(--dark); }
.about-badge {
  display: inline-flex; align-items: center;
  margin-top: clamp(26px, 3vw, 36px);
  padding: 16px 24px;
  border-radius: var(--radius);
  background: var(--tint);
  color: var(--accent-ink);
  font-size: .78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
}
.about-badge::before { content: ""; width: 8px; height: 8px; background: var(--accent); margin-right: 12px; flex: 0 0 auto; }

/* ── Final CTA (dark full-bleed statement — bookends the hero) ─────── */
.final-cta { background: var(--dark); color: var(--light); padding: clamp(78px, 11vw, 140px) 0; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--on-dark-soft) 1px, transparent 1px), linear-gradient(90deg, var(--on-dark-soft) 1px, transparent 1px);
  background-size: 54px 54px; opacity: .5;
  -webkit-mask-image: radial-gradient(80% 130% at 96% 100%, #000, transparent 60%);
  mask-image: radial-gradient(80% 130% at 96% 100%, #000, transparent 60%);
}
.final-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; grid-template-areas: "title buttons" "text buttons"; column-gap: clamp(32px, 5vw, 80px); align-items: end; }
.final-copy { display: contents; }
.final-title { grid-area: title; font-size: clamp(2.2rem, 5.2vw, 4rem); line-height: .98; max-width: 16ch; letter-spacing: -0.01em; }
.final-sentence { grid-area: text; margin: 20px 0 0; max-width: 46ch; font-size: 1.12rem; color: var(--on-dark); }
.final-buttons { grid-area: buttons; align-self: end; display: flex; flex-wrap: wrap; gap: 14px; }
.final-cta .btn-ghost { color: var(--light); border-color: color-mix(in srgb, var(--light) 36%, transparent); }

/* ── Footer (big-type grotesque wordmark bookend) ─────────────────── */
.site-footer { background: color-mix(in srgb, var(--dark) 94%, black); color: var(--light); padding: clamp(60px, 8vw, 92px) 0 30px; overflow: hidden; }
.footer-mark { font-size: clamp(3rem, 13vw, 9rem); font-weight: 900; line-height: .86; letter-spacing: -0.02em; color: color-mix(in srgb, var(--light) 94%, var(--dark)); text-transform: var(--heading-transform); }
.footer-tagline { margin: 22px 0 clamp(40px, 5vw, 60px); max-width: 42ch; color: var(--on-dark); font-size: 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: clamp(30px, 4vw, 44px); border-top: 1px solid color-mix(in srgb, var(--light) 16%, transparent); }
.footer-col h4 { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 15px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--on-dark); font-size: .95rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col li { color: var(--on-dark); font-size: .95rem; }
.footer-legal { margin-top: clamp(34px, 4vw, 48px); font-size: .74rem; letter-spacing: .04em; color: color-mix(in srgb, var(--light) 46%, var(--dark)); }

/* ── Scroll reveal (hidden state added by JS, never default) ──────── */
.reveal-init { opacity: 0; transform: translateY(16px); }
.reveal-in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }

/* ── Orchestrated page-load (staggered hero) ──────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise .74s cubic-bezier(.2,.7,.2,1) both; }
  .hero-copy > *:nth-child(1) { animation-delay: .05s; }
  .hero-copy > *:nth-child(2) { animation-delay: .14s; }
  .hero-copy > *:nth-child(3) { animation-delay: .23s; }
  .hero-copy > *:nth-child(4) { animation-delay: .32s; }
  .hero-panel { animation: panel-in .9s cubic-bezier(.2,.7,.2,1) .2s both; }
  .hg-shape--square { animation: pop .7s cubic-bezier(.2,.7,.2,1) .5s both; }
  .hg-shape--circle { animation: pop .7s cubic-bezier(.2,.7,.2,1) .62s both; }
  .hg-shape--bar { animation: pop .7s cubic-bezier(.2,.7,.2,1) .74s both; }
  .hg-shape--dot { animation: pop .7s cubic-bezier(.2,.7,.2,1) .86s both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes panel-in { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: none; } }

/* ── Tablet ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { order: -1; max-width: 460px; }
  .about-inner { grid-template-columns: 1fr; gap: clamp(18px, 4vw, 28px); }
  .about-aside { position: static; }
}

/* ── Mobile (required breakpoint for nav) ─────────────────────────── */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--light);
    border-bottom: 2px solid var(--dark);
    padding: 8px clamp(20px, 4vw, 48px) 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 4px 0; }
  .nav-links a { display: block; padding: 12px 0; min-height: 44px; }
  .nav-links a::after { display: none; }
  .nav-cta-li a { display: inline-flex; margin-top: 10px; }
  .header-inner { position: relative; }

  .trust-stats { flex-direction: column; gap: 12px; }

  .service-card { min-height: 0; gap: 14px; justify-content: flex-start; }
  .service-card:first-child { flex-direction: column; align-items: flex-start; gap: 14px; }
  .service-card:first-child .service-index { font-size: clamp(2.2rem, 9vw, 3rem); }

  .work-card { min-height: 0; gap: 22px; }

  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .stat:last-child { border-bottom: none; }

  .final-inner { grid-template-columns: 1fr; grid-template-areas: "title" "text" "buttons"; }
  .final-buttons { margin-top: 30px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 440px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .final-buttons .btn { width: 100%; }
  .stat-grid { grid-template-columns: 1fr; }
}
