html.auth-check body > *:not(#authGate) { display: none !important; }
        #authGate { display: none; }
        html.auth-check #authGate { display: flex; }

/* RESET & BASE */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--color-buttercream);
            color: #2c241e;
            overflow-x: hidden;
        }
        body.modal-open {
            overflow: hidden;
        }

        ::-webkit-scrollbar {
            width: 5px;
        }
        ::-webkit-scrollbar-track {
            background: #f0ebe6;
        }
        ::-webkit-scrollbar-thumb {
            background: #c4a88a;
            border-radius: 6px;
        }

        /* VARIABLES & UTILITY */
        :root {
            --color-ivory: #FBF7F1;
            --color-blush: #F4DDD9;
            --color-powder-blue: #D9E6ED;
            --color-sage: #DCE5DA;
            --color-buttercream: #F6EAD3;
            --color-lavender: #E4DCE8;
            --color-ink: #2c241e;
            --color-ink-soft: #5a4a3e;
            --color-ink-faint: #8a7a6e;
            --color-surface: #FFFFFF;
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Inter', sans-serif;
            --font-accent: 'Instrument Serif', serif;
            --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
            --fs-sm: clamp(0.875rem, 0.83rem + 0.2vw, 1rem);
            --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            --fs-md: clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem);
            --fs-xl: clamp(2.25rem, 1.9rem + 1.5vw, 3.5rem);
            --space-3xs: 0.25rem;
            --space-2xs: 0.5rem;
            --space-xs: 0.875rem;
            --space-sm: 1.25rem;
            --space-md: 2rem;
            --space-lg: 3.5rem;
            --space-2xl: 8rem;
            --section-padding-inline: clamp(1.25rem, 5vw, 4rem);
            --radius-sm: 10px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --ease-gentle: cubic-bezier(0.22, 1, 0.36, 1);
            --dur-base: 750ms;
            --dur-fast: 600ms;
            --dur-slow: 900ms;
            --shadow-soft: 0 10px 40px rgba(74, 67, 64, 0.08);
            --shadow-lift: 0 20px 60px rgba(74, 67, 64, 0.14);
        }

        .section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .section-inner {
            max-width: 720px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .btn-gold {
            background: transparent;
            border: 1.5px solid #b8956e;
            color: #b8956e;
            padding: 0.8rem 2.4rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(4px);
            margin-bottom: 3rem;
            will-change: transform;
        }
        .btn-gold:hover {
            background: #b8956e;
            color: #fff;
            box-shadow: 0 8px 30px rgba(184, 149, 110, 0.25);
            transform: translateY(-2px);
        }
        .btn-gold:active {
            transform: scale(0.96);
        }

        .scroll-hint {
            color: var(--color-ink-faint);
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }

        [data-reveal] {
            opacity: 0;
            transform: translateY(24px) scale(0.97);
            transition: opacity var(--dur-base) var(--ease-gentle),
                transform var(--dur-base) var(--ease-gentle);
            will-change: opacity, transform;
        }
        [data-reveal].is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        [data-reveal-group]>[data-reveal] {
            transition-delay: calc(var(--stagger-index, 0)*110ms);
        }

        @media (prefers-reduced-motion: reduce) {
            [data-reveal] {
                opacity: 1;
                transform: none;
                transition: none;
            }
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* DEVICE AUTH GATE */
        #authGate {
            position: fixed;
            inset: 0;
            z-index: 9999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-ivory) 100%);
        }
        #authGate .gate-icon {
            font-size: 2.6rem;
            margin-bottom: 1.2rem;
            animation: pulse 2s ease-in-out infinite;
        }
        #authGate h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            color: var(--color-ink);
            margin-bottom: 0.6rem;
            font-weight: 500;
        }
        #authGate p {
            font-size: var(--fs-base);
            color: var(--color-ink-soft);
            max-width: 420px;
            line-height: 1.6;
        }
        #authGate .gate-spinner {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2.5px solid rgba(184, 149, 110, 0.25);
            border-top-color: #b8956e;
            animation: spin 0.9s linear infinite;
            margin-top: 1.4rem;
        }
        @keyframes spin { to { transform: rotate(360deg); } }
        #authGate[data-state="unauthorized"] .gate-icon,
        #authGate[data-state="error"] .gate-icon { animation: none; }

        /* OPENING */
        #opening {
            background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-ivory) 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        #opening .stars-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .stars-canvas .star {
            position: absolute;
            border-radius: 50%;
            background: currentColor;
            animation: twinkle ease-in-out infinite;
            will-change: opacity;
        }
        @keyframes twinkle {
            0%, 100% { opacity: var(--star-min, 0.15); }
            50% { opacity: var(--star-max, 0.9); }
        }
        @media (prefers-reduced-motion: reduce) {
            .stars-canvas .star {
                animation: none;
                opacity: 0.5;
            }
        }
        #opening .content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        #opening .greeting {
            font-size: 1rem;
            letter-spacing: 0.2em;
            color: #b8956e;
            text-transform: uppercase;
            font-weight: 300;
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: fadeUp 1.2s ease forwards 0.4s;
        }
        #opening h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.6rem, 10vw, 4.8rem);
            font-weight: 400;
            color: var(--color-ink);
            line-height: 1.1;
            margin-bottom: 0.8rem;
            opacity: 0;
            animation: fadeUp 1.2s ease forwards 0.8s;
        }
        #opening h1 span {
            color: #b8956e;
        }
        #opening .sub {
            font-size: 1.05rem;
            color: var(--color-ink-soft);
            font-weight: 300;
            letter-spacing: 0.03em;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeUp 1.2s ease forwards 1.2s;
        }
        #opening .btn-gold {
            opacity: 0;
            animation: fadeUp 1.2s ease forwards 1.6s;
        }
        #opening .scroll-hint {
            opacity: 0;
            animation: fadeUp 1.2s ease forwards 2.0s;
        }
        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(24px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* CHAPTER REMINDER */
        #chapter-reminder {
            background: var(--color-ivory);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }
        #chapter-reminder .content {
            max-width: 720px;
        }
        #chapter-reminder .content p {
            font-size: clamp(1.8rem, 5vw, 3rem);
            line-height: 1.4;
            font-family: 'Playfair Display', serif;
            color: var(--color-ink);
        }
        #chapter-reminder .content span {
            color: #b8956e;
        }

        /* LITTLE THINGS */
        #little-things {
            background: linear-gradient(180deg, var(--color-ivory) 50%, var(--color-blush) 120%);
            padding: var(--space-2xl) var(--section-padding-inline);
            font-family: var(--font-body);
            color: var(--color-ink);
        }
        #little-things .section-inner-lt {
            max-width: 1080px;
            margin-inline: auto;
        }
        #little-things .section-header {
            text-align: center;
            max-width: 640px;
            margin-inline: auto;
            margin-bottom: var(--space-lg);
        }
        #little-things .section-header h2 {
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: var(--fs-xl);
            letter-spacing: -0.01em;
            line-height: 1.15;
            margin-bottom: var(--space-2xs);
            color: var(--color-ink);
        }
        #little-things .section-header p {
            color: var(--color-ink-soft);
            font-size: var(--fs-base);
            max-width: 62ch;
            margin-inline: auto;
        }
        #little-things .flip-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
        }
        @media (min-width: 640px) {
            #little-things .flip-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        #little-things .flip-card {
            perspective: 1200px;
            aspect-ratio: 3/4;
            cursor: pointer;
        }
        #little-things .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform var(--dur-slow) var(--ease-gentle);
            transform-style: preserve-3d;
            border-radius: var(--radius-md);
            will-change: transform;
        }
        #little-things .flip-card.is-flipped .flip-card-inner {
            transform: rotateY(180deg);
        }
        #little-things .flip-card-face {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }
        #little-things .flip-card-front {
            display: flex;
            flex-direction: column;
        }
        #little-things .flip-card-front .placeholder-img {
            flex: 1;
            border-radius: var(--radius-md) var(--radius-md) 0 0;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--ph-a, #F4DDD9), var(--ph-b, #D9E6ED));
            color: var(--color-ink-soft);
            font-size: 3.6rem;
            padding: var(--space-sm);
            text-align: center;
            overflow: hidden;
        }
        #little-things .flip-card-front .placeholder-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        #little-things .flip-card-front .flip-card-label {
            padding: var(--space-xs);
            background: var(--color-surface);
            font-family: var(--font-heading);
            font-size: var(--fs-md);
            text-align: center;
            font-weight: 500;
            color: var(--color-ink);
            line-height: 1.3;
        }
        #little-things .flip-card-back {
            transform: rotateY(180deg);
            background: var(--color-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-md);
            text-align: center;
        }
        #little-things .flip-card-back p {
            font-family: var(--font-accent);
            font-style: italic;
            font-size: var(--fs-md);
            color: var(--color-ink);
            max-width: none;
            line-height: 1.5;
        }
        #little-things :focus-visible {
            outline: 2px solid #D9A6A0;
            outline-offset: 4px;
            border-radius: 4px;
        }
        @media (max-width: 600px) {
            #little-things .flip-grid {
                gap: 1rem;
            }
            #little-things .flip-card-front .placeholder-img {
                font-size: 2.8rem;
            }
            #little-things .flip-card-front .flip-card-label {
                font-size: 1rem;
                padding: 0.6rem;
            }
            #little-things .flip-card-back p {
                font-size: 1rem;
            }
        }

        /* HOPE */
        #hope {
            background: #f5f0ea;
            padding: 4rem 1.5rem;
            min-height: 100vh;
        }
        #hope .hope-item {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            text-align: center;
            padding: 1.2rem 0;
            max-width: 600px;
            margin: 0 auto;
            will-change: opacity, transform;
        }
        #hope .hope-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        #hope .hope-item .prefix {
            font-size: 0.9rem;
            font-weight: 300;
            color: #b8956e;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.2rem;
        }
        #hope .hope-item .text {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.6rem);
            font-weight: 400;
            color: #2c241e;
            line-height: 1.3;
        }
        #hope .hope-item .text .highlight {
            color: #b8956e;
        }
        #hope .hope-prayer {
            margin-top: 3rem;
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 24px;
            border: 1px solid rgba(184, 149, 110, 0.2);
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.8;
            color: #2c241e;
            max-width: 560px;
            margin-inline: auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.4s;
            will-change: opacity, transform;
        }
        #hope .hope-prayer.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* MOMENTS */
        #moments {
            background: var(--color-ivory);
            padding: var(--space-2xl) var(--section-padding-inline);
        }
        #moments .section-inner {
            max-width: 1080px;
            margin-inline: auto;
        }
        #moments .section-header {
            text-align: center;
            max-width: 640px;
            margin-inline: auto;
            margin-bottom: var(--space-lg);
        }
        #moments .section-header h2 {
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: var(--fs-xl);
            letter-spacing: -0.01em;
            margin-bottom: var(--space-2xs);
            color: var(--color-ink);
        }
        #moments .section-header p {
            color: var(--color-ink-soft);
            font-size: var(--fs-base);
            max-width: 62ch;
            margin-inline: auto;
        }
        #moments .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-sm);
        }
        @media (min-width: 640px) {
            #moments .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        #moments .gallery-item {
            border-radius: var(--radius-sm);
            overflow: hidden;
            aspect-ratio: 1/1;
            box-shadow: var(--shadow-soft);
            transition: transform var(--dur-fast) var(--ease-gentle);
            cursor: pointer;
            will-change: transform;
        }
        #moments .gallery-item:hover,
        #moments .gallery-item:focus-visible {
            transform: translateY(-4px) scale(1.02);
        }
        #moments .gallery-item .placeholder-img {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--ph-a, var(--color-blush)), var(--ph-b, var(--color-powder-blue)));
            color: var(--color-ink-soft);
            font-family: var(--font-accent);
            font-style: italic;
            font-size: var(--fs-sm);
            border-radius: inherit;
            text-align: center;
            padding: var(--space-sm);
            overflow: hidden;
        }
        #moments .gallery-item .placeholder-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* MODAL (shared for Moments) */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(74, 67, 64, 0.45);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-md);
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--dur-fast) var(--ease-gentle);
        }
        .modal-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-panel {
            background: var(--color-ivory);
            border-radius: var(--radius-lg);
            max-width: 480px;
            width: 100%;
            padding: var(--space-lg) var(--space-md);
            box-shadow: var(--shadow-lift);
            transform: translateY(16px) scale(0.98);
            transition: transform var(--dur-base) var(--ease-gentle);
            position: relative;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .modal-overlay.is-open .modal-panel {
            transform: translateY(0) scale(1);
        }
        .modal-panel .placeholder-img {
            aspect-ratio: 4/3;
            border-radius: var(--radius-md);
            margin-bottom: var(--space-sm);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--ph-a, var(--color-blush)), var(--ph-b, var(--color-powder-blue)));
            color: var(--color-ink-soft);
            font-family: var(--font-accent);
            font-style: italic;
            font-size: var(--fs-md);
            text-align: center;
            padding: var(--space-md);
            transition: opacity 0.3s ease;
            flex-shrink: 0;
            min-height: 0;
            overflow: hidden;
        }
        .modal-panel .placeholder-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-md);
        }
        .modal-close {
            position: absolute;
            top: var(--space-sm);
            right: var(--space-sm);
            width: 1px;
            height: 1px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-surface);
            color: var(--color-ink-soft);
            font-size: var(--fs-md);
            line-height: 1;
            transition: background var(--dur-fast) var(--ease-gentle);
            border: none;
            cursor: pointer;
            z-index: 2;
        }
        .modal-close:hover {
            background: var(--color-blush);
        }
        .modal-date {
            font-size: var(--fs-xs);
            color: var(--color-ink-faint);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: var(--space-3xs);
            flex-shrink: 0;
        }
        .modal-caption {
            font-family: var(--font-accent);
            font-style: italic;
            font-size: var(--fs-md);
            flex-shrink: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
            max-height: 30vh;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #dccfc4 transparent;
        }
        .modal-caption::-webkit-scrollbar {
            width: 3px;
        }
        .modal-caption::-webkit-scrollbar-track {
            background: transparent;
        }
        .modal-caption::-webkit-scrollbar-thumb {
            background: #dccfc4;
            border-radius: 6px;
        }
        .modal-slide {
            transition: transform 0.35s var(--ease-gentle), opacity 0.35s var(--ease-gentle);
        }
        .modal-slide.slide-out-next {
            transform: translateX(-18px);
            opacity: 0;
        }
        .modal-slide.slide-out-prev {
            transform: translateX(18px);
            opacity: 0;
        }
        .modal-slide.slide-in-next {
            transform: translateX(18px);
            opacity: 0;
        }
        .modal-slide.slide-in-prev {
            transform: translateX(-18px);
            opacity: 0;
        }
        @media (prefers-reduced-motion: reduce) {
            .modal-slide {
                transition: opacity 0.2s ease;
            }
            .modal-slide.slide-out-next,
            .modal-slide.slide-out-prev,
            .modal-slide.slide-in-next,
            .modal-slide.slide-in-prev {
                transform: none;
            }
        }
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: transparent;
            border: none;
            color: var(--color-ink-soft);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
            will-change: transform;
        }
        .modal-nav:hover {
            color: #b8956e;
            transform: translateY(-50%) scale(1.15);
        }
        .modal-nav.prev {
            left: -20px;
        }
        .modal-nav.next {
            right: -20px;
        }
        @media (max-width: 600px) {
            .modal-nav {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            .modal-nav.prev {
                left: 0px;
            }
            .modal-nav.next {
                right: 0px;
            }
            .modal-panel .placeholder-img {
                aspect-ratio: 4/3;
                padding: var(--space-sm);
            }
            .modal-panel {
                padding: var(--space-md);
            }
            .modal-caption {
                max-height: 20vh;
                font-size: var(--fs-sm);
            }
        }
        .modal-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: var(--space-sm);
            flex-shrink: 0;
        }
        .modal-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #dccfc4;
            border: none;
            padding: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .modal-dot.is-active {
            background: #b8956e;
            transform: scale(1.3);
        }

        /* PRAYER */
        #prayer {
            background: #1a1410;
            padding: 4rem 1.5rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #f5ede6;
            position: relative;
            overflow: hidden;
        }
        #prayer .stars-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        #prayer .prayer-text {
            max-width: 580px;
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.1rem, 2.2vw, 1.4rem);
            line-height: 2;
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.9s ease;
            position: relative;
            z-index: 2;
        }
        #prayer .prayer-text.visible {
            opacity: 1;
            transform: translateY(0);
        }
        #prayer .prayer-text .gold {
            color: #d4b48c;
        }
        #prayer .prayer-text .arabic {
            font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
            color: #d4b48c;
            display: block;
            margin-top: 1.2rem;
            font-weight: 400;
            letter-spacing: 0.04em;
        }

        /* REMINDERS */
        #reminders {
            background: #faf8f5;
            padding: 4rem 1.5rem;
        }
        #reminders .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 400;
            color: #2c241e;
            text-align: center;
            margin-bottom: 0.3rem;
        }
        #reminders .section-sub {
            text-align: center;
            color: #8a7a6e;
            font-weight: 300;
            margin-bottom: 2rem;
        }
        .sticky-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.2rem;
        }
        .sticky-note {
            background: #fcf5ea;
            padding: 1.4rem 1rem;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(184, 149, 110, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            will-change: transform;
        }
        .sticky-note:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
        }
        .sticky-note .icon {
            font-size: 1.8rem;
            margin-bottom: 0.3rem;
            transition: transform 0.4s ease;
        }
        .sticky-note .label {
            font-size: 0.9rem;
            font-weight: 400;
            color: #2c241e;
            transition: all 0.4s ease;
        }
        .sticky-note .detail {
            font-size: 0.85rem;
            color: #8a7a6e;
            font-weight: 300;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            margin-top: 0;
        }
        .sticky-note.open .detail {
            max-height: 120px;
            opacity: 1;
            margin-top: 0.6rem;
        }
        .sticky-note.open .icon {
            transform: scale(1.1);
        }
        .sticky-note:nth-child(1) { background: #fcf0e6; }
        .sticky-note:nth-child(2) { background: #f5f0ea; }
        .sticky-note:nth-child(3) { background: #eef5ed; }
        .sticky-note:nth-child(4) { background: #f5ede8; }
        .sticky-note:nth-child(5) { background: #f0ece8; }
        .sticky-note:nth-child(6) { background: #e8e6f0; }
        @media (max-width: 600px) {
            .sticky-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ENDING */
        #ending {
            background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-buttercream) 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 3rem 1.5rem;
            position: relative;
            overflow: hidden;
        }
        #ending .stars-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        #ending .content {
            position: relative;
            z-index: 2;
            max-width: 580px;
        }
        #ending .content .line {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 300;
            color: #2c241e;
            line-height: 1.8;
            margin-bottom: 0.4rem;
            will-change: opacity, transform;
        }
        #ending .content .line.visible {
            opacity: 1;
            transform: translateY(0);
        }
        #ending .content .line.gold {
            color: #b8956e;
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 400;
            margin-top: 0.8rem;
        }
        #ending .content .line.sub {
            font-size: 0.85rem;
            color: #8a7a6e;
            letter-spacing: 0.04em;
            margin-top: 1rem;
        }

        /* FOOTER */
        .site-footer {
            background: var(--color-buttercream);
            padding: 1.5rem;
            text-align: center;
            font-size: 0.8rem;
            color: #8a7a6e;
            letter-spacing: 0.06em;
            font-weight: 300;
            opacity: 1;
            border-top: 1px solid rgba(184, 149, 110, 0.15);
        }
        .site-footer.visible {
            opacity: 1;
        }
        .site-footer p {
            margin: 0;
        }

        /* PELUK VIRTUAL */
        .peluk-btn {
            margin: 1.75rem auto 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.8rem;
            background: transparent;
            backdrop-filter: blur(5px);
            /* -webkit-backdrop-filter: blur(20px); */
            border: 0px solid rgba(184, 149, 110, 0.25);
            border-radius: 999px;
            color: var(--color-ink-soft);
            font-family: inherit;
            font-size: 0.85rem;
            letter-spacing: 0.06em;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.25s ease, background 0.25s ease;
            will-change: opacity, transform;
        }
        .peluk-btn.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .peluk-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(184, 149, 110, 0.18);
            /* background: rgba(255, 255, 255, 0.55); */
        }
        .peluk-btn:active {
            transform: scale(0.96);
        }
        .peluk-btn .peluk-icon {
            font-size: 1.05rem;
        }
        .peluk-burst-layer {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 998;
            overflow: hidden;
        }
        .peluk-emoji {
            position: absolute;
            opacity: 0;
            will-change: transform, opacity;
            animation: pelukFloat 2.6s ease-out forwards;
        }
        @keyframes pelukFloat {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0.5) rotate(0deg);
            }
            15% {
                opacity: 1;
                transform: translate(calc(var(--tx) * 0.3), calc(var(--ty) * 0.3)) scale(1.1) rotate(var(--rot));
            }
            100% {
                opacity: 0;
                transform: translate(var(--tx), var(--ty)) scale(0.8) rotate(var(--rot));
            }
        }

        /* EASTER EGG */
        .easter-egg {
            position: fixed;
            top: 2rem;
            right: 2rem;
            z-index: 999;
            font-size: 2rem;
            cursor: pointer;
            opacity: 0;
            backdrop-filter: blur(40px);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(184, 149, 110, 0.15);
            user-select: none;
            background: rgba(255, 255, 255, 0.3);
            transition: opacity 0.9s ease, transform 0.3s ease, box-shadow 0.3s ease;
            pointer-events: none;
            will-change: transform;
        }
        .easter-egg.show {
            opacity: 1;
            pointer-events: auto;
        }
        .easter-egg:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 30px rgba(184, 149, 110, 0.15);
        }
        .easter-egg.shake {
            animation: shakeRotate 1s ease;
        }
        @keyframes shakeRotate {
            0% { transform: rotate(0deg) scale(1); }
            20% { transform: rotate(-12deg) scale(1.1); }
            40% { transform: rotate(12deg) scale(1.1); }
            60% { transform: rotate(-8deg) scale(1.05); }
            80% { transform: rotate(8deg) scale(1.05); }
            100% { transform: rotate(0deg) scale(1); }
        }
        @media (max-width: 600px) {
            .easter-egg {
                top: 1.2rem;
                right: 1.2rem;
                width: 44px;
                height: 44px;
                font-size: 1.6rem;
            }
        }

        .easter-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(26, 20, 16, 0.7);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            pointer-events: none;
            transition: all 0.5s ease;
        }
        .easter-modal.open {
            opacity: 1;
            pointer-events: auto;
        }
        .easter-modal .modal-box {
            background: #faf8f5;
            border-radius: 28px;
            padding: 2.5rem 2rem;
            max-width: 480px;
            width: 100%;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            transform: scale(0.92) translateY(20px);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .easter-modal.open .modal-box {
            transform: scale(1) translateY(0);
        }
        .easter-modal .modal-box .moon-icon {
            font-size: 3.2rem;
            margin-bottom: 0.5rem;
        }
        .easter-modal .modal-box h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #2c241e;
            font-weight: 400;
            margin-bottom: 0.6rem;
        }
        .easter-modal .modal-box p {
            font-size: 1rem;
            line-height: 1.7;
            color: #4a3a2e;
            font-weight: 300;
        }
        .easter-modal .modal-box .arabic {
            font-size: 1.4rem;
            color: #b8956e;
            display: block;
            margin-top: 0.8rem;
            font-weight: 400;
        }
        .easter-modal .modal-box .close-btn {
            margin-top: 1.5rem;
            background: #b8956e;
            border: none;
            color: #fff;
            padding: 0.6rem 2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s ease;
            font-family: 'Inter', sans-serif;
        }
        .easter-modal .modal-box .close-btn:hover {
            background: #a07d5a;
        }