/* ═══════════════════════════════════════════════════════════
   SELİN & KAAN — "Altın Kapı"
   Modern varak davetiye: kakao zemin üzerinde krem kartlar,
   ince altın botanik desen, editoryal tipografi.
   Yazı: Marcellus (kapitel) · Alex Brush (kaligrafi) · Outfit (metin)
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg:        #F3EDDF;
    --card:      #FDFBF4;
    --card-soft: #F7F1E2;
    --ink:       #443930;
    --ink-soft:  rgba(68, 57, 48, .64);
    --gold:      #B98F4E;
    --gold-deep: #96713A;
    --gold-hi:   #E4CB92;
    --cream:     #F6EBD9;
    --hairline:  rgba(185, 143, 78, .45);
    --shadow-warm: rgba(141, 123, 92, .3);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* mobil dokunuşta mavi parlama olmasın */
}

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

body {
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-weight: 300;
    background-color: var(--bg);
    /* arka plan: ton üstü ton ince altın dal-yaprak deseni */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cdefs%3E%3Cpath id='l' d='M0 0 C -5 -6.5 -5 -15.5 0 -23 C 5 -15.5 5 -6.5 0 0 Z'/%3E%3C/defs%3E%3Cg stroke='%23A8874C' stroke-opacity='.16' stroke-width='1.4' fill='none' stroke-linecap='round'%3E%3Cpath d='M78 316 C 64 252 76 186 114 140 C 140 108 170 90 198 84'/%3E%3Cpath d='M104 224 C 88 210 80 188 82 164'/%3E%3Cpath d='M330 96 C 344 148 336 208 304 252 C 282 282 254 300 228 306'/%3E%3Cpath d='M310 190 C 326 202 334 222 333 244'/%3E%3C/g%3E%3Cg fill='%23A8874C' fill-opacity='.13'%3E%3Cuse href='%23l' transform='translate(72 290) rotate(-56) scale(.95)'/%3E%3Cuse href='%23l' transform='translate(68 252) rotate(42) scale(.8)'/%3E%3Cuse href='%23l' transform='translate(76 214) rotate(-60) scale(1)'/%3E%3Cuse href='%23l' transform='translate(92 176) rotate(34) scale(.8)'/%3E%3Cuse href='%23l' transform='translate(116 144) rotate(-66) scale(.9)'/%3E%3Cuse href='%23l' transform='translate(146 114) rotate(26) scale(.75)'/%3E%3Cuse href='%23l' transform='translate(176 94) rotate(-74) scale(.85)'/%3E%3Cuse href='%23l' transform='translate(108 216) rotate(64) scale(.6)'/%3E%3Cuse href='%23l' transform='translate(86 190) rotate(-26) scale(.6)'/%3E%3Cuse href='%23l' transform='translate(336 122) rotate(56) scale(.95)'/%3E%3Cuse href='%23l' transform='translate(340 160) rotate(-42) scale(.8)'/%3E%3Cuse href='%23l' transform='translate(332 198) rotate(60) scale(1)'/%3E%3Cuse href='%23l' transform='translate(316 236) rotate(-34) scale(.8)'/%3E%3Cuse href='%23l' transform='translate(292 268) rotate(66) scale(.9)'/%3E%3Cuse href='%23l' transform='translate(262 296) rotate(-26) scale(.75)'/%3E%3Cuse href='%23l' transform='translate(306 194) rotate(-64) scale(.6)'/%3E%3Ccircle cx='198' cy='80' r='2'/%3E%3Ccircle cx='82' cy='160' r='2'/%3E%3Ccircle cx='228' cy='310' r='2'/%3E%3Ccircle cx='333' cy='248' r='2'/%3E%3Ccircle cx='30' cy='60' r='1.6'/%3E%3Ccircle cx='386' cy='368' r='1.6'/%3E%3C/g%3E%3C/svg%3E");
    background-size: min(64vw, 440px);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; height: 100vh; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

::selection { background: rgba(185, 143, 78, .35); }

/* ── kaydırma ilerlemesi ── */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-hi));
    z-index: 90;
}

/* ── altın tozu kanvası ── */
#dust {
    position: fixed; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 60;
}

/* ── müzik butonu ── */
.music-btn {
    position: fixed; top: 16px; right: 16px; z-index: 95;
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--hairline);
    background: var(--card);
    box-shadow: 0 8px 22px rgba(50, 30, 20, .28);
    cursor: pointer;
    display: grid; place-items: center;
    transition: transform .3s;
}
.music-btn:hover { transform: scale(1.08); }
.music-btn svg { width: 20px; height: 20px; fill: var(--gold-deep); }
.music-waves { position: absolute; inset: 0; display: none; }
body.music-on .music-waves { display: block; }
.music-waves i {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 1px solid rgba(228, 203, 146, .6);
    animation: waveOut 2.2s linear infinite;
    opacity: 0;
}
.music-waves i:nth-child(2) { animation-delay: .7s; }
.music-waves i:nth-child(3) { animation-delay: 1.4s; }
@keyframes waveOut {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ═══════════ 3B KAPI SAHNESİ ═══════════ */
.door-scene {
    position: fixed; inset: 0; z-index: 80;
    background: #171310;
    cursor: pointer;
    outline: none;
    transition: opacity .85s ease;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.door-scene.leave { opacity: 0; pointer-events: none; }
.door-scene:focus-visible { box-shadow: inset 0 0 0 3px var(--gold); }

#hall3d { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.door-vignette {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.055'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E"),
        radial-gradient(ellipse 70% 58% at 50% 45%,
                transparent 46%, rgba(12, 9, 6, .72) 100%);
}

.door-ui {
    position: absolute; left: 0; right: 0; bottom: 6vh;
    text-align: center; pointer-events: none;
}
.door-eyebrow {
    font-family: "Marcellus", serif;
    font-size: .8rem; letter-spacing: .55em; text-indent: .55em;
    color: rgba(232, 211, 160, .85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
}
.door-hint {
    margin-top: 14px;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .78rem; font-weight: 400;
    letter-spacing: .3em; text-indent: .3em; text-transform: uppercase;
    color: rgba(245, 240, 228, .75);
    transition: opacity .4s;
    animation: hintBreathe 2.8s ease-in-out infinite;
}
.door-hint.hide { animation: none; opacity: 0; }
.hint-ring {
    width: 10px; height: 10px; border-radius: 50%;
    border: 1px solid rgba(232, 211, 160, .9);
    position: relative;
}
.hint-ring::after {
    content: ""; position: absolute; inset: -5px; border-radius: 50%;
    border: 1px solid rgba(232, 211, 160, .5);
    animation: waveOut 2s linear infinite;
}
@keyframes hintBreathe {
    0%, 100% { opacity: .65; }
    50%      { opacity: 1; }
}

/* kapıdan geçerken altın parlama */
.door-fade {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 50% 48%, #FFF9E8 0%, #F3E6C4 55%, #E4CE9C 100%);
    opacity: 0;
    transition: opacity .6s ease-in;
}
.door-fade.show { opacity: 1; }

/* WebGL yoksa: sade fon, dokununca yine açılır */
.door-scene.no3d { background: linear-gradient(180deg, #EFE8D8, #DDD2B9); }
.door-scene.no3d .door-eyebrow,
.door-scene.no3d .door-hint { color: var(--ink); text-shadow: none; }
.door-scene.no3d .hint-ring,
.door-scene.no3d .hint-ring::after { border-color: var(--gold-deep); }

/* ═══════════ GENEL DÜZEN: KAKAO ZEMİN, KREM KARTLAR ═══════════ */
.invitation { position: relative; }

/* ince el yapımı kâğıt dokusu */
.invitation::before {
    content: ""; position: absolute; inset: 0;
    pointer-events: none; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23p)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}
/* sıcak ışık + yumuşak kenar gölgesi */
.invitation::after {
    content: ""; position: absolute; inset: 0;
    pointer-events: none; z-index: 1;
    background:
        radial-gradient(110% 60% at 50% 0%, rgba(255, 250, 236, .5), transparent 62%),
        radial-gradient(52% 38% at 86% 30%, rgba(255, 255, 255, .4), transparent 72%),
        radial-gradient(46% 32% at 10% 62%, rgba(255, 255, 255, .35), transparent 70%),
        linear-gradient(90deg, rgba(141, 123, 92, .1), transparent 12%, transparent 88%, rgba(141, 123, 92, .1));
}
.invitation > .hero,
.invitation > .section { position: relative; z-index: 2; }

.reveal { opacity: 0; transform: translateY(18px); }

/* ── bölüm kartları ── */
.section {
    max-width: min(92vw, 560px);
    margin: clamp(56px, 9vh, 96px) auto;
    padding: clamp(52px, 8vh, 72px) clamp(22px, 5vw, 44px);
    text-align: center;
    background: var(--card);
    border: 1px solid rgba(185, 143, 78, .32);
    border-radius: 28px;
    box-shadow: 0 24px 60px var(--shadow-warm);
}
/* kart içi ince varak çerçeve */
.section::before {
    content: ""; position: absolute; inset: 11px;
    border: 1px solid var(--hairline);
    border-radius: 20px;
    pointer-events: none;
}
.section > * { position: relative; }

.sec-title {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-size: clamp(1.05rem, 3.6vw, 1.3rem);
    letter-spacing: .34em; text-indent: .34em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 14px;
}
.sec-title::after {
    content: ""; display: block;
    width: 44px; height: 2px;
    margin: 16px auto 30px;
    background: linear-gradient(90deg, var(--gold-hi), var(--gold));
}

.script-lead {
    font-family: "Alex Brush", cursive;
    font-size: clamp(1.9rem, 6.5vw, 2.6rem);
    font-weight: 400;
    color: var(--gold-deep);
    margin-bottom: 22px;
}

/* ── butonlar ── */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: "Outfit", sans-serif;
    font-size: .78rem; font-weight: 400;
    letter-spacing: .16em; text-indent: .05em; text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s, background .3s, color .3s;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn:active { transform: scale(.97); }

/* zemin üzerindeki buton */
.btn-ghost {
    color: var(--ink);
    background: rgba(253, 251, 244, .8);
    border: 1px solid var(--hairline);
    box-shadow: 0 8px 20px rgba(141, 123, 92, .22);
}
.btn-ghost:hover { background: var(--card); transform: translateY(-2px); }

/* kart içi çizgi buton */
.btn-line {
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--hairline);
}
.btn-line:hover { background: rgba(185, 143, 78, .12); }

.btn-solid {
    color: #FFFDF6;
    background: linear-gradient(135deg, var(--gold-hi), var(--gold) 45%, var(--gold-deep));
    border: none;
    box-shadow: 0 8px 20px rgba(70, 44, 20, .38);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(70, 44, 20, .46); }

/* ═══════════ HERO: BOTANİK KEMERLİ KART ═══════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: clamp(48px, 8vh, 90px) 16px 40px;
}

.hero-aura {
    position: absolute; left: 50%; top: 44%;
    width: min(130vw, 860px); height: min(130vw, 860px);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(232, 211, 160, .4) 0%,
        rgba(232, 211, 160, .14) 42%,
        transparent 68%);
    pointer-events: none;
}

.hero-card {
    position: relative;
    width: min(88vw, 420px);
    padding: clamp(120px, 24vw, 150px) clamp(22px, 6vw, 40px) 34px;
    background: linear-gradient(178deg, #F9F4E8, var(--card) 55%, var(--card-soft));
    border-radius: 999px 999px 26px 26px;
    border: 1px solid rgba(185, 143, 78, .35);
    box-shadow:
        0 34px 80px rgba(141, 123, 92, .38),
        0 8px 22px rgba(141, 123, 92, .22);
    text-align: center;
}
/* kart içi ince varak çerçeve (kemer formunu izler) */
.hero-card::before {
    content: ""; position: absolute; inset: 13px;
    border: 1px solid var(--hairline);
    border-radius: 999px 999px 15px 15px;
    pointer-events: none;
}

.arch-art {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.hero-eyebrow {
    font-family: "Marcellus", serif;
    font-size: clamp(.72rem, 2.6vw, .82rem);
    letter-spacing: .46em; text-indent: .46em;
    text-transform: uppercase;
    line-height: 2.1;
    color: var(--ink);
}

/* isimler: referanstaki gibi çapraz iki satır */
.hero-names {
    position: relative;
    font-family: "Alex Brush", cursive;
    font-weight: 400;
    font-size: clamp(3rem, 12.5vw, 4.4rem);
    line-height: .92;
    color: var(--ink);
    margin-top: clamp(14px, 3vw, 22px);
}
.hero-names span { display: block; }
#heroName1 { transform: translateX(-12%); }
#heroName2 { transform: translateX(13%); margin-top: clamp(-14px, -1.6vw, -8px); }
.hero-amp {
    position: absolute;
    left: 63%; top: 50%;
    transform: translate(-50%, -54%);
    font-style: normal;
    font-size: .52em;
    color: var(--gold);
}

.hero-fams {
    font-family: "Marcellus", serif;
    font-size: clamp(.74rem, 2.7vw, .84rem);
    letter-spacing: .3em; text-indent: .3em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: clamp(16px, 3.2vw, 24px);
}
.hero-fams span { color: var(--gold); }
.hero-fams i {
    display: block;
    font-family: "Alex Brush", cursive;
    font-style: normal;
    text-transform: none;
    letter-spacing: .04em; text-indent: 0;
    font-size: 1.35rem;
    color: var(--gold-deep);
    margin-top: 6px;
}

/* 12 | 06 | 27 tarih kilidi */
.date-lockup {
    display: flex; align-items: center; justify-content: center;
    gap: 18px;
    margin-top: clamp(18px, 3.6vw, 28px);
    font-family: "Marcellus", serif;
    color: var(--ink);
}
.date-lockup span { font-size: clamp(1.15rem, 4vw, 1.4rem); }
.date-lockup b {
    font-weight: 400;
    font-size: clamp(2.1rem, 7.5vw, 2.7rem);
    line-height: 1;
    padding: 0 18px;
    border-left: 1px solid var(--hairline);
    border-right: 1px solid var(--hairline);
}
.hero-day {
    font-family: "Marcellus", serif;
    font-size: clamp(.76rem, 2.8vw, .88rem);
    letter-spacing: .4em; text-indent: .4em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 12px;
}
.hero-time {
    font-family: "Alex Brush", cursive;
    font-size: clamp(1.25rem, 4.4vw, 1.5rem);
    color: var(--gold-deep);
    margin-top: 6px;
}
.hero-venue {
    font-family: "Marcellus", serif;
    font-size: clamp(.66rem, 2.4vw, .76rem);
    letter-spacing: .22em; text-indent: .22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: clamp(12px, 2.6vw, 18px);
}
.hero-venue span { color: var(--gold); }

.couple-wrap {
    margin: clamp(18px, 3.6vw, 26px) auto 0;
    filter: drop-shadow(0 10px 16px rgba(90, 62, 40, .25));
}
.couple {
    width: min(34vw, 148px);
    max-height: 24vh;
    height: auto; display: block;
    margin: 0 auto;
}

.hero-actions { margin-top: 30px; }

.scroll-cue {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%);
}
.scroll-cue-line {
    display: block; width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: cueDrop 2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes cueDrop {
    0%   { transform: scaleY(0); opacity: 0; }
    35%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

/* ═══════════ DAVET SÖZÜ ═══════════ */
.invite-word { overflow: hidden; }
.watermark {
    position: absolute; left: 50%; top: 50%;
    font-family: "Marcellus", serif;
    font-size: clamp(9rem, 30vw, 15rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(169, 127, 64, .14);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}
.invite-text {
    font-size: clamp(.92rem, 3vw, 1.05rem);
    line-height: 2.05;
    color: var(--ink-soft);
}
.families {
    display: flex; align-items: center; justify-content: center;
    gap: clamp(18px, 5vw, 42px);
    margin-top: 38px;
    flex-wrap: wrap;
}
.family { display: flex; flex-direction: column; gap: 6px; }
.family-names {
    font-family: "Alex Brush", cursive;
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    color: var(--ink);
}
.family-sub {
    font-size: .6rem; font-weight: 500;
    letter-spacing: .3em; text-indent: .3em;
    color: var(--gold-deep);
}
.family-dot { color: var(--gold); font-size: .8rem; }

/* ═══════════ GERİ SAYIM ═══════════ */
.cartouche { padding: 6px 0 0; }
.countdown {
    display: flex; align-items: flex-start; justify-content: center;
    gap: clamp(8px, 2.6vw, 22px);
}
.cd-cell { display: flex; flex-direction: column; gap: 5px; min-width: 52px; }
.cd-cell b {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-size: clamp(1.9rem, 7vw, 2.9rem);
    line-height: 1.05;
    color: var(--ink);
    transition: opacity .09s, transform .09s;
}
.cd-cell b.tick { opacity: 0; transform: translateY(-6px); }
.cd-cell span {
    font-size: .56rem; font-weight: 500;
    letter-spacing: .26em; text-indent: .26em; text-transform: uppercase;
    color: var(--gold-deep);
}
.cd-sep { color: var(--gold); font-style: normal; font-size: 1.3rem; margin-top: 10px; }

.cd-actions {
    margin-top: 34px;
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ═══════════ TÖREN YERİ ═══════════ */
.venue-sketch { max-width: 460px; margin: 0 auto 6px; }
.venue-sketch svg { width: 100%; height: auto; }
.venue-sketch .vs {
    stroke: var(--gold);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    opacity: .9;
}
.venue-name {
    font-family: "Marcellus", serif;
    font-size: clamp(1.15rem, 4.2vw, 1.45rem);
    letter-spacing: .12em; text-indent: .12em;
    margin-top: 10px;
}
.venue-addr {
    color: var(--ink-soft);
    font-size: .84rem;
    letter-spacing: .18em; text-indent: .18em;
    text-transform: uppercase;
    margin-top: 10px;
}
.venue-actions { margin-top: 26px; }

/* ═══════════ PROGRAM AKIŞI ═══════════ */
.timeline {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
}
.tl-line {
    position: absolute; left: 23px; top: 10px; bottom: 10px;
    width: 1px;
    background: rgba(185, 143, 78, .3);
}
.tl-line i {
    position: absolute; left: 0; top: 0;
    width: 100%; height: 0;
    background: linear-gradient(180deg, var(--gold-hi), var(--gold-deep));
    display: block;
}
.tl-item {
    position: relative;
    display: flex; align-items: center; gap: 20px;
    padding: 15px 0;
}
.tl-icon {
    flex: 0 0 46px;
    width: 46px; height: 46px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: #FBF5E7;
    border: 1px solid var(--hairline);
    color: var(--gold-deep);
    position: relative; z-index: 1;
}
.tl-icon svg { width: 22px; height: 22px; }
.tl-body { display: flex; flex-direction: column; gap: 2px; }
.tl-body b {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-size: .98rem;
    letter-spacing: .06em;
}
.tl-body span {
    font-size: .76rem; font-weight: 400;
    color: var(--gold-deep);
    letter-spacing: .2em;
}

/* ═══════════ KAPANIŞ ═══════════ */
.closing-mono {
    width: clamp(130px, 32vw, 170px);
    margin: 0 auto 4px;
    display: block;
}
.closing-script {
    font-family: "Alex Brush", cursive;
    font-size: clamp(1.7rem, 5.6vw, 2.2rem);
    color: var(--gold-deep);
}
.closing-names {
    font-family: "Marcellus", serif;
    font-size: clamp(1.3rem, 4.6vw, 1.8rem);
    letter-spacing: .24em; text-indent: .24em;
    text-transform: uppercase;
    margin-top: 14px;
}

.site-footer {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(185, 143, 78, .3);
    display: flex; flex-direction: column; gap: 8px;
}
.site-footer a {
    color: var(--gold-deep);
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .18em; text-indent: .18em;
}
.site-footer small { color: rgba(68, 57, 48, .45); font-size: .64rem; }

/* ═══════════ UYUM ═══════════ */
@media (max-height: 760px) {
    .hero { padding-top: 40px; }
    .hero-card { padding-top: clamp(100px, 20vw, 124px); }
    .couple { max-height: 20vh; }
}
@media (max-width: 380px) {
    .cd-cell { min-width: 44px; }
    .date-lockup { gap: 12px; }
    .date-lockup b { padding: 0 12px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .scroll-cue-line, .door-hint, .hint-ring::after, .music-waves i { animation: none; }
    .reveal { opacity: 1; transform: none; }
}
