/* ============================
   Classic Romance Theme
   ============================ */

:root {
  --color-bg: #fbf7f3;
  --color-bg-alt: #f2e7e1;
  --color-text: #3a2f2a;
  --color-muted: #6b5a52;
  --color-accent: #c8a2a2;
  --color-border: #e4d6cf;
  --color-card: #ffffff;

  --font-heading: "Playfair Display", "Times New Roman", serif;
  --font-body: "Lora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-signature: "Dancing Script", "Brush Script MT", "Segoe Script", cursive;
  
  --radius-soft: 14px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px rgba(58, 47, 42, 0.07);
  --shadow-subtle: 0 4px 14px rgba(58, 47, 42, 0.06);

  --section-padding-y: 4.25rem;
  --container-max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: radial-gradient(circle at top left, #fffaf5 0, #fbf7f3 52%, #f7efe8 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.section {
  padding: var(--section-padding-y) 0;
}

.section-soft {
  background: linear-gradient(
    180deg,
    rgba(242, 231, 225, 0.32),
    rgba(251, 247, 243, 0.8)
  );
}

.section-inner {
  border-radius: 28px;
  padding: 2.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(228, 214, 207, 0.7);
}

.section-soft .section-inner {
  background: rgba(251, 247, 243, 0.95);
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.4rem + 0.8vw, 2.2rem);
  letter-spacing: 0.03em;
  margin: 0.35rem 0 0;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--color-muted);
}

h1,
h2,
h3 {
  margin: 0;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.15rem;
}

p {
  margin: 0 0 0.9rem;
  font-size: 0.99rem;
}

/* ============================
   Header / Navigation
   ============================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 243, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 214, 207, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.35rem;
  color: var(--color-muted);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 180ms ease-out;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 2.75rem;
  min-height: 2.75rem;
  background: transparent;
  border: none;
  padding: 0.35rem;
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================
   Hero
   ============================ */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  padding: 0;
  color: #fdf7f2;
}

.section.hero {
  padding-block: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(58, 47, 42, 0.25),
      rgba(58, 47, 42, 0.05) 40%,
      rgba(58, 47, 42, 0.3)
    ),
    url("assets/hero-image.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(15, 9, 6, 0.82) 0%,
      rgba(15, 9, 6, 0.38) 45%,
      transparent 75%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(15, 9, 6, 0.45),
      transparent 55%
    ),
    radial-gradient(
      circle at left,
      rgba(15, 9, 6, 0.55),
      rgba(15, 9, 6, 0.08) 55%,
      rgba(15, 9, 6, 0.5)
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  padding-block: 0 2.5rem;
}

.hero-content-inner {
  max-width: 980px;
  margin-inline: auto;
  width: 100%;
  text-align: center;
}

.hero .eyebrow {
  color: rgba(255, 247, 243, 0.9);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 1.9rem + 1.2vw, 3.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.5rem 0 0.75rem;
}

.hero-names {
  display: block;
}

.hero-meta {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero-body {
  max-width: 36rem;
  margin: 0 auto 1.7rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ============================
   Buttons
   ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background-color 170ms ease-out, color 170ms ease-out,
    box-shadow 170ms ease-out, transform 170ms ease-out, border-color 170ms ease-out;
}

.btn-primary {
  background: var(--color-accent);
  color: #fdf7f3;
  box-shadow: 0 10px 24px rgba(200, 162, 162, 0.55);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #b58c8c;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(200, 162, 162, 0.7);
}

.btn-ghost {
  border-color: rgba(253, 247, 243, 0.9);
  background: rgba(251, 247, 243, 0.1);
  color: inherit;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero .btn-ghost {
  border-color: rgba(253, 247, 243, 0.8);
  color: #fdf7f3;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(251, 247, 243, 0.92);
  color: var(--color-text);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
}

.btn-full {
  width: 100%;
}

.btn[aria-disabled="true"] {
  opacity: 0.65;
  pointer-events: none;
}

/* ============================
   Layout helpers
   ============================ */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.details-grid,
.travel-grid,
.registry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}

.rsvp-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  align-items: center;
}

/* ============================
   Cards & specific sections
   ============================ */

.detail-card,
.travel-card,
.registry-card {
  background: var(--color-card);
  border-radius: var(--radius-soft);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(228, 214, 207, 0.9);
  box-shadow: var(--shadow-subtle);
}

.travel-section-lede {
  max-width: 40rem;
  margin: 0.75rem 0 0;
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.travel-booking-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.6rem 1.65rem;
  text-align: center;
  border-radius: var(--radius-soft);
  border: 1px solid rgba(200, 162, 162, 0.45);
  background: linear-gradient(
    180deg,
    rgba(242, 231, 225, 0.5),
    rgba(251, 247, 243, 0.96)
  );
  box-shadow: var(--shadow-subtle);
}

.travel-booking-cta-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}

.travel-booking-cta-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.4rem);
  font-weight: 600;
  color: var(--color-text);
}

.travel-booking-cta-copy {
  margin: 0 0 1.1rem;
  max-width: 26rem;
  margin-inline: auto;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.travel-booking-cta-btn {
  min-width: 14rem;
}

.travel-booking-cta-placeholder {
  margin: 0;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--color-muted);
}

.detail-meta {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(200, 162, 162, 0.35);
}

.timeline-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.6rem;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.35rem;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid #fbf7f3;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(200, 162, 162, 0.15);
}

.story-image-frame {
  border-radius: 34px;
  padding: 0.55rem;
  background: linear-gradient(145deg, #fdf2ea, #f2dfd5);
  border: 1px solid rgba(228, 214, 207, 0.9);
  box-shadow: 0 18px 40px rgba(58, 47, 42, 0.12);
}

.story-image {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.photo-break {
  padding: 0;
}

.photo-break-image {
  height: 560px;
  background-image: linear-gradient(
      180deg,
      rgba(251, 247, 243, 0.18),
      rgba(58, 47, 42, 0.45)
    ),
    url("assets/photo-break.webp");
  background-size: cover;
  background-position: center;
}

.detail-break {
  padding: 3rem 0;
  background: rgba(242, 231, 225, 0.5);
}

.detail-break-card {
  max-width: 520px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 0.6rem;
  background: radial-gradient(circle at top, #fff7f0, #eedad0);
  border: 1px solid rgba(228, 214, 207, 0.9);
  box-shadow: 0 18px 40px rgba(58, 47, 42, 0.16);
}

.detail-break-image {
  width: 100%;
  border-radius: 999px;
  object-fit: cover;
  aspect-ratio: 3.5 / 1.1;
}

.venue-map-card {
  background: var(--color-card);
  border-radius: var(--radius-soft);
  padding: 1.4rem 1.45rem;
  border: 1px solid rgba(228, 214, 207, 0.9);
  box-shadow: var(--shadow-subtle);
}

.venue-map-placeholder {
  border-radius: 20px;
  border: 1px dashed rgba(200, 162, 162, 0.8);
  padding: 3.2rem 1rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--color-muted);
  background: linear-gradient(
    145deg,
    rgba(242, 231, 225, 0.35),
    rgba(251, 247, 243, 0.9)
  );
}

.venue-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.25rem 0;
  color: var(--color-muted);
}

.venue-connector-line {
  flex: 1;
  max-width: 8rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 162, 162, 0.55) 20%,
    rgba(200, 162, 162, 0.55) 80%,
    transparent
  );
}

.venue-connector-label {
  flex-shrink: 0;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent);
}

.venue-address {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.checklist li::before {
  content: "✧";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.85rem;
}

/* RSVP Showcase */

.rsvp-header-centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.rsvp-intro {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 0.6rem;
}

.rsvp-module {
  width: 100%;
  max-width: 560px;
  background: var(--color-card);
  border-radius: 26px;
  border: 1px solid rgba(228, 214, 207, 0.9);
  box-shadow: 0 20px 45px rgba(58, 47, 42, 0.12);
  overflow: hidden;
}

.rsvp-module-header {
  text-align: center;
  padding: 1.8rem 1.9rem 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(242, 231, 225, 0.38),
    rgba(255, 255, 255, 0) 100%
  );
  border-bottom: 1px solid rgba(228, 214, 207, 0.5);
}

.rsvp-module-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

.rsvp-module-names {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.55rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.rsvp-module-body {
  padding: 0.4rem 1.9rem 0.6rem;
}

.rsvp-module-section {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(228, 214, 207, 0.45);
}

.rsvp-module-section:last-child {
  border-bottom: none;
}

.rsvp-section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.rsvp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rsvp-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  background: rgba(200, 162, 162, 0.1);
  border: 1px solid rgba(200, 162, 162, 0.3);
  color: var(--color-text);
}

.rsvp-row-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.rsvp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.rsvp-row-name {
  font-size: 0.92rem;
  color: var(--color-text);
}

.rsvp-row-value {
  font-size: 0.88rem;
  color: var(--color-muted);
  text-align: right;
  flex-shrink: 0;
}

.rsvp-accepts {
  color: #7a9a6d;
  font-weight: 500;
}

.rsvp-italic {
  font-style: italic;
}

.rsvp-plusone-section {
  background: rgba(242, 231, 225, 0.3);
  margin-inline: -1.9rem;
  padding-inline: 1.9rem;
  border-bottom: none !important;
}

.rsvp-row-plusone {
  align-items: center;
}

.rsvp-plusone-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(200, 162, 162, 0.12);
  border: 1px solid rgba(200, 162, 162, 0.35);
  color: var(--color-text);
  font-weight: 500;
}

.rsvp-module-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
  padding: 0.9rem 1.9rem 1.4rem;
  border-top: 1px solid rgba(228, 214, 207, 0.45);
  margin: 0;
  font-style: italic;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-soft);
  border: 1px solid rgba(228, 214, 207, 0.9);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.2rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1rem;
  color: var(--color-muted);
  margin-left: 0.75rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  border-top: 1px solid rgba(228, 214, 207, 0.7);
  transition: max-height 180ms ease-out, padding-top 180ms ease-out,
    padding-bottom 180ms ease-out;
}

.faq-answer.is-open {
  padding-top: 0.4rem;
  padding-bottom: 0.9rem;
}

.registry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.closing-cta {
  text-align: right;
}

.closing-line {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.closing-signature {
  margin: 2.5rem 0 0;
  padding: 1.75rem 0 0 1.35rem;
  border-top: 1px solid rgba(228, 214, 207, 0.95);
  border-left: 2px solid rgba(200, 162, 162, 0.35);
  max-width: 22rem;
}

.closing-signature-lede {
  display: block;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.closing-signature-names {
  display: block;
  font-family: var(--font-signature);
  font-size: clamp(1.85rem, 1.35rem + 1.4vw, 2.5rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-top: 0.15rem;
}

/* ============================
   Footer
   ============================ */

.site-footer {
  padding: 1.8rem 0 2.1rem;
  background: #f2e7e1;
  border-top: 1px solid rgba(228, 214, 207, 0.95);
}

.footer-inner {
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  color: var(--color-muted);
}

.footer-note {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ============================
   Reveal-on-scroll
   ============================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 380ms ease-out, transform 380ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 960px) {
  :root {
    --section-padding-y: 3.6rem;
  }

  .section-inner {
    padding: 1.9rem 1.8rem;
    border-radius: 24px;
  }

  .two-column,
  .story-layout,
  .venue-layout,
  .closing-layout,
  .details-grid,
  .travel-grid,
  .registry-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .closing-cta {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1.1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(251, 247, 243, 0.98);
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    transition: max-height 200ms ease-out, border-color 200ms ease-out;
  }

  .primary-nav.is-open {
    border-color: rgba(228, 214, 207, 0.9);
    max-height: 260px;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.65rem 1.4rem 1rem;
    gap: 0.75rem;
  }

  .hero-content {
    padding-block: 0 2rem;
  }

  .hero-body {
    max-width: 100%;
  }

  .photo-break-image {
    height: 220px;
  }

  .detail-break-card {
    border-radius: 36px;
  }

  .detail-break-image {
    border-radius: 30px;
  }

  .rsvp-module-body {
    padding-inline: 1.4rem;
  }

  .rsvp-plusone-section {
    margin-inline: -1.4rem;
    padding-inline: 1.4rem;
  }

  .rsvp-module-note {
    padding-inline: 1.4rem;
  }
}

@media (max-width: 520px) {
  :root {
    --section-padding-y: 3.2rem;
  }

  .container {
    padding-inline: 1.15rem;
  }

  .header-inner {
    padding-inline: 1.15rem;
  }

  .section-inner {
    padding: 1.55rem 1.4rem;
    border-radius: 22px;
  }

  .hero-heading {
    letter-spacing: 0.06em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .rsvp-module {
    border-radius: 20px;
  }

  .rsvp-module-header {
    padding: 1.4rem 1.2rem 1.1rem;
  }

  .rsvp-module-body {
    padding-inline: 1.2rem;
  }

  .rsvp-row {
    flex-direction: column;
    gap: 0.15rem;
  }

  .rsvp-row-value {
    text-align: left;
  }

  .rsvp-plusone-section {
    margin-inline: -1.2rem;
    padding-inline: 1.2rem;
  }

  .rsvp-row-plusone {
    flex-direction: row;
    gap: 0.75rem;
  }

  .rsvp-module-note {
    padding-inline: 1.2rem;
  }

  .story-image-frame {
    margin-top: 1.4rem;
  }

  .timeline-list li {
    padding-left: 1.2rem;
  }
}

/* ── Dynamic RSVP (rsvp-dynamic.css) — Classic tokens: Lora + Playfair + Source Sans ── */
body.fp-theme-classic {
  --fp-font-body: "Lora", "Georgia", "Times New Roman", serif;
  --fp-font-heading: "Playfair Display", "Times New Roman", serif;
  --fp-font-ui: "Source Sans 3", system-ui, sans-serif;
  --fp-bg: #fbf7f3;
  --fp-bg-alt: #f2e7e1;
  --fp-bg-soft: #f7efe8;
  --fp-text: #3a2f2a;
  --fp-muted: #6b5a52;
  --fp-accent: #c8a2a2;
  --fp-border: #e4d6cf;
  --fp-white: #ffffff;
}

body.fp-theme-classic .fp-preview-banner {
  background: rgba(200, 162, 162, 0.22);
  color: #3a2f2a;
}

body.fp-theme-classic .fp-rsvp-form label,
body.fp-theme-classic .fp-rsvp-form input,
body.fp-theme-classic .fp-rsvp-form select,
body.fp-theme-classic .fp-rsvp-form textarea {
  font-family: var(--fp-font-ui);
}

body.fp-theme-classic .fp-rsvp-form h2,
body.fp-theme-classic .fp-rsvp-form h3,
body.fp-theme-classic .fp-rsvp-intro-name,
body.fp-theme-classic .fp-modal-title {
  font-family: var(--fp-font-heading);
}

