/* ==========================================================================
   Matt Ritterpusch — mattritterpusch.com
   Monochromatic editorial palette: white/black/gray + single blue accent.
   Georgia (display) + Helvetica Neue (UI) + SF Mono (timecodes).
   Zero border-radius, no shadows — separation via hairlines only.
   ========================================================================== */

:root {
  /* Surfaces */
  --paper:        #FFFFFF;
  --paper-2:      #EAEAEA;
  --black:        #000000;

  /* Text */
  --ink:            #111111;
  --ink-secondary:  #555555;
  --ink-muted:      #8A8A8A;

  /* Lines & hover */
  --hairline:   #DADADA;
  --row-hover:  #F5F5F5;

  /* Accent */
  --accent:       #0085FF;
  --accent-hover: #006ACC;
  --accent-text:  #FFFFFF;

  /* Fonts */
  --font-display: Georgia, 'Times New Roman', serif;
  --font-ui:      'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-headline: 'Stage Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono:    'SF Mono', Menlo, Consolas, monospace;
  --tracking-label: 0.16em;

  /* Type roles */
  --text-hero-size: clamp(40px, 6vw, 76px);
  --text-display-h2-size: 32px;
  --text-intro-size: 22px;
  --text-price-size: 17px;
  --text-price-lg-size: 30px;

  /* Spacing */
  --page-pad-desktop: 64px;
  --page-pad-tablet:  24px;
  --page-pad-mobile:  16px;
  --nav-height: 60px;

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.6, 0.2, 1);
  --duration-color: 200ms;
  --duration-fade: 400ms;
  --duration-expand: 0.3s;
}

@font-face {
  font-family: 'Stage Grotesk';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/StageGrotesk-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Stage Grotesk';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/StageGrotesk-LightItalic.woff2') format('woff2');
}
@font-face {
  font-family: 'Stage Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/StageGrotesk-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Stage Grotesk';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/StageGrotesk-Italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Stage Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/StageGrotesk-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Stage Grotesk';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/StageGrotesk-BoldItalic.woff2') format('woff2');
}
@font-face {
  font-family: 'Stage Grotesk';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/StageGrotesk-Black.woff2') format('woff2');
}
@font-face {
  font-family: 'Stage Grotesk';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/StageGrotesk-BlackItalic.woff2') format('woff2');
}

::selection      { background: var(--accent); color: #FFFFFF; }
::-moz-selection { background: var(--accent); color: #FFFFFF; }

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Sticky footer: body is a column flex container, and .site-footer's
     margin-top:auto pushes it to the bottom of the viewport on short
     pages while behaving normally once content overflows 100vh. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; }

/* ── Section / eyebrow labels ── */
.new-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

/* ==========================================================================
   Nav — transparent overlay bar (tinted per page), pill Store button, burger
   ========================================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--page-pad-desktop);
  box-sizing: border-box;
  background: rgba(255,255,255,0.43);
  transition: background 300ms var(--ease-out) 400ms;
}
.site-nav.is-open { background: rgba(0,0,0,0.43); transition-delay: 0ms; }
.site-nav.is-open .site-nav__logo img { filter: invert(100%) saturate(0%) brightness(200%); transition-delay: 0ms; }

.site-nav__logo { display: flex; align-items: center; text-decoration: none; }
.site-nav__logo img { height: 39px; width: auto; transition: filter 300ms var(--ease-out) 400ms; }
.site-nav__right { display: flex; align-items: center; gap: 20px; }

.site-nav__store {
  display: inline-block;
  font-family: var(--font-headline); font-size: 18px; font-weight: 400;
  color: #FFFFFF; text-decoration: none;
  background: var(--accent); border-radius: 5px; padding: 10px 25px;
  transition: background var(--duration-color) var(--ease-out);
}
.site-nav__store:hover { background: var(--accent-hover); }

/* ── Burger button (icon only — the live site's "Menu"/"Close" text
   label is present in markup but permanently display:none) ── */
.burger-btn {
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: transparent; border: none; padding: 12px; margin: -12px; flex-shrink: 0;
}
.burger-btn__label { display: none; }

.burger-btn__icon { position: relative; width: 25px; height: 10px; }
.burger-btn__icon span {
  position: absolute; right: 0; height: 2.2px; background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease, width 200ms ease, background 300ms var(--ease-out) 400ms;
}
.site-nav.is-open .burger-btn__icon span { background: #FFFFFF; transition-delay: 0ms, 0ms, 0ms, 0ms, 0ms; }
.burger-btn__icon span:nth-child(1) { top: 0; width: 25px; }
.burger-btn__icon span:nth-child(2) { top: 7.8px; width: 15px; }
.burger-btn.is-open .burger-btn__icon span:nth-child(1) { top: 4px; width: 25px; transform: rotate(45deg); }
.burger-btn.is-open .burger-btn__icon span:nth-child(2) { top: 4px; width: 25px; transform: rotate(-45deg); }

/* ── Full-screen drawer ── */
.nav-drawer {
  position: fixed; inset: 0; z-index: 490;
  background: #000000;
  opacity: 0; pointer-events: none;
  transition: opacity 300ms var(--ease-out) 400ms;
  display: flex; flex-direction: column; align-items: center;
  padding: 100px var(--page-pad-desktop) 60px;
  box-sizing: border-box;
}
.nav-drawer.is-open { opacity: 1; pointer-events: all; transition-delay: 0ms; }
/* Links block is vertically centered in the space above the social
   row (which stays pinned near the bottom); text stays left-aligned
   within the centered 1140px-wide block. */
.nav-drawer__links { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; flex: 1; width: 100%; max-width: 1140px; overflow: hidden; }
.nav-drawer__link {
  position: relative; overflow: hidden;
  height: 1.2em; line-height: 1.2;
  font-family: var(--font-headline); font-weight: 700;
  font-size: clamp(40px, 7vw, 70px);
  text-decoration: none;
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav-drawer.is-open .nav-drawer__link { transform: translateX(0); }
.nav-drawer.is-open .nav-drawer__link:nth-child(1) { transition-delay: 250ms; }
.nav-drawer.is-open .nav-drawer__link:nth-child(2) { transition-delay: 330ms; }
.nav-drawer.is-open .nav-drawer__link:nth-child(3) { transition-delay: 410ms; }
.nav-drawer__link + .nav-drawer__link { margin-top: 0.15em; }
.nav-drawer__link span { display: block; transition: transform 300ms var(--ease-out); }
.nav-drawer__link span.default { color: #FFFFFF; }
.nav-drawer__link span.hover { position: absolute; top: 100%; left: 0; color: var(--accent); }
.nav-drawer__link:hover span.default { transform: translateY(-100%); }
.nav-drawer__link:hover span.hover { transform: translateY(-100%); }
.nav-drawer__social { display: flex; gap: 16px; width: 100%; max-width: 1140px; flex-shrink: 0; }
.nav-drawer__social img { width: 32px; height: 32px; }

/* ==========================================================================
   Footer — shared global component, black bg, wordmark lockup + contact
   ========================================================================== */
.site-footer {
  background: #000000; color: #FFFFFF;
  padding: 48px var(--page-pad-desktop) 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  margin-top: auto;
}
.site-footer__logo { display: block; margin: 0 auto 32px; width: 190px; height: auto; }
.site-footer__contact { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.site-footer__contact span { font-family: var(--font-headline); font-size: 18px; }
.site-footer__contact span.strong { font-weight: 700; }
.site-footer__credit { margin-top: 16px; font-family: var(--font-headline); font-size: 12.8px; color: #FFFFFF; }
.site-footer__credit a { color: var(--accent); text-decoration: underline; }
.site-footer__credit a:hover { color: var(--accent-hover); }

/* ==========================================================================
   Buttons / chips / play button / volume slider
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: var(--tracking-label); text-decoration: none; transition: background var(--duration-color) var(--ease-out), color var(--duration-color) var(--ease-out), opacity var(--duration-color) var(--ease-out); }
.btn-primary { background: var(--ink); color: #FFFFFF; font-size: 11px; font-weight: 600; padding: 12px 22px; }
.btn-primary:hover { opacity: 0.92; }
.btn-accent { background: var(--accent); color: #FFFFFF; font-size: 11px; font-weight: 600; padding: 11px 22px; }
.btn-accent:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; border: 1px solid var(--ink); color: var(--ink); font-size: 10px; font-weight: 500; padding: 7px 12px; }
.btn-outline:hover { background: var(--ink); color: #FFFFFF; }

.play-btn { width: 38px; height: 38px; flex-shrink: 0; border: 1px solid var(--ink); background: transparent; position: relative; cursor: pointer; padding: 0; transition: background var(--duration-color) var(--ease-out); }
.play-btn--play::after { content: ''; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%); width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent var(--ink); }
.play-btn--pause::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 4px; height: 14px; background: transparent; box-shadow: -5px 0 0 0 var(--ink), 5px 0 0 0 var(--ink); }
.play-btn--stop::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 12px; height: 12px; background: var(--ink); }
.play-btn.on-image { background: rgba(255,255,255,0.92); border: none; }
.play-btn.on-image:hover { background: var(--accent); }
.play-btn.on-image.play-btn--pause,
.play-btn.on-image.play-btn--stop { background: var(--accent); }
.play-btn.on-image:hover.play-btn--play::after,
.play-btn.on-image.play-btn--pause::after { border-color: transparent transparent transparent #FFFFFF; }
.play-btn.on-image:hover.play-btn--pause::after,
.play-btn.on-image.play-btn--pause::after { background: transparent; box-shadow: -5px 0 0 0 #FFFFFF, 5px 0 0 0 #FFFFFF; }
.play-btn.on-image:hover.play-btn--stop::after,
.play-btn.on-image.play-btn--stop::after { background: #FFFFFF; }

.volume-slider { display: flex; align-items: center; gap: 10px; }
.volume-slider__track { position: relative; width: 84px; height: 4px; background: var(--hairline); cursor: pointer; }
.volume-slider__fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--ink); pointer-events: none; }
.volume-slider__thumb { position: absolute; top: 50%; width: 10px; height: 10px; background: var(--ink); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; transition: background var(--duration-color) var(--ease-out); }
.volume-slider__track:hover .volume-slider__fill,
.volume-slider__track:hover .volume-slider__thumb { background: var(--accent); }
.volume-slider__value { font-family: var(--font-mono); font-size: 10px; color: var(--ink-muted); min-width: 26px; text-align: right; }

.chip { display: inline-block; font-family: var(--font-ui); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-secondary); border: 1px solid var(--hairline); padding: 5px 9px; }
.chip.is-filter { cursor: pointer; padding: 7px 14px; font-size: 10px; transition: color var(--duration-color) var(--ease-out), border-color var(--duration-color) var(--ease-out); }
.chip.is-filter.is-active { border-color: var(--ink); color: var(--ink); }

/* ==========================================================================
   Home — three hover-video panels + tagline + candid photo
   ========================================================================== */
/* Spacer + panels + tagline together fill exactly one viewport height
   on load; panels absorb whatever space the spacer/tagline don't use. */
.home-hero { min-height: 100vh; display: flex; flex-direction: column; }
.home-hero-spacer { height: 80px; flex-shrink: 0; }
.home-panels { display: flex; position: relative; flex: 1; min-height: 480px; }
.home-panel {
  position: relative; flex: 1; overflow: hidden;
  clip-path: inset(0);
  background: #1c1c1c; text-decoration: none; display: block;
}
.home-panel__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); transition: filter 300ms ease; pointer-events: none;
}
.home-panel:hover .home-panel__video { filter: grayscale(0%); }
.home-panel__color-wash {
  position: absolute; inset: 0; background: var(--accent);
  opacity: 0; transition: opacity 300ms ease; pointer-events: none;
}
.home-panel:hover .home-panel__color-wash { opacity: 0.35; }

/* Title + arrow reveal is a single element centered on the whole
   3-panel row (not scoped to the hovered panel) -- matches the live
   site, where only the color wash is panel-scoped. */
.home-panels__overlay {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.home-panels__title-group {
  position: absolute; display: flex; align-items: center; gap: 16px;
  opacity: 0; transition: opacity 300ms ease;
}
.home-panels__title-group.is-active { opacity: 1; }
.home-panel__title {
  font-family: var(--font-headline); font-weight: 700; color: #FFFFFF;
  font-size: 96px; line-height: 1; white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.home-panel__arrow { width: 60px; height: auto; position: relative; top: 4px; }

/* Below the tablet/mobile breakpoint there's no hover, so each panel
   shows its own title always -- the shared row-centered hover overlay
   is desktop-only (see media query). */
.home-panel__title-mobile { display: none; }

.home-about { background: #000000; padding: 64px 0; text-align: center; flex-shrink: 0; }
.home-about p {
  font-family: var(--font-headline); font-size: 18px; line-height: 40px; color: #FFFFFF;
  margin: 0 auto; padding: 0 var(--page-pad-desktop);
}

.home-photo { display: block; width: 100%; height: 70vh; overflow: hidden; }
.home-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }

/* ==========================================================================
   Mixing — two-column split, feature card, track list
   ========================================================================== */
.mixing-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; padding-top: 80px; }
.mixing-intro { padding: 48px 40px; border-right: 1px solid var(--hairline); }
.mixing-intro h2 { font-family: var(--font-display); font-size: var(--text-display-h2-size); font-weight: 400; color: var(--ink); margin-top: 10px; letter-spacing: -0.01em; }
.mixing-intro p.intro-copy { font-size: var(--text-intro-size); font-family: var(--font-display); font-style: italic; color: var(--ink-secondary); line-height: 1.4; margin: 16px 0 28px; }
.mixing-feature { max-width: none; }

.feature-card { border: 1px solid var(--hairline); background: var(--paper); }
.feature-card__cover { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); }
.feature-card__cover img, .feature-card__cover iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.feature-card__tag { position: absolute; bottom: 0; left: 0; background: var(--ink); color: #FFFFFF; font-size: 9px; letter-spacing: var(--tracking-label); padding: 6px 10px; text-transform: uppercase; }
.feature-card__body { padding: 18px 18px 20px; }
.feature-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink); margin: 6px 0 12px; line-height: 1.15; }

.mixing-list { padding: 48px 40px; }
.track-row { display: grid; grid-template-columns: 42px 1fr auto; grid-template-rows: auto auto; gap: 2px 16px; align-items: center; padding: 16px 8px; border-bottom: 1px solid var(--hairline); }
.track-row:hover { background: var(--row-hover); }
.track-row .play-btn { grid-column: 1; grid-row: 1/3; }
.track-title { grid-column: 2; grid-row: 1; font-family: var(--font-display); font-size: 16px; color: var(--ink); line-height: 1.2; }
.track-sub { grid-column: 2; grid-row: 2; font-size: 11.5px; color: var(--ink-secondary); font-family: var(--font-ui); }
.track-dur { grid-column: 3; grid-row: 1/3; font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); display: flex; align-items: center; }
.track-row.is-playing .play-btn { border-color: var(--accent); }
.track-row.is-playing .play-btn--play::after { border-color: transparent transparent transparent var(--accent); }
.track-row.is-playing .play-btn--pause::after { box-shadow: -5px 0 0 0 var(--accent), 5px 0 0 0 var(--accent); }
.track-row.is-playing .track-title,
.track-row.is-playing .track-sub { color: var(--accent); }
.track-player { grid-column: 1/-1; overflow: hidden; max-height: 0; transition: max-height var(--duration-expand) ease; width: 100%; }
.track-player.open { max-height: 64px; }
.tp-bar { display: flex; align-items: center; gap: 12px; padding: 0 8px 0 54px; min-height: 44px; flex-wrap: wrap; }
.tp-wrap { flex: 1; height: 6px; background: var(--hairline); position: relative; cursor: pointer; }
.tp-fill { height: 100%; background: var(--ink); width: 0%; pointer-events: none; }
.tp-current { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); min-width: 32px; text-align: right; }

.cta-block { margin-top: 28px; padding: 20px; background: var(--paper-2); }
.cta-block__q { display: block; font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--ink); }
.cta-block__btn { margin-top: 12px; }

/* ==========================================================================
   Store — hero + filter chips + card grid
   ========================================================================== */
.store-hero { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 52vh; border: 1px solid var(--ink); margin: 80px var(--page-pad-desktop) 0; }
.store-hero__cover { position: relative; overflow: hidden; background: var(--black); border-right: 1px solid var(--ink); aspect-ratio: 16/9; }
.store-hero__cover img { width: 100%; height: 100%; object-fit: cover; }
.store-hero__cover iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.store-hero__info { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.store-hero__info h1 { font-family: var(--font-display); font-size: 36px; font-weight: 400; margin: 10px 0; color: var(--ink); }
.store-hero__info p { font-size: 15px; color: var(--ink-secondary); line-height: 1.6; max-width: 420px; }
.store-hero__buy { display: flex; gap: 16px; align-items: center; margin-top: 20px; }
.store-hero__price { font-family: var(--font-display); font-size: 22px; color: var(--ink); }

.store-toolbar { display: flex; gap: 10px; padding: 24px 48px 0; flex-wrap: wrap; }

.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 24px; padding: 20px 48px 64px; }
.store-card { display: flex; flex-direction: column; }
.store-card__img-wrap { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--black); }
.store-card__img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.store-card__body { padding: 16px 0 0; display: flex; flex-direction: column; flex: 1; }
.store-card__meta { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.store-card__title-link { text-decoration: none; color: inherit; }
.store-card__title { font-family: var(--font-ui); font-size: 21px; font-weight: 700; color: var(--ink); margin: 6px 0 8px; transition: color var(--duration-color) var(--ease-out); }
.store-card__title-link:hover .store-card__title { color: var(--accent); }
.store-card__desc { font-size: 13.5px; color: var(--ink-secondary); line-height: 1.45; flex-grow: 1; }
.store-card__foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--hairline); margin-top: 14px; padding-top: 14px; }
.price { font-family: var(--font-display); font-size: var(--text-price-size); color: var(--ink); }

/* Card-mounted transport overlay -- the bar grows out from behind the
   fixed-size play button (width 0 -> calc(100% - 48px)) rather than
   appearing as a full-width bar on its own. */
.card-transport-row { position: absolute; bottom: 12px; left: 12px; right: 12px; display: flex; align-items: center; z-index: 2; }
.card-transport { display: flex; align-items: center; gap: 10px; height: 38px; margin-left: 0; width: 0; opacity: 0; overflow: hidden; background: rgba(0,0,0,0.65); border-radius: 2px; padding: 0; cursor: default; transition: width 380ms ease, opacity 260ms ease, margin-left 380ms ease, padding 380ms ease; }
.card-transport.open { width: calc(100% - 48px); opacity: 1; margin-left: 10px; padding: 0 12px; }
.ct-track { flex: 1; height: 6px; background: rgba(255,255,255,0.25); position: relative; cursor: pointer; }
.ct-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--accent); pointer-events: none; }
.ct-time { font-family: var(--font-mono); font-size: 10px; color: #FFFFFF; min-width: 28px; text-align: right; }

/* ==========================================================================
   Product page
   ========================================================================== */
.wrap { max-width: 1240px; margin: 0 auto; }
.breadcrumb { padding: 80px var(--page-pad-desktop) 0; }
.back { font-family: var(--font-ui); font-size: 22px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); text-decoration: none; transition: color var(--duration-color) var(--ease-out); }
.back:hover { color: var(--accent); }

/* Split panel: bordered video+price column on the left, meta/title/
   description/preview-player column on the right -- same two-column
   pattern as .mixing-split, with the video panel using the same solid
   ink border treatment as .store-hero. */
.pdp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 16px var(--page-pad-desktop) 64px; align-items: start; }

.pdp-media-col { border: 1px solid var(--ink); }
.pdp-video { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--black); }
.pdp-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pdp-media-col .price-bar { margin: 0; padding: 16px 24px; border-top: 1px solid var(--ink); }

.pdp-info-col .new-label { margin-bottom: 0; }
.pdp-title { font-family: var(--font-ui); font-weight: 800; font-size: clamp(28px, 3vw, 42px); letter-spacing: -0.03em; margin: 8px 0 0; color: var(--ink); }
.pdp-desc { font-size: 16px; line-height: 1.7; color: var(--ink-secondary); margin-top: 14px; }
.pdp-desc a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }
.pdp-desc a:hover { color: var(--accent-hover); border-color: var(--accent-hover); }

.pdp-preview { margin-top: 28px; }

.price-bar { display: flex; align-items: center; gap: 24px; background: var(--accent); color: #fff; flex-wrap: wrap; }
.price-bar__price { font-family: var(--font-ui); font-weight: 800; font-size: 32px; }
.price-bar__note { font-size: 12px; opacity: 0.85; flex: 1; }
.price-bar__btn { background: #fff; color: var(--accent); font-size: 11px; font-weight: 700; padding: 12px 24px; }
.price-bar__btn:hover { background: #EAEAEA; }

.pdp-filelist { margin-top: 24px; }
.pdp-filelist a { font-size: 12px; letter-spacing: 0.06em; color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.pdp-filelist a:hover { color: var(--accent-hover); border-color: var(--accent-hover); }

.prod-player { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); flex-wrap: wrap; }
.prod-player .play-btn { flex-shrink: 0; }
.prod-transport { flex: 1; display: flex; align-items: center; gap: 12px; min-width: 160px; }
.prod-track { flex: 1; height: 6px; background: var(--hairline); position: relative; cursor: pointer; }
.prod-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--accent); pointer-events: none; }
.prod-time { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); min-width: 32px; text-align: right; }

/* ==========================================================================
   404 page -- flex:1 fills the space between nav and footer (body's
   sticky-footer flex column), keeping the footer pinned to the bottom.
   ========================================================================== */
.error-page { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 140px var(--page-pad-desktop) 80px; }
.error-page__code { font-family: var(--font-ui); font-weight: 800; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.03em; margin: 8px 0 0; color: var(--ink); }
.error-page__desc { font-size: 16px; color: var(--ink-secondary); max-width: 420px; margin: 16px 0 28px; }
.error-page__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .site-nav, .site-footer, .breadcrumb, .pdp-split,
  .home-about p, .store-hero__info, .store-toolbar, .store-grid, .mixing-intro, .mixing-list {
    padding-left: var(--page-pad-tablet); padding-right: var(--page-pad-tablet);
  }
  .site-nav { padding: 11px var(--page-pad-tablet); }
  .site-nav__logo img { height: 31px; }
  .site-nav__store { font-size: 14px; padding: 8px 16px; }
  .nav-drawer { padding-left: var(--page-pad-tablet); padding-right: var(--page-pad-tablet); }
  .nav-drawer__link { font-size: clamp(28px, 9vw, 44px); }
  .mixing-split, .store-hero, .pdp-split { grid-template-columns: 1fr; }
  .mixing-intro { border-right: none; border-bottom: 1px solid var(--hairline); }
  .store-hero { margin-left: var(--page-pad-tablet); margin-right: var(--page-pad-tablet); }
  .store-hero__cover { border-right: none; border-bottom: 1px solid var(--ink); }

  /* Panels stop filling the viewport and stack as fixed-height cards
     with a visible gap and inset, matching the live site's mobile
     nav -- their own title is always shown since there's no hover. */
  .home-hero { min-height: 0; }
  .home-panels { flex-direction: column; flex: none; gap: 20px; padding: 0 10px 20px; min-height: 0; }
  .home-panel { flex: none; height: 300px; display: flex; align-items: center; border-radius: 15px; clip-path: inset(0 round 15px); }
  .home-panels__overlay { display: none; }
  .home-panel__title-mobile {
    display: block; position: relative; z-index: 5; width: 100%;
    font-family: var(--font-headline); font-weight: 700; color: #FFFFFF;
    font-size: clamp(28px, 9vw, 37px); padding: 0 24px;
    text-align: center;
  }
}
@media (max-width: 478px) {
  .site-nav, .site-footer, .breadcrumb, .pdp-split,
  .home-about p, .store-hero__info, .store-toolbar, .store-grid, .mixing-intro, .mixing-list {
    padding-left: var(--page-pad-mobile); padding-right: var(--page-pad-mobile);
  }
  .site-nav { padding-left: var(--page-pad-mobile); padding-right: var(--page-pad-mobile); }
  .nav-drawer { padding-left: var(--page-pad-mobile); padding-right: var(--page-pad-mobile); }
  .price-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .price-bar__btn { margin-left: 0; }
}
