/* ============================================
   JOEL SCHANTZ - CINEMATIC DARK THEME
   Fonts: Libre Baskerville (headlines), Inter (body)
   Palette: Charcoal, Cream, Brass, Oxblood
   ============================================ */

/* ── FONTS (self-hosted woff2) ────────────── */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/libre-baskerville-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/libre-baskerville-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/libre-baskerville-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/inter-light.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-medium.woff2') format('woff2');
}

/* ── DESIGN TOKENS ────────────────────────── */
:root {
  --black: #1A1A1A;
  --charcoal: #2B2B2B;
  --charcoal-mid: #313131;
  --cream: #F4F1EC;
  --cream-90: rgba(244, 241, 236, 0.9);
  --cream-70: rgba(244, 241, 236, 0.7);
  --cream-50: rgba(244, 241, 236, 0.5);
  --cream-30: rgba(244, 241, 236, 0.3);
  --cream-15: rgba(244, 241, 236, 0.15);
  --cream-08: rgba(244, 241, 236, 0.08);
  --brass: #B08D57;
  --brass-hover: #C4A06D;
  --oxblood: #6A1F2B;
  --oxblood-light: #7D2A36;

  --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1100px;
  --content-narrow: 720px;
  --transition: 0.2s ease;
}

/* ── RESET ────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--charcoal);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brass);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brass-hover);
}

/* ── ACCESSIBILITY ───────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--cream);
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 2px;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 1.75rem; margin-bottom: 1rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 3rem;
}

.content-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

/* ═══════════════════════════════════════════
   NAVIGATION — ghost nav over hero
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem 3.5rem;
  background: linear-gradient(to bottom,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(26, 26, 26, 0.45) 55%,
    transparent 100%
  );
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  padding-bottom: 1.25rem;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease;
}

.nav.scrolled .nav-logo img {
  height: 50px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-70);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* ═══════════════════════════════════════════
   SOCIAL SIDEBAR — quiet vertical strip
   ═══════════════════════════════════════════ */
.social-sidebar {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.social-sidebar::before,
.social-sidebar::after {
  content: '';
  width: 1px;
  height: 2rem;
  background: var(--cream-30);
}

.social-sidebar a {
  display: block;
  color: var(--brass);
  width: 26px;
  height: 26px;
  transition: color 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.social-sidebar a:hover {
  color: var(--cream);
}

.social-sidebar a svg {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════
   HERO — left-aligned, brighter image
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.55) saturate(0.9);
}

/* Diagonal gradient: dark left for text, lighter right to show image */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43, 43, 43, 0.85) 0%,
    rgba(43, 43, 43, 0.5) 35%,
    rgba(43, 43, 43, 0.15) 60%,
    rgba(43, 43, 43, 0.3) 100%
  );
}

/* Bottom fade for seamless transition to charcoal */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--charcoal));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 3.5rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-90);
  margin-bottom: 0.75rem;
}

.hero-tagline em {
  font-style: normal;
  color: var(--brass);
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.hero-location {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  border: 1px solid var(--brass);
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}

.hero-cta:hover {
  background: var(--brass);
  color: var(--black);
}

/* ═══════════════════════════════════════════
   HERO INTRO — separated below hero
   ═══════════════════════════════════════════ */
.hero-intro-section {
  background: var(--charcoal);
  padding: 0 2rem 4.5rem;
}

.hero-intro-mark {
  display: block;
  width: 1px;
  height: 3rem;
  background: var(--brass);
  margin: 0 auto 2.5rem;
}

.hero-intro-section p {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 2;
  color: var(--cream-70);
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-intro-section p + p {
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════
   SHOW ZONE — lighter strip with show cards
   ═══════════════════════════════════════════ */
.show-zone {
  background: var(--charcoal-mid);
  padding-bottom: 3rem;
  border-top: 1px solid var(--cream-08);
  border-bottom: 1px solid var(--cream-08);
}

.show-zone .show-card {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   SHOW CARD — date column format
   ═══════════════════════════════════════════ */
.show-card {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--cream-08);
  border-bottom: 1px solid var(--cream-08);
  padding: 0 3rem;
}

.show-card + .show-card {
  border-top: 1px solid var(--cream-08);
}

.show-card-inner {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.show-card-date {
  flex: 0 0 110px;
  padding: 2.25rem 2.5rem 2.25rem 0;
  border-right: 1px solid var(--cream-08);
  text-align: center;
}

.show-card-date-month {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.2rem;
}

.show-card-date-day {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.show-card-info {
  flex: 1;
  padding: 2.25rem 2rem;
}

.show-card-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.4rem;
}

.show-card-venue {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.show-card-details {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--cream-50);
}

.show-card-action {
  flex: 0 0 auto;
  padding: 2.25rem 0 2.25rem 2rem;
}

.link-underline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.link-underline:hover {
  border-bottom-color: var(--brass);
}

/* ═══════════════════════════════════════════
   SPOTIFY BRIDGE — quote + embedded card
   ═══════════════════════════════════════════ */
.spotify-bridge {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 3rem 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.spotify-bridge-text {
  padding-top: 1rem;
}

.spotify-bridge-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}

.spotify-bridge-label::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-left: 0.75rem;
}

.spotify-bridge-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  max-width: 480px;
}

.spotify-bridge-card {
  background: var(--black);
  border: 1px solid var(--cream-08);
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.spotify-bridge-card-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.spotify-bridge-card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.15rem;
}

.spotify-bridge-card-artist {
  font-size: 0.8125rem;
  color: var(--cream-50);
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.spotify-bridge-card-credit {
  font-size: 0.6875rem;
  color: var(--cream-30);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.spotify-bridge-card iframe {
  display: block;
  border-radius: 8px;
}


/* ═══════════════════════════════════════════
   ABOUT — Editorial Overlap
   ═══════════════════════════════════════════ */
.about {
  background: var(--charcoal);
  overflow: hidden;
}

.about-card {
  max-width: calc(1100px - 6rem);
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal-mid);
  border: 1px solid var(--cream-08);
  overflow: hidden;
}

.about-card-image {
  position: relative;
  overflow: hidden;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: brightness(0.8) saturate(0.9);
}

.about-card-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.75rem;
}

.about-label::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-left: 0.75rem;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.about-body,
.about-body p {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  color: var(--cream-70);
  margin: 0;
}
.about-body {
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════
   INNER PAGE — Page Header (cinematic)
   ═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.4) saturate(0.85);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(26, 26, 26, 0.2) 0%,
    rgba(26, 26, 26, 0.05) 30%,
    rgba(43, 43, 43, 0.5) 65%,
    rgba(43, 43, 43, 0.9) 85%,
    var(--charcoal) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 3rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

.page-hero-label::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-left: 0.75rem;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--cream-70);
  max-width: 500px;
  line-height: 1.6;
}

/* Typographic page header (no image) */
.page-header-text {
  padding: 10rem 3rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.page-header-text .page-hero-label {
  margin-bottom: 1rem;
}

.page-header-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.page-header-text .page-intro,
.page-header-text .page-intro p {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: var(--cream-70);
  max-width: 560px;
  margin: 0;
}

.page-header-text .page-intro + hr {
  border: none;
  border-top: 1px solid var(--cream-08);
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════
   INNER PAGE — Centered Intro Section
   ═══════════════════════════════════════════ */
.page-intro-section {
  background: var(--charcoal);
  padding: 3rem 2rem 4.5rem;
  text-align: center;
}

.page-intro-section .hero-intro-mark {
  display: block;
  width: 1px;
  height: 3rem;
  background: var(--brass);
  margin: 0 auto 2.5rem;
}

.page-intro-section p {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 2;
  color: var(--cream-70);
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.page-intro-section p + p {
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — Split Screen Layout
   50/50 hero: text left, image right
   ═══════════════════════════════════════════ */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.split-hero--short {
  min-height: 70vh;
}

.split-hero-text {
  background: var(--charcoal-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 8rem;
  position: relative;
}

.split-hero-text::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--brass), transparent);
}

.split-hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.split-hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream-70);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.split-hero-intro,
.split-hero-intro p {
  font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--cream-70);
  margin: 0;
  max-width: 420px;
}

.split-hero-image {
  position: relative;
  overflow: hidden;
}

.split-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.6) saturate(0.85);
}

.split-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--charcoal-mid) 0%,
    rgba(49,49,49,0.4) 15%,
    transparent 40%
  );
}

.split-hero-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(26,26,26,0.5), transparent);
}

/* Pullquote band */
.split-quote-band {
  background: var(--charcoal);
  padding: 2rem 3rem;
  text-align: center;
}

.split-quote {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  padding: 1.5rem 0;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  max-width: 640px;
  margin: 0 auto;
}

/* Story section */
.split-story {
  background: var(--charcoal);
  padding: 2rem 2rem 4rem;
}

.split-story-inner {
  max-width: 640px;
  margin: 0 auto;
}

.split-story .about-label {
  margin-bottom: 2rem;
}

.bio-block,
.bio-block p {
  font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--cream-70);
  margin: 0;
}

.bio-block + .bio-block {
  margin-top: 1.5rem;
}

/* Closing quote band */
.split-closing {
  background: var(--charcoal);
  padding: 3rem;
  text-align: center;
}

/* ═══════════════════════════════════════════
   MEDIA PAGE — Option 4: Featured + Row
   ═══════════════════════════════════════════ */

.media-section-label {
  max-width: calc(1100px - 6rem);
  margin: 2rem auto 0;
}

/* Featured video — two-column: embed left + text right */
.video-featured {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--charcoal-mid);
  border: 1px solid var(--cream-08);
  margin: 2rem auto 1.5rem;
  max-width: calc(1100px - 6rem);
  overflow: hidden;
}

.video-featured .video-wrapper {
  margin-bottom: 0;
  height: 0;
}

/* Portrait featured: tall column, text beside it */
.video-featured--portrait {
  grid-template-columns: 280px 1fr;
}

.video-featured--portrait .video-wrapper {
  padding-bottom: 177.78%;
}

/* Landscape featured: wider embed column */
.video-featured--landscape {
  grid-template-columns: 480px 1fr;
}

.video-featured--landscape .video-wrapper {
  padding-bottom: 56.25%;
}

.video-featured-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-featured-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.video-featured-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cream-70);
  margin-bottom: 1.25rem;
}

/* Genre label (shared by featured + cards) */
.video-genre {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
  margin-bottom: 0.35rem;
}

/* YouTube link */
.video-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cream-70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.video-yt-link:hover {
  color: var(--cream);
}

.video-yt-link svg {
  fill: var(--brass);
}

/* YouTube link inside video cards */
.video-card .video-yt-link {
  display: inline-flex;
  align-items: flex-start;
  padding: 0 0.875rem 0.75rem;
  font-size: 0.75rem;
}
.video-card .video-yt-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Video row — 4-column grid of compact cards */
.video-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: calc(1100px - 6rem);
  margin: 0 auto 3rem;
}

.video-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--cream-08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-card .video-yt-link {
  margin-top: auto;
}

.video-card .video-wrapper {
  margin-bottom: 0;
}

.video-card-info {
  padding: 0.75rem 0.875rem;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.15rem;
}

.video-card-desc {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  line-height: 1.4;
  color: var(--cream-70);
}

/* Video wrapper — default landscape (16:9) */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* Portrait video wrapper (9:16) */
.video-wrapper--portrait {
  padding-bottom: 177.78%;
}

/* Landscape stays default */
.video-wrapper--landscape {
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-video {
  width: 100%;
}

/* ── Audio Section — Vinyl Featured + Compact Rows ── */
.audio-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 3rem 3rem;
}

.audio-vinyl {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--charcoal-mid);
  border: 1px solid var(--cream-08);
  margin-bottom: 1.5rem;
}

.audio-vinyl-disc {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--black) 0deg, var(--charcoal) 30deg,
    var(--black) 60deg, var(--charcoal) 90deg,
    var(--black) 120deg, var(--charcoal) 150deg,
    var(--black) 180deg, var(--charcoal) 210deg,
    var(--black) 240deg, var(--charcoal) 270deg,
    var(--black) 300deg, var(--charcoal) 330deg,
    var(--black) 360deg
  );
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.audio-vinyl-disc::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px var(--charcoal-mid), 0 0 0 5px var(--brass);
}

.audio-vinyl-genre {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.audio-vinyl-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.audio-vinyl-artist {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--cream-50);
  margin-bottom: 0.5rem;
}

.audio-vinyl-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--cream-50);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.audio-vinyl-player { width: 100%; }

/* ── Custom Audio Player ── */
.custom-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.5rem 0;
}

.cp-play {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cream-30);
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cp-play:hover {
  border-color: var(--brass);
  background: rgba(176,141,87,0.1);
}

.cp-track {
  flex: 1;
  height: 4px;
  background: var(--cream-15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cp-progress {
  height: 100%;
  background: var(--brass);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.cp-time {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cream-50);
  font-variant-numeric: tabular-nums;
  min-width: 80px;
  text-align: right;
}

.audio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--charcoal-mid);
  border: 1px solid var(--cream-08);
  margin-bottom: 0.5rem;
}

.audio-row-genre {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.25rem;
}

.audio-row-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.audio-row-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--cream-50);
  line-height: 1.5;
}

.content-audio {
  width: 100%;
}

.media-title {
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════
   SHOWS PAGE — Two-column header + show cards
   ═══════════════════════════════════════════ */
/* Shows section headings */
.shows-section-heading {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 3rem 1rem;
}

.shows-section-heading::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-left: 0.75rem;
}

.shows-empty {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--cream-50);
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 3rem;
}

/* Past shows */
.past-shows-section {
  padding-bottom: 3rem;
}

.past-shows-toggle {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.past-shows-toggle summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 1.5rem 0;
  border-top: 1px solid var(--cream-08);
}

.past-shows-toggle summary::-webkit-details-marker {
  display: none;
}

.past-shows-toggle summary::after {
  content: ' +';
  font-family: var(--font-body);
}

.past-shows-toggle[open] summary::after {
  content: ' \2013';
}

.past-shows-toggle .show-card {
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   BOOKING PAGE — Sidebar + Form (Option 4)
   ═══════════════════════════════════════════ */
.booking-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
  position: relative;
}

/* Sidebar: title, intro, services, contact */
.booking-sidebar {
  position: relative;
  border-right: 1px solid var(--cream-08);
  padding: 8rem 2.5rem 3rem 0;
  display: flex;
  flex-direction: column;
}

/* Extend sidebar background to left edge of viewport */
.booking-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -50vw;
  background: var(--charcoal-mid);
  z-index: -1;
}

.booking-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.booking-sidebar-intro,
.booking-sidebar-intro p {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--cream-70);
  margin: 0 0 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-08);
}

.booking-sidebar-services {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-08);
}

.booking-sidebar-services li {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--cream-90);
  padding: 0.4rem 0;
}

.booking-sidebar-services li::before {
  content: "\2014";
  margin-right: 0.75rem;
  color: var(--brass);
}

.booking-sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.booking-contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--cream-70);
  text-decoration: none;
  transition: color var(--transition);
}

.booking-contact-link:hover {
  color: var(--cream);
}

.booking-contact-link svg {
  flex-shrink: 0;
  color: var(--brass);
}

/* Main area: CTA + form */
.booking-main {
  padding: 8rem 0 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.booking-main-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.booking-main-label::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-left: 0.75rem;
}

.booking-main-cta {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--cream-70);
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════
   FORMS — Dark themed
   ═══════════════════════════════════════════ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  padding: 0.875rem 0;
  border: none;
  border-bottom: 1px solid var(--cream-15);
  background: transparent;
  color: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--brass);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--cream-30);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 300;
}

.form-status.success {
  color: #5CAA6E;
}

.form-status.error {
  color: #D94B4B;
}

/* Honeypot field */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  tab-index: -1;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-width: 44px;
  min-height: 44px;
}

.btn-primary {
  background: var(--brass);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--brass-hover);
  color: var(--black);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream-15);
}

.btn-secondary:hover {
  border-color: var(--cream-50);
  color: var(--cream);
}

.btn-sm {
  font-size: 0.625rem;
  padding: 0.625rem 1.5rem;
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
}

.gallery-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: opacity var(--transition);
  border-radius: 2px;
}

.gallery-image:hover {
  opacity: 0.85;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox-overlay.active {
  opacity: 1;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

figure {
  margin-bottom: 1rem;
}

figcaption {
  font-size: 0.8125rem;
  color: var(--cream-50);
  margin-top: 0.5rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 4.5rem 3rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--cream-50);
  line-height: 1.7;
  max-width: 260px;
}

.footer-heading {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-list a {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--cream-50);
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--cream-70);
}

.footer-social-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.footer-social-row a {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--brass);
}

.footer-social-row a:hover {
  color: var(--brass-hover);
}

.footer-social-row svg {
  width: 100%;
  height: 100%;
}

.footer-newsletter {
  display: flex;
  border: 1px solid var(--cream-08);
}

.footer-newsletter input {
  flex: 1;
  padding: 0.7rem 0.875rem;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: var(--cream-30);
}

.footer-newsletter button {
  padding: 0.7rem 1.25rem;
  background: var(--brass);
  border: none;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background: var(--brass-hover);
}

.footer-newsletter-status {
  font-size: 0.8125rem;
  font-weight: 300;
  margin-top: 0.5rem;
}

.footer-newsletter-status.success {
  color: #5CAA6E;
}

.footer-newsletter-status.error {
  color: #D94B4B;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--cream-08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--cream-30);
}

.footer-back {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-30);
  text-decoration: none;
}

.footer-back:hover {
  color: var(--cream-50);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav {
    padding: 1.25rem 2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-08);
    font-size: 0.875rem;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .social-sidebar {
    display: none;
  }

  .show-card {
    padding: 0 2rem;
  }

  .show-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .show-card-date {
    border-right: none;
    border-bottom: 1px solid var(--cream-08);
    padding: 1.5rem 0;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
  }

  .show-card-info {
    padding: 1.5rem 0;
  }

  .show-card-action {
    padding: 0 0 1.5rem;
  }

  .spotify-bridge {
    grid-template-columns: 1fr;
    padding: 2rem 2rem 0;
  }

  .about-card {
    grid-template-columns: 1fr;
    margin: 2rem 2rem;
  }

  .about-card-image {
    height: 300px;
  }

  .about-card-text {
    padding: 2.5rem 2rem;
  }

  .footer {
    padding: 3.5rem 2rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Inner page responsive */
  .page-hero-content {
    padding: 0 2rem 3rem;
  }

  .page-header-text {
    padding: 8rem 2rem 2.5rem;
  }

  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-hero-text {
    padding: 8rem 2rem 3rem;
    order: 2;
  }

  .split-hero-text::after {
    display: none;
  }

  .split-hero-image {
    height: 50vh;
    order: 1;
  }

  .split-hero-image::before {
    background: linear-gradient(to bottom, transparent 60%, var(--charcoal-mid) 100%);
  }

  .split-quote-band {
    padding: 2.5rem 2rem;
  }

  .split-story {
    padding: 3rem 2rem;
  }

  .split-closing {
    padding: 3rem 2rem;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    padding: 6rem 2rem 2.5rem;
    border-right: none;
    border-bottom: 1px solid var(--cream-08);
  }

  .booking-sidebar::before {
    left: -2rem;
  }

  .booking-sidebar-contact {
    margin-top: 2rem;
  }

  .booking-main {
    padding: 2.5rem 0;
    max-width: 100%;
  }

  .video-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2rem;
  }

  .video-featured {
    margin: 2rem 2rem 1.5rem;
  }

  .container {
    padding: 0 2rem;
  }

  .audio-section {
    padding: 1rem 2rem 3rem;
  }

  .audio-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 600px
   ═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero {
    height: 85vh;
  }

  .hero-content {
    padding: 0 1.5rem 2.5rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .hero-name {
    letter-spacing: 0;
  }

  .hero-tagline {
    letter-spacing: 0.12em;
  }

  .hero-intro-section p {
    font-size: 0.9375rem;
  }

  .show-card {
    padding: 0 1.5rem;
  }

  .spotify-bridge {
    padding: 0 1.5rem;
    gap: 2rem;
  }

  .about-card-text {
    padding: 2rem 1.5rem;
  }

  .split-hero-text {
    padding: 6rem 1.5rem 2.5rem;
  }

  .split-hero-image {
    height: 40vh;
  }

  .split-quote-band {
    padding: 2rem 1.5rem;
  }

  .split-story {
    padding: 2.5rem 1.5rem;
  }

  .split-closing {
    padding: 2.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding: 3rem 1.5rem 2rem;
  }

  .page-header-text {
    padding: 7rem 1.5rem 2rem;
  }

  .page-hero-content {
    padding: 0 1.5rem 2.5rem;
  }

  .booking-sidebar {
    padding: 5rem 1.5rem 2rem;
  }

  .booking-main {
    padding: 2rem 0;
  }

  .video-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }

  .video-featured {
    grid-template-columns: 1fr;
    margin: 1.5rem 1.5rem 1.25rem;
  }

  .video-featured .video-wrapper {
    height: auto;
  }

  /* On mobile stack, portrait gets capped height so it doesn't dominate */
  .video-featured--portrait .video-wrapper {
    padding-bottom: 120%;
  }

  .video-featured--landscape .video-wrapper {
    padding-bottom: 56.25%;
  }

  .video-featured-text {
    padding: 1.5rem;
  }

  .video-featured-title {
    font-size: 1.25rem;
  }

  .closing-quote {
    padding: 3.5rem 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
