/* palette: bg=#0C0B0A fg=#F7F0E2 accent=#E5380F */
/* fonts: display="Bricolage Grotesque" body="Hanken Grotesque" mono="Space Mono" */

:root {
  --bg: #0C0B0A;          /* dominant near-black (content sections) */
  --bg-alt: #14110D;      /* warm dark alternating section */
  --paper: #F7F0E2;       /* cream paper for light sections */
  --paper-alt: #EFE5D2;   /* darker cream */
  --fg: #F7F0E2;          /* primary text on dark */
  --fg-soft: #D9CFBC;     /* softer cream */
  --ink: #14110D;         /* dark text on cream */
  --muted: #9A9082;       /* secondary text */
  --accent: #E5380F;      /* sealing-wax / lava red */
  --accent-deep: #B71F02; /* darker red for hover */
  --flame: #FF7A21;       /* warm orange (hero gradient top) */
  --flame-soft: #FFB347;
  --border: rgba(247, 240, 226, 0.16);
  --border-ink: rgba(20, 17, 13, 0.14);

  --serif: 'Bricolage Grotesque', ui-serif, Georgia, serif;
  --sans: 'Hanken Grotesque', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 32px);
  --section-y: clamp(80px, 12vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 800; margin: 0; line-height: 1.02; letter-spacing: -0.02em; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-block;
  margin: 0 0 18px;
}
.eyebrow--muted { color: var(--muted); }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(247,240,226,0.08), 0 12px 40px -16px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 800; font-size: 22px; letter-spacing: -0.03em; color: var(--fg); }
.brand__mark {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  background: var(--accent); color: var(--paper);
  border-radius: 7px; font-family: var(--serif); font-weight: 800; font-size: 16px;
  transform: rotate(-6deg);
}
.nav { display: none; align-items: center; gap: 34px; }
.nav a { font-size: 14px; color: var(--fg-soft); letter-spacing: 0.01em; transition: color .25s var(--ease); position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width .3s var(--ease); }
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px;
  background: var(--accent); color: var(--paper);
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(229,56,15,0.5); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn--ghost:hover { background: rgba(247,240,226,0.06); border-color: var(--fg-soft); box-shadow: none; }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #000; }
.header .btn { display: none; }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--fg); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 99;
  background: var(--bg);
  padding: 40px var(--pad);
  display: flex; flex-direction: column; gap: 8px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-weight: 700; font-size: 30px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--fg); }
.mobile-menu .btn { margin-top: 24px; width: fit-content; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(168deg, var(--flame-soft) 0%, var(--flame) 22%, var(--accent) 58%, var(--accent-deep) 100%);
}
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 120%, rgba(11,8,6,0.55) 0%, rgba(183,31,2,0) 55%);
  pointer-events: none;
}
.hero__ridge {
  position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: radial-gradient(120% 130% at 50% 100%, #7c1404 0%, #a4140330 60%, transparent 75%);
  filter: blur(2px); pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; text-align: center; padding: 120px 0 90px; }
.hero__eyebrow { color: rgba(247,240,226,0.92); }
.hero h1 {
  color: var(--paper);
  font-size: clamp(3.5rem, 11vw, 9rem);
  letter-spacing: -0.035em; font-weight: 800;
  line-height: 0.95;
  text-shadow: 0 8px 40px rgba(80,8,0,0.35);
  margin: 0 auto; max-width: 16ch;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.18em;
}
.hero h1 em { font-style: normal; color: var(--bg); }
.hero__spark { width: clamp(28px, 5vw, 64px); height: auto; flex: none; color: var(--paper); }
.hero__sub {
  color: rgba(247,240,226,0.94);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  max-width: 42ch; margin: 28px auto 0; line-height: 1.55;
}
.hero__actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn { background: var(--ink); color: var(--paper); }
.hero .btn:hover { background: #000; }
.hero .btn--ghost { background: rgba(247,240,226,0.12); color: var(--paper); border-color: rgba(247,240,226,0.4); }
.hero .btn--ghost:hover { background: rgba(247,240,226,0.22); }

.corner-glyph { position: absolute; z-index: 3; width: clamp(26px, 4vw, 40px); color: var(--paper); opacity: 0.92; }
.corner-glyph--tl { top: 96px; left: var(--pad); }
.corner-glyph--tr { top: 96px; right: var(--pad); }
.corner-glyph--bl { bottom: 30px; left: var(--pad); }
.corner-glyph--br { bottom: 30px; right: var(--pad); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,240,226,0.85);
}

/* ============ SECTIONS ============ */
.section { padding: var(--section-y) 0; }
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper h1, .section--paper h2, .section--paper h3 { color: var(--ink); }
.section--paper .eyebrow { color: var(--accent); }
.section--alt { background: var(--bg-alt); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.025em; line-height: 0.98; }
.section-head p { margin-top: 22px; font-size: 18px; line-height: 1.72; color: var(--muted); max-width: 56ch; }
.section--paper .section-head p { color: #5b5246; }

/* marquee ticker */
.ticker { background: var(--accent); color: var(--paper); overflow: hidden; border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); }
.ticker__track { display: flex; gap: 0; white-space: nowrap; animation: tick 32s linear infinite; }
.ticker span { font-family: var(--serif); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2.4rem); padding: 16px 28px; letter-spacing: -0.02em; }
.ticker span::after { content: "✦"; margin-left: 28px; color: rgba(247,240,226,0.6); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* work / case grid */
.work-grid { display: grid; gap: clamp(48px, 8vw, 96px); }
.work-item { display: grid; gap: 22px; }
.work-item__media { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 16/10; background: #1a1712; }
.work-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.work-item:hover .work-item__media img { transform: scale(1.06); }
.work-item__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }
.work-item__label b { color: var(--fg); font-weight: 700; }
.work-item h3 { font-size: clamp(1.8rem, 4.5vw, 3.4rem); letter-spacing: -0.025em; line-height: 1.0; max-width: 18ch; }
.work-item__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13px; color: var(--accent); margin-top: 6px; }
.work-item__link span { transition: transform .3s var(--ease); }
.work-item:hover .work-item__link span { transform: translateX(5px); }

/* manifesto */
.manifesto { background: var(--bg-alt); text-align: center; }
.manifesto__quote {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 4rem); line-height: 1.08; letter-spacing: -0.025em;
  max-width: 18ch; margin: 0 auto; color: var(--fg);
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark { font-family: var(--serif); font-size: clamp(5rem, 12vw, 10rem); line-height: 0.6; color: var(--accent); display: block; height: 0.55em; }
.manifesto__by { margin-top: 36px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* services list (numbered) */
.svc-list { border-top: 1px solid var(--border); }
.section--paper .svc-list { border-top-color: var(--border-ink); }
.svc-row {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  padding: clamp(32px, 5vw, 52px) 0; border-bottom: 1px solid var(--border);
  transition: padding-left .4s var(--ease);
}
.section--paper .svc-row { border-bottom-color: var(--border-ink); }
.svc-row:hover { padding-left: 14px; }
.svc-row__no { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.svc-row h3 { font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.svc-row p { color: var(--muted); font-size: 16.5px; line-height: 1.7; max-width: 60ch; }
.section--paper .svc-row p { color: #5b5246; }
.svc-row__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.svc-row__tags span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; padding: 5px 12px; border: 1px solid var(--border); border-radius: 999px; color: var(--fg-soft); }
.section--paper .svc-row__tags span { border-color: var(--border-ink); color: #5b5246; }

/* stats */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
.stat__num { font-family: var(--serif); font-weight: 800; font-size: clamp(2.8rem, 8vw, 5rem); letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.stat__label { margin-top: 10px; font-size: 15px; color: var(--muted); line-height: 1.5; }

/* cards (principles / team / events) */
.cards { display: grid; gap: 24px; }
.card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px;
  padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.4);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px -12px rgba(0,0,0,0.55); border-color: var(--accent); }
.section--paper .card { background: #fff; border-color: var(--border-ink); box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08); }
.section--paper .card:hover { box-shadow: 0 16px 44px -12px rgba(0,0,0,0.16); }
.card__no { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.06em; }
.card h3 { margin-top: 16px; font-size: 1.5rem; letter-spacing: -0.02em; }
.card p { margin-top: 12px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.section--paper .card p { color: #5b5246; }

/* team / monogram cards */
.team { display: grid; gap: 22px; }
.member { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.section--paper .member { border-bottom-color: var(--border-ink); }
.avatar {
  width: 60px; height: 60px; flex: none; border-radius: 12px;
  display: grid; place-items: center; color: var(--paper);
  font-family: var(--serif); font-weight: 800; font-size: 20px; transform: rotate(-4deg);
}
.member__name { font-family: var(--serif); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; }
.member__role { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.04em; margin-top: 2px; }
.member__bio { color: var(--muted); font-size: 15px; line-height: 1.65; margin-top: 10px; }

/* events */
.event { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--border); }
.section--paper .event { border-bottom-color: var(--border-ink); }
.event__date { text-align: center; min-width: 78px; }
.event__day { font-family: var(--serif); font-weight: 800; font-size: 2.4rem; color: var(--accent); line-height: 1; }
.event__mon { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.event__title { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; }
.event__meta { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* FAQ */
.faq { border-top: 1px solid var(--border); max-width: 880px; }
.section--paper .faq { border-top-color: var(--border-ink); }
.faq__item { border-bottom: 1px solid var(--border); padding: 8px 0; }
.section--paper .faq__item { border-bottom-color: var(--border-ink); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-family: var(--serif); font-weight: 700; font-size: clamp(1.15rem, 2.6vw, 1.5rem); letter-spacing: -0.01em; }
.faq__q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease); }
.faq__q .plus::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq__q .plus::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq__item[data-open="true"] .plus::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 0 26px; color: var(--muted); font-size: 16.5px; line-height: 1.75; max-width: 64ch; }
.section--paper .faq__a p { color: #5b5246; }

/* CTA band */
.cta {
  background: linear-gradient(150deg, var(--flame) 0%, var(--accent) 55%, var(--accent-deep) 100%);
  color: var(--paper); text-align: center;
}
.cta h2 { font-size: clamp(2.4rem, 7vw, 5.4rem); letter-spacing: -0.03em; color: var(--paper); max-width: 16ch; margin: 0 auto; line-height: 0.98; }
.cta p { margin: 24px auto 0; max-width: 48ch; font-size: 18px; color: rgba(247,240,226,0.92); }
.cta .btn { margin-top: 38px; background: var(--ink); color: var(--paper); }
.cta .btn:hover { background: #000; }

/* contact / form */
.contact-grid { display: grid; gap: 48px; }
.info-block { padding: 22px 0; border-bottom: 1px solid var(--border); }
.section--paper .info-block { border-bottom-color: var(--border-ink); }
.info-block .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.info-block .val { font-size: 18px; margin-top: 8px; line-height: 1.5; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--fg);
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px;
  padding: 14px 16px; width: 100%; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.section--paper .field input, .section--paper .field textarea, .section--paper .field select { background: #fff; color: var(--ink); border-color: var(--border-ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(229,56,15,0.18); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-content: center; margin-top: 6px; }

/* legal / prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 14px; }
.prose .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 40px; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 44px 0 14px; letter-spacing: -0.015em; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16.5px; line-height: 1.78; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* thanks page */
.thanks { min-height: 80vh; display: grid; place-items: center; text-align: center; padding: var(--section-y) 0; }
.thanks h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); letter-spacing: -0.03em; }
.thanks p { margin: 22px auto 0; max-width: 46ch; color: var(--muted); font-size: 18px; }
.thanks .btn { margin-top: 36px; }

/* ============ FOOTER ============ */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: clamp(60px, 9vw, 100px) 0 40px; }
.footer__top { display: grid; gap: 48px; }
.footer__brand { font-family: var(--serif); font-weight: 800; font-size: clamp(2.6rem, 9vw, 5.5rem); letter-spacing: -0.03em; line-height: 0.92; }
.footer__brand em { font-style: normal; color: var(--accent); }
.footer__tag { color: var(--muted); margin-top: 18px; max-width: 38ch; font-size: 16px; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; }
.footer__col h4 { font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; color: var(--fg-soft); font-size: 15px; margin-bottom: 11px; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.footer__bottom p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__legal a { font-size: 13px; color: var(--muted); }
.footer__legal a:hover { color: var(--accent); }

/* ============ COOKIE POPUP ============ */
.cookie-popup { position:fixed; inset:0; z-index:9999; display:flex; align-items:flex-end; justify-content: center; padding:24px; background:rgba(0,0,0,0.55); backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity .35s var(--ease); }
.cookie-popup[data-open="true"] { opacity:1; pointer-events:all; }
.cookie-popup__card { background:var(--bg-alt); border: 1px solid var(--border); padding:32px 36px; max-width:480px; border-radius:10px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7); transform: translateY(16px); transition: transform .4s var(--ease); }
.cookie-popup[data-open="true"] .cookie-popup__card { transform: none; }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.5rem; letter-spacing: -0.02em; }
.cookie-popup__card p { margin-top: 12px; font-size: 14.5px; line-height: 1.65; color: var(--fg-soft); }
.cookie-popup__actions { display:flex; gap:12px; margin-top:22px; }
.cookie-popup__actions button { padding:11px 24px; border:1px solid var(--border); cursor:pointer; font-size:14px; border-radius: 999px; transition: background .25s var(--ease), border-color .25s var(--ease); }
.cookie-popup__actions button:first-child { color: var(--fg-soft); }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg-soft); }
.cookie-popup__actions button:last-child { background:var(--accent); color:var(--paper); border-color: var(--accent); flex: 1; }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero, .ticker__track, .work-item__media img { animation: none !important; }
}

/* ============ RESPONSIVE ============ */
@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1.3fr 1fr; align-items: start; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .work-item--wide { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 80px 1fr 1.1fr; align-items: start; gap: 28px; }
  .svc-row__no { padding-top: 6px; }
}
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header .btn { display: inline-flex; }
  .menu-toggle, .mobile-menu { display: none; }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-item--feature { grid-column: 1 / -1; }
  .work-item--feature .work-item__media { aspect-ratio: 21/9; }
  .work-item--feature h3 { font-size: clamp(2.4rem, 4vw, 4rem); }
}
