  :root {
    --bg: #F8F7F5;
    --surface: #FFFFFF;
    --text: #2E2E2E;
    --text-soft: #6B6B6B;
    --accent: #C8A35A;
    --accent-soft: #E4D2A8;
    --accent-deep: #A9863F;
    --shadow-sm: 0 6px 20px rgba(46, 46, 46, 0.06);
    --shadow-md: 0 16px 50px rgba(46, 46, 46, 0.08);
    --shadow-lg: 0 30px 80px rgba(46, 46, 46, 0.12);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1F1612;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    overscroll-behavior-y: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
    touch-action: pan-y;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
      linear-gradient(180deg, rgba(28,19,15,0.48), rgba(28,19,15,0.78)),
      url('photo1.jpg') center 24% / cover no-repeat;
    transform: scale(1.03);
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(17,11,9,0.34), rgba(17,11,9,0.34));
    pointer-events: none;
  }

  /* Scroll lock until invitation opened */
  body.locked { overflow: hidden; height: 100vh; }

  ::selection { background: var(--accent-soft); color: var(--text); }

  h1, h2, h3, .serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }

  .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent-deep);
    font-weight: 500;
  }

  /* ============ SECTIONS ============ */
  .section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 6vw, 3rem);
    overflow: hidden;
  }

  .section > * { position: relative; z-index: 2; }

  /* ============ FLOATING DECOR (shared) ============ */
  .float {
    position: absolute;
    pointer-events: none;
    color: var(--accent);
    opacity: 0;
    animation: floatDrift linear infinite;
    will-change: transform, opacity;
  }
  @keyframes floatDrift {
    0%   { transform: translateY(20px) rotate(0deg) scale(0.9); opacity: 0; }
    15%  { opacity: 0.5; }
    50%  { transform: translateY(-30px) rotate(180deg) scale(1.05); opacity: 0.35; }
    85%  { opacity: 0.4; }
    100% { transform: translateY(-90px) rotate(360deg) scale(0.9); opacity: 0; }
  }

  /* ============ SECTION 1 — HERO ============ */
  #hero {
    background: linear-gradient(180deg, rgba(20,12,9,0.34), rgba(20,12,9,0.34));
  }

  /* animated abstract gradient blobs */
  .aurora {
    display: none;
  }
  .blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: normal;
    will-change: transform;
  }
  .blob.b1 { width: 60vw; height: 60vw; left: -10vw; top: -5vh;
    background: radial-gradient(circle, rgba(200,163,90,0.34), transparent 70%);
    animation: drift1 18s var(--ease-soft) infinite alternate; }
  .blob.b2 { width: 55vw; height: 55vw; right: -12vw; top: 18vh;
    background: radial-gradient(circle, rgba(228,210,168,0.42), transparent 70%);
    animation: drift2 22s var(--ease-soft) infinite alternate; }
  .blob.b3 { width: 50vw; height: 50vw; left: 12vw; bottom: -12vh;
    background: radial-gradient(circle, rgba(214,196,224,0.26), transparent 70%);
    animation: drift3 20s var(--ease-soft) infinite alternate; }
  @keyframes drift1 { to { transform: translate(8vw, 6vh) scale(1.15); } }
  @keyframes drift2 { to { transform: translate(-7vw, -5vh) scale(1.1); } }
  @keyframes drift3 { to { transform: translate(5vw, -8vh) scale(1.2); } }

  /* light particles */
  .particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
  .particle {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, var(--accent-soft) 60%, transparent 100%);
    box-shadow: 0 0 8px rgba(200,163,90,0.6);
    opacity: 0;
    animation: rise linear infinite;
  }
  @keyframes rise {
    0%   { transform: translateY(0) scale(0.6); opacity: 0; }
    10%  { opacity: 0.9; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-110vh) scale(1.1); opacity: 0; }
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: clamp(1.2rem, 3vw, 1.8rem) 0;
  }

  .hero-crest {
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--accent-soft);
    color: var(--accent);
    font-size: 1.1rem;
    background: rgba(255,255,255,0.14);
  }

  .hero-title {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: #FFF6EA;
  }
  .hero-title em { font-style: italic; color: #F2D49A; font-weight: 500; }

  .names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.2rem;
  }
  .names .name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    color: #FFF3E4;
  }
  .names .amp {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 1.5rem;
  }
  @keyframes pulseHeart { 0%,100%{transform:scale(1);} 50%{transform:scale(1.18);} }

  .recipient {
    display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
    margin-top: 0.5rem;
  }
  .recipient .eyebrow { font-size: 0.6rem; letter-spacing: 0.32em; }
  .recipient .recipient-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    color: #F2D49A;
    line-height: 1.2;
  }

  /* Buttons */
  .btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 100px;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }
  .btn:active { transform: scale(0.97); }

  .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    padding: 1.05rem 2.4rem;
    box-shadow: 0 12px 30px rgba(200,163,90,0.35);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: shimmer 4.5s ease-in-out infinite;
  }
  @keyframes shimmer { 0%,100%{transform:translateX(-120%);} 55%,70%{transform:translateX(120%);} }
  .btn-primary:hover { box-shadow: 0 18px 40px rgba(200,163,90,0.45); transform: translateY(-2px); }

  .open-btn { margin-top: 0.8rem; }
  .open-btn.is-hidden {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    pointer-events: none;
    visibility: hidden;
  }

  .scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,244,228,0.86);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .scroll-hint.show { opacity: 0.7; }
  .scroll-hint i { animation: bob 2s var(--ease-soft) infinite; color: var(--accent); }
  @keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }

  /* ============ SECTION 2 — DETAILS (editorial) ============ */
  #details {
    padding-top: clamp(4rem, 13vh, 6.5rem);
    padding-bottom: clamp(4rem, 13vh, 6.5rem);
    justify-content: flex-start;
  }
  #details::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20,12,9,0.34), rgba(20,12,9,0.34));
    pointer-events: none;
  }
  .section-head { text-align: center; max-width: 540px; margin: 0 auto clamp(2.6rem,8vh,4rem); }
  .section-head .eyebrow { display:block; margin-bottom: 1.2rem; }
  .section-head h2 {
    font-size: clamp(2.1rem, 8.5vw, 3rem);
    line-height: 1.1;
    color: var(--text);
  }
  .section-head h2 em { font-style: italic; color: var(--accent-deep); }
  .section-head p { color: var(--text-soft); font-weight: 300; margin-top: 1rem; }
  #details .section-head .eyebrow,
  #rsvp .section-head .eyebrow,
  #details .id-top,
  #rsvp .field label,
  #rsvp .wish .wish-name,
  #rsvp .wishes-head .eyebrow {
    color: #E2B96C;
  }
  #details .section-head h2,
  #rsvp .section-head h2,
  #details .id-day,
  #rsvp .thanks h3,
  #rsvp .wish .wish-msg {
    color: #FFF2DE;
  }
  #details .section-head h2 em,
  #rsvp .section-head h2 em,
  #details .id-month {
    color: #F1C56C;
  }
  #details .id-top::before,
  #details .id-top::after,
  #rsvp .wishes-head .wishes-line,
  #rsvp .field input,
  #rsvp .field textarea,
  #rsvp .opt-box,
  #rsvp .wish,
  #rsvp .wish:first-child {
    border-color: rgba(229, 191, 115, 0.26);
    background: none;
  }

  /* date centerpiece */
  .invite-date { text-align: center; margin: 0 auto clamp(2.6rem, 8vh, 3.8rem); }
  .id-top {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    font-size: 0.7rem; letter-spacing: 0.38em; text-transform: uppercase;
    color: var(--accent-deep); font-weight: 500;
  }
  .id-top::before, .id-top::after {
    content: ""; width: clamp(28px, 9vw, 42px); height: 1px;
    background: var(--accent-soft);
  }
  .id-day {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(5.5rem, 30vw, 9rem);
    line-height: 0.95;
    color: var(--text);
    margin: 0.5rem 0 0.55rem;
    letter-spacing: -0.02em;
  }
  .id-month {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    color: var(--accent-deep);
    margin-bottom: 0.5rem;
  }
  .id-foot {
    display: block;
    font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-soft); font-weight: 400;
  }

  /* two-column invitation details */
  .invite-meta { width: 100%; max-width: 380px; margin: 0 auto; }
  .meta {
    display: flex; justify-content: space-between; align-items: baseline; gap: 1.6rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(200,163,90,0.16);
  }
  .meta:first-child { border-top: 1px solid rgba(200,163,90,0.16); }
  .m-label {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--accent-deep); font-weight: 500;
    padding-top: 0.2rem;
  }
  .m-label i { font-size: 0.95rem; color: var(--accent); width: 1.1rem; text-align: center; }
  .m-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.02rem, 4.4vw, 1.22rem);
    color: var(--text); text-align: right; line-height: 1.35;
  }
  .m-value .m-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem; font-weight: 300;
    color: var(--text-soft);
    letter-spacing: 0; margin-top: 0.25rem;
  }
  #details .m-label,
  #details .m-label i {
    color: #E6BE6E;
  }
  #details .m-value {
    color: #FFF2DE;
  }
  #details .m-value .m-sub,
  #rsvp .thanks p,
  #rsvp .footer-note {
    color: rgba(255, 240, 220, 0.78);
  }
  #details .meta {
    border-bottom-color: rgba(229, 191, 115, 0.22);
  }
  #details .meta:first-child {
    border-top-color: rgba(229, 191, 115, 0.22);
  }

  .map-btn {
    display: flex; width: max-content;
    margin: clamp(2.6rem, 8vh, 3.6rem) auto 0;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 1.5px solid var(--accent);
    color: #F1C56C;
    font-size: 0.9rem;
    box-shadow: none;
    transition: background 0.45s var(--ease), color 0.45s var(--ease),
                transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  }
  .map-btn i { color: #F1C56C; transition: color 0.45s var(--ease); }
  .map-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(200,163,90,0.28);
  }
  .map-btn:hover i { color: #fff; }
  .map-btn:active { transform: scale(0.98); }

  /* ============ SECTION 3 — RSVP (editorial) ============ */
  #rsvp {
    padding-top: clamp(2.5rem, 8vh, 4.5rem);
    padding-bottom: clamp(2.5rem, 8vh, 4.5rem);
    justify-content: flex-start;
  }
  #rsvp::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20,12,9,0.34), rgba(20,12,9,0.34));
    pointer-events: none;
  }
  .rsvp-wrap { width: 100%; max-width: 390px; margin: 0 auto; }

  .field { margin-bottom: 1.35rem; }
  .field label {
    display: block;
    font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent-deep); font-weight: 500; margin-bottom: 0.8rem;
  }
  .field input, .field textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid #DAD4C8;
    border-radius: 0;
    padding: 0.45rem 0;
    transition: border-color 0.4s var(--ease);
    resize: none;
  }
  .field input::placeholder, .field textarea::placeholder { color: #B9B3A6; font-weight: 300; }
  .field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
  .field textarea { min-height: 64px; line-height: 1.55; }
  #rsvp .field input,
  #rsvp .field textarea,
  #rsvp .opt-box .opt-text,
  #rsvp .thanks p,
  #rsvp .footer-note {
    color: #FFF2DE;
  }
  #rsvp .field input::placeholder,
  #rsvp .field textarea::placeholder {
    color: rgba(255, 240, 220, 0.56);
  }

  /* RSVP selectable options — minimal & elegant */
  .rsvp-options { display: flex; flex-direction: column; margin-top: 0.15rem; }
  .opt { display: block; position: relative; }
  .opt input { position: absolute; opacity: 0; pointer-events: none; }
  .opt-box {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.55rem 0.15rem;
    cursor: pointer;
  }
  .opt-box .opt-dot {
    position: relative; flex-shrink: 0;
    width: 15px; height: 15px; border-radius: 50%;
    border: 1.5px solid #CBC4B5;
    transition: border-color 0.45s var(--ease);
  }
  .opt-box .opt-dot::after {
    content: ""; position: absolute; inset: 3px; border-radius: 50%;
    background: var(--accent); transform: scale(0);
    transition: transform 0.45s var(--ease);
  }
  .opt-box .opt-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem; color: var(--text-soft);
    transition: color 0.45s var(--ease);
  }
  .opt-box:hover .opt-dot { border-color: var(--accent-soft); }
  .opt-box:hover .opt-text { color: var(--text); }
  .opt input:checked + .opt-box .opt-dot { border-color: var(--accent); }
  .opt input:checked + .opt-box .opt-dot::after { transform: scale(1); }
  .opt input:checked + .opt-box .opt-text { color: var(--accent-deep); font-style: italic; }
  .opt input:focus-visible + .opt-box .opt-text { text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--accent-soft); }

  .submit-btn { width: 100%; padding: 0.98rem 1rem; margin-top: 1.4rem; }

  /* thank-you state (typographic, no icon tile) */
  .thanks {
    text-align: center;
    padding: 1.5rem 0.5rem;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
  }
  .thanks.show { display: flex; animation: fadeUp 0.9s var(--ease) both; }
  .thanks .flourish {
    width: 0; height: 1px; background: var(--accent);
    animation: drawLine 1.1s var(--ease) 0.25s forwards;
  }
  @keyframes drawLine { to { width: 56px; } }
  .thanks h3 { font-size: clamp(1.9rem, 8vw, 2.4rem); color: var(--text); font-style: italic; }
  .thanks p { color: var(--text-soft); font-weight: 300; max-width: 330px; }
  .thanks .reset {
    margin-top: 0.5rem; background:none; border:none; cursor:pointer;
    color: var(--accent-deep); font-family:'Inter'; font-size:0.7rem;
    letter-spacing: 0.28em; text-transform: uppercase; font-weight:500;
    border-bottom: 1px solid var(--accent-soft); padding-bottom: 4px;
  }

  .footer-note {
    text-align: center; margin-top: 2.6rem;
    color: var(--text-soft); font-size: 0.78rem; font-weight: 300;
    letter-spacing: 0.04em;
  }

  /* wishes wall */
  .wishes-wall { margin-top: clamp(2rem, 6vh, 3rem); }
  .wishes-head { text-align: center; margin-bottom: 1.6rem; }
  .wishes-head .eyebrow { display: block; }
  .wishes-head .wishes-line {
    display: block; width: 46px; height: 1px;
    background: var(--accent); margin: 1rem auto 0; opacity: 0.65;
  }
  .wish-list { display: flex; flex-direction: column; }
  .wish {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(200,163,90,0.14);
  }
  .wish:first-child { border-top: 1px solid rgba(200,163,90,0.14); }
  .wish .wish-msg {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem; line-height: 1.55; color: var(--text);
  }
  .wish .wish-name {
    display: block; margin-top: 0.75rem;
    font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--accent-deep); font-weight: 500;
  }
  .wish.new { animation: fadeUp 0.8s var(--ease) both; }

  .load-more {
    display: block; margin: 2rem auto 0; cursor: pointer;
    background: transparent;
    border: 1px solid var(--accent-soft);
    border-radius: 100px;
    padding: 0.78rem 1.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
    color: var(--accent-deep);
    transition: background 0.4s var(--ease), color 0.4s var(--ease),
                border-color 0.4s var(--ease), transform 0.4s var(--ease);
  }
  .load-more:hover {
    background: var(--accent); color: #fff; border-color: transparent;
    transform: translateY(-2px);
  }
  .load-more:active { transform: scale(0.98); }
  .load-more[hidden] { display: none; }

  /* ============ MUSIC TOGGLE ============ */
  .music-toggle {
    position: fixed;
    top: 1.1rem; right: 1.1rem;
    z-index: 50;
    width: 58px; height: 58px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    display: grid; place-items: center;
    cursor: pointer;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    overflow: visible;
  }
  .music-toggle.show { opacity: 1; pointer-events: auto; transform: scale(1); }
  .music-toggle img {
    position: relative;
    width: 58px;
    height: 58px;
    object-fit: contain;
    transform-origin: 50% 50%;
    will-change: transform;
    filter: none;
  }
  .music-toggle.playing img {
    animation: spinSlow 4.8s linear infinite;
  }
  @keyframes spinSlow { to { transform: rotate(360deg); } }

  /* ============ ENTRY OVERLAY FADE ============ */
  #fadeOverlay {
    position: fixed; inset: 0; z-index: 100;
    background: #221712;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.1s var(--ease-soft);
  }
  #fadeOverlay.active { opacity: 1; }

  /* ============ SCROLL REVEAL ============ */
  .reveal { opacity: 0; transform: translateY(28px) scale(0.985); transition: opacity 1s var(--ease), transform 1s var(--ease); }
  .reveal.in { opacity: 1; transform: translateY(0) scale(1); }
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }
  .reveal.d4 { transition-delay: 0.32s; }
  .reveal.d5 { transition-delay: 0.40s; }

  @keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }

  /* hero entrance */
  .hero-inner > * { opacity: 0; animation: fadeUp 1.1s var(--ease) both; }
  .hero-inner > *:nth-child(1) { animation-delay: 0.2s; }
  .hero-inner > *:nth-child(2) { animation-delay: 0.4s; }
  .hero-inner > *:nth-child(3) { animation-delay: 0.6s; }
  .hero-inner > *:nth-child(4) { animation-delay: 0.8s; }
  .hero-inner > *:nth-child(5) { animation-delay: 1.0s; }
  .hero-inner > *:nth-child(6) { animation-delay: 1.2s; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.2s !important; }
  }

  @media (max-width: 720px) {
    .hero-inner {
      width: min(100%, 360px);
      padding: 0.5rem 0;
    }

    #hero {
      padding-top: 1.1rem;
      padding-bottom: 2rem;
    }

    .hero-inner {
      gap: 0.9rem;
    }

    .hero-title {
      font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .names .name {
      font-size: clamp(1.25rem, 5.8vw, 1.65rem);
    }

    .recipient .recipient-name {
      font-size: clamp(1.2rem, 5.8vw, 1.55rem);
    }

    .btn-primary {
      padding: 0.92rem 1.8rem;
      font-size: 0.85rem;
    }

    .scroll-hint {
      bottom: 1rem;
      font-size: 0.62rem;
      gap: 0.35rem;
    }

    #details {
      padding-top: 1.2rem;
      padding-bottom: 1.1rem;
      justify-content: center;
    }

    #rsvp {
      padding-top: 0.9rem;
      padding-bottom: 1rem;
      justify-content: center;
    }

    .section-head {
      margin: 0 auto 0.7rem;
    }

    .section-head .eyebrow {
      margin-bottom: 0.5rem;
    }

    .section-head h2 {
      font-size: clamp(1.75rem, 7vw, 2.35rem);
    }

    .invite-date {
      margin: 0 auto 1rem;
    }

    .id-top {
      gap: 0.75rem;
      font-size: 0.62rem;
    }

    .id-day {
      font-size: clamp(4rem, 22vw, 5.6rem);
      margin: 0.2rem 0 0.2rem;
    }

    .id-month {
      font-size: clamp(1.05rem, 4.8vw, 1.4rem);
      margin-bottom: 0.2rem;
    }

    .invite-meta {
      max-width: 100%;
    }

    .rsvp-wrap {
      max-width: 360px;
    }

    .meta {
      gap: 1rem;
      padding: 0.72rem 0;
    }

    .m-label {
      font-size: 0.58rem;
      letter-spacing: 0.22em;
    }

    .m-value {
      font-size: clamp(0.92rem, 4vw, 1.08rem);
    }

    .m-value .m-sub {
      margin-top: 0.15rem;
      font-size: 0.72rem;
    }

    .field {
      margin-bottom: 1rem;
    }

    .field label {
      margin-bottom: 0.55rem;
    }

    .field input,
    .field textarea {
      font-size: 0.94rem;
    }

    .field textarea {
      min-height: 52px;
    }

    .map-btn {
      margin-top: 1rem;
      padding: 0.78rem 1.35rem;
      font-size: 0.78rem;
    }

    .rsvp-options {
      margin-top: 0.15rem;
    }

    .opt-box {
      padding: 0.42rem 0.1rem;
    }

    .opt-box .opt-text {
      font-size: 0.84rem;
    }

    .submit-btn {
      margin-top: 1rem;
      padding: 0.9rem 1rem;
    }
  }
