/* ============================================================
   DAVID ALAN GRAHAM — Beach Country Site
   Aesthetic: warm sunset palette, editorial serif display,
   analog grain, Gulf Coast horizon
   ============================================================ */

:root {
  /* Sunset palette */
  --sand:        #f4e8d6;
  --sand-warm:   #ecd9b8;
  --sand-deep:   #d9bd8c;
  --sunset:      #f76c3a;
  --sunset-hot:  #ef4b2e;
  --coral:       #ff8c6a;
  --peach:       #ffc59b;
  --gold:        #f4b44a;
  --sea:         #2a5d6e;
  --sea-deep:    #163847;
  --night:       #0f2430;
  --ink:         #1b1208;
  --cream:       #fbf5e9;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: inline; } }

.sr-only, .hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   GRAIN OVERLAY — analog film texture
   ============================================================ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.04 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pad);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(251, 245, 233, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem var(--pad);
  box-shadow: 0 1px 0 rgba(27,18,8,0.06);
}

.nav__brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  transition: color 0.3s ease;
}

.nav.is-scrolled .nav__brand { color: var(--ink); }

.nav__brand-mark {
  border: 1.5px solid currentColor;
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

.nav__brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sunset);
  box-shadow: 0 0 12px var(--sunset);
}

.nav__links {
  display: none;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.nav__links a {
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav.is-scrolled .nav__links a { color: var(--ink); }

.nav__links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--sunset);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}

/* Mobile menu */
.nav__links.is-open {
  display: flex;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(251, 245, 233, 0.98);
  backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 2rem var(--pad);
  gap: 1.5rem;
  border-top: 1px solid rgba(27,18,8,0.08);
}
.nav__links.is-open a { color: var(--ink); font-size: 1.15rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
}

.hero__sky {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      #1a2a3a 0%,
      #3d3650 18%,
      #7b3a4c 38%,
      #c8503f 58%,
      #f76c3a 75%,
      #f4b44a 88%,
      #ffe0a8 100%);
}

/* Subtle sky stars */
.hero__sky::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 14%, #fff 50%, transparent),
    radial-gradient(1px 1px at 28% 22%, #fff 50%, transparent),
    radial-gradient(1.5px 1.5px at 55% 8%, #fff 50%, transparent),
    radial-gradient(1px 1px at 78% 18%, #fff 50%, transparent),
    radial-gradient(1.5px 1.5px at 88% 12%, #fff 50%, transparent),
    radial-gradient(1px 1px at 40% 28%, #fff 50%, transparent);
  opacity: 0.6;
}

.hero__sun {
  position: absolute;
  left: 50%;
  bottom: 24%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle,
    #fff5d1 0%,
    #ffd98a 35%,
    #f4b44a 55%,
    transparent 72%);
  border-radius: 50%;
  filter: blur(2px);
  animation: sunGlow 8s ease-in-out infinite;
  z-index: 0;
}

@media (min-width: 720px) {
  .hero__sun {
    width: 320px;
    height: 320px;
    bottom: 28%;
  }
}

@keyframes sunGlow {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;    transform: translateX(-50%) scale(1.04); }
}

.hero__water {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28%;
  background: linear-gradient(180deg,
    rgba(124, 58, 76, 0.4) 0%,
    rgba(42, 93, 110, 0.85) 40%,
    var(--sea-deep) 100%);
  overflow: hidden;
}

.wave {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 80px;
  opacity: 0.3;
  background-repeat: repeat-x;
  background-size: 280px 80px;
}

.wave--1 {
  top: 10%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 80'><path d='M0 40 Q 70 10 140 40 T 280 40' fill='none' stroke='%23ffd98a' stroke-width='1.5' opacity='0.6'/></svg>");
  animation: waveMove 20s linear infinite;
}
.wave--2 {
  top: 38%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 80'><path d='M0 40 Q 70 20 140 40 T 280 40' fill='none' stroke='%23f4b44a' stroke-width='1' opacity='0.5'/></svg>");
  animation: waveMove 14s linear infinite reverse;
  opacity: 0.4;
}
.wave--3 {
  top: 62%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 80'><path d='M0 40 Q 70 25 140 40 T 280 40' fill='none' stroke='%23fff5d1' stroke-width='0.8' opacity='0.4'/></svg>");
  animation: waveMove 28s linear infinite;
  opacity: 0.3;
}

@keyframes waveMove {
  to { background-position: -280px 0; }
}

.hero__palms {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.palm {
  position: absolute;
  bottom: 0;
  width: 260px;
  height: 360px;
  opacity: 0.95;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.palm--left { left: -40px; transform: scaleX(-0.9) scaleY(0.9); }
.palm--right { right: -40px; transform: scaleY(0.9); }

@media (max-width: 720px) {
  .palm { width: 180px; height: 250px; }
  .palm--left { left: -60px; }
  .palm--right { right: -60px; }
}

.hero__content {
  position: relative;
  z-index: 4;
  padding: 0 var(--pad);
  max-width: 1000px;
  margin-top: -8vh;
}

/* On mobile, push content up so the sun sits below the tagline */
@media (max-width: 720px) {
  .hero__content {
    margin-top: -22vh;
  }
  .hero__title {
    font-size: clamp(3rem, 14vw, 5rem) !important;
    margin-bottom: 1.25rem;
  }
  .hero__tagline {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 320px;
  }
  .hero__cta .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.9rem;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.92;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero__eyebrow-line {
  width: 40px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-size: clamp(3.5rem, 11vw, 8rem);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero__title-line {
  display: block;
  animation: fadeInUp 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero__title-line--1 {
  font-style: italic;
  font-weight: 500;
  font-size: 0.55em;
  letter-spacing: -0.01em;
  color: var(--peach);
  animation-delay: 0.35s;
}
.hero__title-line--2 {
  animation-delay: 0.5s;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.75s both;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.95s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
  animation: fadeIn 1s ease 1.8s both;
}
.hero__scroll-dot {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  background: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(251,245,233,0.5);
}
.btn--ghost:hover {
  background: rgba(251,245,233,0.12);
  border-color: var(--cream);
}

.btn--sunset {
  background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-hot) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(247, 108, 58, 0.4);
}
.btn--sunset:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(247, 108, 58, 0.55);
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--sand);
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding-left: 2.5rem;
}

.marquee__star { color: var(--sunset); font-style: normal; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
}

.section__header { max-width: 700px; margin-bottom: 3.5rem; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }

.section__num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--sunset);
  margin-bottom: 1rem;
}
.section__num--light { color: var(--peach); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section__title--tight { margin-bottom: 0.75rem; }
.section__title--light { color: var(--cream); }

.section__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgba(27,18,8,0.72);
  font-weight: 400;
  max-width: 620px;
}
.section__header--center .section__lede { margin: 0 auto; }

/* ============================================================
   MUSIC
   ============================================================ */

/* --- Featured: Latest Release hero, full width at top --- */
.music__featured {
  background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-hot) 55%, #c8503f 100%);
  color: var(--cream);
  padding: 2.75rem 2.5rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(247,108,58,0.5);
  isolation: isolate;
  margin-bottom: 2rem;
}

.music__featured::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 480px; height: 480px;
  background: radial-gradient(circle,
    rgba(255,245,209,0.5) 0%,
    rgba(244,180,74,0.3) 40%,
    transparent 70%);
  z-index: -1;
  animation: sunGlow 10s ease-in-out infinite;
}

.music__featured::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(22,56,71,0.15) 100%);
  z-index: -1;
  pointer-events: none;
}

.music__featured-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.music__featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.music__featured-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff5d1;
  box-shadow: 0 0 10px #fff5d1;
  animation: liveDot 2s ease-in-out infinite;
}

.music__featured-meta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}

@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.music__featured-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  max-width: 16ch;
}

.music__featured-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 1.75rem;
  opacity: 0.95;
}

.music__featured-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn--ghost-dark {
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn--ghost-dark:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* --- Dual embeds, equal columns --- */
.music__players {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .music__players { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.music__embed-wrap {
  background: var(--sand-warm);
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: 20px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 40px -20px rgba(247,108,58,0.3),
    0 6px 16px -10px rgba(22,56,71,0.2);
  position: relative;
}

.music__embed-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.75rem 0.3rem 0.5rem;
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
}
.music__embed-label svg { flex-shrink: 0; }

/* --- Also on strip --- */
.music__also-on {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(27,18,8,0.75);
}
.music__also-on-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(27,18,8,0.5);
  font-weight: 600;
  margin-right: 0.25rem;
}
.music__also-on a {
  color: var(--ink);
  border-bottom: 1px solid rgba(247,108,58,0.3);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.music__also-on a:hover { color: var(--sunset); border-bottom-color: var(--sunset); }
.music__also-on-sep { opacity: 0.4; }

.stat-card {
  background: var(--ink);
  color: var(--sand);
  padding: 2.25rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: -60%; right: -30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--sunset) 0%, transparent 70%);
  opacity: 0.35;
  z-index: -1;
}

.stat-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.stat-card__body {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--peach);
  border-bottom: 1px solid rgba(255,197,155,0.3);
  padding-bottom: 3px;
  transition: all 0.25s ease;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.link-arrow:hover { color: var(--sunset); }
.link-arrow:hover svg { transform: translate(2px, -2px); }

.press-card .link-arrow { color: var(--sunset); border-bottom-color: rgba(247,108,58,0.3); }
.press-card .link-arrow:hover { color: var(--sunset-hot); }

.platforms {
  background: var(--sand);
  border: 1px solid rgba(27,18,8,0.08);
  border-radius: 20px;
  padding: 1.75rem 2rem;
}
.platforms__label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(27,18,8,0.6);
  margin-bottom: 0.75rem;
}
.platforms__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.platforms__list a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}
.platforms__list a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--sunset);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.platforms__list a:hover { color: var(--sunset); }
.platforms__list a:hover::after { transform: scaleX(1); }

/* ============================================================
   CATALOG — The full 26-track list as a compact multi-column grid
   ============================================================ */
.music__catalog {
  background: var(--cream);
  border: 1px solid rgba(27,18,8,0.08);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  box-shadow: 0 4px 20px -8px rgba(22,56,71,0.12);
  margin-top: 3rem;
}

.music__catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(27,18,8,0.1);
}

.music__catalog-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.music__catalog-count {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset);
  font-weight: 600;
}

.music__catalog-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem 1.5rem;
}
@media (min-width: 640px) {
  .music__catalog-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .music__catalog-list { grid-template-columns: 1fr 1fr 1fr; }
}

.music__catalog-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  transition: background 0.2s ease;
  min-width: 0;
}
.music__catalog-list li:hover {
  background: rgba(247,108,58,0.06);
}

.music__track-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--sand-deep);
  min-width: 22px;
  flex-shrink: 0;
}

.music__track-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--ink);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music__track-badge {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--sunset);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(247,108,58,0.3);
  flex-shrink: 0;
}

.music__catalog-list li:first-child .music__track-title {
  font-weight: 700;
  color: var(--sunset-hot);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background:
    radial-gradient(ellipse at top right, rgba(255,197,155,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(247,108,58,0.15) 0%, transparent 50%),
    var(--cream);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about__inner { grid-template-columns: 5fr 6fr; gap: 5rem; }
}

.about__media { position: relative; }

.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--sand-deep);
  border-radius: 2px;
  transform: rotate(-2deg);
  box-shadow:
    0 30px 60px -20px rgba(22,56,71,0.3),
    0 8px 20px -10px rgba(0,0,0,0.2);
  padding: 14px 14px 60px;
}

.about__photo-inner {
  width: 100%; height: 100%;
  background-color: #8a6e5a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.about__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Subtle warm tint overlay to blend with sunset palette */
.about__photo-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(247, 108, 58, 0.08) 0%,
    transparent 40%,
    transparent 60%,
    rgba(22, 56, 71, 0.12) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.about__photo-tape {
  position: absolute;
  width: 80px; height: 24px;
  background: rgba(244,180,74,0.55);
  border: 1px solid rgba(244,180,74,0.3);
}
.about__photo-tape--tl { top: -8px; left: -16px; transform: rotate(-12deg); }
.about__photo-tape--br { bottom: 30px; right: -20px; transform: rotate(8deg); }

.about__caption {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(27,18,8,0.55);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 0.5rem;
}
.about__caption-meta {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--sea-deep);
  margin-bottom: 2rem;
  max-width: 520px;
}

.about__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(27,18,8,0.82);
  margin-bottom: 1.25rem;
}
.about__body p:first-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  float: left;
  line-height: 0.85;
  margin: 0.3rem 0.5rem 0 0;
  color: var(--sunset);
}

.about__facts {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27,18,8,0.12);
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .about__facts { grid-template-columns: repeat(3, 1fr); }
}

.fact__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(27,18,8,0.5);
  margin-bottom: 0.35rem;
}
.fact__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
  color: var(--ink);
}

/* ============================================================
   PRESS / EPK
   ============================================================ */
.press__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .press__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .press__grid { grid-template-columns: repeat(4, 1fr); } }

.press-card {
  background: var(--cream);
  border: 1px solid rgba(27,18,8,0.08);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.press-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sunset) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.press-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(247,108,58,0.25);
  border-color: transparent;
}

.press-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(247,108,58,0.12) 0%, rgba(244,180,74,0.12) 100%);
  color: var(--sunset);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.press-card__icon svg { width: 24px; height: 24px; }

.press-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.press-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(27,18,8,0.72);
  margin-bottom: 1.25rem;
}

/* ============================================================
   CONNECT (Newsletter + Contact)
   ============================================================ */
.connect {
  background:
    linear-gradient(180deg, var(--sea-deep) 0%, var(--night) 100%);
  color: var(--sand);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}
.connect::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(247,108,58,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.connect::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(244,180,74,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.connect__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .connect__inner { grid-template-columns: 6fr 5fr; gap: 5rem; }
}

.connect__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(244,232,214,0.8);
  margin: 1.5rem 0 2rem;
  max-width: 500px;
}

.newsletter__row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,197,155,0.2);
  border-radius: 999px;
  padding: 0.4rem;
  transition: border-color 0.25s ease;
}
@media (min-width: 520px) { .newsletter__row { flex-direction: row; } }
.newsletter__row:focus-within { border-color: var(--peach); }

.newsletter input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.9rem 1.25rem;
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
.newsletter input[type="email"]::placeholder { color: rgba(251,245,233,0.5); }

.newsletter__note {
  font-size: 0.78rem;
  color: rgba(244,232,214,0.5);
  margin-top: 0.75rem;
  padding: 0 0.5rem;
}
.newsletter__success {
  margin-top: 1rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.social {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,197,155,0.2);
  color: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.social svg { width: 20px; height: 20px; }
.social:hover {
  background: var(--sunset);
  color: #fff;
  border-color: var(--sunset);
  transform: translateY(-2px);
}

.connect__contact {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,197,155,0.15);
  border-radius: 22px;
  padding: 2.25rem;
  backdrop-filter: blur(8px);
}

.connect__contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.connect__contact-lede {
  color: rgba(244,232,214,0.7);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}

.connect__contact-email {
  color: rgba(244,232,214,0.85);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.connect__contact-email a {
  color: var(--sunset);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(247,108,58,0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.connect__contact-email a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.contact { display: flex; flex-direction: column; gap: 1rem; }
.contact__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 520px) { .contact__row { grid-template-columns: 1fr 1fr; } }

.contact label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,232,214,0.65);
  font-weight: 500;
}
.contact input, .contact select, .contact textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,197,155,0.2);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact input:focus, .contact select:focus, .contact textarea:focus {
  border-color: var(--peach);
  background: rgba(255,255,255,0.1);
}
.contact select option { background: var(--night); color: var(--cream); }
.contact textarea { resize: vertical; min-height: 100px; font-family: inherit; }

.contact__success {
  margin-top: 0.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(244,232,214,0.75);
  padding: 2.5rem var(--pad);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1fr auto; }
}

.footer__brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer__brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.footer__brand-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(244,232,214,0.55);
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  align-items: center;
}
.footer__sep { opacity: 0.4; }
.footer__meta a {
  color: var(--peach);
  transition: color 0.2s ease;
}
.footer__meta a:hover { color: var(--sunset); }

/* ============================================================
   REVEAL ANIMATIONS (JS-triggered)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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