/* ── Brand tokens ─────────────────────────────────────────── */
:root {
  --garnet:       #6B2737;
  --garnet-dark:  #4e1b27;
  --garnet-light: #f2e8ea;
  --gold:         #C9902A;
  --gold-light:   #fdf6e8;
  --charcoal:     #1e1e1e;
  --gray:         #555;
  --gray-light:   #f5f5f5;
  --white:        #ffffff;

  --badge-adults: var(--garnet);
  --badge-family: #2a7a3b;
  --badge-all:    #555;

  --radius: 10px;
  --shadow: 0 4px 18px rgba(0,0,0,.09);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { padding-block: 4rem; }
.section--alt { background: var(--gray-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--garnet-dark);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── Nav ──────────────────────────────────────────────────── */
.site-nav {
  background: var(--charcoal);
  padding-block: .75rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav-brand {
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .03em;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--garnet);
  color: var(--white);
  text-align: center;
  padding-block: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 120%, rgba(0,0,0,.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: .9;
  margin-bottom: 2rem;
}
.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  padding: .5rem;
}
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }

/* ── Agenda ───────────────────────────────────────────────── */
.agenda {
  border: 1px solid #e2e2e2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.agenda-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0;
  align-items: start;
  border-bottom: 1px solid #e8e8e8;
  background: var(--white);
  transition: background .15s;
}
.agenda-row:last-child { border-bottom: none; }
.agenda-row:hover { background: var(--gold-light); }

/* Day label column */
.agenda-day {
  background: var(--garnet);
  color: var(--white);
  padding: 1.5rem .75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}
.agenda-day-name {
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.agenda-day-date {
  font-size: .7rem;
  opacity: .8;
  margin-top: .2rem;
  line-height: 1.3;
}

/* Main content column */
.agenda-content {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.agenda-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.agenda-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--garnet-dark);
  font-weight: 700;
}
.event-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--white);
  padding: .2rem .55rem;
  border-radius: 50px;
}
.badge--adults { background: var(--badge-adults); }
.badge--family { background: var(--badge-family); }
.badge--all    { background: var(--badge-all); }

.agenda-meta {
  font-size: .83rem;
  color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  gap: .2rem .75rem;
}
.agenda-desc {
  font-size: .9rem;
  color: var(--charcoal);
  margin-top: .1rem;
}

/* RSVP column */
.agenda-action {
  padding: 1.25rem 1.25rem 1.25rem .5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: .4rem;
  align-self: stretch;
}
.btn-rsvp {
  white-space: nowrap;
  display: inline-block;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  background: var(--gray-light);
  color: var(--gray);
  border: 2px solid #d0d0d0;
  cursor: default;
  transition: background .2s, color .2s, transform .15s;
}
.btn-rsvp.active {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  cursor: pointer;
}
.btn-rsvp.active:hover { background: #b07d22; border-color: #b07d22; transform: translateY(-1px); }
.rsvp-label {
  font-size: .7rem;
  color: #999;
  white-space: nowrap;
}

/* Mobile: stack columns */
@media (max-width: 600px) {
  .agenda-row {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
  }
  .agenda-day {
    grid-row: 1;
    grid-column: 1;
    padding: 1rem .5rem;
  }
  .agenda-content {
    grid-row: 1;
    grid-column: 2;
    padding: 1rem;
  }
  .agenda-action {
    grid-row: 2;
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem 1rem;
    border-top: 1px solid #eee;
  }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-list details {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq-list details[open] {
  border-color: var(--garnet-light);
}
.faq-list summary {
  font-weight: 700;
  font-size: .97rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--garnet-dark);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list details[open] summary {
  border-bottom: 1px solid var(--garnet-light);
}
.faq-answer {
  padding: 1rem 1.25rem;
  font-size: .92rem;
  color: var(--charcoal);
  line-height: 1.65;
}
.faq-answer p + p { margin-top: .6rem; }

/* ── Agenda embed (expandable form inside a row) ─────────── */
.agenda-embed {
  grid-column: 1 / -1;
  border-top: 1px solid #e8e8e8;
}
.agenda-embed summary {
  list-style: none;
  cursor: pointer;
  padding: .6rem 1.25rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--garnet);
  display: flex;
  align-items: center;
  gap: .4rem;
  user-select: none;
  background: var(--garnet-light);
}
.agenda-embed summary::-webkit-details-marker { display: none; }
.agenda-embed summary::before {
  content: '▸';
  font-size: .75rem;
  transition: transform .2s;
}
.agenda-embed[open] summary::before { transform: rotate(90deg); }
.agenda-embed-body {
  padding: 1.25rem;
  background: var(--white);
}
.agenda-embed-body iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ── Stay in Touch ────────────────────────────────────────── */
.stay-intro {
  text-align: center;
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 1.75rem;
}
.form-embed-wrapper {
  max-width: 680px;
  margin-inline: auto;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.form-embed-wrapper iframe {
  display: block;
  width: 100%;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-box {
  max-width: 500px;
  margin-inline: auto;
  text-align: center;
}
.contact-box p { color: var(--gray); margin-bottom: 1.25rem; }
.contact-email {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--garnet-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--garnet-light);
  padding-bottom: .1rem;
  transition: border-color .2s;
}
.contact-email:hover { border-color: var(--garnet); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding-block: 2rem;
  font-size: .82rem;
}
.site-footer strong { color: var(--white); }
.site-footer .go-tornadoes {
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
  display: block;
  margin-bottom: .5rem;
}
