/* =====================================================
   BEAR HILL STUDIOS — Design System V2
   ===================================================== */
:root {
  /* ── Palette (Figma V2) ── */
  --dark-white: #f9f4ec; /* primary text on dark, near-white */
  --light-black: #211e1a; /* warm near-black, base background */
  --red: #cf2a0a; /* primary accent */
  --cream: #f6ebda; /* player labels, secondary warm white */

  /* ── Player accent colours ── */
  --blue: #6aaab8; /* Narration demos */
  --yellow: #d49000; /* Commercial / Technical demos */

  /* ── Alpha tints ── */
  --cream-50: rgba(246, 235, 218, 0.5);
  --cream-20: rgba(246, 235, 218, 0.2);
  --lb-50: rgba(33, 30, 26, 0.5);

  /* ── Legacy aliases (keep for backward compat during rebuild) ── */
  --true-black: #000000;
  --black: var(--light-black);
  --tan: #e9cc9c;
  --charcoal: var(--light-black);
  --forest: var(--light-black);
  --forest-mid: var(--light-black);
  --text: var(--light-black);
  --muted: rgba(249, 244, 236, 0.5);

  /* ── Theme tokens — single theme, red accent ── */
  --c1: var(--red);
  --c1t: var(--cream);
  --c2: var(--blue);
  --c2t: var(--dark-white);
  --c3: var(--yellow);
  --c3t: var(--light-black);

  /* ── Type ── */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", Helvetica, sans-serif;

  /* ── Spacing tokens (Figma) ── */
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 40px;
  --sp-2xl: 64px;

  /* ── Layout tokens (Figma) ── */
  --text-desc-w: 520px;

  /* ── Motion ── */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 17px;
}
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  cursor: pointer;
}
button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* =====================================================
   NAV  (V2 — 128px tall, 64px gutters)
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 128px;
  padding: 0 64px;
  color: var(--dark-white);
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(33, 30, 26, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
/* Top scrim — gradient from the top of the page fading out just below the nav
   text, so links stay legible over a bright hero photo when not scrolled.
   Fades away once the scrolled nav background takes over. */
.nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.4s;
}
.nav.scrolled::before {
  opacity: 0;
}
/* While the mobile overlay is open the nav must NOT keep backdrop-filter: it
   would become the containing block for the fixed .nav-menu and collapse the
   full-screen overlay to the nav's height. (The overlay covers the bar anyway.) */
.nav.menu-open {
  backdrop-filter: none;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  width: 72px;
  height: 72px;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--sans);
  font-size: 12.8px;
  font-weight: 500;
  letter-spacing: 2.688px;
  text-transform: uppercase;
  color: var(--dark-white);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.2s;
  background: none;
  border: none;
  opacity: 0.65;
}
.nav-link:hover,
.nav-link.active {
  opacity: 1;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
}
.nav-cta {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.46px;
  text-transform: uppercase;
  padding: 0 24px;
  height: 40px;
  border: 1px solid var(--cream-50);
  border-radius: 100px;
  color: var(--dark-white);
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  border-color: var(--dark-white);
  background: var(--dark-white);
  color: var(--light-black);
}

/* ===== MOBILE NAV (hamburger) ===== */
/* Desktop: wrapper is transparent to layout — links + CTA flow as direct
   flex children of .nav exactly as before. */
.nav-menu {
  display: contents;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark-white);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

@media (max-width: 900px) {
  .nav {
    height: 88px;
    padding: 0 24px;
  }
  .nav::before {
    height: 220px;
  }
  .logo {
    position: relative;
    z-index: 101;
  }
  .logo-img {
    width: 54px;
    height: 54px;
  }
  .nav-toggle {
    display: flex;
  }

  /* Links + CTA become a full-screen overlay, slid up out of view until open */
  .nav-menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    background: rgba(26, 23, 20, 0.77);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.45s ease,
      opacity 0.3s ease;
  }
  .nav.menu-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    flex: none;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .nav-link {
    font-size: 15px;
    opacity: 0.85;
  }
  .nav-cta {
    height: 48px;
    padding: 0 28px;
    font-size: 12px;
  }

  /* hamburger morphs into an X when open */
  .nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}

/* =====================================================
   PAGE CANVAS LAYER STACK
   Shared by every interior page. Set --photo-img / --photo-pos / --blur-img
   inline on .page-canvas per page — see CLAUDE.md "Page layer stack".
   Bottom to top: light-black > photo > vignette > blur > content.
   ===================================================== */
.page-canvas {
  position: relative;
  background: var(--light-black);
  overflow: hidden;
}
.page-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-image: var(--photo-img);
  background-size: cover;
  background-position: var(--photo-pos, center);
  pointer-events: none;
}
.page-vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 57.9%,
    var(--light-black) 98.33%
  );
  pointer-events: none;
}
.page-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: var(--blur-img);
  background-size: cover;
  background-position: center top;
  opacity: 0.3;
  mix-blend-mode: lighten;
  pointer-events: none;
  will-change: transform;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}

/* Shared 780px hero content column — work/laura/production. Home uses its
   own wider .hero-v2-content (1160px, different child layout). Blob size
   varies per page via --blob-blur / --blob-radius set inline on .hero-content. */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 220px 64px 100px;
}
@media (max-width: 620px) {
  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.7);
  filter: blur(var(--blob-blur, 50px));
  border-radius: var(--blob-radius, 120px);
  inset: 150px 0 40px 0;
}
.hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dark-white);
  margin: 0 0 32px;
}
.hero-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-white);
  max-width: 560px;
  margin: 0 0 16px;
}
.hero-body:last-child {
  margin-bottom: 0;
}

/* Shared 1160px hero content column — home/laura. Used when the hero carries
   a large circular player below the copy (.hero-v2-player). Blob alpha/blur/
   radius vary per page via --blob-alpha / --blob-blur / --blob-radius set
   inline on .hero-v2-content (defaults match home). */
.hero-v2-content {
  position: relative;
  z-index: -1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 64px;
  padding-top: 220px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 620px) {
  .hero-v2-content {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.hero-v2-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: rgba(0, 0, 0, var(--blob-alpha, 0.7));
  filter: blur(var(--blob-blur, 50px));
  border-radius: var(--blob-radius, 120px);
  inset: 150px 0 300px 0; /* large bottom inset stops the blob above the audio player (player+gap+padding ≈ 330px) */
}
.hero-v2-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(4rem, 7.3vw, 8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dark-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
}
.hero-v2-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 40px;
  color: var(--dark-white);
  max-width: 660px;
  margin: 0;
}
.hero-v2-body + .hero-v2-body {
  margin-top: 0;
}
.hero-v2-player {
  margin-top: 16px;
}

.hero-scroll {
  position: fixed;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.hero-scroll-arrow {
  width: 13px;
  height: 13px;
  border-right: 1.5px solid var(--cream-50);
  border-bottom: 1.5px solid var(--cream-50);
  transform: rotate(45deg);
  animation: scrollArrow 2.2s ease-in-out infinite;
}
@keyframes scrollArrow {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 0.7;
  }
}
/* Scroll cue is a desktop affordance; on small screens content flows past
   the fold naturally and touch users scroll instinctively. */
@media (max-width: 620px) {
  .hero-scroll {
    display: none;
  }
}

/* =====================================================
   CIRCULAR AUDIO PLAYER
   ===================================================== */
.player {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* ring SVG extends 12px below .player-inner; 12+8 = 20px gives 8px visual gap (--spacing/sm) from ring edge to time */
  cursor: pointer;
}
.player-inner {
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.25s var(--ease);
  user-select: none;
}
.player-inner:hover {
  transform: scale(1.06);
}
.player-ring {
  position: absolute;
  inset: -9px;
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  pointer-events: none;
  overflow: visible;
}
.r-bg {
  fill: none;
  opacity: 0.25;
  stroke-width: 3;
}
.r-prog {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 0.3s linear;
}
.player-icon {
  transition: transform 0.15s;
}
.player-inner:hover .player-icon {
  transform: scale(1.1);
}

/* Large hero player */
.player-lg .player-inner {
  width: 148px;
  height: 148px;
}
.player-lg .player-inner-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  max-width: 80px;
  margin-top: 0.2rem;
}
.player-time {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-family: var(--sans);
}
.player--dark .player-time {
  color: oklch(55% 0.01 80);
}
/* Medium — work cards */
.player-md .player-inner {
  width: 76px;
  height: 76px;
}
/* Work-page players — 100px (matches Figma Pages/Work) */
.player-wk .player-inner {
  width: 100px;
  height: 100px;
}
/* Small — reel cards */
.player-sm .player-inner {
  width: 64px;
  height: 64px;
}

/* =====================================================
   LAYOUT PRIMITIVES
   ===================================================== */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.wrap-n {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}

/* =====================================================
   V2 SHARED COMPONENTS
   ===================================================== */

/* ── Work/voice-demo list wrapper — transparent, content only (layer 5) ── */
.wi-section {
  position: relative;
  z-index: 1;
  padding: 0 0 80px;
}

/* ── Work item list ── */
.wi-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Work item wrapper — all three component types use this ──
   py=40px, gap=8px, full-width hairline BETWEEN items only */
.wi {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.wi + .wi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--cream-20);
  transform: translateX(-50%);
}

/* ── Eyebrows ── */
.wi-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}
/* Audiobook / Audio no Image eyebrow */
.wi-eyebrow--audio {
  font-weight: 300;
  font-size: 10.7px;
  letter-spacing: 0.643px;
}

/* ── Common text elements ── */
.wi-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dark-white);
  margin: 0;
}
.wi-subtitle {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12.8px;
  color: var(--dark-white);
  margin: 0;
}
.wi-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--dark-white);
  max-width: var(--text-desc-w);
  margin: 0;
  padding: 8px 0;
}

/* ════════════════════════════════════════════
   WORK ITEM COMPONENTS — three variants, shared base
   1. Video / Interactive  — .wi-media-row > .wi-video-col + .wi-copy-col
   2. Audiobook with Cover — .wi-media-row > .wi-cover    + .wi-copy-col
   3. Audio no Image       — .wi-title-group + .wi-player-row (no media row)
   ════════════════════════════════════════════ */

/* Title group — variants 1, 2, 3 */
.wi-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Media row — variants 1 and 2 */
.wi-media-row {
  display: flex;
  align-items: flex-start;
  padding: var(--sp-lg) 0;
}

/* Left col: video thumbnail — variant 1 */
.wi-video-col {
  flex-shrink: 0;
  width: 274px;
  margin-right: var(--sp-lg);
}
.wi-yt-thumb {
  display: block;
  position: relative;
  width: 274px;
  height: 191px;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: #000;
  text-decoration: none;
}
.wi-yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s;
}
.wi-yt-thumb:hover img {
  opacity: 0.8;
}
.wi-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(246, 235, 218, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(246, 235, 218, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s var(--ease),
    background 0.2s;
  pointer-events: none;
}
.wi-yt-thumb:hover .wi-yt-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(246, 235, 218, 0.25);
}
.wi-yt-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 10.7px;
  font-weight: 500;
  letter-spacing: 0.856px;
  text-transform: uppercase;
  color: var(--cream-50);
  text-decoration: none;
  transition: color 0.2s;
}
.wi-yt-link:hover {
  color: var(--dark-white);
}

/* Left col: cover image — variant 2 */
.wi-cover {
  width: 173px;
  height: 173px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: var(--sp-lg);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
}
.wi-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right col: body copy (+ streaming icons for variant 2) — variants 1 and 2 */
.wi-copy-col {
  flex: 1;
  min-width: 0;
  padding-right: var(--sp-lg);
  display: flex;
  flex-direction: column;
  height: 173px;
}
.wi-copy-col .wi-body {
  flex: 1;
  padding: 0;
}
.wi-copy-col .wi-streaming {
  margin-top: auto;
}

/* Streaming icons — variant 2 */
.wi-streaming {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  padding: 0 7px;
}
.wi-stream-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  opacity: 0.55;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.wi-stream-icon:hover {
  opacity: 1;
}
.wi-stream-icon img {
  width: 36px;
  height: 36px;
  display: block;
}

/* ── Narrow / mobile: stack the media row — cover (or video thumbnail) on top,
   body copy + streaming links below it (Figma "Audiobook with Cover/Mobile"). ── */
@media (max-width: 620px) {
  .wi-list,
  .wi-list--narrow {
    padding: 0 24px;
  }
  .wi-media-row {
    flex-direction: column;
    gap: var(--sp-md);
  }
  .wi-cover,
  .wi-video-col {
    margin-right: 0;
  }
  /* Video item keeps thumbnail + watch-link grouped in .wi-video-col (so the
     column stacks thumbnail → watch-link), with the body copy below it. */
  .wi-video-col {
    width: 100%;
    max-width: 274px;
  }
  .wi-yt-thumb {
    width: 100%;
    max-width: 274px;
    height: auto;
    aspect-ratio: 274 / 191;
  }
  .wi-copy-col {
    height: auto;
    width: 100%;
    padding-right: 0;
    gap: var(--sp-md);
  }
  .wi-copy-col .wi-body {
    flex: none;
  }
  .wi-copy-col .wi-streaming {
    margin-top: 0;
  }
}

/* ── Large Video work item (Component 4) — full-width stacked with 16:9 embed ── */
.wi-large-video {
  padding: var(--sp-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  position: relative;
}
.wi-large-video + .wi-large-video::before,
.wi-large-video + .wi::before,
.wi + .wi-large-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--cream-20);
  transform: translateX(-50%);
}
/* Full-width 16:9 YouTube embed */
.wi-yt-full {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 4px;
}
.wi-yt-full iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* Watch on YouTube link */
.wi-yt-watch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dark-white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}
.wi-yt-watch:hover {
  color: var(--cream);
}

/* Player row — variants 2 and 3 */
.wi-player-row {
  padding: var(--sp-lg) 0;
}
.wi-player {
  display: inline-grid;
  grid-template-columns: repeat(2, fit-content(100%));
  grid-template-rows: repeat(2, fit-content(100%));
  gap: 8px;
}
.wi-player-meta {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wi-player-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.7px;
  letter-spacing: 0.856px;
  text-transform: uppercase;
  color: var(--dark-white);
}
.wi-player-dl {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.7px;
  letter-spacing: 0.856px;
  text-transform: uppercase;
  color: var(--cream-50);
  text-decoration: none;
  transition: color 0.2s;
}
.wi-player-dl:hover {
  color: var(--dark-white);
}

/* ── CTA band (shared: home, work, laura, production) ── */
.cta-v2 {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  text-align: center;
}
.cta-v2-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--dark-white);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.cta-v2-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--cream-50);
  max-width: 460px;
  margin: 0 auto 40px;
}

/* CTA Button — Figma UI/Button (200×48 pill, cream outline) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 48px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--cream);
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  /* reset browser <button> defaults */
  padding: 0;
  appearance: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-cta:hover {
  background: var(--cream);
  color: var(--black);
}

/* Under-construction stub pages (about, contact) */
.uc-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 128px 2rem 128px;
  background: var(--light-black);
}
.uc-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-50);
  margin-bottom: 2rem;
}
.uc-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--dark-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.uc-body {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--cream-50);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* Footer V2 — Figma Layout/Footer (3-col, 128px tall)
   Left: bear icon + copyright  |  spacer  |  nav links  */
.footer {
  background: var(--light-black);
  padding: 0;
  border-top: none;
}
.footer-v2 {
  display: flex;
  align-items: center;
  height: 128px;
  padding: 0 64px;
}
.footer-v2-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.footer-v2-brand img {
  width: 24px;
  height: 24px;
  display: block;
}
.footer-v2-copyright {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11.1px;
  color: rgba(246, 235, 218, 0.5);
  white-space: nowrap;
}
.footer-v2-spacer {
  flex: 1;
}
.footer-v2-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.footer-v2-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.8px;
  color: rgba(246, 235, 218, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.024px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: color 0.2s;
}
.footer-v2-link:hover {
  color: var(--cream);
}
.footer-v2-link--active::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--red);
}

@media (max-width: 620px) {
  .footer-v2-nav {
    display: none;
  }
}

/* ── Section heading — Cormorant italic, shared across pages ── */
.section-heading {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  color: var(--dark-white);
  margin: 0 0 var(--sp-xl);
}

/* ── Narrow work-item list — 780px column (Laura voice demos) ── */
.wi-list--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Player subtitle — descriptor line inside .wi-player-meta ── */
.wi-player-subtitle {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11.1px;
  color: var(--cream-50);
  margin: 2px 0 0;
}
