/* ---------- Design tokens ---------- */
:root {
  --cream: #f6efdc;
  --cream-dark: #ecdfb8;
  --burgundy: #5c1839;
  --burgundy-dark: #3a0f24;
  --burgundy-darker: #260a18;
  --gold: #c6a14f;
  --gold-light: #e8ce86;
  --ink: #2b1620;
  --white: #ffffff;
  --max-width: 1180px;
  --radius: 4px;
  --shadow: 0 12px 30px rgba(38, 10, 24, 0.15);
}

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

body {
  margin: 0;
  font-family: "EB Garamond", "Cormorant Garamond", Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.65;
}

h1, h2, h3, h4, .wordmark {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--burgundy);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1.1em; }

a { color: var(--burgundy); }

img, svg { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.4em;
}

.section {
  padding: 92px 0;
}
.section--tight { padding: 64px 0; }
.section--cream-dark { background: var(--cream-dark); }
.section--burgundy {
  background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-darker) 100%);
  color: var(--cream);
}
.section--burgundy h2, .section--burgundy h3, .section--burgundy .eyebrow { color: var(--gold-light); }
.section--burgundy p { color: #ecd9c8; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

.btn {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--burgundy-darker);
  font-weight: 600;
}
.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--outline.on-cream { color: var(--burgundy); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 220, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(92, 24, 57, 0.12);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand svg, .brand img { width: 34px; height: 34px; object-fit: contain; }
.brand-text {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--burgundy);
  line-height: 1.1;
}
.brand-text strong { display: block; font-size: 1.15rem; letter-spacing: 0.03em; }
.brand-text span { display: block; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 0.8rem; color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--burgundy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--burgundy);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(198,161,79,0.14), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
}
.hero-logo { width: min(340px, 70vw); margin: 0 auto 8px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero .eyebrow { font-size: 1.1rem; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 0.25em;
}
.hero h1 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 0.42em;
  margin-top: 0.3em;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.2rem;
  color: #4a2536;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
}
.hero-facts span {
  background: var(--white);
  border: 1px solid rgba(92,24,57,0.15);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--burgundy);
}
.hero .btn-row { justify-content: center; }

.countdown {
  margin-top: 54px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.countdown div {
  min-width: 84px;
}
.countdown .num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--burgundy);
  display: block;
}
.countdown .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* ---------- Stats ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 46px;
}
.stat-card {
  text-align: center;
  padding: 24px 12px;
  border-left: 1px solid rgba(198,161,79,0.4);
}
.stat-card:first-child { border-left: none; }
.stat-card .num {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  display: block;
}
.stat-card .cap { font-size: 0.9rem; color: #ecd9c8; }

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .col-media { order: 2; }
.col-media {
  background: var(--white);
  border: 1px solid rgba(92,24,57,0.12);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.col-media--photo {
  padding: 0;
  overflow: hidden;
}
.col-media--photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
blockquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--burgundy);
  margin: 0 0 14px;
  line-height: 1.4;
}
.cite { font-size: 0.95rem; color: var(--gold); font-style: normal; letter-spacing: 0.02em; }

/* ---------- Card grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(92,24,57,0.1);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 8px 20px rgba(38,10,24,0.06);
}
.card-photo {
  display: block;
  width: calc(100% + 60px);
  height: 180px;
  object-fit: cover;
  margin: -34px -30px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card .icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}
.card h3 { font-size: 1.3rem; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.partner-card {
  background: var(--white);
  border: 1px solid rgba(92,24,57,0.12);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.partner-card .role {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 4px;
}
.partner-card h3 { margin-bottom: 4px; }
.partner-card .org { color: #6b3b52; margin-bottom: 18px; font-size: 1.05rem; }
.partner-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--burgundy-darker);
}

.committee-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}
.committee-list li {
  font-size: 1.05rem;
  color: var(--burgundy);
  position: relative;
}
.committee-list li:not(:last-child)::after {
  content: "\2022";
  color: var(--gold);
  margin-left: 28px;
  position: absolute;
}

/* ---------- Sponsorship tiers ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.tier {
  background: var(--white);
  border: 1px solid rgba(92,24,57,0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}
.tier--featured {
  background: linear-gradient(160deg, var(--burgundy), var(--burgundy-darker));
  color: var(--cream);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.tier--featured h3, .tier--featured .price { color: var(--gold-light); }
.tier--featured .tier-note { color: #e6d3c3; }
.tier--featured ul li { border-color: rgba(232,206,134,0.25); }
.tier .price {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--burgundy);
  margin: 6px 0 4px;
}
.tier-note { font-size: 0.85rem; color: #7a5266; margin-bottom: 16px; }
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.tier ul li {
  padding: 9px 0;
  border-bottom: 1px dashed rgba(92,24,57,0.15);
  font-size: 0.95rem;
}
.tier ul li:last-child { border-bottom: none; }

.tiers-footnote {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  color: #6b3b52;
}

/* ---------- Tickets / CTA ---------- */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.ticket-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.ticket-card .price {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--burgundy);
  margin: 10px 0;
}
.ticket-includes {
  list-style: none;
  text-align: left;
  margin: 18px 0 26px;
  padding: 0;
  font-size: 0.92rem;
}
.ticket-includes li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.4;
}
.ticket-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burgundy-darker);
  color: #e6d3c3;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h4 { color: var(--gold-light); font-size: 1.05rem; }
.site-footer a { color: #e6d3c3; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand svg, .footer-brand img { width: 30px; height: 30px; object-fit: contain; }
.footer-brand strong { font-family: "Playfair Display", serif; color: var(--cream); font-size: 1.15rem; }
.footer-legal {
  border-top: 1px solid rgba(230,211,195,0.15);
  padding-top: 22px;
  font-size: 0.85rem;
  color: #b98fa0;
  text-align: center;
}
.social-row { display: flex; gap: 14px; margin-top: 14px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid rgba(230,211,195,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row svg { width: 16px; height: 16px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse .col-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  .nav { position: fixed; top: 66px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 20px 28px; gap: 18px; border-bottom: 1px solid rgba(92,24,57,0.12); transform: translateY(-130%); transition: transform 0.25s ease; }
  .nav.open { transform: translateY(0); }
  .nav .btn { align-self: flex-start; }
  .nav-toggle { display: block; }
  .section { padding: 64px 0; }
  .stat-card { border-left: none; border-top: 1px solid rgba(198,161,79,0.4); padding-top: 20px; }
  .stat-card:first-child { border-top: none; }
}
