:root {
  --bg: #0e0e0e;
  --gold: #c6a664;
  --text: #f5f5f5;
}

/* =========================
   PREMIUM PARAGRAPH TYPOGRAPHY
========================= */

.story-content p,
.story-text,
.quote-text,
.timeline-time,
.timeline-place,
.rsvp-intro,
.form-group input,
.form-group textarea,
.blessings-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.2px;
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* =========================
   HERO
========================= */

.hero {
  height: 100vh;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9));
  overflow: hidden;
}

/* Background image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1);
  animation: zoomBg 25s ease-in-out infinite alternate;
  z-index: 0;
}

/* Film grain */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* =========================
   HERO CONTENT
========================= */

.hero-inner {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  text-align: center;
  max-width: 900px;
  padding: 20px;
  padding-bottom: 90px; /* space for scroll indicator */

  animation: heroReveal 1.6s ease forwards;
  opacity: 0;
}

.hero-tag {
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

/* =========================
   FLORAL FRAME
========================= */

.name-frame {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 1 / 1;
  animation: floatFrame 6s ease-in-out infinite;
}

.name-frame img {
  width: 100%;
  display: block;
}

.names {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.names span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 1px;
}


.names em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.names span:last-child {
  font-weight: 500;
  opacity: 0.95;
}

.names span,
.names em {
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

/* =========================
   DIVIDER & DATE
========================= */

.hero-divider {
  width: 120px;
  height: 1px;
  opacity: 0.7;
   background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
}

.hero-date {
  letter-spacing: 3px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* =========================
   SCROLL INDICATOR
========================= */

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);

  width: 20px;
  height: 35px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.scroll-indicator::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.5s infinite;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@keyframes scrollDot {
  0%   { opacity: 0; top: 8px; }
  30%  { opacity: 1; }
  100% { opacity: 0; top: 20px; }
}

@keyframes floatFrame {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}


.countdown-section {
  background: #0e0e0e;
  color: #f5f5f5;
  padding: 120px 20px;
  text-align: center;
}

.countdown-tag {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.countdown-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  margin-bottom: 50px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  animation: gentlePulse 6s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.countdown-timer {
  animation: gentlePulse 6s ease-in-out infinite;
}

  .countdown-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto 60px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.7;
}

.time-box {
  min-width: 120px;
  padding: 24px 16px;
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.01)
    );

  border: 1px solid rgba(198,166,100,0.25);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}


.time-box span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: var(--gold);
  text-shadow:
    0 0 20px rgba(198,166,100,0.35),
    0 8px 30px rgba(0,0,0,0.6);
}

.time-box small {
  letter-spacing: 2px;
  font-size: 0.7rem;
  opacity: 0.8;
}


/* =========================
   OUR STORY – PREMIUM IMAGE
========================= */

.story-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(198,166,100,0.08), transparent 40%),
    #f7f4ef;
  padding: 140px 20px;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* GRID */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}

/* IMAGE */
.story-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(0.9) contrast(1.05);
   box-shadow:
    0 40px 80px rgba(0,0,0,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* TEXT */
.story-text-wrap {
  text-align: left;
}

.story-tag {
  display: block;
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.3rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 42px;
  color: #1c1c1c;
}

.story-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 18px;
}

/* CONTENT */
.story-content {
  max-width: 520px;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.15px;
  color: #2b2b2b;
  margin-bottom: 28px;
  
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lead paragraph */
.story-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
  letter-spacing: 0.2px;
  line-height: 1.9;
}

.story-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 65%;
  background: var(--gold);
}

.story-separator {
  width: 200px;
  height: 1.5px;
  opacity: 0.7;
   background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
}


/* SIGNATURE */
.story-signature {
  margin-top: 44px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #1c1c1c;
}

.story-signature span {
  color: var(--gold);
}


/* =========================
   QUOTE SECTION – PREMIUM
========================= */

.quote-section {
  background:
    linear-gradient(
      to bottom,
      #ffffff,
      #faf8f3
    );
  padding: 140px 20px;
  position: relative;
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Quote text */
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  line-height: 1.3;
  color: #1c1c1c;
  letter-spacing: 0.4px;
  margin: 0;
}

/* Decorative quotes */
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--gold);
  position: absolute;
  opacity: 0.7;
}

.quote-mark.left {
  top: -20px;
  left: 0;
}

.quote-mark.right {
  bottom: -20px;
  right: 0;
}

/* Divider below quote */
.quote-divider {
  width: 200px;
  height: 1.5px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
  margin: 50px auto 0;
  opacity: 0.6;
}

/* Subtle fade-in */
.quote-section {
  animation: quoteFade 0.9s ease both;
}

@keyframes quoteFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   WEDDING EVENTS – TIMELINE
========================= */

.timeline-section {
  background: #0e0e0e;
  color: #f5f5f5;
  padding: 150px 20px;
  overflow-x: hidden;
}

.timeline-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.timeline-tag {
  display: block;
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  margin-bottom: 100px;
}

/* TIMELINE BASE */
.timeline {
  position: relative;
  padding: 0 0 0;
}

/* Center line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.25;
}

/* ITEM */
.timeline-item {
  width: 46%;
   padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  
}





.timeline-item::after {
  content: "";
  position: absolute;
  top: 58px;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
/* LEFT & RIGHT */
.timeline-item.left {
  text-align: right;
  left: 0;
  padding-right: 40px;
}

.timeline-item.left::after {
  right: -28px;
}

.timeline-item.right {
  text-align: left;
  left: 54%;
   padding-left: 40px;
}

.timeline-item.right::after {
  left: -28px;
}

/* DOT */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 52px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.left::before {
  right: -7px;
}

.timeline-item.right::before {
  left: -7px;
}

.timeline-item.left .timeline-content h3::after {
  margin: 10px 0 14px auto;
}

.timeline-item.right .timeline-content h3::after {
  margin: 10px auto 14px 0;
}


/* CONTENT */
.timeline-content {
  position: relative;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );
  border: 1px solid rgba(198,166,100,0.25);
  padding: 42px 38px;
  border-radius: 18px;
   max-width: 100%;
  backdrop-filter: blur(6px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    0 30px 80px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.1);

  transition: all 0.35s ease;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 60px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* TEXT */
.timeline-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  position: relative;
}

.timeline-content h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
  margin: 10px auto 14px auto;
  opacity: 0.6;
}

.timeline-date {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 14px;
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--gold);
  border: 1px solid rgba(198,166,100,0.45);
  border-radius: 999px;

  background: rgba(198,166,100,0.08);
}


.timeline-time,
.timeline-place {
 font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

.timeline-location {
  display: inline-block;
  margin-top: 22px;

  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--gold);
  text-decoration: none;

  border-bottom: 1px solid rgba(198,166,100,0.6);
  padding-bottom: 6px;

  transition: opacity 0.3s ease;
}

.timeline-location:hover {
  opacity: 0.8;
}

/* =========================
   RSVP SECTION – PREMIUM
========================= */

.rsvp-section {
  background: #faf7f2; /* same ivory tone */
  padding: 160px 20px;
  color: #1a1a1a;
}

.rsvp-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.rsvp-tag {
  display: block;
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.rsvp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.rsvp-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 80px;
}

  .rsvp-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto 60px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.7;
}

/* FORM */
.rsvp-form {
  text-align: left;
}

/* GROUP */
.form-group {
  margin-bottom: 36px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.7;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 14px 12px;

  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);

  outline: none;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: none;
  height: 90px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

/* SUBMIT */
.rsvp-submit {
  display: block;
  margin: 60px auto 0;

  background: transparent;
  border: 1px solid var(--gold);
  padding: 14px 46px;

  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: color 0.35s ease, border-color 0.35s ease;
}

.rsvp-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.rsvp-submit:hover {
  color: #1a1a1a;
}

.rsvp-submit:hover::after {
  opacity: 0.12;
}

.rsvp-success {
  display: none;
  margin-top: 60px;
  font-size: 1.05rem;
  color: var(--gold);
  text-align: center;
}

/* Show message after submit */
:target.rsvp-success {
  display: block;
}


/* =========================
   BLESSINGS & FOOTER
========================= */

.blessings-section {
  background: #0e0e0e;
  color: #f5f5f5;
  padding: 200px 20px 130px;
  text-align: center;
  position: relative;
}

.blessings-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Tag */
.blessings-tag {
  display: block;
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Title */
.blessings-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  margin-bottom: 28px;
}

/* Ornamental divider */
.blessings-divider {
  display: flex;
  justify-content: center;
  margin: 30px 0 50px;
}

.blessings-divider span {
  width: 120px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.6;
}

/* Text */
.blessings-text {
  font-size: 1.1rem;
  line-height: 1.95;
  opacity: 0.85;
  margin-bottom: 90px;
}

/* Names with soft glow */
.blessings-names-wrap {
  position: relative;
  display: inline-block;
  padding: 30px 40px;
  overflow: hidden; /* 🔥 CONTAINS GLOW */
}

.blessings-names-wrap::before {
  content: "";
  position: absolute;
  inset: -20px; /* controlled expansion */
  background: radial-gradient(
    circle,
    rgba(198,166,100,0.18),
    transparent 70%
  );
  filter: blur(18px); /* reduced blur */
  z-index: 0;
}


.blessings-names {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  letter-spacing: 1px;
}

.blessings-names span {
  color: var(--gold);
  margin: 0 12px;
}

/* Footer */
.site-footer {
  margin-top: 80px;
  text-align: center;
}

/* Main footer message */
.footer-message {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.3px;
  opacity: 0.85;
}

/* Site credit (quiet, subtle) */
.site-credit {
  margin-top: 28px;
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  opacity: 0.45;
}

.site-credit a {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;   
  transition: opacity 0.3s ease;
}

.site-credit a:hover {
  opacity: 0.75;           /* subtle hover feedback */
}


/* =========================
   SCROLL REVEAL BASE
========================= */

.reveal {
  opacity: 0;
  transform: translateY(56px) scale(0.95);
  transition:
    opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.25s; }
.reveal-delay-2 { transition-delay: 0.45s; }
.reveal-delay-3 { transition-delay: 0.65s; }

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-left.reveal-active,
.reveal-right.reveal-active {
  transform: translateX(0);
}




/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  /* Let hero content breathe */
  .hero {
    justify-content: flex-start;
  }

  .hero-inner {
    min-height: 100vh;
    max-width: 100%;        /* 🔥 REMOVE WIDTH LIMIT */
    width: 100%;

    padding-top: 90px;
    padding-bottom: 120px;

    gap: 32px;

    /* 🔥 SUBTLE SCALE TO FILL HERO */
    transform: none;
    transform-origin: top center;
  }

  .hero-tag {
    font-size: 1.05rem;
    letter-spacing: 3px;
  }

  /* Floral frame must dominate */
  .name-frame {
    width: 100vw;          /* 🔥 FULL WIDTH */
    max-width: none;       /* 🔥 NO CAP */
  }

  /* Names must feel like hero text */
  .names span {
    font-size: 2.8rem;
  }

  .names em {
    font-size: 2.2rem;
    margin: 12px 0;
  }

  .hero-divider {
    width: 140px;
  }

  .hero-date {
    font-size: 1.15rem;
    letter-spacing: 2px;
  }

  .scroll-indicator {
    bottom: 26px;
  }

   .countdown-title {
    font-size: 2.2rem;
  }
  
  .countdown-divider {
    margin-bottom: 40px;
  }

  .countdown-timer {
    gap: 20px;
  }

  .time-box {
    min-width: 100px;
    padding: 20px 12px;
  }

.story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-image img {
    height: 380px;
  }

  .story-title {
    font-size: 2.4rem;
  }

  .story-content {
    max-width: 100%;
  }

  .story-text-wrap {
    text-align: center;
  }
  .story-signature {
    text-align: center;
    font-size: 1.9rem;
  }

  .story-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center the bottom separator */
  .story-separator {
    margin-left: auto;
    margin-right: auto;
  }

  .quote-text {
    font-size: 4.5rem;
  }

  .quote-mark {
    font-size: 3.2rem;
  }

  .quote-mark.left {
    left: 10px;
  }

  .quote-mark.right {
    right: 10px;
  }

  /* Section title */
  .timeline-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }

  /* Vertical line */
  .timeline::before {
    left: 18px;
  }

  /* Timeline item */
  .timeline-item {
    width: 100%;
    left: 0 !important;

    padding-left: 48px;   /* ⬅ PULL CARD CLOSER */
    padding-right: 16px;

    text-align: left;

    padding-top: 36px;
    padding-bottom: 36px;
  }

  /* Dot */
  .timeline-item::before {
    left: 11px;
    top: 46px;
  }

  /* 🔥 KEY FIX: VERY SHORT CONNECTOR */
  .timeline-item::after {
    left: 18px;           /* dot edge */
    width: 12px;          /* ⬅ SHORT */
    top: 52px;
  }

  /* Card content */
  .timeline-content {
    padding: 28px 24px;
  }

  .timeline-content h3 {
    font-size: 1.7rem;
  }

  .timeline-content h3::after {
    margin: 10px auto 16px auto;
  }

  .timeline-date {
    font-size: 0.75rem;
    margin-top: 10px;
  }

  .timeline-time,
  .timeline-place {
    font-size: 0.9rem;
  }


 .rsvp-title {
    font-size: 2.4rem;
  }

  .rsvp-intro {
    margin-bottom: 60px;
  }

   .blessings-section {
    padding: 150px 20px 110px;
  }

  .blessings-title {
    font-size: 2.4rem;
  }

  .blessings-text {
    font-size: 1rem;
    margin-bottom: 70px;
  }

  .blessings-names-wrap {
    padding: 24px 28px; /* tighter */
  }

  .blessings-names {
    font-size: 2rem;
    letter-spacing: 0.5px; /* reduces width push */
  }
  .site-footer {
    margin-top: 120px;
  }

   .reveal {
    transform: translateY(36px) scale(0.98);
    transition-duration: 1.3s;
  }

  .reveal-delay-1 { transition-delay: 0.18s; }
  .reveal-delay-2 { transition-delay: 0.32s; }
  .reveal-delay-3 { transition-delay: 0.46s; }

  .story-content p,
  .story-text,
  .quote-text,
  .timeline-time,
  .timeline-place,
  .rsvp-intro,
  .blessings-text {
    font-size: 1rem;
    line-height: 1.75;
  }
 
}


