:root {
  --maroon: #5A1E1E;
  --parchment: #F6F1EB;
  --wood: #3B2A23;
  --text: #2A2A2A;
}

/* ========== RESET ========== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text);
  background: var(--parchment);
  line-height: 1.75;
}

/* ========== GLOBAL CONTAINER (THE SPINE) ========== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== HEADER ========== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 100;
  background: transparent;
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--maroon);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0;
}

h1 {
  font-size: 3.2rem;
  line-height: 1.15;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  max-width: 720px;
}

/* ========== HERO ========== */
.hero {
  padding: 9rem 0 6rem;
  background: #fff;
  text-align: center;
}

.hero p {
  font-size: 1.05rem;
  margin: 0 auto 2rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: #fff;
}

/* Lists */
.section ul {
  padding-left: 1.2rem;
}

.section li {
  margin-bottom: 0.6rem;
}

/* Statements */
.statement {
  font-size: 1.2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.emphasis {
  font-weight: 500;
  color: var(--maroon);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  background: var(--maroon);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
}

.btn.secondary {
  background: var(--wood);
}

/* ========== INVITATION ========== */
.invitation {
  text-align: center;
}

/* ========== FOOTER (TRUE CENTER) ========== */
footer {
  background: var(--wood);
  color: #eee;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

footer p {
  margin: 0.3rem 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .site-header {
    height: 56px;
  }
}
.invitation .container {
  max-width: 720px;   /* tighter than main content */
  text-align: center;
}
.invitation p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.6rem;
}
.invitation h2 {
  margin-bottom: 2rem;
}
