:root {
  /* soft California evening palette */
  --night:     #2a1f2e; /* deep dusk plum */
  --night-2:   #3a2a37;
  --dusk:      #6b4f63; /* muted mauve */
  --peach:     #f6c8a0; /* warm horizon glow */
  --amber:     #e8a06b; /* radio dial amber */
  --cream:     #f5ece2; /* warm off-white text */
  --cream-dim: #cbbcae;
  --radius: 18px;
}

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

html { background: var(--night); }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(246, 200, 160, 0.22) 0%, rgba(232, 160, 107, 0.08) 32%, rgba(42, 31, 46, 0) 62%),
    linear-gradient(180deg, #4a3142 0%, #34253136 18%, var(--night) 55%, #221a25 100%);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.wrap {
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 3rem 0;
}

/* ── on-air pill ───────────────────────── */
.on-air {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid rgba(245, 236, 226, 0.16);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 2.5rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(232, 160, 107, 0.55);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 160, 107, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(232, 160, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 160, 107, 0); }
}

/* ── hero ──────────────────────────────── */
h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(3rem, 14vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 1.2rem;
}
h1 .studio {
  display: block;
  font-style: italic;
  color: var(--peach);
}

.tagline {
  font-size: 1.15rem;
  color: var(--cream-dim);
  max-width: 30ch;
  text-wrap: pretty;
  margin-bottom: 3rem;
}

/* ── coming soon card ──────────────────── */
.now-playing {
  border: 1px solid rgba(245, 236, 226, 0.14);
  background: linear-gradient(160deg, rgba(245, 236, 226, 0.05), rgba(245, 236, 226, 0.01));
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(2px);
}
.now-playing .label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.now-playing .title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.now-playing .sub {
  font-size: 0.95rem;
  color: var(--cream-dim);
}
.now-playing .wink {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--dusk);
  margin-top: 0.9rem;
}

/* ── links ─────────────────────────────── */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.links a {
  flex: 1 1 auto;
  text-align: center;
  min-width: 120px;
  text-decoration: none;
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(245, 236, 226, 0.18);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.links a:hover,
.links a:focus-visible {
  background: rgba(246, 200, 160, 0.12);
  border-color: var(--peach);
  transform: translateY(-2px);
  outline: none;
}

/* ── contact / footer ──────────────────── */
footer {
  border-top: 1px solid rgba(245, 236, 226, 0.1);
  padding-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--cream-dim);
}
footer a {
  color: var(--peach);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 200, 160, 0.4);
  transition: border-color 0.25s ease;
}
footer a:hover,
footer a:focus-visible {
  border-color: var(--peach);
  outline: none;
}
footer .signoff {
  display: block;
  margin-top: 1.1rem;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  color: var(--dusk);
}
