/* ============================================================
   LONGTAKE — edit-suite portfolio
   near-black field, bone type, one signal orange
   ============================================================ */

:root {
  --ink: #0b0b0a;
  --ink-2: #121210;
  --bone: #f2efe8;
  --bone-dim: #d8d4cb;
  --grey: #9a9891;      /* warm grey, AA on ink for 11px labels */
  --grey-deep: #6f6d67; /* hairlines & disabled chrome only, never body text */
  --signal: #ff4a1c;
  --hairline: rgba(242, 239, 232, 0.14);
  --ruler-h: 30px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--signal); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---- shared chrome ------------------------------------------------ */

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  font-variant-numeric: tabular-nums;
}
.label .idx { color: var(--signal); }

.tc {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.hairline-top { border-top: 1px solid var(--hairline); }

.crosshair {
  position: absolute;
  width: 15px; height: 15px;
  pointer-events: none;
  opacity: 0.55;
}
.crosshair::before, .crosshair::after {
  content: ""; position: absolute; background: var(--bone);
}
.crosshair::before { left: 7px; top: 0; width: 1px; height: 15px; }
.crosshair::after { top: 7px; left: 0; height: 1px; width: 15px; }

/* corner bracket ticks */
.brackets { position: relative; }
.brackets::before, .brackets::after,
.brackets > .bk::before, .brackets > .bk::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid rgba(242,239,232,0.5);
  pointer-events: none; z-index: 3;
}
.brackets::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.brackets::after  { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.brackets > .bk::before { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.brackets > .bk::after  { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* fixed top scrim: keeps header legible over anything scrolling under it */
.top-scrim {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 130px;
  z-index: 100;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11,11,10,0.88) 0%, rgba(11,11,10,0.55) 45%, transparent 100%);
}

section { scroll-margin-top: 64px; }

/* ---- film grain ---------------------------------------------------- */

.grain {
  position: fixed;
  inset: -100%;
  width: 300%; height: 300%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.05;
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(3) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1.4%); }
  66% { transform: translate(1.6%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ---- timecode ruler (fixed, page = timeline) ----------------------- */

.ruler {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ruler-h);
  z-index: 120;
  background: linear-gradient(to bottom, rgba(11,11,10,0.92), rgba(11,11,10,0.55));
  border-bottom: 1px solid var(--hairline);
}
.ruler-ticks { position: absolute; inset: 0; }
.ruler-tick {
  position: absolute; bottom: 0;
  width: 1px; height: 9px;
  background: rgba(242,239,232,0.32);
}
.ruler-tick.major { height: 14px; background: rgba(242,239,232,0.55); }
.ruler-tick .ruler-time {
  position: absolute;
  bottom: 15px; left: 4px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--grey);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ruler-tick.major:last-child .ruler-time { left: auto; right: 4px; }

.ruler-chapter {
  position: absolute; bottom: 0;
  width: 3px; height: 6px;
  background: var(--signal);
  transform: translateX(-1px);
  cursor: pointer;
  border: none; padding: 0;
}
.ruler-chapter:hover, .ruler-chapter:focus-visible { height: 14px; }
.ruler-chapter:focus-visible { outline: 1px solid var(--signal); outline-offset: 2px; }
.ruler-chapter::after {
  content: attr(data-name);
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--bone);
  background: var(--ink-2);
  border: 1px solid var(--hairline);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.ruler-chapter:hover::after, .ruler-chapter:focus-visible::after { opacity: 1; }
.ruler-chapter:first-of-type::after { left: 0; transform: none; }
.ruler-chapter:last-of-type::after { left: auto; right: 0; transform: none; }

.playhead {
  position: absolute;
  top: 0; bottom: -6px;
  left: 0;
  width: 1px;
  background: var(--signal);
  z-index: 2;
}
.playhead::before {
  content: "";
  position: absolute;
  top: 0; left: -5px;
  border: 5.5px solid transparent;
  border-top: 7px solid var(--signal);
}

/* ---- header --------------------------------------------------------- */

.site-head {
  position: fixed;
  top: var(--ruler-h); left: 0; right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px var(--gutter);
  pointer-events: none;
}
.site-head > * { pointer-events: auto; }

.wordmark-sm {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--bone);
}
.wordmark-sm sup { font-size: 9px; letter-spacing: 0.1em; color: var(--grey); }

.site-nav { display: flex; gap: clamp(14px, 2.4vw, 34px); transition: opacity 0.4s; }
body.contact-in-view .site-nav { opacity: 0; pointer-events: none; }
.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--bone-dim);
  transition: color 0.25s;
}
.site-nav a:hover { color: var(--bone); }
.site-nav a sup {
  font-size: 9px; color: var(--grey);
  margin-left: 3px; font-variant-numeric: tabular-nums;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--signal);
  color: #16130f;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  transition: transform 0.3s var(--ease-out), background 0.25s;
}
.cta:hover { transform: scale(1.04); background: #ff5c31; }
.site-head .cta { transition: opacity 0.4s, transform 0.3s var(--ease-out); }
body.contact-in-view .site-head .cta { opacity: 0; pointer-events: none; }
.cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16130f;
}

/* ---- hero ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,11,10,0.55) 0%, rgba(11,11,10,0.05) 30%, rgba(11,11,10,0.08) 62%, rgba(11,11,10,0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-content: center;
  gap: 24px;
  padding: calc(var(--ruler-h) + 120px) var(--gutter) 0;
}

.hero-rec {
  position: absolute;
  top: calc(var(--ruler-h) + 86px);
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--bone-dim);
  font-variant-numeric: tabular-nums;
}
.rec-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--signal);
  animation: rec-blink 1.2s steps(1) infinite;
}
@keyframes rec-blink { 50% { opacity: 0.12; } }

.hero-services { align-self: end; }
.hero-services .label { margin-bottom: 14px; }
.hero-services ul { list-style: none; }
.hero-services li {
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.42;
  color: var(--bone);
  text-shadow: 0 1px 22px rgba(11,11,10,0.6);
}
.hero-services .sub-label { margin-top: 16px; }

.hero-right {
  align-self: end;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
  text-align: right;
  max-width: 480px;
}

.persona-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  border-radius: 12px;
  background: rgba(18, 18, 16, 0.66);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: left;
  transition: border-color 0.3s;
}
.persona-card:hover { border-color: rgba(242,239,232,0.34); }
.persona-card img {
  width: 62px; height: 62px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 8px;
}
.persona-card strong { display: block; font-size: 16px; font-weight: 700; }
.persona-card span { font-size: 12.5px; color: var(--grey); letter-spacing: 0.04em; }
.persona-card .play {
  margin-left: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(242,239,232,0.3);
  display: grid; place-items: center;
  flex: none;
}
.persona-card .play svg { width: 11px; height: 11px; fill: var(--bone); }

.hero-statement {
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--bone-dim);
  text-shadow: 0 1px 6px rgba(11,11,10,0.7), 0 2px 30px rgba(11,11,10,0.85);
}
.hero-services .label, .hero-services .sub-label {
  text-shadow: 0 1px 6px rgba(11,11,10,0.8);
}
.hero-statement em { font-style: normal; color: var(--bone); }
@media (max-width: 760px) {
  .hero-media::after {
    background:
      linear-gradient(to bottom, rgba(11,11,10,0.62) 0%, rgba(11,11,10,0.18) 28%, rgba(11,11,10,0.38) 58%, rgba(11,11,10,0.9) 100%);
  }
}

/* giant wordmark, cropped at viewport bottom */
.giant-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: auto;
  line-height: 0.78;
  padding-top: 0.08em;
}
.giant {
  display: block;
  font-size: clamp(64px, 12.9vw, 262px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--bone);
  white-space: nowrap;
  text-align: center;
  transform: translateY(0.16em); /* crop the descender edge off-screen */
  user-select: none;
}
.giant .ch { display: inline-block; }

/* ---- section shell -------------------------------------------------- */

section { position: relative; }
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 26px var(--gutter) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal, .reduced .reveal { opacity: 1; transform: none; transition: none; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

/* ---- work strip ------------------------------------------------------ */

.work { padding: clamp(70px, 9vw, 130px) 0 0; }
.work-title {
  padding: 18px var(--gutter) 34px;
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 14ch;
}
.work-title .mut { color: var(--grey); }

.strip {
  display: flex;
  gap: clamp(14px, 1.6vw, 26px);
  overflow-x: auto;
  padding: 6px var(--gutter) 26px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.strip::-webkit-scrollbar { display: none; }
.strip.dragging { cursor: grabbing; scroll-snap-type: none; }

.work-card {
  flex: 0 0 auto;
  width: clamp(300px, 44vw, 660px);
}
.work-card .frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-2);
}
.work-card .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.1s var(--ease-out);
}
.work-card:hover .frame img { transform: scale(1.085); }
.work-card h3 { transition: color 0.3s; }
.work-card:hover h3 { color: var(--signal); }
.work-card .runtime {
  position: absolute;
  right: 12px; bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--bone);
  background: rgba(11,11,10,0.62);
  padding: 5px 9px;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(6px);
}
.work-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 14px 2px 4px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 14px;
}
.work-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.work-card .role { font-size: 12px; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.work-card .note {
  padding-top: 10px;
  font-size: 13.5px;
  color: var(--grey);
  letter-spacing: 0.02em;
}
.work-card .note b { color: var(--bone-dim); font-weight: 600; }

.strip-hint {
  padding: 8px var(--gutter) 0;
  display: flex;
  justify-content: space-between;
}

/* ---- short form ------------------------------------------------------ */

.shortform {
  margin-top: clamp(80px, 10vw, 150px);
  padding: clamp(60px, 7vw, 110px) var(--gutter);
  border-top: 1px solid var(--hairline);
}
.shortform-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  margin-top: clamp(40px, 6vw, 90px);
}
.giant-word {
  font-size: clamp(40px, 8.4vw, 150px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  user-select: none;
}
.giant-word.left { text-align: right; color: var(--bone); }
.giant-word.right { text-align: left; color: var(--grey); }

/* CSS phone */
.phone {
  width: clamp(230px, 24vw, 320px);
  aspect-ratio: 9 / 19.2;
  border-radius: clamp(34px, 3.4vw, 48px);
  background: #060605;
  border: 1px solid rgba(242,239,232,0.22);
  box-shadow:
    0 0 0 clamp(7px, 0.8vw, 11px) #131311,
    0 0 0 clamp(8px, 0.9vw, 12.5px) rgba(242,239,232,0.14),
    0 44px 90px rgba(0,0,0,0.65);
  padding: clamp(8px, 0.9vw, 12px);
  position: relative;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: clamp(26px, 2.6vw, 38px);
  overflow: hidden;
  background: var(--ink-2);
}
.phone-screen > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 22px;
  border-radius: 999px;
  background: #060605;
  z-index: 3;
}
.phone-ui {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(6,6,5,0.72), transparent 42%);
}
.phone-ui .handle { font-size: 13px; font-weight: 700; }
.phone-ui .caption { font-size: 12px; color: var(--bone-dim); margin-top: 3px; }
.phone-ui .track {
  display: flex; align-items: center; gap: 7px;
  margin-top: 10px;
  font-size: 10px; color: var(--grey);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.phone-ui .bar {
  flex: 1; height: 2px;
  background: rgba(242,239,232,0.25);
  position: relative;
}
.phone-ui .bar i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 38%;
  background: var(--signal);
}
.phone-rail {
  position: absolute;
  right: 12px; bottom: 84px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.phone-rail .ri { text-align: center; font-size: 10px; color: var(--bone-dim); font-variant-numeric: tabular-nums; }
.phone-rail svg { width: 24px; height: 24px; fill: none; stroke: var(--bone); stroke-width: 1.7; display: block; margin: 0 auto 3px; }

.shortform-note {
  margin: clamp(44px, 5vw, 70px) auto 0;
  max-width: 620px;
  text-align: center;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  color: var(--grey);
  line-height: 1.55;
}
.shortform-note em { font-style: normal; color: var(--bone); }

/* ---- grade slider ---------------------------------------------------- */

.grade {
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--hairline);
  padding-bottom: clamp(60px, 7vw, 110px);
}
.grade-intro {
  padding: 18px var(--gutter) 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: end;
}
.grade-intro h2 {
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.grade-intro h2 .mut { color: var(--grey); }
.grade-intro p { color: var(--grey); font-size: 16px; max-width: 44ch; justify-self: end; align-self: end; }
.grade-intro p b { color: var(--bone-dim); font-weight: 600; }

.wipe {
  position: relative;
  margin: 0 var(--gutter);
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  overflow: hidden;
  touch-action: pan-y;
  background: var(--ink-2);
}
.wipe img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.wipe .log { filter: saturate(0.42) contrast(0.62) brightness(1.32) sepia(0.06); }
.wipe .graded { clip-path: inset(0 0 0 var(--wipe, 50%)); }

.wipe-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  cursor: ew-resize;
  z-index: 5;
  background: transparent;
  border: none;
  padding: 0;
}
.wipe-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1.5px;
  margin-left: -0.75px;
  background: var(--signal);
}
.wipe-handle .grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--signal);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.25s var(--ease-out);
}
.wipe-handle:hover .grip,
.wipe-handle:focus-visible .grip { transform: translate(-50%, -50%) scale(1.12); }
.wipe-handle:focus-visible { outline: none; }
.wipe-handle:focus-visible::before { width: 3px; margin-left: -1.5px; }
.wipe-handle .grip svg { width: 20px; height: 20px; stroke: #16130f; stroke-width: 2.4; fill: none; }

.wipe-tag {
  position: absolute;
  bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 11px;
  background: rgba(11,11,10,0.66);
  backdrop-filter: blur(6px);
  z-index: 4;
}
.wipe-tag.log-tag { left: 14px; color: var(--bone-dim); }
.wipe-tag.grade-tag { right: 14px; color: var(--signal); }

.wipe-meta {
  margin: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 26px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--hairline);
}
.wipe-meta span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); font-variant-numeric: tabular-nums; }
.wipe-meta span b { color: var(--bone-dim); font-weight: 600; }

/* ---- services rows ---------------------------------------------------- */

.services { margin-top: clamp(80px, 10vw, 150px); }
.services .sec-head { padding-bottom: clamp(30px, 4vw, 60px); }
.svc-rows { border-top: 1px solid var(--hairline); }
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1.1fr) minmax(0, 1.4fr) auto;
  align-items: baseline;
  gap: clamp(14px, 2.4vw, 40px);
  padding: clamp(24px, 3vw, 42px) var(--gutter);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  isolation: isolate;
}
.svc-row::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bone);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.svc-row:hover::before, .svc-row:focus-within::before { transform: translateY(0); }
.svc-row > * { transition: color 0.35s; }
.svc-row .num {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--signal);
  font-variant-numeric: tabular-nums;
}
.svc-row h3 {
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.svc-row .desc { font-size: 15.5px; color: var(--grey); max-width: 52ch; }
.svc-row .deliv {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: right;
  line-height: 2;
  white-space: nowrap;
}
.svc-row:hover h3, .svc-row:hover .num { color: var(--ink); }
.svc-row:hover .desc, .svc-row:hover .deliv { color: #55524b; }

/* ---- stat strip -------------------------------------------------------- */

.stats {
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(30px, 3.6vw, 54px) var(--gutter);
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: 0; }
.stat .big {
  display: block;
  font-size: clamp(34px, 4.6vw, 70px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 14px;
  font-variant-numeric: tabular-nums;
}
.stat .big small { font-size: 0.42em; font-weight: 700; color: var(--grey); letter-spacing: 0; }
.stat .foot { display: block; margin-top: 12px; font-size: 13px; color: var(--grey); }

/* ---- about -------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 90px);
  padding: clamp(80px, 10vw, 150px) var(--gutter);
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  max-height: 76vh;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media .runtime-tag {
  position: absolute; left: 12px; bottom: 10px;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--bone); background: rgba(11,11,10,0.62);
  padding: 5px 9px; font-variant-numeric: tabular-nums;
  backdrop-filter: blur(6px);
}
.about-copy .label { margin-bottom: 22px; }
.about-copy h2 {
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 26px;
}
.about-copy p {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--bone-dim);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 56ch;
}
.about-copy p.mut { color: var(--grey); }
.about-copy .sig {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-copy .sig .name { font-weight: 700; font-size: 15px; }
.about-copy .sig .role { font-size: 12px; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---- contact band --------------------------------------------------------- */

.contact {
  border-top: 1px solid var(--hairline);
  padding: clamp(70px, 9vw, 130px) var(--gutter) clamp(120px, 13vw, 190px);
  text-align: center;
}
.contact h2 {
  font-size: clamp(36px, 6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 18px 0 30px;
}
.contact h2 .mut { color: var(--grey); }
.contact .cta { font-size: 16px; padding: 15px 30px; }
.contact .mail {
  display: block;
  margin-top: 22px;
  font-size: 14px;
  color: var(--grey);
  letter-spacing: 0.06em;
}
.contact .mail:hover { color: var(--bone); }
.contact .end-slate {
  margin-top: clamp(40px, 5vw, 64px);
  letter-spacing: 0.22em;
}
.contact .end-slate .tc { color: var(--bone-dim); }

/* ---- footer ------------------------------------------------------------------ */

.site-foot {
  border-top: 1px solid var(--hairline);
  padding-top: clamp(50px, 6vw, 90px);
  overflow: hidden;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 60px);
  padding: 0 var(--gutter) clamp(50px, 6vw, 90px);
}
.foot-col .label { margin-bottom: 20px; }
.foot-col p { font-size: clamp(18px, 1.7vw, 24px); font-weight: 600; line-height: 1.5; color: var(--grey); max-width: 30ch; }
.foot-col p em { font-style: normal; color: var(--bone); }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col li a { font-size: 17px; font-weight: 600; color: var(--bone-dim); border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; }
.foot-col li a:hover { color: var(--bone); border-color: var(--bone); }
.foot-col .hours { font-size: 15px; color: var(--grey); line-height: 2; font-variant-numeric: tabular-nums; }
.foot-col .hours b { color: var(--bone-dim); font-weight: 700; font-size: 17px; display: block; margin-bottom: 6px; }

.foot-ruler {
  position: relative;
  height: 42px;
  border-top: 1px solid var(--hairline);
}
.foot-ruler .ruler-tick { bottom: auto; top: 0; }
.foot-ruler .ruler-time { bottom: auto; top: 16px; }

.foot-giant-wrap {
  overflow: hidden;
  line-height: 0.78;
  padding-top: 0.1em;
}
.foot-giant-wrap .giant { transform: translateY(0.18em); }

.foot-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 26px;
  padding: 18px var(--gutter) 20px;
  border-top: 1px solid var(--hairline);
}
.foot-base, .foot-base a { font-size: 12.5px; color: var(--grey); letter-spacing: 0.04em; }
.foot-base a { border-bottom: 1px solid rgba(154,152,145,0.4); transition: color .25s; }
.foot-base a:hover { color: var(--bone); }
.back-top {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.1em;
  color: var(--bone-dim); text-transform: uppercase; font-weight: 700;
}
.back-top:hover { color: var(--signal); }

/* ---- responsive ------------------------------------------------------------------ */

@media (max-width: 960px) {
  .site-nav { display: none; }
  .svc-row { grid-template-columns: 48px minmax(0, 1fr); grid-template-rows: auto auto auto; }
  .svc-row h3 { grid-column: 2; }
  .svc-row .desc { grid-column: 2; }
  .svc-row .deliv { grid-column: 2; text-align: left; white-space: normal; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .about { grid-template-columns: 1fr; }
  .about-media { max-width: 430px; }
  .grade-intro { grid-template-columns: 1fr; }
  .grade-intro p { justify-self: start; }
  .foot-cols { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 30px;
    padding-top: calc(var(--ruler-h) + 130px);
    padding-bottom: 20px;
  }
  .hero-right { align-items: flex-start; text-align: left; justify-self: start; }
  .hero-services { order: 2; }
  .hero-right { order: 1; }
  .giant { font-size: 19vw; }
  .shortform-stage { grid-template-columns: 1fr; justify-items: center; gap: 26px; }
  .giant-word.left, .giant-word.right { text-align: center; font-size: 15vw; }
  .wipe { aspect-ratio: 4 / 5; }
  .cta { font-size: 13px; padding: 9px 15px; }
  .ruler .ruler-tick .ruler-time { display: none; }
  .ruler .ruler-tick.major:first-child .ruler-time,
  .ruler .ruler-tick.major:last-child .ruler-time { display: block; }
  .strip { scroll-snap-type: x mandatory; }
  .work-card { scroll-snap-align: start; width: 82vw; }
}

/* ---- reduced motion ------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .rec-dot { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .work-card .frame img, .cta, .svc-row::before, .wipe-handle .grip { transition: none; }
  * { scroll-behavior: auto !important; }
}
