:root {
  --charcoal: #172023;
  --charcoal-2: #223035;
  --cream: #f7f1e7;
  --gold: #f4c95d;
  --gold-light: #ffd873;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --text-muted: rgba(23,32,35,0.72);
  --shadow: 0 24px 70px rgba(0,0,0,0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --max-width: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(23, 32, 35, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  background: var(--gold); color: var(--charcoal); font-weight: 900;
  box-shadow: 0 12px 30px rgba(244,201,93,0.25);
}
.brand-name { font-size: 14px; font-weight: 900; letter-spacing: 0.24em; text-transform: uppercase; line-height: 1.1; }
.brand-subtitle { margin-top: 3px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.58); }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a, .mobile-nav a {
  font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); transition: color 180ms ease;
}
.desktop-nav a:hover, .desktop-nav a.active, .mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--white); font-size: 28px; cursor: pointer; }
.mobile-nav { display: none; padding: 0 24px 18px; border-top: 1px solid rgba(255,255,255,0.1); background: var(--charcoal); }
.mobile-nav.open { display: grid; gap: 16px; }
.hero { position: relative; overflow: hidden; background: var(--charcoal); color: var(--white); padding: 150px 24px 96px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(244,201,93,0.24), transparent 32%), radial-gradient(circle at 82% 0%, rgba(255,255,255,0.13), transparent 28%);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 130px; background: linear-gradient(to top, var(--cream), transparent); }
.hero-inner { position: relative; z-index: 1; max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 52px; }
.label {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 999px;
  border: 1px solid rgba(244,201,93,0.4); background: rgba(244,201,93,0.1); color: var(--gold);
  font-size: 12px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px;
}
.label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
.hero h1, .page-hero h1 { max-width: 850px; margin-bottom: 26px; font-size: clamp(48px, 7vw, 82px); line-height: 0.94; letter-spacing: -0.06em; font-weight: 950; }
.hero-copy { max-width: 650px; color: rgba(255,255,255,0.76); font-size: 20px; line-height: 1.7; margin-bottom: 34px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 14px 24px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; font-size: 13px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; transition: transform 180ms ease, background 180ms ease, border 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.26); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.watch-card { border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 16px; box-shadow: 0 30px 80px rgba(0,0,0,0.24); backdrop-filter: blur(15px); }
.watch-frame { overflow: hidden; border-radius: 24px; border: 1px solid rgba(255,255,255,0.12); background: #000; }
.watch-meta { margin-top: 16px; display: flex; align-items: center; gap: 13px; padding: 16px; border-radius: 20px; background: rgba(255,255,255,0.1); }
.watch-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(244,201,93,0.16); color: var(--gold); font-size: 22px; flex: none; }
.watch-title { font-weight: 900; margin-bottom: 3px; }
.watch-subtitle { font-size: 14px; color: rgba(255,255,255,0.66); }
div.sap-embed-player { position: relative; width: 100%; height: 0; padding-top: 56.25%; }
div.sap-embed-player > iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.section { max-width: var(--max-width); margin: 0 auto; padding: 82px 24px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { background: var(--white); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow); }
.icon-box { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: var(--charcoal); color: var(--gold); font-size: 27px; margin-bottom: 22px; }
.info-card h3 { font-size: 25px; line-height: 1.1; font-weight: 950; margin-bottom: 14px; }
.info-card p, .body-copy { color: var(--text-muted); line-height: 1.78; font-size: 16px; margin-bottom: 0; }
.dark-band { background: var(--charcoal-2); color: var(--white); padding: 82px 24px; }
.dark-band-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.dark-band h2, .split-card h2, .cta-card h2 { font-size: clamp(36px, 4vw, 54px); line-height: 1.02; letter-spacing: -0.045em; font-weight: 950; margin-bottom: 0; }
.dark-band p { color: rgba(255,255,255,0.75); font-size: 18px; line-height: 1.75; }
.page-hero { background: var(--charcoal); color: var(--white); padding: 145px 24px 74px; }
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,0.72); font-size: 19px; line-height: 1.7; margin-bottom: 0; }
.calendar-section { max-width: var(--max-width); margin: 0 auto; padding: 64px 24px 90px; }
#subsplash-embed-57znk8w { min-height: 620px; width: 100%; border-radius: var(--radius-xl); background: rgba(255,255,255,0.84); padding: 16px; box-shadow: var(--shadow); overflow: hidden; }
.split-section { max-width: var(--max-width); margin: 0 auto; padding: 70px 24px 90px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: stretch; }
.split-card { border-radius: var(--radius-xl); padding: 34px; box-shadow: var(--shadow); }
.split-card.dark { background: var(--charcoal-2); color: var(--white); }
.split-card.light { background: var(--white); color: var(--charcoal); }
.split-card p { margin-top: 18px; line-height: 1.75; }
.split-card.dark p { color: rgba(255,255,255,0.72); }
.placeholder-box { min-height: 370px; border: 2px dashed rgba(23,32,35,0.2); border-radius: 28px; background: var(--cream); display: grid; place-items: center; text-align: center; padding: 42px; }
.placeholder-icon { width: 68px; height: 68px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--charcoal); font-size: 30px; }
.placeholder-box h3 { font-size: 26px; font-weight: 950; margin-bottom: 14px; }
.placeholder-box p { max-width: 590px; margin: 0 auto 26px; color: var(--text-muted); line-height: 1.75; }
.about-grid { max-width: var(--max-width); margin: 0 auto; padding: 76px 24px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.value-list { display: grid; gap: 14px; margin-top: 24px; }
.value-list div { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.86); border-radius: 18px; padding: 16px; font-weight: 800; }
.cta-section { max-width: var(--max-width); margin: 0 auto; padding: 32px 24px 90px; }
.cta-card { background: var(--gold); color: var(--charcoal); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow); }
.cta-card .location-icon { font-size: 32px; margin-bottom: 18px; }
.cta-card .address { margin-top: 18px; font-size: 20px; font-weight: 900; }
.cta-card .contact { margin-top: 8px; color: rgba(23,32,35,0.72); font-weight: 700; }
.site-footer { background: var(--charcoal); color: var(--white); padding: 46px 24px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-title { font-size: 14px; font-weight: 950; letter-spacing: 0.22em; text-transform: uppercase; }
.footer-address { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { color: rgba(255,255,255,0.68); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--gold); }
@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-inner, .dark-band-inner, .split-section, .about-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .header-inner { padding: 14px 18px; }
  .brand-name { font-size: 12px; }
  .brand-subtitle { font-size: 10px; }
  .hero, .page-hero { padding-left: 18px; padding-right: 18px; }
  .section, .calendar-section, .split-section, .about-grid, .cta-section { padding-left: 18px; padding-right: 18px; }
  .hero h1, .page-hero h1 { font-size: 46px; }
  .hero-copy, .page-hero p { font-size: 17px; }
  .split-card, .info-card, .cta-card { padding: 26px; }
}
