/* ============================================================
   JAKE SIMMONS — thermal editorial
   Near-black, clean grotesk type, technical mono labels,
   one thermal-camera gradient doing all the accent work.
   Jake: colours + the gradient live in the :root block.
   ============================================================ */

:root {
  --bg: #131110;        /* espresso near-black */
  --bg-raised: #1b1815; /* lifted panels */
  --line: #2f2a24;      /* hairlines on dark */
  --text: #ece5d8;      /* bone */
  --text-dim: #99907f;  /* secondary on dark */

  /* the accent gradient — champagne → bronze, one quiet identity */
  --thermal: linear-gradient(105deg, #f0e6d2 0%, #d9c29a 45%, #a9895e 100%);
  --hot: #c3a273;       /* single bronze tone for shadows/underlines */

  --panel: #e4dccd;     /* warm beige sections (like paper) */
  --panel-line: #c6bca8;
  --white: #f4efe5;     /* bone label blocks */
  --ink: #191611;       /* text on light */
  --ink-dim: #5f5749;

  --font-display: "Inter Tight", sans-serif;
  --font-body: "Inter Tight", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "Space Mono", monospace;

  --pad: clamp(20px, 5vw, 72px);
  --radius: 2px;
  --hover-shift: -2px;  /* the teeny-tiny hover lift */
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; }

/* accent words (*word* in content.js): italic serif + champagne gradient */
em, .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* on light (beige) sections the champagne gradient vanishes —
   swap accent words to a deep bronze gradient there */
.section--alt em, .section--contact em, .hero__offer em {
  background: linear-gradient(105deg, #8a6f4b 0%, #6f5638 60%, #4e3c26 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- film grain over everything ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-mono);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--text);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 13px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover {
  transform: translate(var(--hover-shift), var(--hover-shift));
  box-shadow: 3px 3px 0 var(--hot);
}
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--text); }
.btn--small { padding: 10px 18px; font-size: 11px; }
.btn--big { padding: 18px 44px; font-size: 14px; }

.section--alt .btn, .section--contact .btn {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px var(--pad);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav__logo-dot {
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__links { display: flex; gap: 24px; margin-left: auto; }
.nav__links a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  position: relative;
  transition: color .18s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--thermal);
  transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 4px;
}
.nav__burger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--text);
  margin: 7px 0;
  transition: transform .25s ease, opacity .25s ease;
}
body.menu-open .nav__burger span:first-child { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .nav__burger span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- full-screen mobile menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
body.menu-open .menu { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }
.menu__links { display: flex; flex-direction: column; gap: 10px; }
.menu__links a {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(38px, 10vw, 60px);
  text-decoration: none;
  line-height: 1.05;
}
.menu__links a:hover, .menu__links a:active,
.menu__cta {
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.menu__meta { margin-top: 40px; color: var(--text-dim); font-family: var(--font-mono); font-size: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(80px + 7vh) var(--pad) 40px;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* soft warm bloom behind the headline — low, like lamplight */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -12%;
  width: 58vw;
  height: 58vw;
  max-width: 820px;
  max-height: 820px;
  background: radial-gradient(closest-side,
    rgba(217, 194, 154, 0.20),
    rgba(169, 137, 94, 0.12) 45%,
    rgba(120, 96, 66, 0.06) 68%,
    transparent 78%);
  filter: blur(50px);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero__kicker {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(11px, 1.3vw, 13px);
  color: var(--text-dim);
  margin-bottom: 18px;
}
.hero__kicker::before {
  content: "";
  display: inline-block;
  width: 34px; height: 3px;
  background: var(--thermal);
  margin-right: 12px;
  vertical-align: middle;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 9.5vw, 136px);
  line-height: 0.99;
  letter-spacing: -0.045em;
  max-width: 14ch;
  transition: text-shadow .25s ease;
}
.hero__headline:hover { text-shadow: 3px 3px 0 color-mix(in srgb, var(--hot) 45%, transparent); }
.hero__sub {
  margin-top: 26px;
  font-size: clamp(17px, 2vw, 21px);
  max-width: 50ch;
  color: var(--text-dim);
}
/* the offer: a white label block, like a spec card on the can */
.hero__offer {
  margin-top: 24px;
  max-width: 58ch;
  padding: 20px 22px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.5;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero__offer::before {
  content: "The offer";
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__offer:hover {
  transform: translate(var(--hover-shift), var(--hover-shift));
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--hot) 55%, transparent);
}
.hero__ctas { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__reel { margin-top: 56px; }

/* video frames (showreel + work cards) */
.frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.frame:hover {
  transform: translate(var(--hover-shift), var(--hover-shift));
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--hot) 55%, transparent);
  border-color: var(--text-dim);
}
.frame img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .2s ease; }
.frame:hover img { opacity: 1; }
.frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.frame__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border: 1px solid var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.frame:hover .frame__play { transform: scale(1.06); border-color: var(--hot); }
.frame__play::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--text);
  margin-left: 5px;
}
.frame--placeholder {
  display: grid;
  place-items: center;
  cursor: default;
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, color-mix(in srgb, var(--text) 4%, transparent) 18px 36px),
    var(--bg-raised);
}
.frame--placeholder:hover { transform: none; box-shadow: none; border-color: var(--line); }
.frame--placeholder span {
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  text-align: center;
  padding: 0 20px;
}

/* ---------- ticker: the thermal strip ---------- */
.ticker {
  background: var(--thermal);
  overflow: hidden;
  padding: 12px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker__track span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 17px);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.08em;
  color: var(--bg);
}
.ticker__track span::after { content: "✺"; margin: 0 26px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(70px, 11vh, 130px) var(--pad); }
.section--alt {
  background: var(--panel);
  color: var(--ink);
}
.section--alt .section__intro { color: var(--ink-dim); }
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: text-shadow .25s ease;
}
.section__title:hover { text-shadow: 2px 2px 0 color-mix(in srgb, var(--hot) 50%, transparent); }
.section__intro {
  max-width: 38ch;
  color: var(--text-dim);
  font-size: clamp(16px, 1.4vw, 19px);
}

/* ---------- work grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(20px, 3vw, 36px);
}
.work-card { display: flex; flex-direction: column; }
.work-card__meta { padding: 18px 2px 0; }
.work-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.work-card__tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 3px 10px;
}
.work-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.15;
}
.work-card__client { color: var(--text-dim); margin-top: 6px; font-size: 15px; }
.work-card__result {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- services (light section) ---------- */
.services { display: flex; flex-direction: column; }
.service {
  display: grid;
  grid-template-columns: 80px 1.1fr 1fr;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(28px, 4vh, 44px) 12px;
  border-top: 1px solid var(--panel-line);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.service:last-child { border-bottom: 1px solid var(--panel-line); }
.service:hover {
  transform: translate(var(--hover-shift), var(--hover-shift));
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--hot) 40%, transparent);
  background: var(--white);
}
.service__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 26px);
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.service__problem {
  margin-top: 12px;
  color: var(--ink-dim);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 36ch;
}
.service__list { list-style: none; align-self: center; }
.service__list li {
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px dashed var(--panel-line);
  font-size: 15px;
}
.service__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--hot);
  font-weight: 700;
}

/* ---------- proof / stats ---------- */
.proof {
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(24px, 4vw, 48px);
  text-align: center;
}
.stat { transition: transform .18s ease; }
.stat:hover { transform: translateY(var(--hover-shift)); }
.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(10px, 1vw, 12px);
  color: var(--text-dim);
}

/* ---------- process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  padding: 26px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.step:hover {
  transform: translate(var(--hover-shift), var(--hover-shift));
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--hot) 55%, transparent);
  border-color: var(--text-dim);
}
.step__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 23px;
  margin: 10px 0 10px;
}
.step__text { color: var(--text-dim); font-size: 15px; }

/* ---------- about (light section) ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about--no-photo {
  grid-template-columns: 1fr;
  max-width: 68ch;
}
.about__photo {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, color-mix(in srgb, var(--ink) 4%, transparent) 18px 36px),
    color-mix(in srgb, var(--panel) 88%, var(--ink));
  display: grid;
  place-items: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.about__photo:hover {
  transform: translate(var(--hover-shift), var(--hover-shift));
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--hot) 40%, transparent);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo .ph-label {
  color: var(--ink-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  text-align: center;
  padding: 0 16px;
}
.about__text .section__title { margin-bottom: 24px; }
.about__text p { color: var(--ink-dim); margin-bottom: 16px; max-width: 60ch; }
.about__text p:first-of-type { color: var(--ink); font-size: clamp(17px, 1.5vw, 20px); }

/* ---------- testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}
.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--bg-raised);
  transition: transform .18s ease, box-shadow .18s ease;
}
.quote:hover {
  transform: translate(var(--hover-shift), var(--hover-shift));
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--hot) 55%, transparent);
}
.quote__text {
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.35;
}
.quote__text::before, .quote__text::after { color: var(--hot); }
.quote__text::before { content: "“"; }
.quote__text::after { content: "”"; }
.quote__name { margin-top: 18px; font-weight: 700; }
.quote__role { color: var(--text-dim); font-family: var(--font-mono); font-size: 12px; }

/* ---------- faq ---------- */
.faq { max-width: 860px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(17px, 1.7vw, 21px);
  transition: color .18s ease;
}
.faq summary:hover { color: var(--hot); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--hot);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 4px 22px; color: var(--text-dim); max-width: 60ch; }

/* ---------- contact (light section) ---------- */
.section--contact {
  text-align: center;
  background: var(--panel);
  color: var(--ink);
}
.contact__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 16ch;
  margin: 0 auto;
  transition: text-shadow .25s ease;
}
.contact__heading:hover { text-shadow: 3px 3px 0 color-mix(in srgb, var(--hot) 45%, transparent); }
.contact__sub { margin: 22px auto 40px; max-width: 46ch; color: var(--ink-dim); font-size: clamp(16px, 1.5vw, 19px); }
.contact__form { max-width: 640px; margin: 0 auto; text-align: left; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__form label {
  display: block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  margin-bottom: 16px;
  color: var(--ink-dim);
}
.contact__form input, .contact__form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  resize: vertical;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact__form input:focus, .contact__form textarea:focus {
  outline: none;
  border-color: var(--hot);
  box-shadow: 3px 3px 0 color-mix(in srgb, var(--hot) 40%, transparent);
}
.contact__form .btn--big { width: 100%; margin-top: 6px; }
.contact__alt { margin-top: 26px; color: var(--ink-dim); font-size: 15px; }
.contact__alt a { color: var(--ink); font-weight: 700; }
.contact__alt a:hover { color: var(--hot); }

/* ---------- footer ---------- */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: clamp(50px, 8vh, 90px) var(--pad) 30px;
  border-top: 1px solid var(--line);
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--bg);
  -webkit-text-stroke: 1px var(--text-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 22px;
  transition: color .3s ease, -webkit-text-stroke-color .3s ease;
}
.footer__name:hover { color: var(--text); -webkit-text-stroke-color: var(--text); }
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.footer__meta a { color: var(--text); text-decoration: none; font-weight: 700; }
.footer__meta a:hover { color: var(--hot); }
.footer__note { margin-top: 26px; font-size: 13px; color: color-mix(in srgb, var(--text-dim) 60%, transparent); }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
  .btn, .frame, .step, .quote, .service, .stat, .about__photo, .hero__offer { transition: none; }
}

/* ---------- mobile ---------- */
@media (max-width: 760px) {
  .nav__links, .nav #navCta { display: none; }
  .nav__burger { display: block; }
  .hero { min-height: 78vh; }
  .hero::before { width: 120vw; height: 120vw; right: -40%; top: -5%; }
  .hero__ctas .btn { width: 100%; text-align: center; }
  .service { grid-template-columns: 1fr; gap: 14px; }
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 340px; }
  .contact__row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- clips board: grouped stat-card collections ---------- */
.clip-group { margin-bottom: 56px; }
.clip-group:last-child { margin-bottom: 0; }
.clip-group__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  max-width: 62ch;
}
.clip-group__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
}
.clip-group__note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
}
.clip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.clip-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.clip-card:hover, .clip-card:focus-visible {
  border-color: var(--hot);
  transform: translateY(var(--hover-shift));
  outline: none;
}
/* optional 9:16 thumbnail with stat overlaid */
.clip-card__thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 300px;
  overflow: hidden;
  background: var(--bg);
}
.clip-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.clip-card__thumb-stat {
  position: absolute;
  left: 14px; bottom: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.clip-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 16px;
}
.clip-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hot);
  margin-bottom: 12px;
}
.clip-card__stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.5vw, 50px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--thermal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.clip-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}
.clip-card__client {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.clip-card__more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.clip-card__more-inner { overflow: hidden; }
.clip-card.is-open .clip-card__more { grid-template-rows: 1fr; }
.clip-card__thesis {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
  padding-top: 4px;
  margin-bottom: 12px;
}
.clip-card__watch {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hot);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}
.clip-card__watch:hover { text-decoration: underline; }
.clip-card__hint {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.6;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.clip-card.is-open .clip-card__hint { opacity: 0.3; }
