@import url("chatbot.css");

@import url("chatbot.css");

:root {
  --bg: #f7f4ef;
  --bg-muted: #ebe5db;
  --surface: #ffffff;
  --text: #1a2433;
  --text-muted: #5a6472;
  --navy: #1a2f4a;
  --navy-light: #2d4a6b;
  --gold: #c9a24d;
  --gold-soft: #e8c87a;
  --accent: #3d6f8f;
  --border: rgba(26, 47, 74, 0.12);
  --shadow: 0 18px 50px rgba(26, 47, 74, 0.12);
  --radius: 18px;
  --header-height: 88px;
  --player-height: 72px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(201, 162, 77, 0.14), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 100%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--navy);
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26, 47, 74, 0.06);
}

.site-header {
  background: transparent;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  position: relative;
}

.brand {
  grid-column: 2;
  justify-self: center;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: clamp(4.5rem, 12vw, 5.75rem);
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: var(--surface);
  cursor: pointer;
}

.site-nav {
  grid-column: 1 / -1;
  justify-self: center;
}

.menu-bar {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--navy);
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(26, 47, 74, 0.08);
  color: var(--navy);
}

.nav-social {
  border: 1px solid rgba(26, 47, 74, 0.14);
}

.main-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.hero,
.page-hero {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.hero {
  grid-template-columns: 1.3fr 0.9fr;
  margin-bottom: 3rem;
}

.hero-content,
.hero-card,
.info-card,
.content-card,
.notice-card,
.cta-panel,
.listen-panel > * {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-content,
.page-hero {
  padding: 2.4rem;
}

.hero-card {
  padding: 1.8rem;
  background: linear-gradient(160deg, var(--navy) 0%, #24466b 100%);
  color: #f4f1ea;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.hero-lead,
.page-lead,
.section-header p,
.info-card p,
.content-card p {
  color: var(--text-muted);
}

.hero-lead,
.page-lead {
  font-size: 1.12rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b48a39);
  color: #1f2a38;
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.28);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(26, 47, 74, 0.18);
  color: var(--navy);
}

.hero-card-label {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.artist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.section {
  margin-bottom: 2.5rem;
}

.section-muted {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
}

.section-header {
  margin-bottom: 1.5rem;
}

.card-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.content-card,
.notice-card {
  padding: 1.5rem;
}

.cta-panel,
.listen-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-panel {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.listen-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.listen-copy,
.listen-details {
  padding: 1.8rem;
}

.detail-list,
.contact-list,
.footer-links {
  margin: 0;
  padding-left: 1.1rem;
}

.detail-list li,
.contact-list li,
.footer-links li {
  margin-bottom: 0.45rem;
}

.contact-address {
  font-style: normal;
  margin-bottom: 1rem;
}

.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1rem;
  padding-top: 1rem;
}

.footer-partners {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.footer-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 8.5rem;
  width: 8.5rem;
  text-align: center;
}

.footer-partner-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-partner a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-height: 6rem;
  box-sizing: border-box;
  padding: 0.3rem 0.35rem 0.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: visible;
}

.footer-partner a:hover {
  box-shadow: 0 12px 28px rgba(26, 47, 74, 0.14);
  transform: translateY(-1px);
}

.footer-partner img {
  display: block;
  align-self: center;
  flex: 1 1 auto;
  width: 100%;
  height: 4.25rem;
  min-height: 4.25rem;
  max-width: 100%;
  max-height: none;
  margin: 0 0 0.25rem;
  object-fit: contain;
  object-position: center center;
}

.footer-partner img[alt="Dodier NFC"] {
  height: 3.25rem;
  min-height: 3.25rem;
}

.footer-partner-name {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-top: auto;
}

@media (max-width: 420px) {
  .footer-partners {
    flex-wrap: wrap;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-block h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-block p,
.footer-copy,
.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-copy {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copy a {
  color: var(--text-muted);
}

.player-bar {
  background: rgba(18, 31, 49, 0.96);
  color: #f7f4ef;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.player-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: var(--player-height);
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.player-station {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.player-logo {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.55rem;
  object-fit: cover;
  background: #fff;
}

.live-badge {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 200, 122, 0.16);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.player-bar.is-playing .live-badge {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

.player-meta {
  min-width: 0;
}

.player-title,
.player-subtitle,
.player-status {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-title {
  display: none;
}

.player-subtitle,
.player-status {
  color: rgba(247, 244, 239, 0.72);
  font-size: 0.92rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.play-btn,
.mute-btn {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b48a39);
  color: #1f2a38;
  cursor: pointer;
}

.play-btn:focus-visible,
.mute-btn:focus-visible,
.menu-toggle:focus-visible,
.volume-slider:focus-visible,
.btn:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 2px;
}

.icon-pause,
.icon-muted,
.player-bar.is-playing .icon-play,
.player-bar.is-muted .icon-volume {
  display: none;
}

.player-bar.is-playing .icon-pause,
.player-bar.is-muted .icon-muted {
  display: block;
}

.volume-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 10rem;
}

.mute-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.volume-slider {
  width: 100%;
  accent-color: var(--gold-soft);
}

@media (max-width: 960px) {
  .hero,
  .card-grid,
  .contact-grid,
  .footer-grid,
  .listen-panel {
    grid-template-columns: 1fr;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    left: 0;
    display: none;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 10;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    width: 100%;
  }

  .player-inner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .player-status {
    display: none;
  }

  .volume-group {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .hero-content,
  .page-hero,
  .section-muted {
    padding: 1.5rem;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
