/* ─────────────────────────────────────────
   Natalie Shay | Official Website
   style.css
   ───────────────────────────────────────── */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Fredoka', sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── MAIN NAV ─── */
nav#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 72px;
  background: transparent;
  transition: background 0.35s;
  isolation: isolate;
  pointer-events: auto;
}
nav#nav.scrolled {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  list-style: none;
  margin-right: 12px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.65; }

.nav-links .store-pill {
  background: #ff8fb1;
  color: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.15s;
}
.nav-links .store-pill:hover {
  background: #ff6b9d;
  opacity: 1;
  transform: scale(1.05);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 20px;
}
.nav-socials a {
  display: flex;
  align-items: center;
  color: #fff;
  transition: opacity 0.2s;
}
.nav-socials a:hover { opacity: 0.6; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #ff8fb1; }
.close-mob {
  position: absolute;
  top: 20px;
  right: 32px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Allow clicks to pass through to the fixed nav above */
  pointer-events: none;
}

/* Re-enable pointer events only on the interactive hero elements */
#hero .hero-content,
#hero .hero-scroll-cue {
  pointer-events: auto;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
}

/* Show desktop image by default, hide mobile */
.hero-bg-desktop { display: block; }
.hero-bg-mobile  { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  margin-top: -30px;
}

/* "atmosphere" KV logo image */
.hero-kv-logo {
  width: clamp(320px, 65vw, 900px);
  max-width: 100%;
  height: auto;
  display: block;
  /* Drop shadow to help it read over the photo */
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-out-now {
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── LISTEN / STREAMING LINKS ─── */
#listen {
  background-color: #1a2a3a;
  background-image: url('https://natalieshay.co.uk/wp-content/uploads/2026/04/atmosphere-PC-KV.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 80px 24px;
  position: relative;
}
#listen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}

.ffm-wrap {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.ffm-loading {
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 60px 0;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Release header */
.sk-release { width: 100%; }

.sk-release-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.sk-artwork {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #222;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.sk-release-info { flex: 1; }

.sk-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sk-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

/* Links list */
.sk-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sk-link {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
  color: #111;
  text-decoration: none;
}
.sk-link:hover {
  background: #fff;
  transform: translateY(-1px);
}

.sk-action {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  padding: 18px 20px;
  min-width: 80px;
}

.sk-platform {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #888;
  text-align: right;
  padding-right: 16px;
}

.sk-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 6px 6px 0;
  color: #fff;
}
.sk-icon svg {
  width: 24px;
  height: 24px;
}

/* ─── VIDEO HERO ─── */
#video {
  position: relative;
}

.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  cursor: pointer;
  background-color: #000;
  background-image: url('https://img.youtube.com/vi/PMeEBJexdYo/maxresdefault.jpg');
  background-size: cover;
  background-position: center center;
  transition: background-size 0.6s ease;
}
.video-hero:hover {
  background-size: 102%;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.6) 100%
  );
  pointer-events: none;
}

/* Song title + duration — bottom centre */
.video-hero-text {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.video-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(16px, 2.5vw, 28px);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 6px;
  white-space: nowrap;
}
.video-duration {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Play button — centred */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.video-play-btn:hover {
  background: #ff8fb1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ─── LIGHTBOX ─── */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.video-lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  width: min(90vw, 1100px);
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── DATES / SONGKICK ─── */
#dates {
  position: relative;
  background-color: #1a1a1a;
  background-image: url('https://natalieshay.co.uk/wp-content/uploads/2026/04/atmosphere-PC-KV.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 80px 48px;
}

/* Dark overlay so the embed reads clearly over the photo */
#dates::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.dates-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* Iframely responsive container */
.iframely-embed { width: 100%; }
.iframely-responsive {
  position: relative;
  padding-bottom: 66.443%;
  height: 0;
  overflow: hidden;
}
.iframely-responsive iframe,
.iframely-responsive object,
.iframely-responsive embed {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ─── ABOUT ─── */
#about { background: #111; padding: 100px 48px; }

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-copy .section-tag    { color: #ff8fb1; }
.about-copy .section-heading { color: #fff; margin-bottom: 24px; }

.stat-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}
.stat-line .big {
  font-family: 'Pacifico', cursive;
  font-size: 54px;
  color: #ff8fb1;
  line-height: 1;
}
.stat-line .unit {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.about-copy p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 16px;
}
.about-copy p strong { color: #fff; font-weight: 600; }

.press-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.press-pill {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}

/* ─── MARQUEE ─── */
#marquee-section {
  overflow: hidden;
  padding: 60px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.marquee-track {
  display: flex;
  animation: ticker 22s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Pacifico', cursive;
  font-size: clamp(44px, 7vw, 86px);
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  padding-right: 72px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SUBSCRIBE ─── */
#subscribe {
  background: #f5f2ee;
  color: #111;
  padding: 100px 48px;
  text-align: center;
}
.sub-desc {
  font-size: 15px;
  color: #666;
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.sub-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
}
.sub-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  background: #fff;
  border: 1.5px solid #ddd;
  border-right: none;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
}
.sub-form input::placeholder { color: #aaa; }
.sub-form input:focus { border-color: #ff8fb1; }
.sub-form button {
  padding: 14px 26px;
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  background: #ff8fb1;
  color: #fff;
  border: 1.5px solid #ff8fb1;
  cursor: pointer;
  transition: background 0.2s;
}
.sub-form button:hover { background: #ff6b9d; border-color: #ff6b9d; }

/* ─── CONTACT ─── */
#contact { background: #111; padding: 100px 48px; }
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.contact-left .section-tag     { color: #ff8fb1; }
.contact-left .section-heading  { color: #fff; margin-bottom: 18px; }
.contact-left > p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}
.booking-block { margin-bottom: 28px; }
.booking-block .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff8fb1;
  margin-bottom: 4px;
}
.booking-block p,
.booking-block a { font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.booking-block a:hover { color: #ff8fb1; }

.contact-socials { display: flex; gap: 10px; margin-top: 6px; }
.contact-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.contact-socials a:hover { border-color: #ff8fb1; color: #ff8fb1; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 5px; }
.cf-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff8fb1;
}
.cf-field input,
.cf-field textarea {
  padding: 13px 14px;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  resize: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.cf-field input:focus,
.cf-field textarea:focus { border-color: #ff8fb1; }
.cf-field textarea { min-height: 110px; }
.send-btn {
  align-self: flex-start;
  padding: 13px 30px;
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #ff8fb1;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.send-btn:hover { background: #ff6b9d; }

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a;
  padding: 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.5px;
  text-align: center;
}
.footer-copy a { color: inherit; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.footer-copy a:hover { color: #ff8fb1; }
.footer-nav { display: flex; gap: 22px; }
.footer-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #ff8fb1; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── CUSTOM CURSOR ─── */
@media (pointer: fine) {
  * { cursor: none !important; }
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: #ff8fb1;
  margin-top: -4px; margin-left: -4px;
  transition: transform 0s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,143,177,0.6);
  margin-top: -18px; margin-left: -18px;
  transition: transform 0.08s linear, width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.hovered {
  width: 56px; height: 56px;
  margin-top: -28px; margin-left: -28px;
  border-color: #ff8fb1;
}

/* ─── STATS STRIP ─── */
#stats {
  background: #0a0a0a;
  padding: 72px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-number {
  font-family: 'Pacifico', cursive;
  font-size: clamp(48px, 6vw, 80px);
  color: #ff8fb1;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Pacifico', cursive;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #ff8fb1;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ─── PRESS CAROUSEL ─── */
#press {
  background: #111;
  padding: 100px 48px;
  overflow: hidden;
}
.press-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.press-carousel {
  position: relative;
  min-height: 160px;
  margin: 40px 0 32px;
}
.press-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.press-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.press-quote {
  font-family: 'Pacifico', cursive;
  font-size: clamp(18px, 2.5vw, 28px);
  color: #fff;
  font-style: normal;
  line-height: 1.4;
  margin-bottom: 20px;
}
.press-source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff8fb1;
  font-style: normal;
}
.press-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.press-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.press-dot.active {
  background: #ff8fb1;
  transform: scale(1.3);
}

/* ─── ABOUT ─── */
#about {
  background: #111;
  padding: 100px 48px;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
}
.about-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 70%;
  height: 70%;
  border: 2px solid rgba(255,143,177,0.3);
  z-index: 0;
}
.about-copy p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.58);
  margin-bottom: 16px;
}
.about-copy p strong { color: #fff; font-weight: 600; }
.about-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  background: #ff8fb1;
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.about-cta:hover { background: #ff6b9d; transform: translateY(-2px); }


@media (max-width: 960px) {
  .nav-links,
  .nav-socials { display: none; }
  .hamburger { display: flex; }
  nav#nav { padding: 0 24px; }
  #listen, #about, #dates, #subscribe, #contact, #stats, #press { padding: 72px 24px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { flex-wrap: wrap; gap: 40px; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 calc(50% - 20px); }
  footer { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { justify-content: center; }
}
@media (max-width: 600px) {
  /* Swap to portrait mobile KV image */
  .hero-bg-desktop { display: none; }
  .hero-bg-mobile  { display: block; object-position: center center; }
  .hero-kv-logo { width: clamp(240px, 85vw, 420px); }
}
@media (max-width: 520px) {
  .sub-form { flex-direction: column; }
  .sub-form input { border-right: 1.5px solid #ddd; }
}