:root {
  --navy: #08121f;
  --navy-2: #10233a;
  --navy-3: #17324f;
  --gold: #c9a227;
  --gold-2: #e8c547;
  --cream: #f7f3ea;
  --ink: #1c2430;
  --muted: #5d6775;
  --white: #ffffff;
  --line: rgba(201, 162, 39, 0.35);
  --shadow: 0 24px 60px rgba(8, 18, 31, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 18, 31, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.logo-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 8px;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(232, 197, 71, 0.12), transparent 28%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #0b1a2c 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.hero-content {
  position: relative;
  padding: 96px 0 80px;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow.center,
.center {
  text-align: center;
}

h1, h2, h3, .hero-subtitle {
  font-family: "Cinzel", serif;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 7.2rem);
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.hero-subtitle {
  margin-top: 8px;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--gold-2);
}

.hero-event {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic;
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 120px));
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.count-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 8px 12px;
}

.count-item strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--gold-2);
}

.count-item span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.2s ease;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--navy);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 12px 22px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.about h2,
.speakers h2,
.tickets h2,
.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.lead {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--navy-2);
  margin-bottom: 16px;
}

.about p + p {
  margin-top: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--gold-2);
  margin-bottom: 18px;
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.info-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-card small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.speakers {
  background: #efe8d8;
}

.speaker-grid {
  display: grid;
  place-items: center;
  margin-top: 36px;
}

.speaker-card {
  width: min(360px, 100%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.speaker-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-2);
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  border: 2px solid var(--gold);
}

.speaker-place {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 6px 0 12px;
}

.more-note,
.muted,
.link-note {
  color: var(--muted);
}

.more-note {
  text-align: center;
  margin-top: 22px;
}

.tickets .muted {
  margin-bottom: 28px;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.price-table-sm {
  min-width: 0;
}

.pay-subtitle {
  margin: 36px 0 10px;
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  color: var(--navy);
}

.price-table th,
.price-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid #eee4d0;
  vertical-align: top;
}

.price-table th {
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 600;
}

.price-table td:not(:first-child),
.price-table th:not(:first-child) {
  text-align: center;
}

.cta {
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 162, 39, 0.18), transparent 30%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  color: var(--white);
}

.cta-box {
  text-align: center;
  max-width: 720px;
}

.cta p {
  margin: 8px auto 24px;
  color: rgba(255, 255, 255, 0.82);
}

.link-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer {
  background: #050b13;
  color: rgba(255, 255, 255, 0.8);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 76px 16px auto;
    background: var(--navy-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .split,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .info-card li {
    justify-content: center;
    text-align: left;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(64px, 1fr));
  }

  .hero-meta {
    flex-direction: column;
  }

  .dot {
    display: none;
  }
}
