:root {
  --bg: #0a0a09;
  --panel: #131211;
  --panel-border: #262420;
  --gold: #f2b705;
  --gold-soft: #d9a441;
  --red: #e31e24;
  --text-muted: #b3aea3;
  --white: #ffffff;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 9, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ddd;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-watch-btn {
  background: var(--gold);
  color: #1a1200;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: 0.2s;
}

.nav-watch-btn:hover {
  background: var(--white);
}

/* ===== HERO ===== */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.eyebrow .dash {
  width: 26px;
  height: 2px;
  background: var(--gold);
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-text h1 .accent {
  color: var(--gold);
}

.schedule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 18px;
  color: #eee;
  font-size: 0.95rem;
}

.schedule i {
  color: var(--gold);
  font-size: 1.1rem;
}

.tagline {
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--gold-soft);
  padding-left: 14px;
  line-height: 1.6;
  margin-bottom: 34px;
  font-size: 0.95rem;
}

.watch-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #1a1200;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 26px 14px 10px;
  border-radius: 999px;
  transition: 0.2s;
}

.watch-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 183, 5, 0.25);
}

.play-circle {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1200;
  font-size: 0.8rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-graphic {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--panel-border);
}

/* ===== INFO STRIP ===== */
.info-strip {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  overflow: hidden;
}

.info-item {
  padding: 28px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 1px solid var(--panel-border);
}

.info-item:first-child {
  border-left: none;
}

.info-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 2px;
}

.info-icon.yt {
  color: #ff3b3f;
}

.info-item h3 {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.info-item .highlight {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.info-item .muted {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.follow-item {
  flex-direction: column;
  align-items: flex-start;
}

.follow-item h3 {
  margin-bottom: 14px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: 0.2s;
}

.social-icons a:hover {
  background: var(--gold);
  color: #1a1200;
}

/* ===== GOOGLE MEET BAR ===== */
.gmeet-bar {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 24px 30px;
  background: var(--panel);
  border: 1px solid var(--gold-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.gmeet-icon {
  font-size: 1.4rem;
  color: var(--gold);
  background: rgba(242, 183, 5, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmeet-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}

.gmeet-sub {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

.join-meeting-btn {
  background: var(--gold);
  color: #1a1200;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 13px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
  white-space: nowrap;
}

.join-meeting-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 183, 5, 0.25);
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 30px 20px 40px;
  border-top: 1px solid var(--panel-border);
}

.footer-emblem {
  width: 54px;
  margin-bottom: 10px;
}

.site-footer p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.site-footer .glad {
  margin-top: 10px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    text-align: center;
  }

  .eyebrow, .schedule {
    justify-content: center;
  }

  .tagline {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 420px;
  }

  .watch-now-btn {
    margin: 0 auto;
  }

  .hero-visual {
    order: -1;
  }

  .nav-links {
    display: none;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .info-item {
    border-left: none;
    border-top: 1px solid var(--panel-border);
  }

  .info-item:first-child {
    border-top: none;
  }

  .gmeet-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .gmeet-left {
    flex-direction: column;
    text-align: center;
  }

  .join-meeting-btn {
    justify-content: center;
  }
}
