:root {
  --ink:        #1c1209;
  --parchment:  #f5eed8;
  --cream:      #fdf8ed;
  --gold:       #b07d2e;
  --gold-light: #d4a44c;
  --rose:       #8c4a5a;
  --sage:       #4a6b50;
  --border:     #c8aa70;
  --shadow:     rgba(28,18,9,0.12);
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── DECORATIVE SVG DIVIDER ── */
.flourish {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* ── HEADER / COVER ── */
.cover {
  background: var(--ink);
  color: var(--parchment);
  text-align: center;
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}
.cover::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  opacity: 0.5;
}
.cover::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 0.5px solid var(--gold);
  pointer-events: none;
  opacity: 0.3;
}
.cover-eyebrow {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.cover-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--parchment);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cover-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  margin-bottom: 32px;
}
.cover-date {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--parchment);
  opacity: 0.75;
}

/* ── SPINE / CHAPTER LABEL ── */
.chapter-label {
  text-align: center;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── SECTIONS ── */
section {
  padding: 70px 24px;
}
.section-inner {
  max-width: 760px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-style: italic;
  color: var(--rose);
  margin-bottom: 6px;
  text-align: center;
}
.section-title-plain {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 28px;
}

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ── ALTERNATING BACKGROUNDS ── */
.bg-parchment { background: var(--parchment); }
.bg-cream     { background: var(--cream); }
.bg-dark      { background: var(--ink); color: var(--parchment); }

/* ── ORNAMENTAL HR ── */
.ornament {
  text-align: center;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin: 32px 0;
  opacity: 0.7;
}

/* ── OUR STORY ── */
.story-drop-cap::first-letter {
  font-family: 'Cinzel Decorative', serif;
  font-size: 4.5rem;
  float: left;
  line-height: 0.8;
  margin: 6px 10px 0 0;
  color: var(--rose);
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--border);
  margin-top: 32px;
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '✦';
  position: absolute;
  left: -42px;
  top: 2px;
  color: var(--gold);
  font-size: 1rem;
  background: var(--cream);
  padding: 2px 0;
}
.timeline-date {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--rose);
  margin-bottom: 4px;
}

/* ── DETAILS CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
}
.bg-dark .card {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold);
  color: var(--parchment);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.card-label {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.card-body {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ── REVIEW BLURBS ── */
.blurbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.blurb {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 28px 24px;
  position: relative;
  box-shadow: 0 2px 16px var(--shadow);
}
.blurb::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--rose);
  opacity: 0.18;
  position: absolute;
  top: -8px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
.blurb-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.blurb-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--ink);
  min-height: 80px;
}
.blurb-placeholder {
  display: block;
  background: rgba(176, 125, 46, 0.08);
  border: 1px dashed var(--border);
  border-radius: 2px;
  padding: 10px 14px;
  font-style: italic;
  color: var(--gold);
  font-size: 0.85rem;
}
.blurb-attribution {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--rose);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}

/* ── COMING SOON ── */
.coming-soon-badge {
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 320px;
}
.coming-soon-badge .ribbon {
  display: inline-block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1.5px solid var(--border);
  padding: 12px 32px;
  background: var(--cream);
  box-shadow: 0 2px 12px var(--shadow);
}
.bg-parchment .coming-soon-badge .ribbon,
.bg-dark .coming-soon-badge .ribbon {
  background: var(--parchment);
}
.coming-soon-badge .coming-soon-note {
  margin-top: 14px;
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* ── RSVP ── */
.rsvp-box {
  background: var(--parchment);
  border: 1.5px solid var(--border);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 32px auto 0;
  box-shadow: 0 4px 24px var(--shadow);
}
.rsvp-box p {
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.85;
}
.rsvp-btn {
  display: inline-block;
  background: var(--rose);
  color: var(--parchment);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 14px 36px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.rsvp-btn:hover { background: #6e3547; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--parchment);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.9rem;
  opacity: 0.9;
}
footer .footer-names {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 8px;
}

/* ── NAV ── */
nav {
  background: var(--ink);
  padding: 16px 24px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gold);
}
nav a {
  color: var(--parchment);
  text-decoration: none;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  margin: 0 14px;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
nav a:hover { opacity: 1; color: var(--gold-light); }

/* ── PHOTO FRAMES ── */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0 8px;
}
.photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--parchment);
  border: 8px solid var(--parchment);
  box-shadow: 0 0 0 1.5px var(--border), 0 4px 20px var(--shadow);
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    var(--parchment),
    var(--parchment) 10px,
    #ede5c8 10px,
    #ede5c8 20px
  );
  color: var(--gold);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 20px;
  gap: 10px;
}
.photo-frame-placeholder span { font-size: 2rem; opacity: 0.5; }
.photo-caption {
  text-align: center;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 10px;
  opacity: 0.8;
}

/* ── FULL-WIDTH PHOTO STRIP ── */
.photo-strip {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.photo-strip-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    #1c1209,
    #1c1209 12px,
    #251a0e 12px,
    #251a0e 24px
  );
  color: var(--gold-light);
  gap: 12px;
}
.photo-strip-placeholder span { font-size: 3rem; opacity: 0.4; }
.photo-strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.photo-strip-overlay p {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--parchment);
  letter-spacing: 0.15em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 8px;
}
.photo-strip-overlay em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.strip-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto;
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav a { margin: 0 8px; font-size: 0.55rem; }
  .rsvp-box { padding: 28px 20px; }
  section { padding: 50px 16px; }
  .story-drop-cap::first-letter { font-size: 3.5rem; }
  .photo-pair { grid-template-columns: 1fr; gap: 16px; }
  .photo-frame { aspect-ratio: 4/3; }
  .photo-strip { height: 260px; }
}
