    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { overflow-x: hidden; }

    /* Override parent styles that break position:sticky */
    .wedding-page { overflow: visible !important; scroll-snap-type: none !important; }
    .wedding-page #app { overflow: visible !important; }
    #wedding-root > div { overflow: visible !important; }

    /* ── Monogram ── */
    .monogram {
      font-family: 'Playfair Display', serif;
      font-size: clamp(80px, 12vw, 140px);
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.03em;
      color: rgba(255,255,255,0.9);
    }

    .script-heading {
      font-family: 'Playfair Display', serif;
      font-style: italic;
    }

    /* ── Photo placeholders ── */
    .photo-placeholder {
      background: linear-gradient(145deg, #3a3530, #25221e);
      position: relative;
      overflow: hidden;
    }
    .photo-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    }

    .photo-placeholder-light {
      background: linear-gradient(145deg, #c9b8a8, #a89888);
      position: relative;
      overflow: hidden;
    }

    .photo-placeholder-warm {
      background: linear-gradient(145deg, #8a7060, #5a4a3a);
      position: relative;
      overflow: hidden;
    }

    /* ── Photo hover effect ── */
    .photo-hover {
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .photo-hover:hover {
      transform: scale(1.03);
    }

    /* ── Countdown ── */
    .countdown-digit {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 10vw, 96px);
      font-weight: 400;
      color: white;
      line-height: 1;
      display: inline-block;
      min-width: 1.2em;
      text-align: center;
    }

    .countdown-separator {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 8vw, 72px);
      color: rgba(255,255,255,0.5);
      line-height: 1;
    }

    /* ── Digit roll animation ── */
    .digit-roll {
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                  opacity 0.2s ease;
    }
    .digit-roll.changing {
      animation: digitRoll 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    @keyframes digitRoll {
      0%   { transform: translateY(30%); opacity: 0; }
      100% { transform: translateY(0);   opacity: 1; }
    }

    /* ── FAQ ── */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .faq-answer.open {
      max-height: 200px;
      padding-bottom: 20px;
    }

    .faq-row {
      transition: background-color 0.3s ease;
    }
    .faq-row:hover {
      background-color: rgba(42, 42, 42, 0.03);
    }

    /* ── Nav links ── */
    .wedding-nav-link {
      font-family: 'Playfair Display', serif;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
    }
    .wedding-nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: rgba(255,255,255,0.7);
      transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .wedding-nav-link:hover { color: white; }
    .wedding-nav-link:hover::after { width: 100%; }

    /* ── Scroll reveal ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Staggered children */
    .reveal-stagger > .reveal-child {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .reveal-stagger.visible > .reveal-child {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Line reveal ── */
    .line-reveal {
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .line-reveal.visible {
      transform: scaleX(1);
    }

    /* ── Monogram glow ── */
    @keyframes monogramGlow {
      0%, 100% { text-shadow: 0 0 40px rgba(255,255,255,0.08); }
      50%      { text-shadow: 0 0 80px rgba(255,255,255,0.2), 0 0 120px rgba(255,255,255,0.05); }
    }
    .monogram-glow {
      animation: monogramGlow 4s ease-in-out infinite;
    }

    /* ── Scroll indicator ── */
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 0.6; }
      50%      { transform: translateY(10px); opacity: 1; }
    }
    .scroll-indicator {
      animation: scrollBounce 2.5s ease-in-out infinite;
    }

    /* ── Progress bar ── */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: linear-gradient(90deg, rgba(138,112,96,0.8), rgba(212,166,154,0.9));
      z-index: 9999;
      transform-origin: left;
      transition: none;
    }

    /* ── Parallax helper ── */
    .parallax-bg {
      will-change: transform;
      transition: transform 0.1s linear;
    }