/* ═══════════════════════════════════════════
   RADIO LOLA — DESIGN SYSTEM
   Muzika za dušu.
   ═══════════════════════════════════════════ */

:root {
  --burgundy: #5A171A;
  --near-black: #151311;
  --cream: #F3EBDD;
  --gold: #B5925A;
  --forest: #27372E;
  --burgundy-light: #7a2d31;
  --cream-dark: #E8DCC8;
  --gold-light: #c9a873;
  --white: #FAFAF8;
  --text-dark: #1a1816;
  --text-light: #F3EBDD;
  --text-muted: #8a8278;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --header-height: 72px;
  --player-height: 72px;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--near-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.player-active {
  padding-bottom: var(--player-height);
}

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

/* ═══ UTILITY ═══ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

@media (min-width: 1200px) {
  .container { padding: 0 64px; }
}

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-gap { padding: 120px 0; }

@media (max-width: 767px) {
  .section-gap { padding: 80px 0; }
}

/* ═══ ORNAMENT ═══ */
.ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
}

.ornament span {
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

.ornament span:nth-child(2) {
  width: 8px;
  height: 8px;
  background: var(--gold);
  opacity: 0.3;
}

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(21, 19, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(181, 146, 90, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 56px;
  width: auto;
}

@media (max-width: 767px) {
  .header-logo img {
    height: 48px;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 960px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
}

.header-nav a:hover { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-tv {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: none;
}

@media (min-width: 768px) {
  .btn-tv { display: block; }
}

.btn-tv:hover { opacity: 1; }

.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.15s ease;
}

.btn-listen:hover { background: var(--burgundy-light); }
.btn-listen:active { transform: scale(0.97); }

.btn-listen .pulse {
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 960px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 19, 17, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg,
      #151311 0%,
      #1a1410 20%,
      #2a1f18 40%,
      #1e2a20 60%,
      #151311 100%
    );
  background-size: 400% 400%;
  animation: heroShift 20s ease-in-out infinite;
}

@keyframes heroShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 19, 17, 0.95) 0%,
    rgba(21, 19, 17, 0.6) 30%,
    rgba(21, 19, 17, 0.3) 60%,
    rgba(21, 19, 17, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-label { color: var(--gold); margin-bottom: 24px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
  font-style: italic;
}

.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--cream);
  opacity: 0.55;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.15s ease;
}

.btn-primary:hover { background: var(--burgundy-light); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(243, 235, 221, 0.25);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(243, 235, 221, 0.5);
  background: rgba(243, 235, 221, 0.05);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(243, 235, 221, 0.15);
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Hero bottom bar */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid rgba(181, 146, 90, 0.12);
  padding: 16px 0;
}

.hero-bottom-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
}

.hero-bottom-inner span { color: var(--gold); }

@media (max-width: 600px) {
  .hero-bottom-inner { gap: 16px; font-size: 10px; }
}

/* ═══════════════════════════════════════════
   BRAND STORY
   ═══════════════════════════════════════════ */

.brand-story {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .brand-story-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.brand-story .label { color: var(--burgundy); margin-bottom: 24px; }

.brand-story h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.brand-story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  opacity: 0.75;
  margin-bottom: 20px;
}

.brand-quote {
  margin-top: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.brand-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.4;
}

.brand-story-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.brand-story-image .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a1f18, #3a2820, #27372E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 235, 221, 0.3);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-story-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  opacity: 0.15;
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════
   MUSICAL IDENTITY
   ═══════════════════════════════════════════ */

.music-identity {
  background: var(--near-black);
  position: relative;
}

.music-identity .label { color: var(--gold); margin-bottom: 24px; }

.music-identity h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 64px;
}

.music-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .music-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .music-grid { grid-template-columns: repeat(4, 1fr); }
}

.music-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}

.music-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

.music-card:hover .music-card-bg { transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  .music-card:hover .music-card-bg { transform: none; }
}

.music-card-bg .img-placeholder {
  width: 100%;
  height: 100%;
}

.music-card-bg .img-placeholder.img-1 { background: linear-gradient(160deg, #3a2820, #5A171A, #2a1510); }
.music-card-bg .img-placeholder.img-2 { background: linear-gradient(160deg, #1a2a1e, #27372E, #1a1a10); }
.music-card-bg .img-placeholder.img-3 { background: linear-gradient(160deg, #2a2418, #4a3a28, #1a1510); }
.music-card-bg .img-placeholder.img-4 { background: linear-gradient(160deg, #1a1a28, #2a2030, #3a2830); }

.music-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 19, 17, 0.85) 0%, rgba(21, 19, 17, 0.1) 60%);
  z-index: 1;
}

.music-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  z-index: 2;
}

.music-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.music-card p {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   RADIO LOLA TV
   ═══════════════════════════════════════════ */

.tv-section {
  background: var(--near-black);
  position: relative;
  border-top: 1px solid rgba(181, 146, 90, 0.08);
}

.tv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .tv-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
}

.tv-section .label { color: var(--gold); margin-bottom: 24px; }

.tv-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}

.tv-section .tv-desc {
  font-size: 16px;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 32px;
}

.tv-player-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a08;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.tv-player-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.tv-live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(21, 19, 17, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 2;
}

.tv-live-badge .dot {
  width: 6px;
  height: 6px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   FREQUENCIES — FM SLIDER
   ═══════════════════════════════════════════ */

.frequencies {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.frequencies .label { color: var(--burgundy); margin-bottom: 24px; }

.frequencies h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.frequencies .freq-desc {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.6;
  margin-bottom: 56px;
}

/* FM Scale */
.fm-scale-container {
  position: relative;
  background: var(--near-black);
  border-radius: 12px;
  padding: 40px 32px 48px;
  margin-bottom: 48px;
  overflow: hidden;
}

.fm-scale-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.fm-scale-station {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fm-scale-station img { height: 28px; }

.fm-scale-info {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
}

.fm-display { text-align: center; margin-bottom: 40px; }

.fm-city {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  color: var(--cream);
  min-height: 1.3em;
  transition: opacity 0.3s ease;
}

.fm-freq {
  font-family: var(--font-body);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.fm-freq small {
  font-size: 0.35em;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-left: 4px;
}

/* Slider track */
.fm-slider-track {
  position: relative;
  height: 60px;
  margin: 0 8px;
}

.fm-tick {
  position: absolute;
  bottom: 0;
  width: 1px;
  background: rgba(243, 235, 221, 0.15);
}

.fm-tick.major { height: 20px; background: rgba(243, 235, 221, 0.3); }
.fm-tick.minor { height: 10px; }

.fm-tick-label {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--cream);
  opacity: 0.35;
  white-space: nowrap;
}

.fm-marker {
  position: absolute;
  bottom: 24px;
  width: 3px;
  height: 28px;
  background: var(--burgundy);
  border-radius: 2px;
  transform: translateX(-50%);
  cursor: pointer;
  transition: background 0.2s ease, height 0.2s ease;
}

.fm-marker:hover,
.fm-marker.active { background: var(--gold); height: 34px; }

.fm-marker .fm-marker-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  background: var(--gold);
  color: var(--near-black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.fm-marker:hover .fm-marker-tooltip,
.fm-marker.active .fm-marker-tooltip { opacity: 1; }

.fm-needle {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  transition: left 0.15s ease;
}

.fm-needle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(181, 146, 90, 0.4);
}

input[type="range"].fm-range {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
  -webkit-appearance: none;
  margin: 0;
}

/* Frequency grid */
.freq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.freq-card {
  padding: 20px;
  background: var(--near-black);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.freq-card:hover { background: #1e1c1a; transform: translateY(-2px); }
.freq-card.active { background: var(--burgundy); }

.freq-card-city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.freq-card-freq {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.freq-online {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(21, 19, 17, 0.08);
}

.freq-online p {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.6;
  margin-bottom: 20px;
}

/* Serbia map silhouette */
.freq-map-bg {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
  opacity: 0.04;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   CINEMATIC SERBIA
   ═══════════════════════════════════════════ */

.cinematic {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cinematic-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #151311, #27372E, #1a1a14, #2a1f18);
  background-size: 300% 300%;
  animation: heroShift 25s ease-in-out infinite;
}

.cinematic-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(21, 19, 17, 0.5);
}

.cinematic-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cinematic .label { color: var(--gold); margin-bottom: 24px; }

.cinematic h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
  font-style: italic;
}

.cinematic .cinematic-sub {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
}

/* ═══════════════════════════════════════════
   CONTACT CTA
   ═══════════════════════════════════════════ */

.contact-cta {
  background: var(--cream);
  text-align: center;
}

.contact-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-cta p {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.6;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact-cta .btn-primary { margin-bottom: 48px; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(21, 19, 17, 0.12);
  color: var(--text-dark);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: rgba(90, 23, 26, 0.05);
}

.social-links a svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */

.contact-section { background: var(--cream); }

.contact-hero { text-align: center; margin-bottom: 64px; }
.contact-hero .label { color: var(--burgundy); margin-bottom: 24px; }

.contact-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.6;
  max-width: 480px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; }
}

.contact-info-block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.contact-info-block + .contact-info-block { margin-top: 40px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-dark);
  opacity: 0.75;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-form {
  background: var(--near-black);
  border-radius: 12px;
  padding: 40px 32px;
}

@media (max-width: 767px) {
  .contact-form { padding: 32px 24px; }
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(243, 235, 221, 0.06);
  border: 1px solid rgba(243, 235, 221, 0.1);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.form-group select option { background: var(--near-black); }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.form-submit:hover { background: var(--burgundy-light); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--cream);
}

.form-success.visible { display: block; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
}

.form-success p { opacity: 0.6; font-size: 15px; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: var(--near-black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(181, 146, 90, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-brand img {
  height: 72px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .footer-brand img { height: 60px; }
}

.footer-brand p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  opacity: 0.5;
  margin-bottom: 20px;
}

.footer-brand .footer-contact-info {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.4;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.5;
  padding: 6px 0;
  transition: opacity 0.3s ease;
}

.footer-col a:hover { opacity: 0.9; }

.footer-bottom {
  border-top: 1px solid rgba(243, 235, 221, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--cream);
  opacity: 0.25;
}

/* ═══════════════════════════════════════════
   PERSISTENT AUDIO PLAYER
   ═══════════════════════════════════════════ */

.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  height: var(--player-height);
  background: rgba(21, 19, 17, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(181, 146, 90, 0.12);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.audio-player.active { transform: translateY(0); }

.audio-player .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.player-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.player-logo {
  height: 28px;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 600px) {
  .player-logo { display: block; }
}

.player-info { min-width: 0; }

.player-station {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.player-tagline {
  font-size: 11px;
  color: var(--cream);
  opacity: 0.4;
}

.player-center {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.player-play-btn:hover { background: var(--burgundy-light); }
.player-play-btn:active { transform: scale(0.93); }
.player-play-btn svg { width: 18px; height: 18px; fill: currentColor; }

.player-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
}

.player-live .dot {
  width: 6px;
  height: 6px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.player-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-volume {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .player-volume { display: flex; }
}

.player-volume svg {
  width: 16px;
  height: 16px;
  color: var(--cream);
  opacity: 0.5;
  flex-shrink: 0;
}

.player-volume input[type="range"] {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(243, 235, 221, 0.15);
  border-radius: 2px;
  outline: none;
}

.player-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--cream);
  border-radius: 50%;
  cursor: pointer;
}

.player-volume input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.player-close {
  color: var(--cream);
  opacity: 0.3;
  padding: 8px;
  transition: opacity 0.3s ease;
}

.player-close:hover { opacity: 0.7; }
.player-close svg { width: 16px; height: 16px; }
