/* ===========================================
   NAV — sparse, cinematic, right-aligned links
   =========================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .3s ease, backdrop-filter .3s ease;
}
.nav.nav--scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  width: min(1440px, 94%);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
}
.nav-brand { display: flex; align-items: center; gap: 0.55rem; }
.nav-icon { width: 28px; height: 28px; object-fit: contain; opacity: 0.95; }
.nav-wordmark {
  font-family: var(--font-body);
  font-weight: 600; letter-spacing: 0.28em;
  color: rgba(251, 250, 246, 0.85);
  font-size: 0.72rem;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(251, 250, 246, 0.78);
  letter-spacing: 0.02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(251, 250, 246, 0.22);
  border-radius: var(--radius-pill);
  color: var(--cream) !important;
  font-weight: 500 !important;
  font-size: 0.8rem !important;
  transition: all .2s;
  background: rgba(251, 250, 246, 0.04);
}
.nav-cta:hover {
  background: var(--purple-lav);
  color: var(--purple-deep) !important;
  border-color: var(--purple-lav);
}
.nav-toggle {
  display: none;
  background: transparent; border: 0;
  padding: 0.5rem; gap: 4px;
  flex-direction: column; align-items: center;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--cream);
}

/* ===========================================
   HERO — Mill-inspired, fence-textured
   Massive editorial serif bottom-left,
   tiny centered mark, pill CTAs bottom-right.
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--cream);
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/textures/fence_hero.jpg') center/cover no-repeat, var(--purple-deep);
  filter: brightness(0.78) contrast(1.1) saturate(1.15);
}
/* Ambient hero video (SHEDAMATION) — sits above fence-bg, below vignette/scrims */
.hero-video {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.is-visible { opacity: 1; }
/* Brand end-card sits at same z-layer as video; fence texture shows through via hero-bg (z 0) */
/* Logo pinned high (32% from top) so it clears the bottom-left 'Stories Grow Brands' headline */
.hero-endcard {
  position: absolute; inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(12vh + 48px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
@media (max-width: 720px) {
  .hero-endcard { padding-top: calc(9vh + 36px); }
}
.hero-endcard.is-visible { opacity: 1; }
.hero-endcard-logo {
  width: clamp(320px, 42vw, 620px);
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
}
.hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 based on width */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 based on height (covers when viewport is tall) */
  transform: translate(-50%, -50%);
  border: 0;
}
/* Brand-tint wash sits above the ambient video, below vignette/scrims */
.hero-video::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74, 47, 138, 0.32) 0%, rgba(5, 5, 5, 0.28) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-bg::after {
  /* deepen the purple base and add richness */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(90,73,173,0.22) 0%, transparent 60%),
    linear-gradient(180deg, rgba(58,40,90,0.35) 0%, rgba(5,5,5,0.10) 45%, rgba(58,40,90,0.40) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(5,5,5,0) 42%, rgba(5,5,5,0.28) 78%, rgba(5,5,5,0.55) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.35) 0%, transparent 22%, transparent 68%, rgba(5,5,5,0.55) 100%);
}
/* legibility scrims BEHIND the serif headline and pills only */
.hero-scrim-serif {
  position: absolute; left: 0; right: 40%; bottom: 0; height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.75) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-scrim-pills {
  position: absolute; right: 0; bottom: 0; width: 45%; height: 45%;
  background: radial-gradient(ellipse at bottom right, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.25) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Central minimal mark — like The Mill's small "m" */
.hero-mark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}
.hero-mark-icon {
  width: 96px; height: 96px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}
.hero-mark-play { display: flex; align-items: center; gap: 0.75rem; }
.reel-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(251, 250, 246, 0.35);
  background: rgba(5, 5, 5, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  display: grid; place-items: center;
  transition: all .25s ease;
  cursor: pointer;
}
.reel-play:hover {
  background: var(--cream);
  color: var(--purple-deep);
  border-color: var(--cream);
  transform: scale(1.04);
}

/* Bottom-left editorial headline (Mill signature) */
.hero-headline {
  position: absolute;
  left: max(2.5rem, 3vw);
  bottom: max(2.5rem, 4vw);
  z-index: 3;
  max-width: 68vw;
}
.hero-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.hero-serif em {
  font-style: italic;
  color: var(--cream);
  text-shadow: 0 0 40px rgba(170, 155, 220, 0.55), 0 0 80px rgba(90, 73, 173, 0.35);
  font-weight: 400;
}

/* Bottom-right pill CTAs */
.hero-pills {
  position: absolute;
  right: max(2.5rem, 3vw);
  bottom: max(2.5rem, 4vw);
  z-index: 3;
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-end;
}
.pill {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  background: rgba(251, 250, 246, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(251, 250, 246, 0.18);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  min-width: 200px;
  justify-content: center;
}
.pill:hover {
  background: var(--cream);
  color: var(--purple-deep);
  border-color: var(--cream);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  color: rgba(251, 250, 246, 0.55);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: gentleBounce 2.4s ease-in-out infinite;
}
@keyframes gentleBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50% { transform: translate(-50%, 6px); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

/* ===========================================
   NETWORKS
   =========================================== */
.networks { margin-top: var(--space-12); }
.networks > .micro {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin-bottom: var(--space-6);
  text-align: center;
}
.platform-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: var(--space-16);
}
.platform-chip {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.platform-chip svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}
.platform-chip:hover {
  transform: translateY(-3px) scale(1.05);
}
.platform-chip:hover svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}
@media (max-width: 600px) {
  .platform-row { gap: 1.1rem; }
  .platform-chip { width: 52px; height: 52px; }
}
.network-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.network-grid img {
  flex: 1 1 0;
  min-width: 0;
  max-width: 8%;
  max-height: 42px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(0.15);
  transition: opacity .2s;
}
@media (max-width: 900px) {
  .network-grid { flex-wrap: wrap; justify-content: center; gap: 1.25rem 1.5rem; }
  .network-grid img { flex: 0 0 auto; max-width: 80px; }
}
.network-grid img:hover { opacity: 1; }

/* ===========================================
   WORK GRID
   =========================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: var(--space-8) 0 var(--space-12);
}
.work-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  display: block;
  transition: transform .35s ease;
}
.work-tile-large { grid-column: span 3; aspect-ratio: 16 / 7; }
.work-thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease, filter .3s;
  filter: brightness(0.85) saturate(1.02);
}
.work-tile:hover .work-thumb {
  transform: scale(1.04);
  filter: brightness(0.72);
}
.work-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,22,51,.85) 100%);
  z-index: 1;
}
.work-play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.95);
  color: var(--purple-deep);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform .3s, background .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.work-tile:hover .work-play { transform: translate(-50%, -50%) scale(1.08); background: var(--purple-lav); }
.work-meta {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.2rem;
  z-index: 2;
  color: var(--cream);
}
.work-cat {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--purple-lav);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.work-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.2;
}
.work-tile-large .work-title { font-size: var(--text-xl); }

/* ===========================================
   GALLERY (What We Do)
   =========================================== */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: var(--space-6) 0 var(--space-8);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(251, 250, 246, 0.12);
}
.gallery-tab {
  background: transparent;
  border: 1.5px solid rgba(170, 155, 220, 0.35);
  color: rgba(251, 250, 246, 0.72);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .2s;
}
.gallery-tab:hover { color: var(--cream); border-color: var(--purple-lav); }
.gallery-tab[aria-selected="true"] {
  background: var(--purple-lav);
  color: var(--purple-deep);
  border-color: var(--purple-lav);
}
.gallery-tab .tab-count {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.05rem 0.4rem;
  font-size: 0.7rem;
  background: rgba(251, 250, 246, 0.14);
  border-radius: var(--radius-pill);
  color: inherit;
  opacity: 0.85;
}
.gallery-tab[aria-selected="true"] .tab-count { background: rgba(58, 40, 90, 0.18); opacity: 1; }

/* Mill-inspired gallery: black canvas, hard edges, titles below tiles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.75rem;   /* 12px — tight columns */
  row-gap: 2.75rem;      /* 44px — generous vertical gap */
  margin-bottom: var(--space-8);
}
.gallery-item {
  position: relative;
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: var(--cream);
  font-family: inherit;
  /* Create an aspect-ratio image frame that clips the scaled thumb, followed by meta below */
  aspect-ratio: auto;
}
/* The image frame — hard-edged, no shadow, projected on black */
.gallery-item .work-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #0a0a0a;
  overflow: hidden;
  transition: filter .3s ease;
  filter: brightness(0.94);
}
/* Bitmap layer — scales on hover without moving the frame or overlays */
.gallery-item .work-thumb-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .6s ease;
  will-change: transform;
}
.gallery-item:hover .work-thumb { filter: brightness(1.05); }
.gallery-item:hover .work-thumb-img { transform: scale(1.05); }
/* Play icon — smaller, subtle, no white circle */
.gallery-item .work-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
  color: var(--cream);
  display: grid; place-items: center;
  border: 1px solid rgba(251, 250, 246, 0.35);
  transition: transform .3s, background .3s, opacity .3s;
  opacity: 0;
  z-index: 2;
}
.gallery-item:hover .work-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(120, 40, 190, 0.85);
  border-color: rgba(251, 250, 246, 0.55);
}
/* Meta lives below the frame, editorial serif */
.gallery-item .work-meta {
  padding: 0;
  color: var(--cream);
}
.gallery-item .work-cat {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-lav);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.gallery-item .work-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.005em;
}
.gallery-item:hover .work-title { color: #fff; }
/* Coming-soon / status badge — sits on the image, top-right */
.gallery-item .work-note {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  padding: 0.3rem 0.65rem;
  background: rgba(10, 10, 10, 0.72);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  border: 1px solid rgba(251, 250, 246, 0.2);
  text-transform: uppercase;
}
.gallery-empty {
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  text-align: center;
  color: rgba(251, 250, 246, 0.55);
  border: 1.5px dashed rgba(170, 155, 220, 0.28);
  border-radius: var(--radius-lg);
}

/* Video modal */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(15, 10, 30, 0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: min(1000px, 96vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: -3rem; right: 0;
  background: transparent; border: 0; color: var(--cream);
  font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
.video-modal-close:hover { color: var(--purple-lav); }

/* Services strip */
.services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(251, 250, 246, 0.16);
}
.services-strip-light {
  border-top: 1px solid var(--line);
  padding-top: var(--space-8);
  margin-top: var(--space-6);
}
.section-services { padding-top: clamp(3rem, 6vw, 5rem); }
.service h4 {
  font-size: var(--text-base);
  color: var(--purple-lav);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.service p {
  color: rgba(251, 250, 246, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}
.service-light h4 { color: var(--purple-mid); }
.service-light p { color: var(--ink-2); }

/* ===========================================
   MISSION
   =========================================== */
.mission-headline {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-lav);
  margin: 0 0 var(--space-8);
}
.mission-body {
  font-size: var(--text-lg);
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto var(--space-6);
  line-height: 1.6;
}
.mission-body strong { color: var(--purple-lav); font-weight: 700; }
.mission-close {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: var(--space-6);
}
.stat-pill {
  background: var(--purple-lav);
  border: 1.5px solid var(--cream-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: var(--space-8) auto;
  max-width: 900px;
  color: var(--ink-2);
}
.stat-line {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-2);
  text-align: center;
  margin-bottom: 0.5rem;
}
.stat-line:last-child { margin-bottom: 0; }
.stat-strong { color: var(--purple-deep); }

/* ===========================================
   TIERS
   =========================================== */
.tiers-lede { margin-bottom: var(--space-8); max-width: 68rem; font-weight: 500; color: var(--ink); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: var(--space-4);
  align-items: stretch;
}
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-featured {
  background: var(--purple-deep);
  color: var(--cream);
  border-color: var(--purple-deep);
  box-shadow: 0 10px 32px rgba(58, 30, 92, 0.28);
}
.tier-featured .tier-tag,
.tier-featured .tier-for,
.tier-featured .tier-plus,
.tier-featured .tier-list li,
.tier-featured .tier-goal { color: var(--cream) !important; }
.tier-featured .tier-for { color: rgba(245, 240, 232, 0.92) !important; font-weight: 600; }
.tier-featured .tier-plus { color: var(--purple-lav) !important; font-weight: 700; }
.tier-featured .tier-list li { font-weight: 600; }
.tier-featured .tier-list li::before { color: var(--purple-lav); }

.tier-tag {
  font-family: var(--display);
  font-size: 1.75rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--purple-deep); font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.tier-featured .tier-tag { color: var(--cream); }

.tier-for {
  font-size: 0.95rem; color: var(--ink);
  line-height: 1.45; font-style: italic;
  font-weight: 600;
  margin-bottom: 1.1rem;
  min-height: 3.4rem;
}

.tier-volume {
  background: var(--purple-deep);
  color: var(--cream);
  font-size: 0.98rem; font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  padding: 0.85rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  min-height: 3.6rem;
  display: flex; align-items: center; justify-content: center;
}
.tier-featured .tier-volume {
  background: var(--cream);
  color: var(--purple-deep);
}

.tier-plus {
  font-size: 0.9rem; color: var(--purple-deep);
  margin-bottom: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.tier-plus em { font-style: italic; font-weight: 700; }

.tier-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  flex-grow: 1;
}
.tier-list li {
  font-size: 0.9rem; color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  padding-left: 0.9rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.tier-list li::before {
  content: "\2022";
  position: absolute; left: 0; top: 0;
  color: var(--purple-mid);
  font-weight: 700;
}

.tier-goal {
  font-size: 0.9rem; font-style: italic; color: var(--ink);
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  line-height: 1.5;
}
.tier-goal strong { font-style: normal; color: var(--purple-deep); font-weight: 800; }
.tier-featured .tier-goal { color: rgba(245, 240, 232, 0.88); border-color: rgba(170, 155, 220, 0.28); }
.tier-featured .tier-goal strong { color: var(--purple-lav); }

.tier-star {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--purple-lav);
  color: var(--purple-deep);
  font-size: 0.7rem; letter-spacing: 0.2em; font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(58, 30, 92, 0.22);
}

.tier-minimum {
  text-align: center;
  margin-top: var(--space-6);
  font-size: 1rem;
  color: var(--purple-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ===========================================
   ROSTER
   =========================================== */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem 2rem;
  align-items: center;
  margin-top: var(--space-6);
}
.roster-grid img {
  width: 100%;
  max-height: 68px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity .2s, transform .2s;
}
.roster-grid img:hover { opacity: 1; transform: scale(1.04); }

/* ===========================================
   PROMISE
   =========================================== */
/* promise-head deprecated — use .section-head */

.wyzowl-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: var(--space-4) 0 0.6rem;
}
.wyzowl-pill {
  background: var(--purple-lav);
  border: 1.25px solid var(--cream-alt);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
}
.wyzowl-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: var(--purple-deep);
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}
.wyzowl-label {
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.4;
}
.wyzowl-label strong { color: var(--purple-deep); font-weight: 800; }
.wyzowl-src {
  font-size: 0.78rem; color: var(--muted); text-align: center;
  margin-bottom: var(--space-12);
}
.wyzowl-src a { color: var(--purple-mid); font-style: italic; }

.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.promise-card {
  background: var(--purple-deep);
  color: var(--cream);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
}
.promise-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--purple-lav);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.promise-card h4 {
  font-size: var(--text-lg);
  color: var(--cream);
  margin: 0.75rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.promise-card p {
  color: rgba(251, 250, 246, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}
.promise-card strong { color: var(--purple-lav); font-weight: 700; }

/* ===========================================
   DIXON
   =========================================== */
.dixon-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.dixon-copy .lede-light { margin: var(--space-4) 0 var(--space-6); font-size: var(--text-lg); }
.dixon-stats {
  list-style: none;
  padding: 0; margin: 0 0 var(--space-8);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 2rem;
}
.dixon-stats li { border-left: 3px solid var(--purple-lav); padding-left: 1rem; }
.ds-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--cream);
  font-weight: 800;
  line-height: 1;
}
.ds-label {
  display: block; margin-top: 0.35rem;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple-lav);
}
.dixon-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Case Study intro block */
.cs-intro {
  max-width: 780px;
  margin: 0 auto var(--space-10);
  text-align: center;
}
.cs-intro-copy {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  line-height: 1.65;
}
.micro-light { color: var(--purple-lav); }

/* Case study number/label badge */
.cs-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(170, 155, 220, 0.08);
  border: 1px solid rgba(170, 155, 220, 0.25);
  border-radius: 999px;
  margin-bottom: var(--space-6);
}
.cs-badge-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--purple-lav);
  line-height: 1;
}
.cs-badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
.cs-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-2);
}
.cs-headline em {
  font-style: italic;
  color: var(--purple-lav);
}

/* ---------- Deliverables intro ---------- */
.deliv-intro {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(170, 155, 220, 0.15);
  margin-bottom: var(--space-8);
}
.deliv-intro-head {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--cream);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.01em;
  max-width: 780px;
}
.deliv-intro-head em { font-style: italic; color: var(--purple-lav); }
.deliv-intro-copy { max-width: 720px; }

/* ---------- Deliverable card ---------- */
.deliv {
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(170, 155, 220, 0.12);
}
.deliv:first-of-type { border-top: none; padding-top: var(--space-4); }
.deliv-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.deliv-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--purple-lav);
  margin-right: 0.6rem;
}
.deliv-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, 0.55);
}
.deliv-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(170, 155, 220, 0.25);
  border-radius: var(--radius-md);
  background: rgba(170, 155, 220, 0.05);
}
.deliv-stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--cream);
  line-height: 1;
}
.deliv-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, 0.6);
}
.deliv-stat-hot { border-color: rgba(170, 155, 220, 0.55); background: rgba(90, 73, 173, 0.18); }
.deliv-stat-hot .deliv-stat-num { color: var(--purple-lav); }
.deliv-note {
  color: rgba(251, 250, 246, 0.55);
  font-size: 0.9rem;
  font-style: italic;
  margin: 1rem 0 0;
}

/* In-Production poster (real Media Shed key art) */
.wip-poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(170, 155, 220, 0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(170, 155, 220, 0.06);
  margin-top: var(--space-4);
  aspect-ratio: 16/9;
  background: #14101f;
}
.wip-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wip-poster-blink {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(228, 67, 107, 0.5);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.wip-poster-blink::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E4436B;
  box-shadow: 0 0 10px rgba(228, 67, 107, 0.7);
  animation: wipBlink 1.6s ease-in-out infinite;
}
.wip-poster-blink::after {
  content: 'REC';
}
@media (prefers-reduced-motion: reduce) {
  .wip-poster-blink::before { animation: none; }
}

/* Legacy In-Production placeholder card (kept for fallback — not currently used) */
.deliv-stat-wip { border-color: rgba(251, 250, 246, 0.25); background: rgba(251, 250, 246, 0.04); }
.deliv-stat-wip .deliv-stat-num { color: rgba(251, 250, 246, 0.55); font-size: 1.5rem; }
.deliv-stat-wip .deliv-stat-label { color: rgba(251, 250, 246, 0.8); }

.wip-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(170, 155, 220, 0.18);
  background: linear-gradient(135deg, #14101f 0%, #221937 55%, #14101f 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 0 120px rgba(90, 73, 173, 0.08);
  aspect-ratio: 16/9;
  margin-top: var(--space-4);
}
.wip-card-alt {
  background: linear-gradient(135deg, #14101f 0%, #1c1830 50%, #291a44 100%);
}
.wip-card-alt .wip-stripe {
  transform: translate(-50%, -50%) rotate(18deg); /* mirror the stripe */
}

/* Subtle film grain */
.wip-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(251, 250, 246, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(251, 250, 246, 0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  opacity: 0.7;
  pointer-events: none;
}

/* Diagonal caution stripe running corner-to-corner */
.wip-stripe {
  position: absolute;
  top: 50%; left: 50%;
  width: 160%; height: 44px;
  transform: translate(-50%, -50%) rotate(-18deg);
  background: repeating-linear-gradient(
    90deg,
    rgba(170, 155, 220, 0.28) 0 22px,
    rgba(20, 16, 31, 0.65) 22px 44px
  );
  opacity: 0.35;
  pointer-events: none;
}

/* Foreground content: slate + record mark */
.wip-content {
  position: absolute; inset: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 1;
}

/* Film slate */
.wip-slate {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: var(--radius-md);
  background: rgba(5, 5, 5, 0.45);
  backdrop-filter: blur(6px);
  min-width: 260px;
  font-family: var(--font-body);
}
.wip-slate-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.85rem;
}
.wip-slate-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, 0.5);
}
.wip-slate-val {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.2;
}

/* Record mark: number + label + blinking dot */
.wip-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  text-align: right;
}
.wip-mark-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  color: var(--purple-lav);
  text-shadow: 0 0 30px rgba(170, 155, 220, 0.35);
}
.wip-mark-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  padding-right: 22px;
  position: relative;
}
.wip-mark-blink {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #E4436B;
  box-shadow: 0 0 12px rgba(228, 67, 107, 0.7);
  animation: wipBlink 1.6s ease-in-out infinite;
}
@keyframes wipBlink {
  0%, 55% { opacity: 1; }
  60%, 100% { opacity: 0.15; }
}

@media (prefers-reduced-motion: reduce) {
  .wip-mark-blink { animation: none; }
}

/* Walls Could Talk feature */
.walls-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-top: var(--space-4);
}
.walls-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(170, 155, 220, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.walls-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.walls-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.walls-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(6px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 250, 246, 0.25);
  transition: background 0.2s, transform 0.2s;
}
.walls-thumb:hover .walls-play {
  background: var(--purple-mid);
  transform: translate(-50%, -50%) scale(1.08);
}
.walls-play svg { margin-left: 3px; }
.walls-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.walls-cta-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, 0.6);
  margin: 0;
}

/* Headshot showcase strip inside the arsenal card — compact sample row */
.headshot-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: var(--space-4) 0 0;
  max-width: 560px;
}
.headshot-card {
  position: relative;
  width: 96px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(58, 40, 90, 0.35);
  box-shadow: 0 3px 10px rgba(20, 10, 40, 0.35);
  flex: 0 0 auto;
}
.headshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.headshot-card:hover img {
  transform: scale(1.04);
}
/* Vertical short — bare phone-shaped video under Social Cutdowns list item.
   No frame, no shadow, no rounded corners — just the thumbnail cropped 9:16 with a play affordance. */
.short-card {
  position: relative;
  display: block;
  width: 140px;
  aspect-ratio: 9 / 16;
  margin: 12px 0 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: visible;
}
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.short-card:hover img { transform: scale(1.03); }
.short-card:focus-visible {
  outline: 2px solid var(--purple-lav, #AA9BDC);
  outline-offset: 3px;
}
.short-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}
.short-card-play svg {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  padding: 10px;
  width: 40px;
  height: 40px;
}
.short-card:hover .short-card-play { transform: scale(1.08); }
@media (max-width: 520px) {
  .short-card { width: 116px; }
}

.headshot-card-wide {
  width: 128px;
  aspect-ratio: 4 / 3;
}
@media (max-width: 520px) {
  .headshot-card { width: 78px; }
  .headshot-card-wide { width: 104px; }
}

/* Social platform logo chips inline in the arsenal list */
.social-logos {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.15rem;
}
.social-logo {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 250, 246, 0.9);
  border: 1px solid rgba(170, 155, 220, 0.35);
  border-radius: 6px;
  background: rgba(170, 155, 220, 0.08);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.social-logo:hover {
  color: var(--cream);
  border-color: var(--purple-lav);
  background: rgba(170, 155, 220, 0.18);
  transform: translateY(-1px);
}

/* Full-system list */
.deliv-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.deliv-list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(170, 155, 220, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.deliv-list-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
}
.deliv-list-desc {
  color: rgba(251, 250, 246, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- Podcast showcase ---------- */
.podcast-block {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(170, 155, 220, 0.15);
}
.podcast-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--cream);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.podcast-title em {
  font-style: italic;
  color: var(--purple-lav);
}
.podcast-blurb {
  color: rgba(251, 250, 246, 0.8);
  max-width: 640px;
  margin: 0 0 var(--space-6);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Photographic key art — anchors the podcast block */
.podcast-keyart {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(170, 155, 220, 0.15);
}
.podcast-keyart img {
  width: 100%;
  height: auto;
  display: block;
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.podcast-latest {
  aspect-ratio: 16/9;
  background: rgba(170, 155, 220, 0.06);
  border: 1px solid rgba(170, 155, 220, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.podcast-latest iframe {
  width: 100%; height: 100%; border: 0;
  position: absolute; inset: 0;
  z-index: 2;
}
.podcast-latest-poster {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-latest-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(5,5,5,0.55) 45%, rgba(5,5,5,0.85) 100%);
  z-index: 1;
}
.podcast-latest-overlay p {
  margin: 0.35rem 0 0;
  color: rgba(251, 250, 246, 0.9);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 480px;
}
.podcast-thumbs {
  display: grid;
  gap: 1rem;
}
.podcast-thumb {
  display: block;
  background: rgba(170, 155, 220, 0.05);
  border: 1px solid rgba(170, 155, 220, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.podcast-thumb:hover {
  border-color: rgba(170, 155, 220, 0.5);
  background: rgba(170, 155, 220, 0.1);
  transform: translateY(-2px);
}
.podcast-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.podcast-thumb-meta {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}
.podcast-thumb-num {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-lav);
  font-weight: 700;
}
.podcast-thumb-title {
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--cream);
}

/* ---------- Next-industry block ---------- */
.cs-next {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(170, 155, 220, 0.15);
  max-width: 780px;
}
.cs-next-head {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 var(--space-4);
}
.cs-next-head em {
  font-style: italic;
  color: var(--purple-lav);
}
.cs-next-copy {
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
  line-height: 1.6;
}
.cs-next-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-6);
}
.cs-tag {
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(170, 155, 220, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--cream);
  background: rgba(170, 155, 220, 0.05);
  letter-spacing: 0.02em;
}

/* ===========================================
   CONTACT
   =========================================== */
.contact-form {
  display: grid;
  gap: 1.25rem;
  margin: var(--space-8) 0 var(--space-6);
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field span {
  font-size: 0.85rem; letter-spacing: 0.06em; font-weight: 600;
  color: var(--purple-deep); text-transform: uppercase;
}
.field span em { font-style: italic; text-transform: none; color: var(--muted); letter-spacing: 0; font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(90, 73, 173, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-select select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%233A285A'><path d='M7 10l5 5 5-5H7z'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }

.form-actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.form-status { font-size: 0.9rem; color: var(--muted); }
.form-status.ok { color: var(--purple-mid); font-weight: 600; }
.form-status.err { color: #A12C7B; font-weight: 600; }

.contact-alt {
  border-top: 1px solid var(--line);
  padding-top: var(--space-6);
  margin-top: var(--space-8);
  color: var(--muted);
}
.contact-alt p { font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.02em; }
.contact-alt ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: var(--text-base); color: var(--ink-2); }
.contact-alt a { color: var(--purple-deep); font-weight: 600; border-bottom: 1.5px solid var(--purple-lav); padding-bottom: 2px; }
.contact-alt a:hover { border-color: var(--purple-deep); }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--purple-deep);
  color: var(--cream);
  padding: var(--space-12) 0 var(--space-6);
}
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { width: 40px; height: 40px; }
.footer-name { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.22em; font-size: 0.95rem; color: var(--cream); }
.footer-tag { font-size: 0.8rem; color: var(--purple-lav); letter-spacing: 0.06em; }
.footer-contact { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.9rem; }
.footer-contact a { color: rgba(251, 250, 246, 0.82); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color .2s; }
.footer-contact a:hover { border-color: var(--purple-lav); color: var(--cream); }
.footer-legal { grid-column: 1 / -1; text-align: center; color: rgba(251, 250, 246, 0.5); font-size: 0.75rem; margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid rgba(251, 250, 246, 0.1); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,5,5,0.95); backdrop-filter: blur(14px); flex-direction: column; padding: 1.25rem 5%; gap: 1rem; }

  .hero-headline { max-width: 90vw; }
  .hero-pills { position: static; margin: 0; padding: 0 max(2.5rem, 3vw) 2rem; align-items: stretch; }
  .hero-pills { display: none; } /* keep hero clean on mobile */
  .hero-mark { top: 42%; }

  .work-grid { grid-template-columns: 1fr; }
  .work-tile-large { grid-column: auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .promise-cards { grid-template-columns: 1fr; }
  .wyzowl-strip { grid-template-columns: 1fr; }
  .dixon-grid { grid-template-columns: 1fr; gap: 2rem; }
  .dixon-stats { grid-template-columns: repeat(2, 1fr); }
  .podcast-grid { grid-template-columns: 1fr; }
  .deliv-list { grid-template-columns: 1fr; }
  .deliv-header { flex-direction: column; gap: 1rem; }
  .deliv-stat { align-items: flex-start; align-self: flex-start; }
  .walls-feature { grid-template-columns: 1fr; }
  .wip-content { flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem; }
  .wip-mark { align-items: flex-start; text-align: left; }
  .wip-mark-label { padding-right: 0; padding-left: 22px; }
  .wip-mark-blink { right: auto; left: 0; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 520px) {
  .hero-serif { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .hero-mark-icon { width: 72px; height: 72px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-strip { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .dixon-stats { grid-template-columns: 1fr; }
  .hero-tag { letter-spacing: 0.25em; }
}

/* ============ Driving with Miss Tracey — placeholder key art ============ */
.walls-thumb-placeholder {
  aspect-ratio: 16/9;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(58,40,90,0.85), rgba(90,73,173,0.60)),
    url("../assets/textures/fence_hero.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(170,155,220,0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(251,250,246,0.06);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default;
}
.walls-thumb-placeholder::before {
  /* subtle diagonal warning-stripe hint at bottom */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(170,155,220,0.55) 0 12px,
    rgba(58,40,90,0.9) 12px 24px
  );
  opacity: 0.55;
}
.dwmt-placeholder {
  text-align: center;
  color: var(--cream);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 90%;
}
.dwmt-kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-lav);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(170,155,220,0.5);
  border-radius: 999px;
  background: rgba(5,5,5,0.35);
}
.dwmt-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(170,155,220,0.35);
  display: inline-block;
}
.dwmt-title em {
  font-style: italic;
  color: var(--purple-lav);
  font-weight: 400;
}
.dwmt-mark {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,250,246,0.55);
}
@media (max-width: 640px) {
  .dwmt-placeholder { padding: 1rem 1.25rem; gap: 0.6rem; }
  .dwmt-title { font-size: 1.75rem; }
  .dwmt-kicker { font-size: 0.65rem; letter-spacing: 0.22em; }
  .dwmt-mark { font-size: 0.6rem; letter-spacing: 0.18em; }
}

/* ============ Work item — client logo badge (in-production cards) ============ */
.work-logo-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--cream);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  z-index: 3;
  display: flex;
  align-items: center;
  max-width: 55%;
  border: 1px solid rgba(58,40,90,0.15);
}
.work-logo-badge img {
  display: block;
  max-height: 28px;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}
@media (max-width: 640px) {
  .work-logo-badge {
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.3rem 0.45rem;
  }
  .work-logo-badge img { max-height: 22px; }
}

/* Network attribution strip under gallery blurb ("As Aired On [logo]") */
.gallery-network {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0 0.4rem;
  padding: 0.4rem 0.55rem 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
.gallery-network[hidden] { display: none; }
.gallery-network-label {
  font-family: 'General Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, 0.72);
  white-space: nowrap;
}
.gallery-network-logo {
  display: block;
  height: 22px;
  width: auto;
  background: var(--cream, #FBFAF6);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  box-sizing: content-box;
}
/* Show title inline in the network row (e.g. "Nosh") */
.gallery-show-title {
  font-family: var(--font-display, 'Fraunces'), Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: rgba(251, 250, 246, 0.95);
  letter-spacing: 0.01em;
  padding-right: 0.15rem;
}

/* Emmy Award Winning badge — sits before show title in network row */
.gallery-emmy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.75rem;
  background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
  color: #1a1a1a;
  font-family: 'General Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.gallery-emmy-badge svg { flex-shrink: 0; }

/* Actual Emmy statuette next to the badge/show title */
.gallery-emmy-statue {
  display: block;
  height: 120px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(212, 160, 23, 0.45));
  margin: -0.35rem 0.35rem -0.35rem -0.25rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .gallery-network {
    padding: 0.35rem 0.45rem 0.35rem 0.85rem;
    gap: 0.55rem;
    flex-wrap: wrap;
  }
  .gallery-network-label { font-size: 0.66rem; }
  .gallery-network-logo { height: 18px; padding: 0.3rem 0.5rem; }
  .gallery-emmy-badge { font-size: 0.58rem; padding: 0.28rem 0.6rem; }
  .gallery-show-title { font-size: 1rem; }
  .gallery-emmy-statue { height: 84px; margin: -0.25rem 0.15rem -0.25rem -0.15rem; }
}

/* "2 Parts" chip pinned on multi-part gallery cards */
.work-parts-chip {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  background: rgba(58, 40, 90, 0.9); /* --purple-deep */
  color: var(--cream, #FBFAF6);
  font-family: 'General Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Playlist toolbar inside the video lightbox */
.video-modal-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: min(1000px, 96vw);
}
.video-modal-playlist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 100%;
}
.video-modal-playlist[hidden] { display: none; }
.video-modal-part {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream, #FBFAF6);
  padding: 0.5rem 0.9rem;
  font-family: 'General Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.video-modal-part:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.video-modal-part[aria-selected="true"] {
  background: var(--cream, #FBFAF6);
  color: var(--purple-deep, #3A285A);
  border-color: var(--cream, #FBFAF6);
}
@media (max-width: 640px) {
  .video-modal-part { font-size: 0.72rem; padding: 0.42rem 0.75rem; }
}

/* ===========================================
   GALLERY HERO (show key-art panel above grid)
   =========================================== */
.gallery-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #F7F5EF;
  margin: 0 0 var(--space-8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(251, 250, 246, 0.08);
}
.gallery-hero-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 340px;
  aspect-ratio: 3 / 2;
}
.gallery-hero-copy {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  color: var(--purple-deep);
}
.gallery-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(58, 40, 90, 0.65);
  margin: 0;
}
.gallery-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
  color: var(--purple-deep);
}
.gallery-hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(58, 40, 90, 0.78);
  margin: 0;
  max-width: 44ch;
}
@media (max-width: 820px) {
  .gallery-hero {
    grid-template-columns: 1fr;
  }
  .gallery-hero-media {
    min-height: 240px;
    aspect-ratio: 3 / 2;
  }
}
