:root {
  --bg: #f7f3ea;
  --paper: #fffdf8;
  --ink: #111111;
  --muted: #5d584f;
  --gold: #c89631;
  --gold-light: #efd48a;
  --red: #b5121b;
  --blue: #17215d;
  --line: rgba(17,17,17,0.10);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(200,150,49,0.16), transparent 32%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 100%);
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 7%;
  background: rgba(255,253,248,0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 220px;
  max-width: 48vw;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.10));
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover { color: var(--red); }

.nav-cta {
  color: var(--ink);
  border: 1px solid rgba(181,18,27,0.35);
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 74px 7% 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.45rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  max-width: 860px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.subhead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
}

.venue-line {
  max-width: 650px;
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--ink);
  border-left: 4px solid var(--red);
  font-size: 1.04rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.button:hover { transform: translateY(-1px); }

.primary {
  color: #130d04;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 28px rgba(200,150,49,0.25);
}

.secondary {
  color: var(--red);
  background: #fff;
  border: 1px solid rgba(181,18,27,0.26);
}

.hero-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border: 1px solid rgba(126,92,38,0.24);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,246,220,0.72), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(200,150,49,0.20), transparent 32%),
    linear-gradient(145deg, #eee0c2 0%, #d2bd92 100%);
  box-shadow: 0 24px 70px rgba(69, 45, 12, 0.16);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255,248,226,0.55);
  border-radius: 26px;
  pointer-events: none;
}

.hero-panel img {
  position: relative;
  z-index: 2;
  width: min(520px, 86%);
  filter: drop-shadow(0 18px 34px rgba(69,45,12,0.20));
}

.panel-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(17,17,17,0.92);
  color: #fff;
}

.panel-card span {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 900;
}

.panel-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.section { padding: 86px 7%; }

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.section-heading p,
.info-card p,
.stream-card p,
.about-section p,
.disclaimer {
  color: var(--muted);
  font-size: 1.05rem;
}

.schedule-section {
  background: var(--ink);
  color: #fff;
}

.schedule-section .section-heading p,
.schedule-section .stream-card p {
  color: rgba(255,255,255,0.72);
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stream-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.stream-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239,212,138,0.78);
  background:
    radial-gradient(circle at 45% 18%, rgba(239,212,138,0.18), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
}

.stream-card.featured {
  border-color: rgba(239,212,138,0.6);
  background:
    radial-gradient(circle at 40% 20%, rgba(239,212,138,0.24), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
}

.stream-card.big { border-color: rgba(181,18,27,0.55); }

.day {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 900;
}

.center-action { margin-top: 30px; }

.dual-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.dark-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
}

.calendar-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(200,150,49,0.13), transparent 30%),
    #fffdf8;
  border-bottom: 1px solid var(--line);
}

.calendar-frame {
  padding: 12px;
  border: 1px solid rgba(200,150,49,0.28);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.90), rgba(239,226,200,0.78));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calendar-frame iframe {
  display: block;
  width: 100%;
  min-height: 533px;
  border: 0;
  border-radius: 18px;
  background: transparent;
}

.venue-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(181,18,27,0.07), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f7f3ea 100%);
  border-bottom: 1px solid var(--line);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.venue-card {
  padding: 28px;
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 48px rgba(17,17,17,0.08);
}

.venue-card.main {
  background:
    radial-gradient(circle at 22% 16%, rgba(239,212,138,0.32), transparent 32%),
    rgba(255,255,255,0.86);
}

.venue-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 900;
}

.venue-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.venue-card a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.venue-card a:hover {
  text-decoration: underline;
}

.venue-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #130d04 !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 12px 24px rgba(200,150,49,0.20);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.venue-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(200,150,49,0.26);
}

.details-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(181,18,27,0.07), transparent 28%),
    linear-gradient(180deg, #f7f3ea 0%, #fffdf8 100%);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.detail-card {
  padding: 26px;
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 26px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 48px rgba(17,17,17,0.08);
}

.detail-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 900;
}

.detail-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.detail-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.text-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(200,150,49,0.26);
  border-radius: 22px;
  background: rgba(255,248,226,0.72);
  color: #3d3528;
  font-size: 1.02rem;
}

.text-note a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.text-note a:hover {
  text-decoration: underline;
}


.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.info-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.how-section {
  background: #fffdf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.step strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.step span { font-weight: 850; }

.disclaimer {
  max-width: 780px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #fff8e4;
  color: #3d3528;
  font-weight: 750;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.about-section > div:last-child {
  padding-top: 58px;
}

.final-cta {
  margin: 0 7% 86px;
  padding: 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 14%, rgba(239,212,138,0.34), transparent 25%),
    linear-gradient(135deg, var(--blue), #080b21);
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta h2 { max-width: 800px; }

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.final-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
}

footer {
  padding: 34px 7%;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .hero,
  .about-section { grid-template-columns: 1fr; }
  .about-section > div:last-child { padding-top: 0; }
  .hero-panel { min-height: 390px; }
  .stream-grid,
  .cards,
  .steps,
  .detail-grid,
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav { gap: 12px; }

  h1 { font-size: clamp(3rem, 17vw, 5.2rem); }

  .hero { padding-top: 46px; }

  .stream-grid,
  .cards,
  .steps,
  .detail-grid,
  .venue-grid { grid-template-columns: 1fr; }

  .dual-action,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dual-action .button,
  .final-actions .button {
    text-align: center;
  }

  .final-cta {
    margin-inline: 5%;
    padding: 34px 24px;
  }
}
