/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #f4f0e8;
  --cream-dim: #e8e2d4;
  --ink:       #1a1714;
  --ink-soft:  #3d3730;
  --gold:      #b8963e;
  --gold-light:#d4af6a;
  --white:     #ffffff;
  --dark-bg:   #0d0b09;
  --section-bg:#f7f4ee;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease-silk: cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: clamp(5rem, 10vw, 9rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ── Language Nav ──────────────────────────────────────────────────────────── */
.lang-nav {
  position: fixed;
  top: 1.75rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  mix-blend-mode: normal;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(244, 240, 232, 0.55);
  padding: 0.25rem 0.1rem;
  transition: color 0.25s;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--gold-light);
}
.lang-btn.active { font-weight: 600; }

.lang-sep {
  color: rgba(244, 240, 232, 0.25);
  font-size: 0.65rem;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video Background */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#ytPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 56.25vw; /* 16:9 */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#ytPlayer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 11, 9, 0.55) 0%,
    rgba(13, 11, 9, 0.25) 40%,
    rgba(13, 11, 9, 0.45) 75%,
    rgba(13, 11, 9, 0.9) 100%
  );
}

/* Grain texture overlay */
.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-silk) 0.4s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--cream);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-silk) 0.6s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: -45vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-silk) 2s forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
}

/* Mute button */
.video-mute-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  background: rgba(13, 11, 9, 0.5);
  border: 1px solid rgba(184, 150, 62, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
}
.video-mute-btn:hover {
  background: rgba(184, 150, 62, 0.2);
  border-color: var(--gold);
}
.video-mute-btn svg {
  width: 18px;
  height: 18px;
}
.video-mute-btn .icon-unmuted { display: none; }
.video-mute-btn.unmuted .icon-muted { display: none; }
.video-mute-btn.unmuted .icon-unmuted { display: block; }

/* ── Section Commons ───────────────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.about-section {
  background: var(--dark-bg);
}

.listen-section {
  background: var(--section-bg);
  color: var(--ink);
}

.news-section {
  background: var(--dark-bg);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-rule {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.15;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold-light);
}

.listen-section .section-title {
  color: var(--gold);
}

/* ── About ─────────────────────────────────────────────────────────────────── */
.about-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
  font-style: italic;
}

/* ── Streaming Grid ────────────────────────────────────────────────────────── */
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.streaming-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(26, 23, 20, 0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease-silk), box-shadow 0.2s var(--ease-silk);
}

.streaming-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.streaming-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.streaming-icon svg {
  width: 20px;
  height: 20px;
}

/* ── News Grid ─────────────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244, 240, 232, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.news-card:hover {
  border-color: rgba(184, 150, 62, 0.3);
}

.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(184,150,62,0.1), rgba(184,150,62,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  color: var(--gold-light);
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-date {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.news-card-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.65);
}

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(244, 240, 232, 0.3);
  font-style: italic;
  padding: 3rem 0;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(244, 240, 232, 0.07);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(244, 240, 232, 0.55);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--gold-light); }
.footer-link svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(244, 240, 232, 0.06);
  padding-top: 1.5rem;
  font-size: 0.72rem;
  color: rgba(244, 240, 232, 0.25);
  text-align: center;
  letter-spacing: 0.08em;
}

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.15); opacity: 1; }
}

/* ── Scroll reveal ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-silk);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-title { letter-spacing: 0.08em; }
  .footer-inner { flex-direction: column; }
  .footer-links { align-items: flex-start; }
  .streaming-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
}
