/* ============================================================
   Jacob Lutz — design tokens + base styles
   ============================================================ */

:root {
  /* Warm-black palette, anchored to the doorway photo's warm cast */
  --bg: #0a0908;
  --bg-elev: #15120f;
  --bg-card: #1a1612;
  --ink: #f5f1ea;
  --ink-muted: #a09689;
  --ink-faint: #5e564c;
  --line: #2a241e;
  --line-strong: #3a3128;

  /* Accent — amber/gold default; swappable via tweaks */
  --accent: #e8a857;
  --accent-soft: #2a1f10;
  --accent-ink: #0a0908;

  /* Type */
  --font-display: "Archivo Black", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Spacing scale */
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 10vw, 160px);

  /* Density (tweakable) */
  --density: 1;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ============================================================
   Reusable bits
   ============================================================ */

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: 1px;
  box-shadow: 0 0 12px var(--accent);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}

.h1 { font-size: clamp(56px, 10vw, 168px); }
.h2 { font-size: clamp(40px, 6vw, 88px); }
.h3 { font-size: clamp(24px, 2.6vw, 36px); }

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 60ch;
}

.muted { color: var(--ink-muted); }

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ============================================================
   Nav
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: linear-gradient(to bottom, rgba(10,9,8,0.85), rgba(10,9,8,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(10,9,8,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--ink);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px var(--accent);
}

.nav-burger {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0 var(--gutter);
}

body.menu-open .mobile-menu { display: flex; }
body.menu-open { overflow: hidden; }

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: var(--gutter);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-inner a {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}

.mobile-menu-inner a:hover,
.mobile-menu-inner a:active { color: var(--accent); }

.mobile-menu-inner a.cta {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 18px 24px;
  text-align: center;
  margin-top: 16px;
  border-bottom: 0;
  font-size: 18px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 0 var(--gutter) clamp(24px, 3vw, 48px);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 4%;
  filter: contrast(1.08) saturate(1.2);
  transform: translateY(60px);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,9,8,0.4) 0%, rgba(10,9,8,0) 30%, rgba(10,9,8,0) 55%, rgba(10,9,8,0.85) 100%),
    linear-gradient(to right, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0) 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  width: 100%;
  display: block;
  padding-bottom: 0;
  padding-left: clamp(16px, 5vw, 140px);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* Hero meta — running down the right side over the brick */
.hero-meta {
  position: absolute;
  top: 50%;
  right: calc(var(--gutter) + clamp(20px, 4vw, 80px));
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  font-family: var(--font-mono);
  font-size: clamp(16px, 1.25vw, 19px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  width: clamp(420px, 36vw, 580px);
  border-top: 1px solid rgba(245, 241, 234, 0.35);
  background: rgba(10, 9, 8, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 36px;
  border-radius: 3px;
}

.hero-meta .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.35);
  padding: 28px 0;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}

.hero-meta .row:last-child { border-bottom: 0; }

.hero-meta .row .v {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.1vw, 32px);
  letter-spacing: -0.005em;
}

.hero-meta a.row.highlight {
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  border-radius: 4px;
  margin: 0;
  padding: 28px 0;
}

.hero-meta a.row.highlight:hover {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 10px var(--accent), 0 10px 28px -10px rgba(232, 168, 87, 0.6);
}

.hero-meta a.row.highlight:hover .dot {
  background: var(--accent-ink);
  box-shadow: none;
}

.hero-meta a.row.highlight:hover .v {
  color: var(--accent-ink);
}

.hero-meta .row.highlight .v { color: var(--accent); }

.hero-meta .row.highlight .dot {
  position: absolute;
  left: -14px;
  top: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0;
  box-shadow: 0 0 12px var(--accent);
  animation: hero-pulse 1.8s ease-in-out infinite;
  vertical-align: 1px;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-tags {
  display: none;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  pointer-events: none;
}

.hero-scroll-line {
  position: relative;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(245,241,234,0.15) 0%, rgba(245,241,234,0.4) 50%, rgba(245,241,234,0.15) 100%);
  overflow: hidden;
}

.hero-scroll-word {
  display: block;
  height: 1.1em;
  overflow: hidden;
  line-height: 1.1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
}

.hero-scroll-word > span {
  display: block;
  animation: scrollWord 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero-scroll-word > span > span {
  display: block;
  line-height: 1.1;
}

@keyframes scrollWord {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0%); }
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 12px;
  margin-left: -2.5px;
  background: var(--ink);
  border-radius: 999px;
  animation: scrollDown 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollDown {
  0%   { top: -14px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 44px; opacity: 0; }
}

@media (max-width: 760px) {
  .hero-meta {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    text-align: left;
    margin-top: 24px;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    font-size: 13px;
    border-top: 1px solid rgba(245, 241, 234, 0.3);
  }
  .hero-meta .row {
    padding: 14px 0;
    gap: 16px;
    border-bottom: 1px solid rgba(245, 241, 234, 0.3);
  }
  .hero-meta .row .v {
    font-size: 18px;
  }
  .hero-photo img { object-position: 65% 4%; }
  .hero-scroll { display: none; }
  .hero {
    min-height: auto;
    padding-bottom: 32px;
  }
  .hero-inner {
    padding-top: clamp(90px, 18vw, 140px);
    padding-left: 0;
  }
  .hero-title {
    font-size: clamp(72px, 20vw, 120px);
  }
}

/* ============================================================
   Section scaffolding
   ============================================================ */

section.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(24px, 4vw, 80px);
  margin-bottom: clamp(48px, 6vw, 96px);
}

.section-head .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.section-head .title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

.section-head .title .accent {
  color: var(--accent);
}

.section-head .aside {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  max-width: 280px;
  text-align: right;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .aside { text-align: left; max-width: 100%; }
}

/* ============================================================
   STUDIO section (priority 1)
   ============================================================ */

#studio {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}

.studio-lead {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.studio-side {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 32px;
}

.studio-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
}

.studio-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service .idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}

.service .name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.service .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Stats — 2x2 cards, sized to match closed packages column height */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 165px;
  gap: 12px;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
}

.stat-platforms {
  display: flex;
  gap: 4px;
}

.stat-platforms span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--line-strong);
}

.stat .stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  position: relative;
  color: var(--ink);
}

.stat .stat-delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  position: relative;
}

@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { height: auto; min-height: 130px; }
}

/* Credits gallery */
.credits {
  margin-top: clamp(60px, 8vw, 120px);
}

/* Packages — expandable accordion */
.pkg-header {
  margin-bottom: clamp(8px, 1vw, 12px);
}

.packages {
  margin-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--line);
}

.packages-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--line);
}

.packages-head .label {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.packages-head .count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pkg {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.pkg:hover {
  background: rgba(232, 168, 87, 0.04);
}

.pkg-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto 28px;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 8px 22px 0;
  text-align: left;
  cursor: pointer;
  transition: padding 0.2s ease, background 0.2s ease;
}

.pkg-row:hover { padding-left: 12px; }
.pkg-row:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

.pkg-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  transition: color 0.2s;
}

.pkg-row:hover .pkg-idx { color: var(--accent); }

.pkg-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
}

.pkg-summary {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
}

.pkg-inquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  white-space: nowrap;
}

.pkg-inquire:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-1px);
}

.pkg-inquire .arrow { transition: transform 0.2s ease; display: inline-block; }
.pkg-inquire:hover .arrow { transform: translateX(3px); }

.pkg-toggle {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
  justify-self: end;
}

.pkg-row:hover .pkg-toggle {
  border-color: var(--accent);
  transform: scale(1.06);
}

.pkg-toggle::before,
.pkg-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.pkg-toggle::before { width: 11px; height: 1.5px; }
.pkg-toggle::after { width: 1.5px; height: 11px; }

.pkg-row[aria-expanded="true"] .pkg-toggle {
  background: var(--accent);
  border-color: var(--accent);
}

.pkg-row[aria-expanded="true"] .pkg-toggle::before,
.pkg-row[aria-expanded="true"] .pkg-toggle::after {
  background: var(--accent-ink);
}

.pkg-row[aria-expanded="true"] .pkg-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 760px) {
  .pkg-row {
    grid-template-columns: 28px 1fr 28px;
    grid-template-rows: auto auto;
    row-gap: 10px;
    padding: 18px 8px 18px 0;
  }
  .pkg-summary { display: none; }
  .pkg-inquire {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }
  .pkg-cols { grid-template-columns: 1fr; padding: 8px 28px 20px; }
}

/* Body collapse — single child wrapper makes the grid trick work for everything inside */
.pkg-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pkg-row[aria-expanded="true"] + .pkg-body {
  grid-template-rows: 1fr;
}

.pkg-inner {
  overflow: hidden;
  min-height: 0;
}

.pkg-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 8px 60px 24px;
}

.pkg-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pkg-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.pkg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.pkg-meta {
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}

.credits-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.credits-head .label {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.credits-head .count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.credit {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.credit:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.credit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.credit:hover img { filter: brightness(0.7); }

.credit-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(10,9,8,0.95) 0%, rgba(10,9,8,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.credit:hover .credit-overlay { opacity: 1; }

.credit-artist {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.credit-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .studio-grid { grid-template-columns: 1fr; }
  .credits-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .credits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
}

/* Studio CTA */
.studio-cta {
  margin-top: clamp(60px, 8vw, 120px);
  padding: clamp(40px, 5vw, 64px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.studio-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.7;
}

.studio-cta-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.studio-cta-text .h {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn.ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: none;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 760px) {
  .studio-cta { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING section (priority 2)
   ============================================================ */

#booking {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}

.booking-formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.format {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.format-media {
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-media .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background-image:
    repeating-linear-gradient(45deg, var(--bg-card) 0 10px, var(--bg-elev) 10px 20px);
}

.video-embed.has-thumb { cursor: pointer; }
.video-embed .video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.video-embed.has-thumb .placeholder {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.video-embed.has-thumb .format-play {
  transition: transform 160ms ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.video-embed.has-thumb:hover .format-play { transform: scale(1.06); }

.format-media .placeholder-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 999px;
}

.format-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.format-play::after {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--bg);
  margin-left: 4px;
}

.format-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.format-kind {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.format-kind .price {
  color: var(--accent);
}

.format-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.format-desc {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

.format-setlist {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.format-setlist-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.setlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  font-size: 13px;
}

.setlist .item {
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.setlist .item:nth-last-child(-n+2) { border-bottom: 0; }

.setlist .song { color: var(--ink); }
.setlist .artist { color: var(--ink-faint); font-family: var(--font-mono); font-size: 11px; }

@media (max-width: 760px) {
  .booking-formats { grid-template-columns: 1fr; }
  .setlist { grid-template-columns: 1fr; }
  .setlist .item:nth-last-child(-n+2) { border-bottom: 1px dashed var(--line); }
  .setlist .item:last-child { border-bottom: 0; }
}

/* ============================================================
   MUSIC section (priority 3)
   ============================================================ */

#music {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.release-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.release-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}

.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-art .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 1;
}

.release-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.release-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.release-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin: 0;
}

.release-meta {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-wrap: wrap;
}

.release-meta span { display: flex; gap: 8px; }
.release-meta b { color: var(--ink); font-weight: 500; }

.release-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.dsp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s;
}

.dsp:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.dsp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Discography strip */
.discog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.disc {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
  display: block;
}

.disc:hover { transform: translateY(-6px); border-color: var(--accent); }

.disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disc-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(10,9,8,0.95) 0%, rgba(10,9,8,0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.25s;
}

.disc:hover .disc-meta { opacity: 1; }

.disc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.disc-year {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.disc-play {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10,9,8,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  transform: scale(0.85);
}

.disc:hover .disc-play { opacity: 1; transform: scale(1); }

.disc-play::after {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 3px;
}

@media (max-width: 980px) {
  .release-featured { grid-template-columns: 1fr; }
  .discog { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .discog { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CONTACT
   ============================================================ */

#contact {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-line .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-line .value {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 5vw, 60px) var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  max-width: 1440px;
  margin: 0 auto;
}

.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col .h {
  color: var(--ink-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-col a:hover { color: var(--ink); }

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
}

@media (max-width: 760px) {
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-mark { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; gap: 8px; }
}


/* ============================================================
   Mobile-specific polish (final pass)
   ============================================================ */
@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --section-y: 64px;
  }
  .container { padding-left: 18px; padding-right: 18px; }

  /* Section heads */
  .section-head { gap: 12px; margin-bottom: 36px; }
  .section-head .title { font-size: clamp(28px, 9vw, 42px); }
  .section-head .num { font-size: 11px; }

  /* Studio intro paragraph */
  .lede { font-size: 16px; }

  /* Packages — slightly tighter on mobile */
  .pkg-name { font-size: 17px; }
  .pkg-inquire { padding: 6px 11px; font-size: 9px; letter-spacing: 0.1em; }

  /* Stats — 2x2 tight */
  .stats { gap: 10px; }
  .stat { height: auto; padding: 16px; min-height: 130px; }
  .stat .stat-value { font-size: 28px; }

  /* Credits & discog grids tighter */
  .credits-grid { gap: 8px; }
  .discog { gap: 10px; }
  .credits-head { padding-bottom: 14px; margin-bottom: 20px; }
  .credits-head .label { font-size: 18px; }

  /* Music featured release */
  .release-title { font-size: clamp(36px, 11vw, 56px); }
  .release-art { border-radius: 14px; }
  .dsp { padding: 10px 14px; font-size: 10px; }

  /* Booking format cards */
  .format-body { padding: 22px; gap: 14px; }
  .format-name { font-size: 24px; }
  .format-desc { font-size: 14px; }
  .setlist { font-size: 12px; }

  /* Studio CTA card */
  .studio-cta { padding: 28px; }
  .studio-cta-text .h { font-size: 22px; }
  .btn { padding: 14px 22px; font-size: 10px; letter-spacing: 0.14em; }

  /* Contact */
  .field input, .field select, .field textarea { padding: 13px 14px; font-size: 16px; }
  .contact-line .value { font-size: 20px; }

  /* Footer */
  .footer-mark { font-size: 88px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: clamp(60px, 18vw, 96px); }
  .section-head .title { font-size: 26px; }
  .release-title { font-size: 40px; }
}


/* ============================================================
   Mobile Hero (.mhero) — twin of linkinbio, shown only on mobile
   ============================================================ */

.mhero { display: none; }

@media (max-width: 760px) {
  /* Nav: transparent, no blur — floats over photo like linkinbio */
  .nav {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 0 !important;
    padding-top: calc(env(safe-area-inset-top) + 22px);
    padding-bottom: 0;
  }
  .nav.scrolled {
    background: rgba(10,9,8,0.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    padding-top: calc(env(safe-area-inset-top) + 14px);
    padding-bottom: 12px;
  }
  .nav-logo span:last-child { display: none; }
  .nav-logo-mark {
    width: 32px;
    height: 32px;
    font-size: 13px;
    background: rgba(10,9,8,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 241, 234, 0.85);
    border-radius: 8px;
  }
  .nav-burger {
    width: 38px;
    height: 38px;
    background: rgba(10,9,8,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 241, 234, 0.85);
    border-radius: 999px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .nav-burger span {
    width: 15px;
    height: 1.6px;
    background: var(--ink);
    border-radius: 2px;
  }
  .nav-burger span:nth-child(2) { width: 11px; }

  /* Hide the desktop hero on mobile */
  .hero { display: none; }

  /* Show and style the mobile hero (twin of linkinbio top) */
  .mhero {
    display: block;
    position: relative;
    padding: 0;
    background: var(--bg);
    margin-bottom: 0;
  }

  .mhero-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
  }
  .mhero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    display: block;
  }
  .mhero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10,9,8,0.5) 70%, var(--bg) 100%);
    pointer-events: none;
  }

  .mhero-identity {
    position: relative;
    margin-top: -90px;
    padding: 0 22px;
    z-index: 3;
  }

  .mhero-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 56px;
    line-height: 0.9;
    letter-spacing: -0.035em;
    margin: 0;
    color: var(--ink);
  }
  .mhero-name em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }

  .mhero-roles {
    display: flex;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: wrap;
  }
  .mhero-role {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: var(--bg-elev);
    color: var(--ink-muted);
  }
  .mhero-role.primary {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent);
  }

  /* Now Booking — full-width amber pill, compact */
  .mhero-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 11px 16px;
    background: var(--accent);
    color: var(--accent-ink);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
  }
  .mhero-booking .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-ink);
    animation: hero-pulse 1.8s ease-in-out infinite;
  }

  /* Tight transition from mhero into studio section */
  .mhero + .section {
    padding-top: clamp(40px, 8vw, 56px);
    border-top: 0 !important;
  }

  /* PACKAGES — single row layout, inquire+toggle on right */
  .pkg-row {
    grid-template-columns: 22px 1fr auto 26px !important;
    grid-template-rows: auto !important;
    gap: 10px !important;
    padding: 16px 4px 16px 0 !important;
    row-gap: 0 !important;
  }
  .pkg-row:hover { padding-left: 6px !important; }
  .pkg-summary { display: none !important; }
  .pkg-inquire {
    grid-column: auto !important;
    justify-self: auto !important;
    margin-top: 0 !important;
    padding: 5px 10px !important;
    font-size: 9px !important;
    letter-spacing: 0.1em !important;
  }
  .pkg-toggle { width: 24px !important; height: 24px !important; }
  .pkg-name { font-size: 15px; letter-spacing: 0; }
  .pkg-idx { font-size: 10px; }
}
