* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "EB Garamond", "Goudy Old Style", Georgia, serif;
  background-color: #FFF0E8;
  color: #3B3128;
  line-height: 1.8;
}

/* ── Home page ── */

main {
  max-width: 750px;
  margin: 0 auto;
  padding: 4rem 2rem 0.5rem;
  text-align: center;
}

h1 {
  font-family: benton-modern-display, "Bodoni MT", Didot, Georgia, serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  font-size: 1.35rem;
}

.meta-row .date {
  text-decoration: none;
  text-align: left;
}

.meta-row .venue {
  color: #3B3128;
  text-decoration: none;
  text-align: right;
}

.meta-row .venue:hover {
  opacity: 0.6;
}

.photo-container {
  max-width: 520px;
  margin: 0 auto;
}

.photo-container img {
  width: 100%;
  display: block;
}

/* ── Bottom nav (home page: FAQ | RSVP spread) ── */

nav.nav-spread {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem 2.5rem;
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.35rem;
}

/* ── Inner nav (faq/rsvp pages: centered) ── */

nav.nav-center {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 2rem 2.5rem;
  font-size: 1.35rem;
}

nav a {
  color: #3B3128;
  text-decoration: none;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.5;
}

/* ── FAQ & RSVP pages ── */

.page-main {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: left;
}

h2 {
  font-family: benton-modern-display, "Bodoni MT", Didot, Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1.4rem;
}

.faq-item h3 {
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.2rem;
}

.faq-item p {
  font-size: 1.35rem;
  opacity: 0.8;
}

/* RSVP */
.form-container iframe {
  width: 100%;
  min-height: 800px;
  border: none;
}

/* ── Mobile ── */

@media (max-width: 600px) {
  h2 {
    font-size: 1.5rem;
  }

  .meta-row {
    font-size: 1rem;
  }

  main,
  nav.nav-spread {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .form-container iframe {
    min-height: 600px;
  }
}
