/* ===========================================================
   SERGE SARNA — Music site
   Dark / futuristic / teal-green accent
   =========================================================== */

:root {
  /* Surfaces */
  --bg-0: #050b12;
  --bg-1: #08121b;
  --bg-2: #0c1a27;
  --bg-3: #142a3e;
  --bg-elev: #0f2031;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(30, 215, 96, 0.35);

  /* Accent — teal-green (Spotify-adjacent) */
  --accent: #1ED760;
  --accent-2: #00E5C5;
  --accent-soft: rgba(30, 215, 96, 0.14);
  --accent-glow: rgba(30, 215, 96, 0.45);

  /* Highlights */
  --warn: #FF5D7A;
  --gold: #F2C94C;

  /* Text */
  --text: #e6edf3;
  --text-soft: #b6c4d1;
  --text-muted: #7e909f;
  --text-dim: #4d5d6c;

  /* Type */
  --font-display: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------  Base  ---------- */
* { box-sizing: border-box; }

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.005em;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(0, 229, 197, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(30, 215, 96, 0.06), transparent 60%),
    linear-gradient(180deg, #050b12 0%, #03070c 100%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #03241c; }

/* Subtle grid overlay — gives futuristic feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 80%);
  z-index: 0;
}

main, .page-shell, footer { position: relative; z-index: 1; }

/* ----------  Type  ---------- */
.display-xxl, .display-xl, .display-lg, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.display-xxl { font-size: clamp(3.2rem, 8vw, 6.4rem); letter-spacing: -0.035em; }
.display-xl  { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
.display-lg  { font-size: clamp(2rem, 3.5vw, 3rem); }

h2.section-title {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.mono { font-family: var(--font-mono); }

/* ----------  Navbar  ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  background: linear-gradient(180deg, rgba(5, 11, 18, 0.85) 0%, rgba(5, 11, 18, 0.55) 100%);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
}

.nav-link:hover { color: var(--text); }

.nav-link.is-active {
  color: var(--accent);
}

.nav-link.is-active::after {
  content: '•';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 0.7rem;
}

.nav-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-socials a {
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
}

.nav-socials a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 10px;
}

/* ----------  Buttons  ---------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-accent);
  background: transparent;
  color: var(--text);
  transition: all 0.25s var(--ease);
}

.btn-pill:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(30, 215, 96, 0.08), 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-pill .spotify-dot {
  width: 22px; height: 22px;
  background: var(--accent);
  color: #03241c;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #03241c;
  font-weight: 700;
  border: none;
  transition: all 0.25s var(--ease);
}

.btn-solid:hover {
  background: #25e468;
  box-shadow: 0 0 30px var(--accent-glow);
  color: #03241c;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--accent); }

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  padding: 36px 0 60px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  min-height: clamp(440px, 56vh, 620px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 18px 0 8px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.05;
  background: linear-gradient(115deg, var(--accent) 0%, var(--accent-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 460px;
  margin-bottom: 30px;
  line-height: 1.55;
}

.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 18px;
  overflow: hidden;
  background: #0a1623;
  box-shadow:
    0 0 0 1px var(--border-strong),
    0 30px 80px -20px rgba(0, 229, 197, 0.25),
    inset 0 0 60px rgba(0, 229, 197, 0.05);
}

.hero-art img,
.hero-art svg.art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,11,18,0.55) 0%, transparent 30%, transparent 70%, rgba(5,11,18,0.4) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(5,11,18,0.5) 100%);
  pointer-events: none;
}

/* small scanline shimmer */
.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 3px,
    rgba(255, 255, 255, 0.018) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* ----------  Section header (with squiggle wave)  ---------- */
.section {
  padding: 56px 0;
  position: relative;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wave-glyph {
  display: inline-block;
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

/* ----------  Cards (generic)  ---------- */
.card-surface {
  background: linear-gradient(180deg, rgba(15, 32, 49, 0.7) 0%, rgba(8, 18, 27, 0.7) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card-surface:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.6);
}

/* ----------  Track cards (audio widget)  ---------- */
.track-card {
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.track-cover {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2b3d;
  position: relative;
}

.track-cover img, .track-cover svg {
  width: 100%; height: 100%; display: block; object-fit: cover;
}

.track-meta {
  flex: 1;
  min-width: 0;
}

.track-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.track-player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #03241c;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 22px -4px var(--accent-glow);
}

.play-btn:hover { transform: scale(1.06); box-shadow: 0 8px 28px -4px var(--accent-glow); }
.play-btn:active { transform: scale(0.96); }

.play-btn svg { width: 14px; height: 14px; }

.waveform {
  flex: 1;
  height: 32px;
  position: relative;
  cursor: pointer;
}

.waveform svg {
  width: 100%; height: 100%;
  overflow: visible;
}

.waveform .wf-bar {
  fill: var(--text-dim);
  transition: fill 0.05s linear;
}

.waveform .wf-bar.is-played {
  fill: var(--accent);
}

.track-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-left: auto;
  flex-shrink: 0;
}

/* ----------  Album cards  ---------- */
.album-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.album-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.album-head > .album-head-text {
  flex: 1 1 auto;
  min-width: 0;
}

.album-head .album-name,
.album-head .album-artist {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album-cover {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a2b3d;
}

.album-cover img, .album-cover svg {
  width: 100%; height: 100%; object-fit: cover;
}

.album-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.album-name.is-highlight { color: var(--warn); }
.album-name.is-gold { color: var(--gold); }
.album-name.is-accent { color: var(--accent); }

.album-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.album-tracklist {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.album-tracklist li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.88rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
}

.album-tracklist li:last-child { border-bottom: none; }

.album-tracklist .tt-num {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.album-tracklist .tt-dur {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.album-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.album-link:hover { color: var(--accent); }

.album-link .platform-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #1a2b3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.album-link:hover .platform-icon {
  background: var(--accent);
  color: #03241c;
}

/* ----------  Video cards  ---------- */
.video-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}

.video-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img, .video-thumb svg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.video-card:hover .video-thumb img,
.video-card:hover .video-thumb svg {
  transform: scale(1.04);
}

.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 11, 18, 0.85) 100%);
  pointer-events: none;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.video-play .play-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all 0.25s var(--ease);
}

.video-card:hover .play-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #03241c;
  transform: scale(1.06);
  box-shadow: 0 0 30px var(--accent-glow);
}

.video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.video-meta {
  padding: 14px 16px 16px;
}

.video-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}

.video-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Inline iframe replacement for clicked thumbs */
.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
}

/* ----------  Footer / Newsletter  ---------- */
.site-footer {
  margin-top: 80px;
  padding: 40px 0 32px;
  background: linear-gradient(180deg, rgba(15, 32, 49, 0.4) 0%, rgba(5, 11, 18, 0.8) 100%);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 32px;
  background: rgba(8, 18, 27, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.footer-newsletter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.footer-newsletter-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(30, 215, 96, 0.05);
}

.newsletter-form input::placeholder { color: var(--text-dim); }

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  transition: all 0.25s;
}

.footer-socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.footer-tail {
  padding: 28px 0 0;
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ----------  Page header (interior pages)  ---------- */
.page-header {
  padding: 64px 0 40px;
  position: relative;
}

.page-header .eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}

.page-header h1 {
  margin: 0 0 14px;
}

.page-header p.lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0;
}

/* ----------  Embed (spotify / youtube) frames  ---------- */
.embed-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-1);
  position: relative;
}

.embed-frame iframe {
  border: 0;
  display: block;
  width: 100%;
}

.embed-spotify iframe { height: 152px; }
.embed-spotify.embed-spotify-tall iframe { height: 380px; }
.embed-youtube { aspect-ratio: 16/9; }
.embed-youtube iframe { width: 100%; height: 100%; }

/* ----------  About page  ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 40px;
}

.about-portrait {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1623;
  border: 1px solid var(--border-strong);
  position: relative;
}

.about-portrait img, .about-portrait svg {
  width: 100%; height: 100%; object-fit: cover;
}

.about-bio p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.alter-ego-card {
  margin-top: 28px;
  padding: 26px;
  border: 1px dashed var(--border-strong);
  border-radius: 14px;
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(0, 229, 197, 0.08), transparent 60%),
    rgba(15, 32, 49, 0.4);
}

.alter-ego-card .eyebrow { margin-bottom: 8px; }

.alter-ego-card h3 {
  font-size: 1.5rem;
  margin: 0 0 10px;
  background: linear-gradient(115deg, var(--accent-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.alter-ego-card p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  border-left: 1px solid var(--border-strong);
}

.timeline li {
  position: relative;
  padding: 14px 0 14px 28px;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 22px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(30, 215, 96, 0.15);
}

.timeline .year {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.timeline .event {
  color: var(--text-soft);
  margin-top: 2px;
}

/* ----------  Contact page  ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 32, 49, 0.7) 0%, rgba(8, 18, 27, 0.7) 100%);
}

.contact-card h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
}

.contact-card .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card .value {
  color: var(--text-soft);
  font-size: 0.95rem;
  word-break: break-word;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input, .form-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(30, 215, 96, 0.05);
}

/* ----------  Contact modal  ---------- */
#contactModal .modal-content {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(30,215,96,0.08);
  color: var(--text);
}

#contactModal .modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  align-items: flex-start;
  background: transparent;
}

#contactModal .modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

#contactModal .modal-body {
  background: transparent;
  color: var(--text);
}

#contactModal .form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#contactModal .form-field input,
#contactModal .form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}

#contactModal .form-field input::placeholder,
#contactModal .form-field textarea::placeholder {
  color: var(--text-dim);
}

#contactModal .form-field input:focus,
#contactModal .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(30, 215, 96, 0.05);
  box-shadow: none;
}

#contact-modal-status span {
  font-size: 0.88rem;
}

/* ----------  Responsive  ---------- */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-art { aspect-ratio: 16/10; max-height: 360px; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu { display: none; }
  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border-strong);
    padding: 12px 20px 18px;
    gap: 4px;
  }
  .nav-menu.is-open .nav-link { padding: 10px 0; width: 100%; }
  .nav-menu.is-open .nav-link.is-active::after { display: none; }
  .nav-socials { display: none; }
  .section { padding: 36px 0; }
  .display-xxl { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .album-tracklist { font-size: 0.82rem; }
  .footer-tail { flex-direction: column; gap: 6px; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
