/* ============================================
   jordanjohnson.fm — Mobile-First Stylesheet
   Color palette drawn from hero imagery:
   Navy #0f1923, Emerald #1b3a2d, Gold #c9a84c,
   Cream #f5f0e8, Dark #0a0d11
   ============================================ */

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

:root {
  --color-bg: #0a0d11;
  --color-surface: rgba(10, 13, 17, 0.88);
  --color-gold: #c9a84c;
  --color-gold-light: #e0c874;
  --color-cream: #f5f0e8;
  --color-cream-muted: rgba(245, 240, 232, 0.7);
  --color-emerald: #1b3a2d;
  --color-navy: #0f1923;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- SITE NAV ---- */

.site-nav {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  animation: fadeIn 1s 0.5s ease-out both;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.3rem;
  border-radius: 100px;
  background: rgba(10, 13, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 240, 232, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-cream-muted);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-item i {
  font-size: 1rem;
}

.nav-item span {
  display: none;
}

.nav-item:hover {
  color: var(--color-cream);
  background: rgba(245, 240, 232, 0.08);
}

.nav-item.active {
  color: var(--color-bg);
  background: var(--color-cream);
  font-weight: 600;
}

.nav-home,
.nav-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  text-decoration: none;
  color: var(--color-cream-muted);
  font-size: 1rem;
  transition: all 0.25s ease;
}

.nav-home:hover,
.nav-theme-toggle:hover {
  color: var(--color-cream);
  background: rgba(245, 240, 232, 0.08);
}

.nav-home.active {
  color: var(--color-bg);
  background: var(--color-cream);
}

.nav-theme-toggle {
  border: 1px solid rgba(245, 240, 232, 0.15);
}

.nav-divider {
  width: 1px;
  height: 1.25rem;
  background: rgba(245, 240, 232, 0.12);
  flex-shrink: 0;
  margin: 0 0.15rem;
}

@media (min-width: 600px) {
  .nav-item span {
    display: inline;
  }

  .nav-item {
    padding: 0.4rem 0.85rem;
  }
}

/* ---- HERO ---- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* On mobile, use a pseudo-element for the bg image (iOS doesn't support fixed bg) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-mar25-cover.jpg?v=1') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 13, 17, 0.35) 0%,
    rgba(10, 13, 17, 0.55) 50%,
    rgba(10, 13, 17, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem 6vh;
  max-width: 600px;
  animation: fadeInUp 1s ease-out both;
}

.hero-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto -0.75rem;
  filter: brightness(0) invert(85%) sepia(20%) saturate(500%) hue-rotate(5deg);
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
  display: none;
}

.hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(3rem, 9.5vw, 5.25rem);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.title-line {
  display: block;
  background: linear-gradient(to bottom, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(3px 4px 7px rgba(0, 0, 0, 0.4));
}

.title-line + .title-line {
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.06em;
}


.hero-artist {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  color: #e5d6ab;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.hero-artist-link {
  color: inherit;
  text-decoration: none;
}

/* ---- STREAMING LINKS ---- */

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 100px;
  color: var(--color-cream);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
}

.stream-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.stream-btn:hover,
.stream-btn:focus-visible {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.stream-btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-cream);
  background: rgba(10, 13, 17, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.stream-btn[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- SCROLL INDICATOR ---- */

.scroll-indicator {
  display: block;
  margin-top: 1.5rem;
  text-decoration: none;
  cursor: pointer;
  animation: fadeIn 1s 1.5s ease-out both;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ---- MAIN CONTENT ---- */

.content {
  position: relative;
  z-index: 3;
  background: var(--color-bg);
}

/* ---- STREAM SECTION ---- */

.stream-section {
  min-height: 100vh;
  padding: 4.5rem 1.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.stream-section h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  background: linear-gradient(to bottom, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.stream-section h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.stream-links-row {
  margin-bottom: 0;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: rgba(245, 240, 232, 0.1);
  margin: 2rem auto 0;
}

.section-divider-wide {
  max-width: 640px;
  height: 1px;
  background: rgba(245, 240, 232, 0.1);
  margin: 2rem auto;
}

.stream-section > .streaming-links,
.stream-section > .stream-embed,
.stream-section > .video-embed,
.stream-section > .section-divider-wide,
.stream-section > h2 {
  width: 100%;
}

.stream-embed {
  max-width: 640px;
  margin: 2rem auto 0;
}

.stream-video {
  margin: 1.5rem auto 0;
}

/* ---- WATCH SECTION ---- */

.watch-section {
  min-height: 100vh;
  padding: 1.5rem 1.5rem;
  scroll-margin-top: 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.watch-section h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  background: linear-gradient(to bottom, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.watch-section h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

.watch-section .video-embed {
  width: 100%;
}

/* ---- PAGE SECTIONS ---- */

.page-section {
  min-height: 100vh;
  padding: 4.5rem 1.5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-section h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  background: linear-gradient(to bottom, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.page-section h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

/* ---- HIGHLIGHTS FEED ---- */

.highlights-feed {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.highlight-post {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  text-align: left;
}

.highlight-post:first-child {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.post-date {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-cream-muted);
  margin-bottom: 0.5rem;
}

.post-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 0.4rem;
}

.post-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-cream-muted);
}

.post-body a {
  color: var(--color-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.post-body a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ---- GALLERY MOSAIC ---- */

.gallery-mosaic {
  width: 100%;
  max-width: 900px;
  columns: 2;
  column-gap: 0.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

@media (min-width: 600px) {
  .gallery-mosaic {
    columns: 2;
    column-gap: 0.75rem;
  }

  .gallery-item {
    margin-bottom: 0.75rem;
  }
}

/* ---- LIGHTBOX ---- */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox.active {
  display: flex;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  cursor: default;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: rgba(10, 13, 17, 0.85);
  border: 1px solid rgba(245, 240, 232, 0.2);
  color: var(--color-cream);
  font-size: 1.25rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 1;
}

.lightbox-close:hover {
  background: rgba(245, 240, 232, 0.15);
  border-color: rgba(245, 240, 232, 0.4);
}

.page-section > p {
  font-size: 0.9375rem;
  color: var(--color-cream-muted);
  margin-bottom: 1.5rem;
}

.page-section .social-links {
  margin-bottom: 0;
}

.page-section .section-divider {
  margin: 2rem auto;
}

#shop {
  background: #121820;
}

/* ---- SINGLE SECTION ---- */


.singles-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 700px;
}

.cover-art-link {
  display: block;
  position: relative;
  border-radius: 8px;
}

.cover-art {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  image-rendering: auto;
}

.cover-featured {
  max-width: 320px;
}

.cover-label {
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.covers-side {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cover-small {
  max-width: 150px;
}

.placeholder-art {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-emerald));
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--color-cream-muted);
  text-align: center;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.08);
}

.cover-art-link:hover .cover-art,
.cover-art-link:focus .cover-art,
.cover-art-link:hover .placeholder-art,
.cover-art-link:focus .placeholder-art {
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65),
              0 10px 30px rgba(0, 0, 0, 0.4),
              0 0 50px rgba(201, 168, 76, 0.15);
}

.cover-art-link:active .cover-art,
.cover-art-link:active .placeholder-art {
  transform: scale(1.06);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7),
              0 15px 40px rgba(0, 0, 0, 0.45),
              0 0 60px rgba(201, 168, 76, 0.2);
  transition-duration: 0.15s;
}

/* ---- VIDEO SECTION ---- */

.video-section {
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: center;
}

.video-teaser {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  pointer-events: none;
}

.video-teaser-content {
  text-align: center;
  padding: 1.5rem;
}

.play-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  opacity: 0.7;
  margin-bottom: 1rem;
  animation: playPulse 3s ease-in-out infinite;
}

.video-teaser-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream-muted);
  margin-bottom: 0.25rem;
}

.video-teaser-soon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-gold);
}

.video-embed {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- SOCIAL SECTION ---- */


.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signup-form input[type="email"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 6px;
  background: rgba(245, 240, 232, 0.05);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.signup-form input[type="email"]:focus {
  border-color: var(--color-gold);
}

.signup-form button {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  background: var(--color-gold);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-form button:hover,
.signup-form button:focus-visible {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

.signup-note {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
  margin-top: 0.75rem;
}

/* ---- FOOTER ---- */

.site-footer {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--color-cream-muted);
  border: 1px solid rgba(245, 240, 232, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.social-links a[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-cream);
  background: rgba(10, 13, 17, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-links a[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.social-links a svg {
  width: 25px;
  height: 25px;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--color-gold);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.03em;
}

/* ---- ANIMATIONS ---- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.6; }
}

@keyframes scrollBounce {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@keyframes playPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}

/* Section reveal animation (triggered by JS) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TABLET — 600px+
   ============================================ */

@media (orientation: landscape) and (min-height: 300px) {
  .hero-content {
    margin-top: 20vh;
  }
}

@media (min-width: 600px) {
  .hero-content {
    padding: 2rem 2.5rem;
    margin-top: 16vh;
  }

  .streaming-links {
    gap: 0.75rem;
  }

  .stream-btn {
    padding: 0.75rem 1.375rem;
    font-size: 0.875rem;
  }


  .singles-grid {
    flex-direction: row;
    align-items: center;
    max-width: 700px;
  }

  .cover-featured {
    max-width: none;
    flex: 1.2;
  }

  .covers-side {
    flex-direction: column;
    flex: 0.6;
  }

  .cover-small {
    max-width: none;
  }

  .signup-form {
    flex-direction: row;
  }

  .signup-form input[type="email"] {
    flex: 1;
  }

  .signup-form button {
    white-space: nowrap;
  }

  .video-section {
    padding: 2rem 2rem;
  }
}

/* ============================================
   DESKTOP — 960px+
   ============================================ */

@media (min-width: 960px) {
  .hero {
    align-items: flex-end;
  }

  /* Keep hero background in normal flow to avoid bottom overscroll reveal */
  .hero::before {
    background-attachment: scroll;
  }

  .hero-content {
    padding: 2rem 3rem;
    max-width: 700px;
    margin-top: 0;
    padding-bottom: 3vh;
  }


  .singles-grid {
    max-width: 800px;
  }

  .video-section {
    padding: 2.5rem 3rem;
  }

  .video-teaser,
  .video-embed,
  .stream-embed,
  .section-divider-wide {
    max-width: 800px;
  }


  .site-footer {
    padding: 4rem 3rem 2.5rem;
  }
}

/* ============================================
   WIDE DESKTOP — 1200px+
   ============================================ */

@media (min-width: 1200px) {
  .hero-content {
    max-width: 800px;
    margin-top: 0;
    padding-bottom: 4vh;
  }

  .video-teaser,
  .video-embed,
  .stream-embed,
  .section-divider-wide {
    max-width: 900px;
  }
}

/* ---- ACCESSIBILITY ---- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
