/* ============================================================
   UPSCALE MEDIA — Editorial / FilmLaab-inspired
   ============================================================ */

/* ---- tokens ---- */
:root {
  --bg: #050505;
  --bg-1: #0c0c0e;
  --bg-2: #131316;
  --line: #1d1d22;
  --line-strong: #2a2a30;
  --ink: #f4f1ec;             /* warm off-white */
  --ink-2: #cfcdc6;
  --ink-3: #8a8881;
  --ink-4: #5b5a55;
  --ink-5: #38373a;
  --blue: #617398;             /* brand */
  --blue-soft: #8195b8;
  --blue-deep: #4a5a7d;
  --accent-tint: rgba(97, 115, 152, 0.18);
  --warn: #d27a64;
  --rad: 0px;
  --rad-md: 6px;
  --rad-lg: 14px;
  --maxw: 1480px;
  --pad-x: clamp(20px, 4.5vw, 80px);
  --row-gap: clamp(80px, 12vh, 180px);
  --hero-font: 'Outfit', 'Halyard Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--hero-font);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  line-height: 1.45;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
em, i { font-style: italic; }
.italic { font-style: italic; }
.accent { color: var(--blue-soft); }
code {
  font-family: var(--mono);
  font-size: 0.85em;
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--blue-soft);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #18181c; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #26262c; }

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

/* shared arrow micro-animation */
.arrow { display: inline-block; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
a:hover > .arrow, button:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px var(--pad-x);
  background: transparent;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,0.78);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  border-bottom-color: var(--line);
  padding-top: 16px; padding-bottom: 16px;
}
.nav-logo img {
  height: 22px;
  width: 140px;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: invert(1) brightness(1.15);
  opacity: 0.95;
}
.nav-links {
  justify-self: center;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.nav-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  padding: 6px 4px;
  position: relative;
  transition: color .25s ease;
}
.nav-link i { font-style: normal; color: var(--ink-4); margin-right: 6px; }
.nav-link:last-child i { display: none; }
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 0 var(--pad-x) clamp(40px, 6vh, 80px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-video.broken { display: none; }
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: #060608;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-placeholder .moodlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  mix-blend-mode: screen;
}
.hero-bg-placeholder .m1 {
  width: 70vw; height: 70vw;
  top: -10vw; left: -15vw;
  background: radial-gradient(circle, #a36a4f 0%, transparent 65%);
  animation: drift1 22s ease-in-out infinite;
}
.hero-bg-placeholder .m2 {
  width: 60vw; height: 60vw;
  bottom: -15vw; right: -10vw;
  background: radial-gradient(circle, var(--blue) 0%, transparent 65%);
  opacity: 0.55;
  animation: drift2 28s ease-in-out infinite;
}
.hero-bg-placeholder .m3 {
  width: 45vw; height: 45vw;
  top: 30%; left: 35%;
  background: radial-gradient(circle, #2c2620 0%, transparent 65%);
  animation: drift3 32s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(6vw, 4vh) scale(1.12); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-5vw, -3vh) scale(1.08); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-40%, -45%) scale(1.18); }
}
.grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
  animation: grain 1.6s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-3%, 2%); }
  30% { transform: translate(4%, -5%); }
  50% { transform: translate(-6%, 4%); }
  70% { transform: translate(2%, -3%); }
  90% { transform: translate(-2%, 5%); }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
}

/* reel button */
.reel-btn {
  position: absolute;
  top: 110px; right: var(--pad-x);
  z-index: 50;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s ease, transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease;
}
.reel-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.06);
}
.reel-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
.reel-ring {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.25);
  animation: spin 22s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* hero copy */
.hero-status {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
  align-self: flex-start;
  margin-top: 130px;
  margin-bottom: auto;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.hero-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(97,115,152,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(97,115,152,0.25); }
  50% { box-shadow: 0 0 0 9px transparent; }
}

.hero-title {
  position: relative;
  z-index: 10;
  font-size: clamp(60px, 11.5vw, 200px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: clamp(40px, 8vh, 90px) 0 clamp(60px, 8vh, 100px);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vh, 8px);
  text-wrap: balance;
}
.hero-title .line { display: block; }
.hero-title .w {
  display: inline-block;
  transition: color .3s ease, transform .4s cubic-bezier(.2,.7,.2,1);
  font-weight: 500;
}
.hero-title .w.italic { font-weight: 300; font-style: italic; color: var(--ink-2); }
.hero-title .w.accent { color: var(--blue-soft); font-weight: 500; }

.hero-foot {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s ease;
}
.scroll-cue:hover { color: var(--ink); }
.arrow-down {
  display: inline-block;
  font-size: 18px;
  animation: arrowDown 2.2s ease-in-out infinite;
}
@keyframes arrowDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .25s ease, transform .25s ease;
}
.hero-cta:hover { background: #fff; transform: translateY(-2px); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(120px, 18vh, 220px) var(--pad-x) clamp(80px, 12vh, 160px);
  position: relative;
}
.ml-eyebrow,
.sec-eyebrow,
.ind-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: clamp(40px, 6vh, 80px);
}
.ml-eyebrow span:first-child,
.sec-eyebrow span:first-child,
.ind-eyebrow span:first-child {
  color: var(--blue-soft);
  font-variant-numeric: tabular-nums;
}

.ml-copy {
  font-size: clamp(28px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink-3);
  margin-bottom: 64px;
  text-wrap: pretty;
  max-width: 1300px;
}
.ml-copy + .ml-copy { margin-top: -36px; }
.ml-copy .word {
  display: inline;
  position: relative;
  color: var(--ink-3);
  transition: color .25s ease;
  margin-right: 0.18em;
}
.ml-copy .word:hover { color: var(--ink); }
.ml-copy .word.italic { font-style: italic; color: var(--ink-4); }
.ml-copy .word.italic:hover { color: var(--blue-soft); }

.ml-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .25s ease, color .25s ease;
}
.ml-more:hover { border-color: var(--ink); }

/* ============================================================
   SHARED SECTION HEAD
   ============================================================ */
.portfolio, .industries, .reviews, .products, .contact, .megacta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 10vh, 140px) var(--pad-x);
  position: relative;
}
.sec-head {
  margin-bottom: clamp(40px, 6vh, 80px);
}
.sec-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sec-title {
  font-size: clamp(54px, 8vw, 132px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.sec-title .italic { font-weight: 300; color: var(--ink-2); }
.sec-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .25s ease, color .25s ease;
  margin-bottom: 12px;
}
.sec-link:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.cat {
  padding: clamp(50px, 7vh, 90px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 88px;
}
.cat:first-of-type { border-top: none; padding-top: 0; }
.cat-meta {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
}
.cat-num {
  font-size: 12px;
  font-family: var(--mono);
  color: var(--blue-soft);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.cat-name {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.cat-tally {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--mono);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tile {
  grid-column: span 2;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: #0a0a0c;
  display: block;
  border-radius: var(--rad-md);
  cursor: pointer;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.tile.big {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}
.tile-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.tile-vid.broken { display: none; }

/* fallback animated "video" — moody color cycle per mood */
.tile-fall {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: 200% 200%;
  animation: moodShift 14s ease-in-out infinite;
}
.tile-fall::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.tile-fall::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, transparent 0%, rgba(0,0,0,0.55) 100%);
}
@keyframes moodShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
/* mood palettes */
[data-mood="warm"]    .tile-fall { background-image: linear-gradient(135deg, #3a1f12 0%, #8b4a2a 30%, #d9914d 55%, #5a2d18 85%, #1c0f08 100%); }
[data-mood="amber"]   .tile-fall { background-image: linear-gradient(135deg, #1c1208 0%, #6b4218 35%, #c08847 60%, #2e1a0a 100%); }
[data-mood="ember"]   .tile-fall { background-image: linear-gradient(135deg, #1a0908 0%, #581f1a 35%, #a8513a 60%, #1a0c0a 100%); }
[data-mood="cool"]    .tile-fall { background-image: linear-gradient(135deg, #0c1118 0%, #283e5c 35%, #5a7aa6 65%, #0e131a 100%); }
[data-mood="steel"]   .tile-fall { background-image: linear-gradient(135deg, #14171c 0%, #2b3340 30%, #6b7d96 60%, #181b22 100%); }
[data-mood="ice"]     .tile-fall { background-image: linear-gradient(135deg, #0e1418 0%, #1f3140 30%, #748ca5 60%, #11181f 100%); }
[data-mood="dusk"]    .tile-fall { background-image: linear-gradient(135deg, #0e0c14 0%, #3a2c4a 30%, #7d6597 60%, #14101a 100%); }
[data-mood="leaf"]    .tile-fall { background-image: linear-gradient(135deg, #0d1410 0%, #1f3a26 35%, #557854 65%, #10160f 100%); }
[data-mood="brass"]   .tile-fall { background-image: linear-gradient(135deg, #1c150a 0%, #574020 35%, #b08a4a 60%, #1c1408 100%); }
[data-mood="linen"]   .tile-fall { background-image: linear-gradient(135deg, #181612 0%, #4a4239 35%, #b0a594 60%, #1c1814 100%); }
[data-mood="rose"]    .tile-fall { background-image: linear-gradient(135deg, #1a0f12 0%, #4f2a35 35%, #b07187 60%, #1a0e10 100%); }
[data-mood="paper"]   .tile-fall { background-image: linear-gradient(135deg, #16181c 0%, #3a3d44 35%, #8d8f97 60%, #16181c 100%); }
[data-mood="indigo"]  .tile-fall { background-image: linear-gradient(135deg, #0a0d18 0%, #1f2949 35%, #4a5fa3 65%, #0c0f1c 100%); }
[data-mood="signal"]  .tile-fall { background-image: linear-gradient(135deg, #0c1418 0%, #1c3e4a 35%, #4a8fa8 60%, #0e151a 100%); }
[data-mood="atlantic"].tile-fall { background-image: linear-gradient(135deg, #0a1018 0%, #1a2d4a 35%, #4a6da3 65%, #0c1018 100%); }

.tile-cap {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tile-client {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.tile-name {
  font-size: 12px;
  color: rgba(244, 241, 236, 0.65);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.tile:hover {
  transform: translateY(-3px);
}
.tile:hover .tile-fall { animation-duration: 8s; }

.port-note {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-4);
  font-family: var(--mono);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.port-note span:first-child { color: var(--blue-soft); }

/* ============================================================
   INDUSTRIES INLINE
   ============================================================ */
.industries {
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(60px, 10vh, 140px);
}
.ind-list {
  font-size: clamp(34px, 5.5vw, 88px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 1500px;
}
.ind {
  color: var(--ink-3);
  display: inline;
  margin-right: 0.25em;
  transition: color .25s ease;
}
.ind:hover { color: var(--ink); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding-top: clamp(40px, 6vh, 80px); }
.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.rev {
  padding: 48px 56px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background .3s ease;
}
.rev:hover { background: var(--bg-1); }
.rev blockquote {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-style: normal;
  position: relative;
  text-wrap: pretty;
}
.rev blockquote::before {
  content: '"';
  position: absolute;
  top: -28px; left: -16px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--blue);
  opacity: 0.35;
}
.rev blockquote em { font-style: italic; color: var(--blue-soft); }
.rev figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rev-who { font-size: 15px; font-weight: 500; color: var(--ink); }
.rev-role { font-size: 13px; color: var(--ink-3); font-family: var(--mono); }
.rev-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-4);
  text-align: right;
  font-family: var(--mono);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { padding-top: clamp(60px, 10vh, 140px); }
.prod-list { list-style: none; }
.prod {
  border-top: 1px solid var(--line);
}
.prod:last-child { border-bottom: 1px solid var(--line); }
.prod-link {
  display: grid;
  grid-template-columns: 56px 1.4fr 200px 60px;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  transition: padding .35s cubic-bezier(.2,.7,.2,1), background .35s ease;
  position: relative;
}
.prod-link:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: linear-gradient(90deg, rgba(97,115,152,0.06) 0%, rgba(97,115,152,0.02) 100%);
}
.prod-num {
  font-size: 13px;
  font-family: var(--mono);
  color: var(--blue-soft);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.prod-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.prod-name {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.prod-name i {
  font-style: normal;
  color: var(--ink-4);
  font-weight: 300;
  margin-left: 2px;
}
.prod-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 620px;
  font-weight: 300;
}
.prod-price { text-align: right; display: flex; flex-direction: column; gap: 4px; }
.amt {
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.amt .per { font-size: 14px; color: var(--ink-3); font-weight: 300; }
.unit {
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.prod-arrow {
  justify-self: end;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.prod-link:hover .prod-arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.prod-link:hover .prod-arrow .arrow { transform: translateX(0); }
.prod-note {
  margin-top: 30px;
  font-size: 12px;
  color: var(--ink-4);
  font-family: var(--mono);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding-top: clamp(60px, 10vh, 140px); padding-bottom: clamp(60px, 10vh, 140px); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-size: clamp(52px, 7.5vw, 120px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.contact-title .italic { font-weight: 300; color: var(--ink-2); }
.contact-title .accent { color: var(--blue-soft); }
.contact-sub {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 440px;
}

/* calendly */
.cal-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: var(--blue);
  color: var(--ink);
  border-radius: var(--rad-md);
  transition: background .3s ease, transform .25s ease;
  margin-bottom: 12px;
}
.cal-btn:hover { background: var(--blue-soft); transform: translateY(-2px); }
.cal-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244,241,236,0.7);
  margin-bottom: 6px;
  font-family: var(--mono);
}
.cal-main {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cal-arrow {
  font-size: 24px;
  transition: transform .3s ease;
}
.cal-btn:hover .cal-arrow { transform: translate(4px, -4px); }
.cal-hint {
  font-size: 11px;
  color: var(--ink-4);
  font-family: var(--mono);
  margin-bottom: 40px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.cd-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  font-size: 15px;
}
.cd-k {
  color: var(--ink-4);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cd-v { color: var(--ink); }
.cd-v a { transition: color .2s ease; }
.cd-v a:hover { color: var(--blue-soft); }

/* form */
.form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--bg-1);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--rad-md);
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.field label {
  font-size: 11px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  font-family: var(--mono);
  display: flex;
  align-items: center;
  gap: 10px;
}
.field label i {
  font-style: normal;
  color: var(--blue-soft);
  font-size: 14px;
  line-height: 0;
}
.field label i.opt {
  font-size: 9px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: var(--ink-4);
  font-weight: 400;
  border: 1px solid var(--line-strong);
  padding: 3px 8px;
  border-radius: 999px;
}
.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
  font-weight: 300;
  padding: 12px 2px;
  outline: none;
  transition: border-color .25s ease;
  resize: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-4);
  font-weight: 300;
  font-style: italic;
  transition: opacity .25s ease, transform .25s ease;
}
.field input:focus,
.field textarea:focus { border-color: var(--blue); }
.field input:focus::placeholder,
.field textarea:focus::placeholder { opacity: 0; transform: translateX(6px); }
.field.invalid input,
.field.invalid textarea { border-color: var(--warn); }
.err {
  font-size: 12px;
  color: var(--warn);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity .2s ease, height .2s ease;
  font-family: var(--mono);
}
.field.invalid .err { opacity: 1; height: 16px; }

.submit {
  margin-top: 12px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.submit:hover { transform: translateY(-2px); background: #fff; }
.submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  margin-top: 8px;
  background: var(--accent-tint);
  border: 1px solid var(--blue-deep);
  border-radius: var(--rad-md);
  padding: 18px 20px;
}
/* honeypot — visually + audibly hidden, but not display:none (bots skip those) */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  margin-top: 8px;
  background: rgba(210, 122, 100, 0.12);
  border: 1px solid var(--warn);
  border-radius: var(--rad-md);
  padding: 18px 20px;
}
.form-error .ok svg { color: var(--warn); }
.form-error .ok-sub a { color: var(--blue-soft); }
.ok { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); }
.ok svg { color: var(--blue-soft); flex-shrink: 0; margin-top: 2px; }
.ok-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.ok-sub { font-size: 13px; color: var(--ink-3); }

/* ============================================================
   MEGA CTA FOOTER STRIP
   ============================================================ */
.megacta {
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(80px, 12vh, 160px);
  overflow: hidden;
}
.mc-strip {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 calc(var(--pad-x) * -1);
  padding: 0 var(--pad-x);
  animation: marquee 20s linear infinite;
  animation-play-state: paused;
}
.megacta.in-view .mc-strip { animation-play-state: running; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}
.mc-text {
  font-size: clamp(54px, 10vw, 160px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
}
.mc-text .italic { font-weight: 300; color: var(--ink-2); }
.mc-orb {
  width: clamp(40px, 6vw, 88px);
  height: clamp(40px, 6vw, 88px);
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.mc-orb-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 40%, var(--blue) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, #8b4a2a 0%, transparent 55%);
  animation: orb 8s ease-in-out infinite;
}
@keyframes orb {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(90deg); }
}

.mc-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(40px, 6vh, 80px);
  padding: 22px 36px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease;
}
.mc-cta:hover { background: #fff; transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--pad-x) 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-l { display: flex; align-items: center; gap: 24px; }
.foot-logo {
  height: 20px;
  width: 128px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1);
  opacity: 0.7;
}
.foot-tag { font-size: 13px; color: var(--ink-3); font-family: var(--mono); }
.foot-tag a { color: var(--ink); transition: color .2s ease; }
.foot-tag a:hover { color: var(--blue-soft); }
.foot-nav, .foot-social { display: flex; gap: 6px; align-items: baseline; }
.foot-nav a, .foot-social a {
  font-size: 13px;
  color: var(--ink-2);
  transition: color .25s ease;
  font-family: var(--mono);
}
.foot-nav a i, .foot-social a i {
  font-style: normal;
  color: var(--ink-4);
  margin-right: 4px;
}
.foot-nav a:last-child i, .foot-social a:last-child i { display: none; }
.foot-nav a:hover, .foot-social a:hover { color: var(--ink); }
.foot-row.bot { border-top: 1px solid var(--line); padding-top: 32px; }

/* horizontal scrollable tile row (home page featured work) */
.tile-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 24px;
  /* Allow the row to bleed slightly outside the section padding for an editorial feel */
  margin: 0 calc(var(--pad-x) * -1);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.tile-row::-webkit-scrollbar { height: 8px; }
.tile-row::-webkit-scrollbar-track { background: transparent; }
.tile-row::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}
.tile-row::-webkit-scrollbar-thumb:hover { background: var(--ink-4); }

.tile-sm {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: #0a0a0c;
  display: block;
  border-radius: var(--rad-md);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.tile-sm:hover { transform: translateY(-3px); }
.tile-sm:hover .tile-fall { animation-duration: 8s; }

/* Sections with no featured hero film get larger tiles */
.cat.nohero .tile-row { gap: 18px; }
.cat.nohero .tile-sm { width: clamp(300px, 30vw, 440px); }
.cat.nohero .tile-sm .tile-client { font-size: 19px; }
.cat.nohero .tile-sm .tile-cap { left: 20px; right: 20px; bottom: 20px; }
@media (max-width: 700px) {
  .cat.nohero .tile-sm { width: clamp(240px, 72vw, 320px); }
}
.tile-sm .tile-cap {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tile-sm .tile-client {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.tile-sm .tile-name {
  font-size: 11px;
  color: rgba(244, 241, 236, 0.7);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tile-row-hint {
  margin-top: 16px;
  font-size: 11px;
  color: var(--ink-4);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.tile-row-hint span:first-child { color: var(--blue-soft); margin-right: 8px; }

/* ============================================================
   PAGE HEADER (non-home pages)
   ============================================================ */
.page-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(140px, 20vh, 240px) var(--pad-x) clamp(60px, 10vh, 120px);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.ph-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: clamp(32px, 5vh, 56px);
}
.ph-eyebrow span:first-child {
  color: var(--blue-soft);
  font-variant-numeric: tabular-nums;
}
.ph-title {
  font-size: clamp(56px, 9vw, 156px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: clamp(24px, 3vh, 40px);
  text-wrap: balance;
}
.ph-title .italic { font-weight: 300; color: var(--ink-2); }
.ph-title .accent { color: var(--blue-soft); }
.ph-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 640px;
  font-weight: 300;
}

/* When portfolio appears as a teaser on home, tighten head */
.portfolio.teaser { padding-top: clamp(40px, 6vh, 80px); }
.portfolio.teaser .sec-head { margin-bottom: clamp(32px, 4vh, 56px); }

/* Top-padding adjustment: page-header already provides large top space,
   so the very first section on non-home pages does not need extra. */
.page-header + .portfolio,
.page-header + .products,
.page-header + .contact {
  padding-top: clamp(60px, 9vh, 120px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile { grid-column: span 1; }
  .tile.big { grid-column: span 2; aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 760px) {
  .nav { grid-template-columns: auto auto; padding: 16px 20px; gap: 12px; }
  .nav-links { display: none; }
  .reel-btn { width: 88px; height: 88px; top: 90px; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-cta { width: 100%; justify-content: space-between; }
  .ml-eyebrow, .sec-eyebrow { margin-bottom: 32px; }
  .cat-meta { grid-template-columns: 60px 1fr; }
  .cat-tally { grid-column: 2; text-align: left; font-size: 12px; }
  .rev-grid { grid-template-columns: 1fr; }
  .rev { padding: 36px 24px; }
  .prod-link { grid-template-columns: 40px 1fr; gap: 16px; padding: 24px 0; }
  .prod-link:hover { padding-left: 12px; padding-right: 12px; }
  .prod-price { grid-column: 2; text-align: left; flex-direction: row; gap: 12px; align-items: baseline; }
  .prod-arrow { grid-column: 2; justify-self: start; width: 40px; height: 40px; }
  .form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 24px; }
  .foot-row { flex-direction: column; align-items: flex-start; gap: 20px; }
}


/* ============================================================
   CATEGORY HERO VIDEO (one big featured film per portfolio section)
   ============================================================ */
.cat-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--rad-md);
  overflow: hidden;
  background: #050505;
  margin-bottom: 32px;
  cursor: pointer;
  border: 1px solid var(--line);
}
.cat-hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.cat-hero-vid.broken { display: none; }
.cat-hero .tile-fall { z-index: 1; }
.cat-hero::after {
  /* corner vignette so caption + mute button stay readable */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 30%),
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 25%);
}
.cat-hero-mute {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.cat-hero-mute:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.05);
}
.cat-hero-mute svg { display: block; }
.cat-hero-hint {
  position: absolute;
  left: 20px;
  bottom: 22px;
  z-index: 5;
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(244, 241, 236, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 11px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  pointer-events: none;
  opacity: 1;
  transition: opacity .35s ease;
}
.cat-hero.unmuted .cat-hero-hint { opacity: 0; }

/* Client cover film: hint sits BELOW the video (not overlaid) so it never
   covers the speaker button. Only shows once the film is playing. */
.client-film-hint {
  display: none;
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(244, 241, 236, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.client-stage .cover-hero.playing ~ .client-film-hint { display: block; }

/* ---- Cover hero: poster + centered play button (big client film) ---- */
.cover-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f4f1ec;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.cover-play svg { transform: translateX(2px); }
.cover-play:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translate(-50%, -50%) scale(1.06);
}
/* Until the film is playing, only the poster + play button show; once playing,
   the play button hides and the mute button + unmute hint appear. */
.cover-hero.playing .cover-play { display: none; }
/* ...but when the viewer pauses, bring the button back (now a play affordance) */
.cover-hero.paused .cover-play { display: grid; }
.cover-hero:not(.playing) .cat-hero-mute,
.cover-hero:not(.playing) .cat-hero-hint { display: none; }
@media (max-width: 700px) {
  .cover-play { width: 66px; height: 66px; }
  .cover-play svg { width: 28px; height: 28px; }
}

/* ---- YouTube-powered category hero (Hospitality) ---- */
/* Poster + centered play button + corner unmute, mirroring the native cover
   film. The YouTube iframe is sized to COVER the 21:9 frame (no pillarboxing)
   and ignores pointer events so the hero's own click/buttons drive playback. */
.yt-hero .yt-poster {
  position: absolute;
  inset: 0;
  z-index: 4;
  background-size: cover;
  background-position: center;
}
.yt-hero.playing .yt-poster { display: none; }
.yt-hero .yt-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  background: #050505;
}
/* Once playing, let the native YouTube controls (incl. volume) receive clicks. */
.yt-hero.playing .yt-cover { pointer-events: auto; }
.yt-hero .yt-cover iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 16 / 9;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

/* tile that uses a static cover image instead of a video (Hunting section) */
.tile-cover .tile-cover-img,
.tile-sm .tile-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.tile-cover .tile-cover-img.broken,
.tile-cover .tile-cover-img:not([src]),
.tile-sm .tile-cover-img.broken,
.tile-sm .tile-cover-img:not([src]) {
  display: none;
}

/* mobile */
@media (max-width: 700px) {
  .cat-hero { aspect-ratio: 16 / 10; margin-bottom: 24px; }
  .cat-hero-mute { width: 40px; height: 40px; right: 14px; bottom: 14px; }
  .cat-hero-mute svg { width: 18px; height: 18px; }
  .cat-hero-hint { font-size: 10px; left: 14px; bottom: 18px; padding: 5px 9px; }
}


/* ============================================================
   CLIENT DETAIL PAGE
   ============================================================ */
.client-header { padding-top: clamp(120px, 14vh, 200px); }
/* Tighten the empty black gap between the title and the video/content on
   every client page (all categories). */
.client-header { padding-bottom: clamp(20px, 3vh, 36px); }
.client-stage { padding-top: 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.back-link:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(255,255,255,0.04);
}
.arrow-back {
  display: inline-block;
  transition: transform .25s ease;
}
.back-link:hover .arrow-back { transform: translateX(-4px); }

.client-stage {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 4vh, 60px) var(--pad-x) clamp(40px, 8vh, 120px);
}
.client-stage .cat-hero {
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
}
/* The client cover film is a vertical 9:16 export — give it a portrait frame
   (centered, height-capped) so it isn't cropped into the wide hero shape. */
.client-stage .cover-hero {
  aspect-ratio: 9 / 16;
  width: min(calc(78vh * 9 / 16), 427px, 100%);
  height: auto;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .client-stage .cover-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
  }
}

/* ---- Film reel: N hero-sized portrait films in a horizontal scroll
   (e.g. Mo Bettah's) — each film is the same size as a single cover hero ---- */
.film-reel {
  display: flex;
  gap: clamp(14px, 1.8vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.film-reel::-webkit-scrollbar { height: 8px; }
.film-reel::-webkit-scrollbar-track { background: transparent; }
.film-reel::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.reel-film {
  position: relative;
  flex: 0 0 auto;
  width: min(calc(78vh * 9 / 16), 427px, 82vw);
  aspect-ratio: 9 / 16;
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: #0a0a0c;
  border: 1px solid var(--line);
  scroll-snap-align: center;
  cursor: pointer;
  transition: border-color .25s ease;
}
.reel-film:hover { border-color: var(--blue-deep); }
.reel-film .reel-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.reel-film .reel-vid.broken { display: none; }
.reel-film .tile-fall { z-index: 1; }
/* Reuse cover-play / cat-hero-mute styling; toggle visibility by play state */
.reel-film .cover-play { display: grid; }
.reel-film.playing .cover-play { display: none; }
.reel-film.paused .cover-play { display: grid; }
.reel-film .cat-hero-mute { display: none; }
.reel-film.playing .cat-hero-mute { display: grid; }
@media (max-width: 700px) {
  .reel-film { width: 82vw; }
}

/* Horizontal (16:9) client films — e.g. Via 313 — get a wide frame that fills
   the stage width, overriding the default portrait cover-hero shape. */
.client-stage .cover-hero.cover-landscape {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .client-stage .cover-hero.cover-landscape {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* ---- SPLIT TOP layout: portrait film on the left, a 2x3 photo grid on the
   right, both columns the same height (the film defines it; the grid stretches
   to match). Used by clients flagged `split` (e.g. Seven Brothers). ---- */
.client-split {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 3vw, 48px);
}
.client-split .cs-video {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Explicit pixel width (no collapsing `100%` term) so the column can center it. */
.client-split .cs-video .cover-hero { width: min(calc(78vh * 9 / 16), 427px); margin: 0; }
.client-split .cs-photos {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}
/* 2x3 grid of vertical (portrait) photos. Rows fill the film's height (1fr each);
   each photo keeps a 4:5 portrait shape and the columns auto-size to it, centered. */
.client-split .cs-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, 1fr);
  gap: clamp(8px, 0.9vw, 14px);
  justify-content: center;
}
.client-split .cs-photo {
  height: 100%;
  width: auto;
  aspect-ratio: 4 / 5;
  min-width: 0;
}
@media (max-width: 760px) {
  .client-split { flex-direction: column; align-items: center; }
  .client-split .cs-video { flex: 0 0 auto; }
  .client-split .cs-video .cover-hero { width: min(72vw, 360px); }
  .client-split .cs-photos { width: 100%; max-width: 420px; }
  .client-split .cs-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .client-split .cs-photo { height: auto; width: auto; aspect-ratio: 4 / 5; }
}

/* ---- LANDSCAPE SPLIT (e.g. Marquesas Corndogs): a horizontal 16:9 film on the
   left fitted whole within its frame, and a single row of 4 portrait photos on
   the right, matched to the film's height and evenly spaced. ---- */
.client-split-landscape .cs-video .cover-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
}
/* Fit the whole 16:9 video inside the 16:9 frame (no cropping). */
.client-split-landscape .cs-video .yt-cover { background: #000; }
.client-split-landscape .cs-video .yt-cover iframe {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}
.client-split-landscape .cs-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  width: 100%;
  gap: clamp(6px, 0.7vw, 12px);
}
.client-split-landscape .cs-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.client-split-landscape .cs-photo .gallery-img { object-fit: cover; }
@media (max-width: 760px) {
  .client-split-landscape .cs-video .cover-hero { width: 100%; max-width: 520px; aspect-ratio: 16 / 9; }
  .client-split-landscape .cs-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }
  .client-split-landscape .cs-photo { aspect-ratio: 4 / 5; }
}

/* ---- Photo lightbox: click a split-grid photo to view it enlarged ---- */
.photo-lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(24px, 5vh, 64px);
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .24s ease;
  cursor: zoom-out;
}
.photo-lightbox.open { opacity: 1; }
.photo-lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--rad-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(.96);
  transition: transform .26s cubic-bezier(.2,.7,.2,1);
  cursor: default;
}
.photo-lightbox.open img { transform: scale(1); }
.pl-close {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 28px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.pl-close:hover { background: rgba(255,255,255,0.14); }

.client-body {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(80px, 12vh, 160px);
}
/* Split (Seven Brothers) layout hides the gallery + clip grid, so the About
   block sits right above the CTA — trim its bottom padding to close the gap. */
.client-split-layout .client-body { padding-bottom: clamp(28px, 4vh, 56px); }
.cb-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 80px;
  padding-top: clamp(40px, 6vh, 80px);
  border-top: 1px solid var(--line);
}
.cb-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  font-family: var(--mono);
  margin-bottom: 24px;
}
.cb-copy {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  max-width: 640px;
}
.cb-r { display: flex; flex-direction: column; gap: 28px; }
.cb-stat { display: flex; flex-direction: column; gap: 6px; }
.cb-k {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-4);
  font-family: var(--mono);
}
.cb-v {
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
}

/* Wider copy column, stats pushed further right — used when the About copy is
   long and shouldn't take up extra vertical room. */
.client-wide-copy .cb-grid { grid-template-columns: 3.4fr 1fr; gap: 130px; align-items: center; }
.client-wide-copy .cb-copy { max-width: none; }

@media (max-width: 800px) {
  .cb-grid { grid-template-columns: 1fr; gap: 40px; }
  .client-wide-copy .cb-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ============================================================
   CLIENT — PHOTO GALLERY (horizontal scroll) + CLIP GRID
   ============================================================ */
.client-gallery,
.client-clips {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(60px, 9vh, 120px);
}
.cg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.cg-head .cb-eyebrow { margin-bottom: 0; }
.cg-hint {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--ink-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* horizontal photo slider — reuses the tile-row scroll affordance */
.gallery-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  margin: 0 calc(var(--pad-x) * -1);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  scrollbar-width: thin;
}
.gallery-row::-webkit-scrollbar { height: 8px; }
.gallery-row::-webkit-scrollbar-thumb { background: #1c1f25; border-radius: 8px; }

.gallery-photo {
  position: relative;
  flex: 0 0 auto;
  width: clamp(195px, 24vw, 315px);
  aspect-ratio: 4 / 5;
  border-radius: var(--rad-md);
  overflow: hidden;
  scroll-snap-align: start;
  background: #0a0a0c;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .25s ease;
}
.gallery-photo:hover { transform: translateY(-3px); border-color: var(--blue-deep); }
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.gallery-img.broken,
.gallery-img:not([src]) { display: none; }
.gallery-photo .tile-fall { z-index: 1; }

/* UGC video reel — vertical (9:16) click-to-play tiles in the scroll row */
.gallery-video {
  position: relative;
  flex: 0 0 auto;
  width: clamp(176px, 21vw, 260px);
  aspect-ratio: 9 / 16;
  border-radius: var(--rad-md);
  overflow: hidden;
  scroll-snap-align: start;
  background: #0a0a0c;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .25s ease;
}
.gallery-video:hover { transform: translateY(-3px); border-color: var(--blue-deep); }
.gallery-video .ugc-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.gallery-video .ugc-vid.broken { display: none; }
.gallery-video .tile-fall { z-index: 1; }
/* Centered play button — hidden while the clip is playing */
.ugc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f4f1ec;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.ugc-play svg { transform: translateX(1px); }
.ugc-play:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translate(-50%, -50%) scale(1.06);
}
.gallery-video.playing .ugc-play { display: none; }
.gallery-video.paused .ugc-play { display: grid; }

/* ---- Featured Work: auto-scroll marquee (reuses .gallery-video tiles) ---- */
.client-featured {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(60px, 9vh, 120px);
}
/* Disable scroll-snap on the marquee row so JS auto-advance glides smoothly. */
.fw-row { scroll-snap-type: none; scroll-behavior: auto; overflow-anchor: none; }
.fw-row .gallery-video { scroll-snap-align: none; }
/* Featured-at-top layout (e.g. G2G): no hero film, bigger tiles for easier scanning */
.client-featured.fw-top { padding-top: clamp(48px, 6vh, 88px); margin-top: 0; }
.client-featured.fw-top .fw-row .gallery-video { width: clamp(240px, 30vw, 380px); }
/* Bigger, bolder "Featured Work" heading; "— Scroll to View" stays small, centered */
.client-featured.fw-top .cb-eyebrow {
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 900;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--ink, #fff);
  display: flex;
  align-items: center;
  gap: 0;
}
.client-featured.fw-top .cb-eyebrow .fw-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-left: 12px;
}

/* video clip grid — 3 across on desktop, fills as many rows as needed */
.clip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 75%;
}
.clip {
  position: relative;
  cursor: pointer;
  aspect-ratio: 9 / 16;
  border-radius: var(--rad-md);
  overflow: hidden;
  background: #0a0a0c;
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .25s ease;
}
.clip:hover { transform: translateY(-3px); border-color: var(--blue-deep); }

/* horizontal hover-to-play clip reel — mirrors the Photography scroll row */
.clip-grid.clip-scroll {
  display: flex;
  grid-template-columns: none;
  gap: 14px;
  max-width: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  margin: 0 calc(var(--pad-x) * -1);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  scrollbar-width: thin;
}
.clip-grid.clip-scroll::-webkit-scrollbar { height: 8px; }
.clip-grid.clip-scroll::-webkit-scrollbar-thumb { background: #1c1f25; border-radius: 8px; }
.clip-grid.clip-scroll .clip {
  flex: 0 0 auto;
  width: clamp(195px, 24vw, 315px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
}
@media (max-width: 760px) {
  .clip-grid.clip-scroll .clip { width: 54vw; }
}

.clip-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.clip-vid.broken { display: none; }
.clip .tile-fall { z-index: 1; }

/* 6-across variant (e.g. Chip Cookie's 46-clip grid) */
.clip-grid.clips-6 {
  grid-template-columns: repeat(6, 1fr);
  max-width: 100%;
  gap: 10px;
}

/* 7-across variant (e.g. Cafe Zupas' 35-clip grid) */
.clip-grid.clips-7 {
  grid-template-columns: repeat(7, 1fr);
  max-width: 100%;
  gap: 10px;
}

/* small unmute speaker toggle in each clip corner */
.clip-mute {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: translateY(4px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}
.clip:hover .clip-mute,
.clip.playing .clip-mute,
.clip-mute[data-state="on"] { opacity: 1; transform: translateY(0); }
.clip-mute:hover { background: var(--blue); border-color: var(--blue); }
.clip-mute[data-state="on"] { background: var(--blue); border-color: var(--blue); }
.clip-mute svg { display: block; }

/* centered play button for click-to-play grids (no hover preview) */
.clip-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(10,11,13,0.5);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease, opacity .25s ease;
}
.clip-play:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.06); }
.clip-play svg { display: block; margin-left: 2px; }
.clip.playing .clip-play { opacity: 0; pointer-events: none; }

@media (max-width: 680px) {
  .clip-grid.clips-6 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .clip-grid.clips-7 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
@media (min-width: 681px) and (max-width: 1100px) {
  .clip-grid.clips-7 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px) {
  .gallery-photo { width: 54vw; }
  .gallery-video { width: 46vw; }
  .clip-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 100%; }
}

/* ============================================================
   MIZU POOL COVERS — bespoke client layout
   ============================================================ */
/* Tighter About: wider copy column, stats pushed right, less vertical room */
.client-mizu .client-body { padding-bottom: clamp(40px, 6vh, 80px); }
.client-mizu .cb-grid { grid-template-columns: 2.5fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.client-mizu .cb-copy { font-size: clamp(16px, 1.35vw, 21px); line-height: 1.6; max-width: 880px; }
.client-mizu .cb-r { flex-direction: row; flex-wrap: wrap; gap: 36px; }
@media (max-width: 800px) { .client-mizu .cb-r { gap: 26px; } }

/* Section headers — bigger than the eyebrow, roughly a third of the page title */
.mz-section { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x) clamp(48px, 7vh, 100px); }
.mz-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.mz-title { font-family: var(--hero-font); font-size: clamp(28px, 3.4vw, 46px); font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; color: var(--ink); }

/* Featured videos (top) — landscape YouTube tiles in a horizontal scroller */
.mz-featured { max-width: var(--maxw); margin: 0 auto; padding: clamp(16px, 2.5vh, 36px) var(--pad-x) clamp(36px, 5vh, 72px); }
.fv-row {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: 14px; margin: 0 calc(var(--pad-x) * -1);
  padding-left: var(--pad-x); padding-right: var(--pad-x); scrollbar-width: thin;
}
.fv-row::-webkit-scrollbar { height: 8px; }
.fv-row::-webkit-scrollbar-thumb { background: #1c1f25; border-radius: 8px; }
.fv-tile {
  position: relative; flex: 0 0 auto;
  width: clamp(220px, 28vw, 332px); aspect-ratio: 9 / 16;
  border-radius: var(--rad-md); overflow: hidden; scroll-snap-align: start;
  background: #0a0a0c; border: 1px solid var(--line); cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .25s ease;
}
.fv-tile:hover { transform: translateY(-3px); border-color: var(--blue-deep); }
/* Landscape (16:9) variant — used by the client YouTube video scroller. */
.fv-tile.land { aspect-ratio: 16 / 9; width: clamp(320px, 58vw, 720px); }
.fv-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; display: block; }
.fv-mount { position: absolute; inset: 0; z-index: 3; }
.fv-mount iframe { width: 100%; height: 100%; display: block; }
/* YouTube tiles (Featured row + Shorts reels): make the player COVER the 9:16
   rectangle (crop the letterbox bars) so the clip fills the tile instead of
   sitting in a black box, whether the source is vertical or landscape. Scoped
   to YouTube tiles — Vimeo (.fv-vimeo) and self-hosted (.fv-local) keep their
   own sizing. */
.fv-tile:not(.fv-vimeo):not(.fv-local) .fv-mount { overflow: hidden; }
.fv-tile:not(.fv-vimeo):not(.fv-local) .fv-mount iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: auto; height: 100%; aspect-ratio: 16 / 9; min-width: 100%;
}
.fv-tile:not(.playing) .fv-mount { display: none; }
.fv-tile.playing .fv-poster, .fv-tile.playing .fv-play { display: none; }
.fv-tile.fv-local.playing .mv-play { display: none; }
.fv-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.25); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.fv-play svg { transform: translateX(1px); }
.fv-tile:hover .fv-play { background: var(--blue); border-color: var(--blue); transform: translate(-50%, -50%) scale(1.06); }
/* Expand button on YouTube-backed fv-tiles (bottom-left) — only shows once
   the viewer has pressed play; opens the clip enlarged in its own lightbox. */
.fv-expand {
  position: absolute; left: 10px; bottom: 10px; z-index: 5;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.18); color: #fff;
  cursor: pointer; display: none; place-items: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.fv-tile.playing .fv-expand { display: grid; }
.fv-expand:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.05); }
.fv-expand svg { display: block; }
.fv-ph { position: absolute; inset: 0; z-index: 4; display: grid; place-items: center; padding: 0 24px; text-align: center; }
.fv-ph span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,0.62); }

/* Section reels — vertical (9:16) click-to-play tiles; start muted + unmute */
.mv-tile {
  position: relative; flex: 0 0 auto;
  width: clamp(176px, 21vw, 260px); aspect-ratio: 9 / 16;
  border-radius: var(--rad-md); overflow: hidden; scroll-snap-align: start;
  background: #0a0a0c; border: 1px solid var(--line); cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .25s ease;
}
.mv-tile.land { width: clamp(300px, 40vw, 460px); aspect-ratio: 16 / 9; }
.mv-tile:hover { transform: translateY(-3px); border-color: var(--blue-deep); }
.mv-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; display: block; }
.mv-tile .tile-fall { z-index: 1; }
.mv-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.25); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.mv-play svg { transform: translateX(1px); }
.mv-tile:hover .mv-play { background: var(--blue); border-color: var(--blue); transform: translate(-50%, -50%) scale(1.06); }
.mv-tile.playing .mv-play { display: none; }
.mv-mute {
  position: absolute; right: 10px; bottom: 10px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.18); color: var(--ink);
  cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.mv-mute:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.05); }
.mv-mute svg { display: block; }
.mv-expand {
  position: absolute; right: 10px; top: 10px; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.18); color: var(--ink);
  cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.mv-expand:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.05); }
.mv-expand svg { display: block; }

/* Expand button on grid clips (bottom-left) — opens the clip enlarged in a lightbox.
   Only appears once the viewer has clicked play (hidden on the resting poster). */
.clip-expand {
  position: absolute; left: 10px; bottom: 10px; z-index: 5;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.18); color: var(--ink);
  cursor: pointer; display: none; place-items: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.clip.playing .clip-expand { display: grid; }
.clip-expand:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.05); }
.clip-expand svg { display: block; }

/* Video lightbox (expand a section clip) */
.video-lightbox { cursor: zoom-out; }
.video-lightbox .vl-vid {
  max-width: 92vw; max-height: 70vh;
  border-radius: var(--rad-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: #000;
  transform: scale(.96);
  transition: transform .26s cubic-bezier(.2,.7,.2,1);
  cursor: default;
}
.video-lightbox.open .vl-vid { transform: scale(1); }
/* YouTube iframe variant of the video lightbox (fv-expand tiles): iframes have
   no intrinsic size, so give it an explicit portrait aspect ratio. */
.yt-vl { width: auto; height: 70vh; max-width: 92vw; aspect-ratio: 9 / 16; border: none; }
@media (max-width: 760px) {
  .mv-tile { width: 46vw; }
  .mv-tile.land { width: 82vw; }
  .fv-tile { width: 60vw; }
  .fv-tile.land { width: 88vw; }
  .client-mizu .cb-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ============================================================
   HOTEL VITZNAUERHOF — photography + aerial clip library
   ============================================================ */
/* Auto-scroll rows: kill scroll-snap so the JS drift glides smoothly. */
.vz-row { scroll-snap-type: none; scroll-behavior: auto; }
.vz-row .gallery-photo,
.vz-row .gallery-video { scroll-snap-align: none; }

.vz-photos,
.vz-clips {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(48px, 7vh, 100px);
}
.vz-photos { padding-top: clamp(20px, 4vh, 48px); }

/* Photography sits at the very top — give it a touch more presence. */
.vz-photo { width: clamp(210px, 25vw, 330px); }
.vz-photo.land { width: clamp(340px, 42vw, 560px); aspect-ratio: 16 / 9; }
/* Landscape photo shown un-cropped: tile keeps the portrait tiles' height and
   widens to the image's own aspect ratio (no crop). */
.vz-photo.wide {
  width: auto;
  height: calc(clamp(210px, 25vw, 330px) * 1.25);
  aspect-ratio: var(--ar, 3 / 2);
}
.vz-photo.wide .gallery-img { object-fit: cover; }

/* Aerial clip tile — expand button top-right (no mute; clips are silent). */
.vz-clip { width: clamp(188px, 22vw, 280px); }
.vz-clip.land { width: clamp(340px, 42vw, 560px); aspect-ratio: 16 / 9; }
.vz-clip .vz-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.vz-clip .vz-vid.broken { display: none; }
.vz-clip .tile-fall { z-index: 1; }
/* YouTube lead tile inside the Videos row — cover the 9:16 tile like a clip. */
.vz-yt .vz-yt-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; display: block; }
.vz-yt .vz-yt-mount { position: absolute; inset: 0; z-index: 3; overflow: hidden; }
.vz-yt .vz-yt-mount iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: auto; height: 100%; aspect-ratio: 16 / 9; min-width: 100%; display: block; }
.vz-yt:not(.playing) .vz-yt-mount { display: none; }
.vz-yt.playing .vz-yt-poster, .vz-yt.playing .vz-play { display: none; }
.vz-expand {
  position: absolute; right: 10px; top: 10px; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.5);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #f4f1ec; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.vz-expand:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.05); }
.vz-expand svg { display: block; }

/* Section titles (Photography / About the Project / Aerial Clip Library) sized
   to ~35% of the hero name, in the hero font so they read as headings. */
.client-vitznau .cb-eyebrow {
  font-family: var(--hero-font);
  font-size: clamp(20px, 3.15vw, 55px);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: clamp(18px, 2.4vh, 32px);
}
.client-vitznau .cg-head { align-items: flex-end; }
.client-vitznau .cg-head .cb-eyebrow { margin-bottom: 0; }

/* Compact About block: smaller copy, less vertical space, stats pushed right. */
.client-vitznau .client-body { padding-bottom: clamp(40px, 7vh, 90px); }
.client-vitznau .cb-grid {
  grid-template-columns: 1.85fr 0.7fr;
  gap: clamp(48px, 7vw, 110px);
  padding-top: clamp(28px, 4vh, 52px);
  align-items: start;
}
.client-vitznau .cb-copy {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  max-width: 760px;
}
.client-vitznau .cb-r { gap: 20px; }

/* Lightbox sized to roughly half the screen. */
.half-lightbox img { max-width: 50vw; max-height: 70vh; }
.half-lightbox .vl-vid { max-width: 60vw; max-height: 70vh; }
@media (max-width: 900px) {
  .half-lightbox img { max-width: 88vw; max-height: 70vh; }
  .half-lightbox .vl-vid { max-width: 92vw; max-height: 64vh; }
  .client-vitznau .cb-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================================================
   PREV / NEXT restaurant nav — thin circle-arrows on the edges
   =========================================================== */
.sib-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sib-nav.sib-awake { opacity: 0.85; }
.sib-nav:hover { opacity: 1; }
.sib-nav-prev { left: clamp(8px, 1.1vw, 16px); flex-direction: row; }
.sib-nav-next { right: clamp(8px, 1.1vw, 16px); flex-direction: row-reverse; }

.sib-circle {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.sib-circle svg { width: 22px; height: 22px; }
.sib-circle svg path { transition: stroke-width 0.22s ease; stroke-width: 1.2; }

.sib-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #fff;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateX(var(--sib-label-shift, -6px));
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.sib-nav-next .sib-label { --sib-label-shift: 6px; }

.sib-nav:hover .sib-circle {
  border-color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
  background: rgba(20, 20, 20, 0.45);
  transform: scale(1.04);
}
.sib-nav:hover .sib-circle svg path { stroke-width: 2.4; }
.sib-nav:hover .sib-label { opacity: 1; transform: translateX(0); }

@media (max-width: 760px) {
  .sib-label { display: none; }
  .sib-nav-prev { left: 10px; }
  .sib-nav-next { right: 10px; }
  .sib-circle { width: 40px; height: 40px; }
}