/* ============================================================
   KBCN Voice Radio — late-night soul radio: broadcast red on near-black
   ============================================================ */

:root {
  --bg: #161616;
  --panel: #1F1F1F;
  --panel-2: #262626;
  --text: #F5F5F5;
  --muted: #A8A29A;
  --red: #C70000;
  --red-bright: #E01515;
  --line: rgba(245, 245, 245, 0.1);
  --radius: 12px;
  --font-display: 'Archivo Black', Arial, sans-serif;
  --font-body: 'Space Grotesk', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.container {
  width: min(1140px, 92%);
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--red-bright);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(199, 0, 0, 0.35);
}
.btn-red:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 245, 245, 0.35);
}
.btn-ghost:hover { border-color: var(--red-bright); color: var(--red-bright); transform: translateY(-2px); }

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 22, 22, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}
.logo-mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.03em;
  box-shadow: 0 6px 18px rgba(199, 0, 0, 0.4);
}
.logo-text {
  min-width: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1.15;
  white-space: nowrap;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a:not(.btn) {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}
.main-nav a:not(.btn):hover { color: var(--red-bright); }
.main-nav .btn { padding: 11px 22px; font-size: 0.8rem; }
.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22,22,22,0.55) 0%, rgba(22,22,22,0.35) 45%, rgba(22,22,22,0.92) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1140px, 92%);
  margin: 0 auto;
  padding-bottom: 88px;
}
.onair-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(199, 0, 0, 0.9);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: 0 6px 20px rgba(199, 0, 0, 0.45);
}
.onair-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  max-width: 15ch;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.hero h1 .accent {
  color: var(--red-bright);
  -webkit-text-stroke: 0;
}
.hero-sub {
  max-width: 560px;
  color: rgba(245, 245, 245, 0.88);
  font-size: 1.1rem;
  margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 30px; }
.hero-phone {
  font-size: 0.92rem;
  color: rgba(245, 245, 245, 0.75);
}
.hero-phone strong { color: var(--text); font-weight: 700; }

/* ---------------- Live player strip ---------------- */

.player-strip {
  position: relative;
  z-index: 3;
  background: var(--panel);
  border-top: 3px solid var(--red);
  padding: 26px 0;
}
.player-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.player-label {
  flex-shrink: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.3;
}
.player-label span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.embed-target { flex: 1; min-width: 0; }
.embed-target iframe { max-width: 100%; }

/* ---------------- Schedule ---------------- */

.schedule { background: var(--bg); }
.schedule-list { display: grid; gap: 14px; }
.show-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.show-row:hover {
  border-color: var(--red);
  background: var(--panel-2);
  transform: translateX(6px);
}
.show-time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--red-bright);
  line-height: 1.3;
}
.show-time span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.show-info h3 { font-size: 1.15rem; margin-bottom: 6px; }
.show-info p { color: var(--muted); font-size: 0.97rem; }
.show-genre {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------------- Ways to listen ---------------- */

.listen { background: linear-gradient(180deg, var(--panel) 0%, var(--bg) 100%); }
.listen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.listen-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.listen-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.listen-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(224, 21, 21, 0.35);
  line-height: 1;
}
.listen-card h3 { font-size: 1.2rem; }
.listen-card p { color: var(--muted); font-size: 0.97rem; flex-grow: 1; }
.listen-card a.card-link {
  color: var(--red-bright);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.listen-card a.card-link:hover { color: #fff; }
.listen-phone {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--red-bright);
  text-decoration: none;
}
.listen-phone:hover { color: #fff; }
.app-links { display: flex; flex-wrap: wrap; gap: 8px; }
.app-links a {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--panel-2);
  padding: 8px 14px;
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.app-links a:hover { border-color: var(--red-bright); color: var(--red-bright); }

/* ---------------- About ---------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 20px; }
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.about-copy strong { color: var(--text); }
.about-facts {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.about-fact {
  display: flex;
  gap: 14px;
  align-items: baseline;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.95rem;
}
.about-fact .fact-label {
  flex-shrink: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--red-bright);
  min-width: 88px;
}

/* ---------------- Gallery section ---------------- */

.gallery-section { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------------- TV banner ---------------- */

.tv-banner {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.tv-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tv-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.tv-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(22, 22, 22, 0.82);
  pointer-events: none;
}
.tv-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 72px 0;
}
.tv-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.tv-banner p { color: var(--muted); max-width: 520px; }

/* ---------------- Contact ---------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 18px; }
.contact-info > p { color: var(--muted); margin-bottom: 32px; }
.contact-rows { display: grid; gap: 14px; }
.contact-row {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.contact-row .row-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--red-bright);
  margin-bottom: 6px;
}
.contact-row a, .contact-row .row-value {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.contact-row a:hover { color: var(--red-bright); }
.contact-row .row-sub { display: block; color: var(--muted); font-size: 0.88rem; font-weight: 400; margin-top: 2px; }
.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.social-row a:hover { border-color: var(--red-bright); color: var(--red-bright); }

.contact-form-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  color: var(--text);
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red-bright);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { margin-top: 18px; font-size: 0.95rem; font-weight: 500; min-height: 1.4em; }
.form-status.ok { color: #7ED957; }
.form-status.err { color: var(--red-bright); }

/* ---------------- Footer ---------------- */

.site-footer {
  background: #0F0F0F;
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
}
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 320px; margin-top: 12px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--red-bright);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom p { margin-top: 8px; }

/* ---------------- Privacy page ---------------- */

.page-hero {
  background: var(--panel);
  border-bottom: 3px solid var(--red);
  padding: 72px 0;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.prose { max-width: 760px; }
.prose h2 {
  font-size: 1.15rem;
  margin: 40px 0 12px;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  color: var(--red-bright);
}
.prose p, .prose li { color: var(--muted); margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose a { color: var(--text); }
.prose strong { color: var(--text); }

/* ---------------- Responsive ---------------- */

@media (max-width: 960px) {
  .listen-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .show-row { grid-template-columns: 110px 1fr; }
  .show-genre { display: none; }
  .tv-banner-inner { flex-direction: column; align-items: flex-start; }
  .player-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    padding: 12px 4%;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.5);
  }
  .main-nav.open { display: flex; }
  .main-nav a:not(.btn) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .main-nav .btn {
    margin: 16px 4px 8px;
    text-align: center;
  }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  body { font-size: 1rem; }
  .hero { min-height: 560px; height: auto; padding-top: 120px; align-items: flex-end; }
  .hero-content { padding-bottom: 64px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .contact-form-wrap { padding: 28px 22px; }
  .show-row { padding: 20px; gap: 16px; }
  .section-head { margin-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
