/* wheelhousemedia.tv stylesheet, verbatim from v2/style.css (see README for the version). Do not fork rules; add app-specific ones in your own file after this one. */
/* Wheelhouse Media, v2 homepage
   One type scale, one spacing scale, gradient used only as an accent. */

@font-face { font-family: "Suisse Intl"; src: url("fonts/SuisseIntl-Regular.otf") format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Suisse Intl"; src: url("fonts/SuisseIntl-Bold.otf") format("opentype"); font-weight: 700; font-display: swap; }

:root {
  /* brand */
  --ink: #111111;
  --ink-2: #333333;
  --paper: #f9f9f9;
  --white: #ffffff;
  --hairline: rgba(17, 17, 17, 0.12);
  --hairline-strong: rgba(17, 17, 17, 0.3);
  --muted: rgba(17, 17, 17, 0.72);
  --grad: linear-gradient(60deg, #fe5343 0%, #fca725 50%, #96e02a 96%);
  /* the opposite palette, used by blocks that invert (open drop-down rows) */
  --inv-ink: #f9f9f9;
  --inv-paper: #111111;
  --inv-muted: rgba(249, 249, 249, 0.68);
  --inv-hairline: rgba(249, 249, 249, 0.14);

  /* type: eight styles. Every piece of text on the page is one of these.
     display     page titles only                          bold,    -0.02em
     heading     statements, drop-down rows, call to action  regular, -0.015em
     title       section titles                            regular, -0.01em
     subhead     a lead-in heading inside a block           regular, -0.01em (title size, its own spacing)
     title-bold  item names: thumbnails, steps, groups     bold
     lede        opening paragraph                          regular, black
     body        paragraphs, lists                          regular, muted
     small       secondary lines: footer, credits, captions regular, muted
     label       small caps: nav, eyebrows, buttons, meta   0.1em tracking, uppercase */
  --font: "Suisse Intl", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* scale: 13 / 15 / 18 / 21 / 26 / 34-52 / 44-88, each step about 1.2 to 1.3x */
  --t-display: clamp(2.75rem, 6.2vw, 5.5rem);
  --t-heading: clamp(2.125rem, 3.6vw, 3.25rem);
  --t-title: 1.625rem;
  --t-lede: 1.3125rem;
  --t-body: 1.125rem;
  --t-small: 0.9375rem;
  --t-label: 0.8125rem;

  /* spacing scale, 8px base */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-section: clamp(3.3rem, 6.05vw, 5.5rem);   /* every section, top and bottom */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --measure: 62ch;

  --header-h: 5rem;
  --cap-col: calc(var(--t-heading) + 1.85rem);   /* icon column in the drop-down rows: as tall as the title, with room either side of the icon (text starts 10% further in) */
  /* underline: one rule for every underlined word on the site (see "Underline" on the style guide) */
  --ul-thickness: 1px;
  --ul-offset: 0.25em;          /* baseline to the underline */
  --ul-duration: 0.35s;
  --font-descent: 0.31em;       /* Suisse Intl: bottom of the text box sits this far below the baseline */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0; overflow-x: clip;
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- type: the eight styles ---------- */
h1, h2, h3, h4, p { margin: 0; }
.t-display { font-size: var(--t-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; }
.t-heading { font-size: var(--t-heading); font-weight: 400; letter-spacing: -0.015em; line-height: 1.08; }
.t-title   { font-size: var(--t-title);   font-weight: 400; letter-spacing: -0.01em;  line-height: 1.2; }
.t-subhead { font-size: var(--t-title);   font-weight: 400; letter-spacing: -0.01em;  line-height: 1.25; }
.t-small   { font-size: var(--t-small);   font-weight: 400; line-height: 1.5; color: var(--muted); }
.t-title-bold { font-size: var(--t-title); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; }
.t-lede    { font-size: var(--t-lede);    font-weight: 400; letter-spacing: -0.005em; line-height: 1.45; color: var(--ink); }
.t-body    { font-size: var(--t-body);    font-weight: 400; line-height: 1.55; color: var(--muted); }
.t-label   { font-size: var(--t-label);   font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; }
.measure { max-width: var(--measure); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- layout ---------- */
.wrap { padding-inline: var(--gutter); }
.section { padding-block: var(--s-section); }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-3);
  padding-bottom: var(--s-3); margin-bottom: var(--s-4);
  border-bottom: 1px solid var(--hairline);
}
/* section title in Title; anything beside it (a link, a count) drops to Label so the title leads */
.section-head .t-label { color: var(--muted); }
.section-head .link-arrow { font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--t-body); line-height: 1.55; }
.link-arrow::after { content: "→"; transition: transform 0.3s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
/* ---------- underline (one component) ----------
   A 1px line in currentColor that draws in from the left on hover and un-draws to the left.
   The line is painted as a background on the word span itself, so it never runs under an arrow,
   a chevron, padding or a gap. line-height 1.286 equals the font's text box (ascent + descent),
   so the box bottom sits exactly --font-descent below the baseline whether the element is inline
   (copy links) or a flex item (nav, button simple); the line is then lifted to --ul-offset. */
.ul, .link-arrow > span, .nav > li > a > span, .nav > li > button > span:first-child, .dropdown a > span:first-child,
.footer ul:not(.social) a, .t-body a, .t-lede a, .contact-aside a, .callout .aside a {
  line-height: 1.286;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0 var(--ul-thickness);
  background-position: 0 calc(100% - (var(--font-descent) - var(--ul-offset)));
  transition: background-size var(--ul-duration) var(--ease), color 0.3s var(--ease);
}
/* drawn: hover, keyboard focus, the current page in the nav, and copy links (always underlined) */
.ul.is-on, .ul:hover,
.link-arrow:hover > span, .work-item:hover .link-arrow > span, .link-arrow:focus-visible > span,
.nav > li:hover > a > span, .nav > li:hover > button > span:first-child, .nav a:focus-visible > span, .nav button:focus-visible > span:first-child,
.nav > li.current > a > span, .nav > li.current > button > span:first-child,
.dropdown a:hover > span:first-child, .dropdown a[aria-current="page"] > span:first-child,
.footer ul:not(.social) a:hover, .footer ul:not(.social) a:focus-visible,
.t-body a, .t-lede a, .contact-aside a, .callout .aside a { background-size: 100% var(--ul-thickness); }
/* "button simple": the words underline, never the arrow */

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  height: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--s-4);
}
.header-inner > :last-child { justify-self: end; }
.logo { display: block; height: 2rem; }
/* the wordmark sits in the centre and only shows once the reel has scrolled away */
.header-word { display: block; height: 0.95rem; opacity: 0; transform: translateY(6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); pointer-events: none; }
.header.scrolled .header-word { pointer-events: auto; }
.header-word svg { height: 100%; width: auto; display: block; }
.header-word .word { fill: var(--ink); }
.header.scrolled .header-word { opacity: 1; transform: none; }
.logo svg { height: 100%; width: auto; overflow: visible; }
.logo .mark-ink { fill: var(--ink); transition: opacity 0.45s var(--ease); }
.logo .mark-grad { fill: url(#logo-grad); opacity: 0; transition: opacity 0.45s var(--ease); }
.logo:hover .mark-ink, .logo:focus-visible .mark-ink { opacity: 0; }
.logo:hover .mark-grad, .logo:focus-visible .mark-grad { opacity: 1; }
.logo .word { fill: var(--ink); }

.nav { display: flex; align-items: center; gap: var(--s-4); }
.nav > li { position: relative; }
.nav a, .nav button {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase;
  padding-block: 0.6rem;
  color: var(--ink);
}
.nav .chev { width: 0.55em; height: 0.55em; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform 0.3s var(--ease); }
.nav > li:hover .chev { transform: translateY(1px) rotate(225deg); }

.dropdown {
  position: absolute; top: calc(100% + 0.25rem); left: -1rem;
  min-width: 17rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
}
.nav > li:hover .dropdown, .nav > li:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition-delay: 0s;
}
.dropdown a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.7rem 1rem;
  text-transform: none; letter-spacing: 0; font-size: var(--t-small); color: var(--ink);
}
.dropdown a:hover { background: var(--paper); }
.dropdown .all { border-top: 1px solid var(--hairline); margin-top: 0.4rem; padding-top: 0.9rem; color: var(--muted); }

.menu-btn { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; background: #000; }
.hero video {
  /* short of the fold so the headline beneath shows above it */
  width: 100%; height: calc(83svh - var(--header-h)); min-height: 22rem;
  object-fit: cover;
}
.hero-caption {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: var(--s-4);
  display: flex; justify-content: flex-end; align-items: end; gap: var(--s-3);
  color: #fff;
}
.hero-sound { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase; color: #fff; opacity: 0.85; }
.hero-sound:hover { opacity: 1; }

/* ---------- statement ---------- */
.statement { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: var(--s-5) var(--s-7); align-items: start; }
.statement .t-display .swap { display: inline-block; position: relative; min-width: 5.2ch; }
.statement .t-display .swap span { position: absolute; left: 0; top: 0; white-space: nowrap; opacity: 0; transform: translateY(0.35em); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.statement .t-display .swap span.on { opacity: 1; transform: none; }
.statement .t-display .swap span:first-child { position: relative; visibility: hidden; }
.statement .t-display .swap span:first-child.on { visibility: visible; }
.statement-copy { display: grid; gap: var(--s-3); padding-top: 0.6rem; }

/* ---------- capabilities accordion ---------- */
.caps { border-top: 0; }
.cap { border-bottom: 1px solid var(--hairline); }
.cap-btn {
  width: 100%;
  display: grid; grid-template-columns: var(--cap-col) minmax(0, 1fr) auto; align-items: center; gap: var(--s-3);
  padding-block: clamp(1.75rem, 3.4vw, 2.75rem);
  text-align: left;
  color: var(--ink);
}
.cap-btn:hover .name { transform: translateX(6px); }
.cap-btn .idx { display: flex; align-items: center; justify-content: center; color: currentColor; font-size: var(--t-heading); }   /* icons centred in their column, on one axis */
.cap-icon { width: 1em; height: 1em; display: block; }
/* animated icons: a horizontal sprite strip of PNG frames (v2/anim/), stepped by main.js.
   At rest the tiny poster shows frame 0; the strip loads when the section nears the viewport. */
.cap-anim { --fw: 96; --fh: 96; --frames: 1; --i: 0; width: calc(1em * var(--fw) / var(--fh)); height: 1em; background-repeat: no-repeat; background-size: 100% 100%; background-position: 0 0; }
.cap-anim.loaded { background-size: calc(var(--frames) * 100%) 100%; background-position-x: calc(var(--i) / (var(--frames) - 1) * 100%); }
.cap-anim[data-anim="production"] { background-image: url(anim/production-poster.webp); }
.cap-anim[data-anim="post-production"] { background-image: url(anim/post-production-poster.webp); }
.cap-anim[data-anim="animation"] { background-image: url(anim/animation-poster.webp); }
.cap-anim[data-anim="live"] { background-image: url(anim/live-poster.webp); }
@media (prefers-reduced-motion: reduce) { .cap-anim.loaded { --i: 0 !important; } }
.cap-btn .name { font-size: var(--t-heading); font-weight: 400; letter-spacing: -0.015em; line-height: 1.08; transition: transform 0.4s var(--ease); }
.cap-btn .plus { position: relative; width: 1.25rem; height: 1.25rem; }
.cap-btn .plus::before, .cap-btn .plus::after { content: ""; position: absolute; inset: 50% auto auto 50%; background: currentColor; transform: translate(-50%, -50%); transition: transform 0.4s var(--ease); }
.cap-btn .plus::before { width: 100%; height: 1px; }
.cap-btn .plus::after { width: 1px; height: 100%; }
.cap.open .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.cap-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.cap.open .cap-panel { grid-template-rows: 1fr; }
.cap-panel > div { overflow: hidden; }
.cap-body {
  display: grid; grid-template-columns: var(--cap-col) minmax(0, 1.2fr) minmax(0, 1fr); gap: var(--s-3) var(--s-3);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.cap-body .accent { width: 1px; height: 100%; min-height: 3rem; background: var(--ink); justify-self: center; opacity: 0.9; }   /* on the icon axis; white for now (was the gradient) */
.cap-body p { max-width: 52ch; }
.cap-body .list { display: grid; gap: 0.35rem; font-size: var(--t-body); color: var(--muted); align-content: start; }
.cap-body .list li { display: flex; gap: 0.6em; }
.cap-body .list li::before { content: "—"; color: var(--muted); }
.cap-body .link-arrow { margin-top: var(--s-2); color: var(--ink); }

/* reel thumbnail inside an open capability; click opens the big player */
.cap-reel {
  position: relative; display: block; width: 100%; max-width: 52ch; aspect-ratio: 16 / 9;
  margin-top: var(--s-3); overflow: hidden; background: var(--hairline);
  text-align: left;
}
.cap-reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter 0.5s var(--ease); }
.cap-reel:hover img { transform: scale(1.03); filter: brightness(0.85); }
.cap-reel-play {
  position: absolute; left: 50%; top: 50%; width: 3.5rem; height: 3.5rem; transform: translate(-50%, -50%);
  border-radius: 50%; background: rgba(255, 255, 255, 0.92);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.cap-reel-play::after { content: ""; position: absolute; left: 55%; top: 50%; transform: translate(-50%, -50%); border-left: 0.9rem solid #111; border-top: 0.55rem solid transparent; border-bottom: 0.55rem solid transparent; }
.cap-reel:hover .cap-reel-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.cap-reel-label { position: absolute; left: 1rem; bottom: 0.9rem; color: #fff; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }
.cap-body .cap-reel + .link-arrow { margin-top: var(--s-3); }
.cap-gallery .cap-reel-photos { position: absolute; right: 0.9rem; top: 0.8rem; padding: 0.35rem 0.6rem; font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase; color: #111; background: rgba(255, 255, 255, 0.92); }
.cap-gallery::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 rgba(255,255,255,0.9); transition: box-shadow 0.4s var(--ease); pointer-events: none; }
.cap-gallery:hover::after { box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.9); }

/* in-place photo slider inside an open row; a click opens the big viewer at that photo */
.cap-slider { margin-top: var(--s-3); max-width: 52ch; }
.cap-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; background: var(--hairline); }
.cap-track::-webkit-scrollbar { display: none; }
.cap-slide { flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 16 / 9; display: block; }
.cap-slide img { width: 100%; height: 100%; object-fit: cover; }
.cap-slider-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 0.75rem; }
.cap-count { color: var(--muted); }
.cap-slider-nav { display: inline-flex; gap: 0.5rem; }
.cap-prev, .cap-next { position: relative; width: 2.25rem; height: 2.25rem; border: 1px solid var(--hairline-strong); border-radius: 50%; transition: border-color 0.3s var(--ease); }
.cap-prev::before, .cap-next::before { content: ""; position: absolute; left: 50%; top: 50%; width: 0.5rem; height: 0.5rem; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: translate(-60%, -50%) rotate(45deg); }
.cap-prev::before { transform: translate(-40%, -50%) rotate(-135deg); }
.cap-prev:hover, .cap-next:hover { border-color: var(--ink); }

/* the expanded player */
.reel-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.92);
  animation: reel-in 0.35s var(--ease);
}
@keyframes reel-in { from { opacity: 0; } to { opacity: 1; } }
.reel-frame { width: min(100%, 75rem); aspect-ratio: 16 / 9; background: #000; box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6); animation: reel-up 0.5s var(--ease); }
@keyframes reel-up { from { transform: translateY(24px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.reel-frame video, .reel-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.reel-frame img { width: 100%; height: 100%; object-fit: contain; display: block; animation: reel-in 0.4s var(--ease); }
.reel-nav { position: absolute; top: 50%; width: 3rem; height: 3rem; transform: translateY(-50%); opacity: 0.7; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.reel-nav::before { content: ""; position: absolute; left: 50%; top: 50%; width: 0.9rem; height: 0.9rem; border-top: 1px solid #fff; border-right: 1px solid #fff; transform: translate(-50%, -50%) rotate(45deg); }
.reel-prev { left: clamp(0.5rem, 2vw, 1.5rem); } .reel-prev::before { transform: translate(-50%, -50%) rotate(-135deg); }
.reel-next { right: clamp(0.5rem, 2vw, 1.5rem); }
.reel-nav:hover { opacity: 1; transform: translateY(-50%) scale(1.1); }
.reel-nav[hidden], .reel-count[hidden] { display: none; }
.reel-count { position: absolute; left: 50%; bottom: clamp(0.75rem, 2vw, 1.5rem); transform: translateX(-50%); color: rgba(255, 255, 255, 0.7); }
.reel-close { position: absolute; top: 1rem; right: 1.25rem; width: 2.5rem; height: 2.5rem; font-size: 0; opacity: 0.8; }
.reel-close::before, .reel-close::after { content: ""; position: absolute; left: 50%; top: 50%; width: 1.5rem; height: 1px; background: #fff; transform: translate(-50%, -50%) rotate(45deg); }
.reel-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.reel-close:hover { opacity: 1; }
[hidden] { display: none !important; }   /* the hidden attribute beats any display: rule, including grid and flex components */
body.reel-open { overflow: hidden; }

/* ---------- featured work ---------- */
/* showcase carousel: one piece centred, neighbours peeking in from each side */
.work {
  --slide: clamp(20rem, 64vw, 66rem);
  display: flex; gap: clamp(0.45rem, 0.9vw, 0.9rem);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-inline: calc((100% - var(--slide)) / 2);
  padding-block: var(--s-2);
  scrollbar-width: none;
  cursor: grab;
}
.work::-webkit-scrollbar { display: none; }
.work.dragging { cursor: grabbing; scroll-snap-type: none; }
.work .work-item {
  flex: 0 0 var(--slide);
  scroll-snap-align: center;
  position: relative;
  transform: scale(0.92); opacity: 0.45;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.work .work-item.is-active { transform: none; opacity: 1; }
.work .work-media img { transform: none; }
.work .work-item:hover .work-media img { transform: none; }
.work .work-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  align-items: end;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.work .work-item.is-active .work-meta { opacity: 1; }
.work .work-meta .client { color: rgba(255, 255, 255, 0.75); }
.work-logo { height: auto; width: auto; max-height: 4.75rem; max-width: 10.5rem; object-fit: contain; object-position: left bottom; opacity: 0.55; margin-bottom: 0.9rem; display: block; }
.work .work-meta .link-arrow {
  color: #fff; font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1;
}
.work-dots { display: flex; justify-content: center; gap: 0.6rem; padding-top: var(--s-3); }
.work-dots button { width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--hairline-strong); transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.work-dots button[aria-selected="true"] { background: var(--ink); transform: scale(1.35); }
.work-item { display: block; }
.work-item:focus:not(:focus-visible), .work:focus:not(:focus-visible), .work-dots button:focus:not(:focus-visible) { outline: none; }
.work-media { overflow: hidden; background: var(--hairline); aspect-ratio: 16 / 9; }
.work-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.001); transition: transform 1.2s var(--ease); }
.work-item:hover .work-media img { transform: scale(1.03); }
.work-meta {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: var(--s-3);
  padding: var(--s-2) var(--gutter) 0;
}
.work-meta .client { font-size: var(--t-small); color: var(--muted); }

/* ---------- callout ---------- */
.callout { border-top: 1px solid var(--hairline-strong); }
.callout-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--s-4); }
.btn {
  /* pill with a gradient outline; on hover the gradient fades in behind the text,
     the text goes black and the whole button grows a touch */
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95rem 1.75rem;
  font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid transparent; border-radius: 999px;
  transform: scale(1);
  transition: color 0.35s var(--ease), transform 0.4s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.btn::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: var(--grad); opacity: 0; z-index: -1; transition: opacity 0.35s var(--ease); pointer-events: none; }
.btn:hover, .btn:focus-visible { color: #111; transform: scale(1.06); outline: none; }
.btn:hover::after, .btn:focus-visible::after { opacity: 1; }
.btn:active { transform: scale(1.02); transition-duration: 0.15s; }
/* the one rounded button on a light page (the contact form): black outline at rest, gradient fill on hover */
.btn--ink { border-color: var(--ink); }
.btn--ink::before { opacity: 0; transition: opacity 0.3s var(--ease); }
.btn--ink:hover, .btn--ink:focus-visible { color: #111; border-color: transparent; }
.callout .aside { display: grid; gap: var(--s-1); }
.callout .aside a { width: max-content; }
.callout .aside a:hover { border-color: var(--ink); }

/* ---------- footer ---------- */
.footer { background: var(--paper); color: var(--ink); position: relative; border-top: 1px solid var(--hairline); }
.footer-inner { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); column-gap: var(--s-6); row-gap: var(--s-5); padding-block: var(--s-section) var(--s-5); }
.footer-inner > :first-child { display: inline-flex; flex-direction: column; align-items: center; justify-self: start; }
.footer .social { display: flex; justify-content: center; gap: 0.75rem; margin-top: var(--s-3); }
.footer .social a { display: block; opacity: 0.85; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.footer .social a:hover { opacity: 1; transform: translateY(-2px); }
.footer .social img { width: 2rem; height: 2rem; }
.footer .footer-address { color: var(--muted); margin-top: 0.6rem; line-height: 1.5; }
.footer .t-title { margin-bottom: var(--s-2); }
.footer ul { display: grid; gap: 0.4rem; font-size: var(--t-small); }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--ink); }
.footer .logo-foot { height: 5.5rem; width: auto; }
.footer .logo-foot-light { display: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: var(--s-3); padding-block: var(--s-3) var(--s-4); border-top: 1px solid var(--hairline); font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- dark blocks (alternating light / dark down the page) ---------- */
.footer, #capabilities, .callout {
  --ink: #f9f9f9;
  --paper: #111111;
  --white: #161616;
  --hairline: rgba(249, 249, 249, 0.14);
  --hairline-strong: rgba(249, 249, 249, 0.35);
  --muted: rgba(249, 249, 249, 0.68);
  --inv-ink: #111111;
  --inv-paper: #f9f9f9;
  --inv-muted: rgba(17, 17, 17, 0.72);
  --inv-hairline: rgba(17, 17, 17, 0.12);
  background: var(--paper); color: var(--ink);
}
.callout { border-top: 0; }
/* on dark blocks, paragraphs and lists read off-white; only links go full white */
#capabilities .t-body, .callout .t-body, #capabilities .list, .footer .t-body { color: var(--muted); }
#capabilities .t-body a, .callout .t-body a, #capabilities .list a, #capabilities .link-arrow, .callout .link-arrow { color: var(--ink); }

/* every dark section closes with the same 3px gradient rule */
.hero, #capabilities { position: relative; }
.hero::after, #capabilities::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad); opacity: 0.85; z-index: 1;
}

/* ---------- inner pages ---------- */
.page-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: var(--s-5) var(--s-7); align-items: start; }
.page-head.section { padding-block: calc(var(--s-section) * 0.85); }   /* page heads sit 15% tighter than a content section */
.page-head .t-lede { padding-top: 0.9rem; }
.page-head .eyebrow { grid-column: 1 / -1; color: var(--muted); margin-bottom: calc(var(--s-3) - var(--s-5)); }   /* full-width row above the title; pulls the row gap back to --s-3 */   /* optical: aligns the first line of the lede with the cap height of the title */
.page-head .t-lede { max-width: 48ch; }   /* the Company lede sets the measure: four lines at desktop width */

.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(1.25rem, 2.5vw, 2.5rem); row-gap: clamp(2.5rem, 4.5vw, 4rem); }
.grid .work-item { display: block; min-width: 0; }
.grid .work-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--hairline); }
.grid .work-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.001); transition: transform 1.2s var(--ease); }
.grid .work-item:hover .work-media img { transform: scale(1.03); }
.grid .work-meta { padding: var(--s-2) 0 0; display: grid; gap: 0.15rem; }
/* work page: tight two-up thumbnails; the caption sits over the image and rises in once the card scrolls into view */
.grid--hover { column-gap: clamp(0.75rem, 1.4vw, 1.25rem); row-gap: clamp(0.75rem, 1.4vw, 1.25rem); }
.grid--hover .work-item { position: relative; }
.grid--hover .work-media, .work .work-media { position: relative; }
.grid--hover .work-media img.work-logo, .work .work-media img.work-logo { position: absolute; top: clamp(1rem, 2vw, 1.5rem); left: clamp(1rem, 2vw, 1.5rem); margin: 0; z-index: 1; width: auto; height: auto; max-height: 4.75rem; max-width: 10.5rem; object-fit: contain; transform: none; }
/* the Ford script reads larger than the other marks in the same box, so it gets 75% */
.grid--hover .work-media img.work-logo[src$="ford.png"], .work .work-media img.work-logo[src$="ford.png"] { max-height: 3.5rem; max-width: 7.9rem; }
html.io .grid--hover .work-item.reveal:not(.in) { transform: translateY(56px); }
.grid--hover .work-item.reveal { transition-duration: 1s; }
.grid--hover .work-item.reveal:nth-child(2n) { transition-delay: 0.12s; }
.grid--hover .work-meta {
  position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: var(--s-3);
  color: #fff; background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: opacity 0.7s var(--ease) 0.3s, transform 0.8s var(--ease) 0.3s;
}
/* before the card has scrolled in, the caption waits below and fades up after the card lands */
html.io .grid--hover .work-item.reveal:not(.in) .work-meta { opacity: 0; transform: translateY(32px); }
.grid--hover .work-meta .client { color: rgba(255, 255, 255, 0.75); }
.grid--hover .work-meta .link-arrow {
  color: #fff; font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1;
}

.contact-photo { width: 100%; height: auto; display: block; margin-bottom: var(--s-2); }
/* like the original: photo and studio details on the left, the form on the right; the page head shares the same split so the lede lines up over the form */
.page-head--contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: var(--s-6) var(--s-7); align-items: start; }
.contact-aside { display: grid; gap: var(--s-4); }
.contact-aside a { width: max-content; }
.contact-aside a:hover { border-color: var(--ink); }
.form { display: grid; gap: var(--s-4); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-3); }
.field { display: grid; gap: 0.5rem; }
.field > .t-label { color: var(--muted); }
.field legend { padding: 0; }   /* browsers indent legends by default; keep them flush with the field labels */
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea {
  width: 100%; font: inherit; font-size: var(--t-body); color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--hairline-strong); border-radius: 0;
  padding: 0.6rem 0; outline: none; transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 8rem; resize: vertical; }
.choices { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choices label { position: relative; cursor: pointer; }
.choices input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choices span {
  display: inline-block; padding: 0.55rem 0.9rem; font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--hairline-strong); color: var(--ink); transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.choices input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.choices input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }
.form-note { color: var(--muted); }
.form-foot { display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap; }


@media (max-width: 900px) {
  .page-head, .contact { grid-template-columns: 1fr; gap: var(--s-4); }
}
@media (max-width: 720px) {
  .grid, .form-row { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- company + service pages ---------- */
.full-image { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.process { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-5) var(--s-4); }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); min-width: 0; gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.gallery .tile { aspect-ratio: 3 / 2; overflow: hidden; background: var(--hairline); }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.001); transition: transform 1s var(--ease), filter 0.4s var(--ease); }
.gallery .tile:hover img { transform: scale(1.04); filter: brightness(0.9); }
.reel-hero { max-width: none; margin-top: 0; aspect-ratio: 21 / 9; }
.hero-media { display: block; }   /* page hero images run edge to edge on every page */
.reel-hero .cap-reel-play { width: 4.5rem; height: 4.5rem; }
/* copy as a lede on the left; the service list on the right runs in two columns so the two halves sit level */
.service-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s-5) var(--s-7); align-items: start; }
/* paragraph and list share the body style; a Services subhead sits above the list */
.service-body .list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem var(--s-4); color: var(--muted); font-size: var(--t-body); line-height: 1.55; }
.service-body .t-body { max-width: 56ch; }
.service-body .t-subhead { margin-bottom: calc(-0.5 * var(--s-4)); }   /* .service-text already puts an --s-4 gap after it; net half that, so twice as much space above the subhead as below */
/* pages with behind-the-scenes footage: text on one half, the picture on the other */
.service-body--media { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
.service-body--media .list { grid-template-columns: 1fr; }   /* half-width column: one list column keeps the lines whole */
.service-text { display: grid; gap: var(--s-4); }
.service-text > div { display: contents; }
.service-media img { width: 100%; height: auto; display: block; }
.service-body .list li { display: flex; gap: 0.6em; }
.service-body .list li::before { content: "—"; color: var(--muted); }
#more .section-head { border-bottom: 0; margin-bottom: 0; padding-bottom: var(--s-2); }
.more { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-4); }
.more-item { display: grid; gap: var(--s-2); padding: var(--s-4) 0; border-top: 1px solid var(--hairline-strong); }
.more-item .link-arrow { color: var(--muted); }
.more-item:hover .link-arrow { color: var(--ink); }
@media (max-width: 900px) {
  .process, .more { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-body { grid-template-columns: 1fr; gap: var(--s-4); }
  .service-body .list { grid-template-columns: 1fr; }
  .full-image, .reel-hero { aspect-ratio: 16 / 9; }
}

/* ---------- project pages: header floats over a full-page still; play button straddles the edge; video opens in the overlay ---------- */
body.over-hero .header { position: fixed; left: 0; right: 0; top: 0; background: transparent; border-bottom-color: transparent; --ink: #f9f9f9; transition: background 0.3s var(--ease), border-color 0.3s var(--ease); }
body.over-hero .header .header-word .word, body.over-hero .header .logo .word { fill: var(--ink); }
body.over-hero .header.scrolled { background: #fff; border-bottom-color: var(--hairline); --ink: #111111; }
body.over-hero .dropdown { --ink: #111111; }
.project-hero { position: relative; height: 78svh; min-height: 30rem; background: #000; overflow: visible; }
.project-hero .project-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0) 70%); }
.project-hero-text { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(90%, 60rem); text-align: center; color: #fff; }
.project-hero-text .t-title { color: rgba(255, 255, 255, 0.9); margin-top: var(--s-3); }
.project-play { position: absolute; left: 50%; bottom: -2.5rem; transform: translateX(-50%); z-index: 3; display: grid; justify-items: center; gap: 0.9rem; color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45); }
/* soft scrim behind the mark: near-invisible on dark stills, gives the ring separation on pale ones */
.project-play::before { content: ""; position: absolute; left: 50%; top: 2.5rem; width: 17rem; height: 17rem; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0) 100%); pointer-events: none; z-index: -1; }
.project-play .play-ring { position: relative; width: 5rem; height: 5rem; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.9); background: rgba(17, 17, 17, 0.32); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14); backdrop-filter: blur(6px); transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.project-play .play-ring::after { content: ""; position: absolute; left: 55%; top: 50%; transform: translate(-50%, -50%); border-left: 1.1rem solid #fff; border-top: 0.65rem solid transparent; border-bottom: 0.65rem solid transparent; transition: border-left-color 0.3s var(--ease); }
.project-play:hover .play-ring { background: #fff; transform: scale(1.06); }
.project-play:hover .play-ring::after { border-left-color: #111; }
/* inline variant: normal white header, hero the same height as the home reel, player plays in place, gradient rule beneath */
.project-hero--inline { height: calc(75svh - var(--header-h)); min-height: 21rem; overflow: hidden; display: grid; place-items: center; }
.project-hero--inline::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad); opacity: 0.85; z-index: 2; }
.project-hero--inline .project-hero-text { position: relative; left: auto; top: auto; transform: none; padding-bottom: 8rem; }
.project-hero--inline .project-play { position: absolute; left: 50%; top: 50%; bottom: auto; transform: translate(-50%, -50%); }
/* title and client as one unit on the left; the subheader leads the story on the right, like the home statement */
.project-intro { display: grid; gap: 0.75rem; align-content: start; }
.project-intro .client { color: var(--muted); }
.project-brief { --ink: #f9f9f9; --paper: #111111; --white: #161616; --hairline: rgba(249, 249, 249, 0.14); --hairline-strong: rgba(249, 249, 249, 0.35); --muted: rgba(249, 249, 249, 0.68); background: var(--paper); color: var(--ink); }
/* light variant of the brief: off-white ground, dark text; the play ring goes dark so it still reads where it overlaps */
.project-brief.is-light { --ink: #111111; --paper: #f9f9f9; --white: #ffffff; --hairline: rgba(17, 17, 17, 0.12); --hairline-strong: rgba(17, 17, 17, 0.3); --muted: rgba(17, 17, 17, 0.72); }
.project-hero:not(.project-hero--inline):has(+ .project-brief.is-light) .project-play .play-ring { border-color: #111; background: rgba(17, 17, 17, 0.55); }
.project-hero:has(+ .project-brief.is-light) .project-play:hover .play-ring { background: #111; }
.project-hero:has(+ .project-brief.is-light) .project-play:hover .play-ring::after { border-left-color: #fff; }
.project-brief .statement-copy .t-body { color: var(--muted); }
.credits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-5) var(--s-4); }
/* a named group spans the full width and its list flows across the same three columns */
.credit-group { grid-column: 1 / -1; }
.credit-group-title { margin-bottom: var(--s-3); }
.credit-list { display: grid; gap: 0.5rem; font-size: var(--t-small); line-height: 1.5; }
.credit-list--flow { grid-column: 1 / -1; display: block; columns: 3; column-gap: var(--s-4); }
.credit-list--flow li { break-inside: avoid; margin-bottom: 0.5rem; }
.credit-list .role { color: var(--ink); font-weight: 700; }
.credit-list .role::after { content: ":"; }
.credit-list .name { color: var(--muted); }
@media (max-width: 900px) { .credits { grid-template-columns: 1fr; } .credit-list--flow { columns: 2; } }
@media (max-width: 720px) { .credit-list--flow { columns: 1; } }

/* ---------- style guide page ---------- */
.sg-type { display: grid; gap: 0; border-top: 1px solid var(--hairline); }
.sg-row { display: grid; grid-template-columns: 16rem minmax(0, 1fr); gap: var(--s-4); padding: var(--s-4) 0; border-bottom: 1px solid var(--hairline); align-items: start; }
.sg-meta { display: grid; gap: 0.35rem; font-size: var(--t-label); color: var(--muted); }
.sg-meta code, .sg-swatch code, .sg-cap code { font: 0.8rem ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--ink); }
.sg-meta span:not(.t-label) { font-size: 0.875rem; letter-spacing: 0; text-transform: none; line-height: 1.4; }
.sg-swatches { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-4); }
.sg-chip { aspect-ratio: 3 / 2; margin-bottom: var(--s-2); }
.sg-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); }
.sg-cell { padding: var(--s-4); border: 1px solid var(--hairline); }
.sg-cell.sg-dark { --ink: #f9f9f9; --paper: #111111; --white: #161616; --hairline: rgba(249,249,249,.14); --hairline-strong: rgba(249,249,249,.35); --muted: rgba(249,249,249,.68); background: var(--paper); color: var(--ink); border-color: transparent; }
.sg-cap { color: var(--muted); margin-bottom: var(--s-3); }
.sg-note { margin-top: var(--s-3); }
.sg-spacing { display: flex; align-items: end; gap: 0.5rem; margin: 1rem 0; }
.sg-spacing i { display: block; height: 1rem; background: var(--ink); }
.sg-list { display: grid; gap: 0; border-top: 1px solid var(--hairline); }
.sg-item { display: grid; grid-template-columns: 16rem minmax(0, 1fr); gap: var(--s-4); padding: var(--s-4) 0; border-bottom: 1px solid var(--hairline); }
.sg-item .t-body { max-width: 62ch; }
@media (max-width: 900px) { .sg-row, .sg-item { grid-template-columns: 1fr; gap: var(--s-2); } .sg-swatches, .sg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .sg-swatches, .sg-grid { grid-template-columns: 1fr; } }

/* ---------- hero treatment: Home and project pages run edge to edge with the gradient rule;
   Company and the capability pages sit inside the gutters, flush with the page text ---------- */
.hero-media { margin-inline: var(--gutter); }
.full-image { width: calc(100% - 2 * var(--gutter)); margin-inline: var(--gutter); }
.hero-media .full-image { width: 100%; margin-inline: 0; }   /* the section already provides the gutter; no double inset */

/* ---------- reveal ---------- */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.io .reveal:not(.in) { opacity: 0; transform: translateY(18px); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .statement, .callout-inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .cap-body { grid-template-columns: 3.5rem minmax(0, 1fr); }
  .cap-body .list { grid-column: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  :root { --header-h: 4rem; }
  .logo { height: 1.7rem; }
  .header-word { height: 0.8rem; }
  .menu-btn { display: inline-flex; align-items: center; gap: 0.6em; font-size: var(--t-label); letter-spacing: 0.1em; text-transform: uppercase; }
  .menu-btn .bars { width: 1.25rem; height: 0.75rem; position: relative; }
  .menu-btn .bars::before, .menu-btn .bars::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--ink); transition: transform 0.3s var(--ease); }
  .menu-btn .bars::before { top: 0; } .menu-btn .bars::after { bottom: 0; }
  body.menu-open .menu-btn .bars::before { transform: translateY(5.5px) rotate(45deg); }
  body.menu-open .menu-btn .bars::after { transform: translateY(-5.5px) rotate(-45deg); }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 40;
    background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--s-3) var(--gutter);
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
    overflow: auto;
  }
  body.menu-open .nav { transform: none; visibility: visible; transition-delay: 0s; }
  .nav > li { border-bottom: 1px solid var(--hairline); }
  .nav a, .nav button { width: 100%; justify-content: space-between; padding-block: 1.1rem; font-size: var(--t-body); letter-spacing: 0.1em; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; padding: 0 0 0.75rem 1rem; }
  .dropdown a { padding-block: 0.6rem; font-size: var(--t-body); }
  .nav .chev { display: none; }
  .hero video { height: 59svh; }
  .hero-caption { flex-direction: column; align-items: start; }
  .cap-btn { grid-template-columns: var(--cap-col) minmax(0, 1fr) auto; }
  .cap-btn .idx { font-size: var(--t-title); }
  .cap-btn .name { font-size: var(--t-title); }
  :root { --cap-col: calc(var(--t-title) + 1rem); }
  .cap-body { grid-template-columns: var(--cap-col) minmax(0, 1fr); }
  .work-meta { grid-template-columns: 1fr; gap: var(--s-1); }
  .work { --slide: 86vw; }
  .work .work-meta { grid-template-columns: 1fr; }
  .work-logo { max-height: 3rem; max-width: 7rem; margin-bottom: 0.6rem; }
  .footer .logo-foot { height: 3.5rem; }
.work .work-meta .link-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
