/* ==========================================================================
   6M Studios — design system
   Dark cinematic. Brand colors sampled from the 2016 logo:
   ink #263238, red #FF5252.
   No frameworks, no web fonts, no external requests.
   ========================================================================== */

:root {
  /* Ground: a blue-gray black derived from the logo ink, never pure #000 */
  --bg:        #090D0F;
  --bg-1:      #0E1417;
  --bg-2:      #141C20;
  --bg-3:      #1A2429;
  --ink:       #263238;          /* brand ink, used on light plates */

  --fg:        #EEF3F5;
  --fg-2:      #9CACB3;
  --fg-3:      #6B7C84;

  --accent:    #FF5252;          /* brand red */
  --accent-lo: #FF8A80;
  --accent-dk: #C6362F;

  --line:      rgba(255,255,255,.085);
  --line-2:    rgba(255,255,255,.16);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable Display",
          "Segoe UI", Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, "Cascadia Mono",
          "Segoe UI Mono", Menlo, Consolas, monospace;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 56px);

  --r: 14px;
  --r-lg: 20px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Film grain — one inline SVG turbulence, fixed over everything.
   This is what makes the dark read "cinematic" rather than "dark mode".
   -------------------------------------------------------------------------- */
.grain {
  position: fixed;
  inset: -150%;
  z-index: 9999;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite;
  will-change: transform;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  10% { transform: translate(-4%,-4%) }  20% { transform: translate(-8%,3%) }
  30% { transform: translate(4%,-6%) }   40% { transform: translate(-3%,7%) }
  50% { transform: translate(-8%,4%) }   60% { transform: translate(6%,0) }
  70% { transform: translate(0,6%) }     80% { transform: translate(3%,7%) }
  90% { transform: translate(-4%,3%) }
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 148px); position: relative; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 20px;
  display: flex; align-items: flex-start; gap: 12px;
}
/* sits on the first line even when the label wraps on a narrow screen */
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--accent); flex: none;
  margin-top: .62em;
}
.eyebrow--plain::before { display: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.035em; line-height: 1.03; }

.h-display {
  font-size: clamp(2.45rem, 7.4vw, 6.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.h-1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -0.04em; }
.h-2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.03em; }
.h-3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); letter-spacing: -0.02em; }

.lede { font-size: clamp(1.06rem, 1.5vw, 1.28rem); line-height: 1.55; color: var(--fg-2); }
.muted { color: var(--fg-2); }
.dim   { color: var(--fg-3); }
.accent { color: var(--accent); }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.measure { max-width: 62ch; }
.measure-s { max-width: 48ch; }

/* --------------------------------------------------------------------------
   Logo mark
   -------------------------------------------------------------------------- */
/* The real 2016 lockup. It was drawn for a light ground, so on this near-black
   page the slate camera body is deliberately given a faint light plate to sit
   on — same treatment the mark already gets from its own white STUDIOS bar. */
.mark { display: inline-flex; align-items: center; }
.mark__logo {
  height: 46px; width: auto;
  transition: opacity .3s var(--ease), transform .4s var(--ease-out);
}
.mark:hover .mark__logo { opacity: .82; }
.foot .mark__logo { height: 52px; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(9,13,15,.72);
  backdrop-filter: saturate(1.6) blur(16px);
  -webkit-backdrop-filter: saturate(1.6) blur(16px);
  border-bottom-color: var(--line);
}
.nav__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 14.5px; color: var(--fg-2); position: relative; padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--ease-out);
}
.nav__link:hover { color: var(--fg); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--fg); }

.nav__tel {
  font-family: var(--mono); font-size: 13px; letter-spacing: .02em;
  border: 1px solid var(--line-2); border-radius: 100px;
  padding: 9px 17px; color: var(--fg);
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.nav__tel:hover { border-color: var(--accent); background: var(--accent); color: #fff; }

.nav__burger {
  display: none; background: none; border: 0; padding: 10px; margin-right: -10px;
  cursor: pointer;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--fg); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s;
}
.nav__burger span + span { margin-top: 6px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(114px, 13vw, 164px); padding-bottom: clamp(48px, 7vw, 88px); overflow: hidden; }

/* the light: a soft accent bloom that tracks the pointer (JS sets --mx/--my) */
.hero__light {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(620px 520px at var(--mx,68%) var(--my,30%),
      rgba(255,82,82,.24), rgba(255,82,82,.07) 42%, transparent 70%),
    radial-gradient(900px 620px at 10% 0%, rgba(96,150,180,.14), transparent 62%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(120% 78% at 50% 12%, #000 25%, transparent 76%);
  -webkit-mask-image: radial-gradient(120% 78% at 50% 12%, #000 25%, transparent 76%);
  opacity: .55;
}
.hero .wrap { position: relative; z-index: 1; }

/* line-by-line mask reveal */
/* overflow:hidden is what masks the slide-up, but line-height .98 makes the
   line box shorter than the font — descenders (y, p, g) get sliced. Pad below
   to clear them and pull the same amount back so line spacing is unchanged. */
.reveal-line {
  display: block; overflow: hidden;
  padding-bottom: .24em; margin-bottom: -.24em;
}
.reveal-line > span {
  display: block;
  transform: translateY(102%);
  animation: lineUp .95s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 1ms);
}
@keyframes lineUp { to { transform: translateY(0); } }

.hero__sub { margin-top: 30px; max-width: 60ch; }

.hero__cta { margin-top: 36px; display: flex; gap: 13px; flex-wrap: wrap; }

/* the three objection-killers, directly under the fold-line CTA */
.trust {
  list-style: none; margin: 48px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  border-top: 1px solid var(--line); padding-top: 26px;
}
.trust li { font-size: 14.5px; line-height: 1.5; color: var(--fg-2); }
.trust b { display: block; color: var(--fg); font-weight: 600; margin-bottom: 5px; }

/* --------------------------------------------------------------------------
   Objections
   -------------------------------------------------------------------------- */
.faq {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: clamp(32px, 4vw, 48px);
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
.faq__item { background: var(--bg); padding: clamp(24px, 2.6vw, 34px); }
.faq__item h3 { margin-bottom: 12px; }
.faq__item p { font-size: 15px; color: var(--fg-2); line-height: 1.6; }

/* --------------------------------------------------------------------------
   The two doors
   -------------------------------------------------------------------------- */
.doors {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: clamp(52px, 7vw, 84px);
}
.door {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(168deg, var(--bg-1), var(--bg) 70%);
  overflow: hidden; isolation: isolate;
  transition: border-color .4s var(--ease), transform .4s var(--ease-out);
}
/* pointer-tracked glow inside each card */
.door::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(340px 260px at var(--cx,50%) var(--cy,0%),
              rgba(255,82,82,.15), transparent 70%);
  transition: opacity .45s var(--ease);
}
.door:hover { border-color: var(--line-2); transform: translateY(-3px); }
.door:hover::before { opacity: 1; }

.door__no {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--fg-3);
  display: flex; align-items: center; gap: 11px; margin-bottom: 26px;
}
.door__no b { color: var(--accent); font-weight: 500; }
.door__title { margin-bottom: 16px; }
.door__body { color: var(--fg-2); font-size: 16px; margin-bottom: 22px; }

.door__list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 11px; }
.door__list li {
  position: relative; padding-left: 24px; font-size: 15px; color: var(--fg-2);
  line-height: 1.45;
}
.door__list li::before {
  content: ""; position: absolute; left: 2px; top: .52em;
  width: 9px; height: 2px; background: var(--accent); border-radius: 2px;
}

.door__price {
  margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.door__figure { font-size: 15px; font-weight: 600; }
.door__figure small { display: block; font-weight: 400; color: var(--fg-3); font-size: 13px; margin-top: 3px; letter-spacing: 0; }

.arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--fg); white-space: nowrap;
}
.arrow svg { width: 15px; height: 15px; transition: transform .38s var(--ease-out); }
.door:hover .arrow svg, .arrow:hover svg { transform: translateX(5px); }
.arrow--accent { color: var(--accent); }

/* --------------------------------------------------------------------------
   Upkeep band
   -------------------------------------------------------------------------- */
.band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(700px 300px at 78% 50%, rgba(255,82,82,.075), transparent 70%),
    var(--bg-1);
  position: relative; overflow: hidden;
}
.band__in {
  display: grid; grid-template-columns: 1.25fr .95fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; padding-block: clamp(56px, 7vw, 92px);
}
.band__note {
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px); background: rgba(9,13,15,.5);
  font-size: 15.5px; color: var(--fg-2);
}
.band__price {
  font-size: clamp(2.4rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -0.04em;
  color: var(--fg); line-height: 1; margin-bottom: 22px;
}
.band__price span {
  font-size: 1rem; font-weight: 500; letter-spacing: -0.01em; color: var(--fg-3);
}

/* --------------------------------------------------------------------------
   Work cards
   -------------------------------------------------------------------------- */
.head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 52px);
}

.work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work__card {
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: var(--bg-1); display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease-out);
}
.work__card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.work__shot {
  aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2);
  border-bottom: 1px solid var(--line); position: relative;
}
.work__shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: saturate(.9) contrast(1.02);
  transition: transform .8s var(--ease-out), filter .5s var(--ease);
}
.work__card:hover .work__shot img { transform: scale(1.035); filter: saturate(1.05); }
.work__meta { padding: 20px 22px 22px; }
.work__url {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em;
  color: var(--accent); margin-bottom: 9px;
}
.work__desc { font-size: 14.5px; color: var(--fg-2); margin: 7px 0 0; line-height: 1.5; }
.tag {
  display: inline-block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3);
  border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px; margin-top: 14px;
}

/* --------------------------------------------------------------------------
   Video strip
   -------------------------------------------------------------------------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.strip figure { margin: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.strip img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  filter: grayscale(.55) contrast(1.05) brightness(.82);
  transition: filter .55s var(--ease), transform .8s var(--ease-out);
}
.strip figure:hover img { filter: grayscale(0) contrast(1) brightness(1); transform: scale(1.04); }

/* --------------------------------------------------------------------------
   Who
   -------------------------------------------------------------------------- */
.who { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.who__photo {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-2); aspect-ratio: 4/5;
}
.who__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3) contrast(1.03); }
.who__contact { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 26px; font-family: var(--mono); font-size: 13.5px; }
.who__contact a { color: var(--fg); border-bottom: 1px solid var(--line-2); padding-bottom: 2px; transition: border-color .3s, color .3s; }
.who__contact a:hover { color: var(--accent); border-color: var(--accent); }

/* --------------------------------------------------------------------------
   Offer page: split hero, form card, steps, panels
   -------------------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}

.formcard {
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(24px, 2.8vw, 34px);
  background: linear-gradient(168deg, var(--bg-2), var(--bg-1));
  position: sticky; top: 100px;
}
.field { display: block; margin-bottom: 18px; }
.field > span {
  display: block; font-size: 13px; color: var(--fg-2); margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 15px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 13px 15px; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-3); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: var(--bg-1);
}
/* honeypot — present for bots, gone for people and screen readers */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.steps {
  list-style: none; margin: clamp(32px,4vw,48px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.steps li { background: var(--bg-1); padding: clamp(22px,2.4vw,30px); }
.steps__n {
  display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  color: var(--accent); margin-bottom: 16px;
}
.steps h3 { margin-bottom: 10px; }
.steps p { font-size: 14.5px; color: var(--fg-2); line-height: 1.55; }

.cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.shotframe {
  display: block; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--bg-2);
  transition: border-color .4s var(--ease), transform .4s var(--ease-out);
}
.shotframe:hover { border-color: var(--line-2); transform: translateY(-3px); }
.shotframe img { width: 100%; height: auto; }
.panel {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px); background: var(--bg-1);
}
.door__list--muted li::before { background: var(--fg-3); }

.pricetag {
  margin: 26px 0 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg);
}
/* long-form legal / prose pages */
.prose { max-width: 68ch; }
.prose h2 {
  margin: 48px 0 16px; padding-top: 30px; border-top: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose p { color: var(--fg-2); font-size: 16px; line-height: 1.68; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.case {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  padding-block: clamp(40px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
}
.case:last-of-type { border-bottom: 0; }
.case--flip .shotframe { order: 2; }
.case__body p { font-size: 15.5px; }
.case__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.case__tags .tag { margin-top: 0; }

.contactlist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  margin-top: 42px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.contactlist > * {
  background: var(--bg); padding: 20px 22px; display: block;
  transition: background .3s var(--ease);
}
.contactlist a:hover { background: var(--bg-2); }
.contactlist span {
  display: block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px;
}
.contactlist strong { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.35; }
.contactlist a:hover strong { color: var(--accent); }

.pricetag span {
  display: block; font-size: 13.5px; font-weight: 400; letter-spacing: 0;
  color: var(--fg-3); margin-top: 5px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  border-radius: 100px; padding: 15px 26px; font-size: 15px; font-weight: 600;
  border: 1px solid transparent; letter-spacing: -0.01em;
  transition: transform .3s var(--ease-out), background .3s var(--ease),
              border-color .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 15px; height: 15px; transition: transform .38s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #ff6b6b; transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); background: rgba(255,255,255,.04); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   CTA + footer
   -------------------------------------------------------------------------- */
.cta {
  text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(720px 380px at 50% 118%, rgba(255,82,82,.16), transparent 68%);
}
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

.foot { border-top: 1px solid var(--line); padding-block: 48px 40px; background: var(--bg-1); }
.foot__in { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--fg-3); font-weight: 400; margin-bottom: 16px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot a { font-size: 14.5px; color: var(--fg-2); transition: color .25s; }
.foot a:hover { color: var(--accent); }
.foot__legal {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-3);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
/* Scoped to .js so the page is fully readable with no JavaScript at all —
   if the script fails or is blocked, nothing below the hero disappears. */
.js [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; }
  .formcard { position: static; }
  .cols2 { grid-template-columns: 1fr; }
  .cols3 { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; }
  .case--flip .shotframe { order: 0; }
  .contactlist { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; gap: 18px; }
  .faq { grid-template-columns: 1fr; }
  .doors { grid-template-columns: 1fr; }
  .band__in { grid-template-columns: 1fr; }
  .work { grid-template-columns: 1fr 1fr; }
  .who { grid-template-columns: 220px 1fr; }
  .foot__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed; inset: 76px 0 auto; flex-direction: column; align-items: flex-start;
    gap: 4px; padding: 22px var(--gut) 30px;
    background: rgba(9,13,15,.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  body.menu-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { font-size: 20px; padding: 12px 0; width: 100%; }
  .nav__link::after { display: none; }
  .nav__burger { display: block; }
  .nav__tel { display: none; }
  .nav__links .nav__tel { display: inline-flex; margin-top: 14px; font-size: 15px; }
  .work { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .who { grid-template-columns: 1fr; }
  .who__photo { max-width: 240px; }
  .foot__in { grid-template-columns: 1fr; gap: 30px; }
  .hero__grid { background-size: 60px 60px; }
}

/* --------------------------------------------------------------------------
   Reduced motion — everything off, nothing hidden
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .grain { animation: none; }
  .reveal-line > span { transform: none; animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* wordmark beside the camera mark */
.mark__word {
  font-size: 14px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--fg);
  transition: color .3s var(--ease);
}
.foot .mark svg { height: 30px; }

/* two work cards rather than three */
.work--two { grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .work--two { grid-template-columns: 1fr; } }

/* a panel that is itself a link */
.panel--link { display: flex; flex-direction: column; }
.panel--link .pricetag { margin-top: auto; }
.panel--link:hover { border-color: var(--line-2); transform: translateY(-3px); }
.panel--link:hover .arrow svg { transform: translateX(5px); }
