/* ---------- Theme ---------- */
:root {
  --maroon: #6b1f2a;
  --maroon-deep: #4d141d;
  --marigold: #e8a33d;
  --gold: #c9962b;
  --cream: #fbf6ee;
  --cream-alt: #f3e9da;
  --ink: #2c2420;
  --muted: #8a7d72;
  --max: 1080px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .4em; }

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

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-alt);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--maroon);
  text-decoration: none;
}
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color .2s;
}
.nav-links a:hover { color: var(--marigold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--maroon); transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
  background:
    radial-gradient(ellipse at top, rgba(232,163,61,.18), transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-alt) 100%);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 6%;
  width: 64px; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .72rem;
  color: var(--muted);
  margin: 0 0 1.4rem;
}
.hero-names {
  font-size: clamp(3rem, 11vw, 6.5rem);
  color: var(--maroon);
  margin: 0;
}
.hero-names span { display: block; font-style: italic; font-size: .45em; color: var(--marigold); font-weight: 500; }
.hero-date {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 4vw, 2rem);
  letter-spacing: .12em;
  margin: 1.2rem 0 .2rem;
}
.hero-place { letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; color: var(--muted); margin: 0 0 2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  background: var(--maroon);
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .76rem;
  border-radius: 2px;
  transition: background .25s, transform .15s;
}
.btn:hover { background: var(--maroon-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--maroon);
  border: 1px solid var(--maroon);
}
.btn--ghost:hover { background: var(--maroon); color: var(--cream); }

/* ---------- Sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 5rem 1.25rem; }
.section--narrow { max-width: 720px; }
.section--alt { max-width: 100%; background: var(--cream-alt); }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  color: var(--maroon);
  position: relative;
  margin-bottom: .3em;
}
.section-title::after {
  content: "❀";
  display: block;
  color: var(--marigold);
  font-size: .9rem;
  margin: .5rem auto 0;
}
.section-sub { text-align: center; color: var(--muted); margin: 0 auto 2.5rem; max-width: 560px; }
.lead { font-size: 1.18rem; font-family: var(--serif); }
.muted { color: var(--muted); font-size: .95rem; }

/* ---------- Timeline / events ---------- */
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.event-card {
  background: var(--cream);
  border: 1px solid #e6d8c4;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(107,31,42,.05);
}
.event-day {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
  color: var(--marigold);
  margin-bottom: .5rem;
}
.event-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.event-list li { padding: .6rem 0; border-top: 1px dashed #e0d0bb; }
.event-time {
  display: inline-block;
  min-width: 64px;
  color: var(--maroon);
  font-weight: 500;
  letter-spacing: .05em;
}

/* ---------- Layout helpers ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.info-card {
  background: var(--cream);
  border: 1px solid #e6d8c4;
  border-radius: 6px;
  padding: 1.8rem;
}
.info-card h3 { color: var(--maroon); }

/* ---------- Map ---------- */
.map-frame { aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; border: 1px solid #e6d8c4; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid #e6d8c4;
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--maroon);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--marigold); font-size: 1.4rem; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: .8rem 0 0; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 5rem 1.25rem;
  background: var(--maroon);
  color: var(--cream);
}
.footer-title { color: var(--cream); font-size: clamp(1.8rem, 5vw, 2.6rem); }
.footer-date { letter-spacing: .15em; text-transform: uppercase; font-size: .78rem; opacity: .85; }
.footer-contact { margin-top: 1.5rem; }
.site-footer a { color: var(--marigold); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1rem 1.25rem;
    gap: 1rem;
    border-bottom: 1px solid var(--cream-alt);
    display: none;
  }
  .nav-links.open { display: flex; }
  .timeline, .two-col, .card-grid { grid-template-columns: 1fr; }
}
