:root {
  --navy: #102A3A;
  --orange: #B5541E;
  --gold: #C39A45;
  --olive: #6D7A4E;
  --cream: #F7EFE2;
  --white: #FFFFFF;
  --text: #17313F;
  --muted: #6E7478;
  --line: rgba(16, 42, 58, 0.16);
  --shadow: 0 18px 50px rgba(16, 42, 58, 0.10);
  --radius: 24px;
}

* { 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;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
body.event-page { background: var(--white); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 239, 226, 0.88);
  border-bottom: 1px solid rgba(16,42,58,.08);
}
.event-page .site-header { background: rgba(255,255,255,.92); }
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--navy);
}
.nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  font-size: .95rem;
  color: var(--navy);
  opacity: .9;
}
.nav-links a:hover { color: var(--orange); }

.hero { padding: 72px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3 { color: var(--navy); line-height: 1.15; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  margin: 18px 0 18px;
  font-weight: 600;
  letter-spacing: -.03em;
}
.hero p { font-size: 1.16rem; max-width: 650px; color: #485A64; }
.hero-logo {
  padding: 26px;
  border-radius: 36px;
  background: rgba(255,255,255,.36);
}
.event-page .hero-logo { background: #fff; }
.hero-logo img { max-height: 620px; margin: 0 auto; object-fit: contain; }

.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--navy);
}
.btn.primary { background: var(--navy); color: white; }
.btn.secondary { color: var(--navy); background: transparent; }
.btn:hover { transform: translateY(-1px); }

.section { padding: 76px 0; }
.section.alt { background: rgba(255,255,255,.38); }
.event-page .section.alt { background: #FAF8F4; }
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
}
.section-intro { max-width: 760px; color: #52636B; margin-bottom: 34px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.event-page .card { background: #fff; }
.card h3 { margin-top: 0; font-size: 1.25rem; }
.card p { margin-bottom: 0; color: #58686F; }

.quote {
  padding: 42px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.5);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--navy);
}

.legal-wrap { padding: 70px 0 90px; }
.legal-card {
  max-width: 860px;
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 48px);
  box-shadow: var(--shadow);
}
.legal-card h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); margin-top: 0; }
.legal-card h2 { margin-top: 34px; }
.legal-card p, .legal-card li { color: #4F6068; }
.legal-card a { color: var(--orange); }

.site-footer {
  border-top: 1px solid rgba(16,42,58,.10);
  padding: 28px 0 42px;
  color: #66747B;
  font-size: .92rem;
}
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.small-note { font-size: .84rem; color: #7B8589; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding-top: 46px; }
  .hero-logo { order: -1; padding: 10px; }
  .cards { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; padding: 16px 0; flex-direction: column; }
}
