        :root {
            --bg: #E8DBD0;
            --dark: #1C1C1C;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ── NAVBAR ── */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 2200; /* Overlay (2150) üstünde olması için yükseltildi */
            display: flex;
            justify-content: flex-end; /* Başlangıçta en sağa çektik */
            align-items: center;
            padding: 2.2rem 3rem;
            transition: all 0.7s var(--ease);
        }

        /* ── FIXED LOGO ── */
        .fixed-logo {
            position: fixed;
            top: 32px;
            left: 3rem;
            z-index: 1000;
            transition: all 0.7s var(--ease);
        }

        .main-logo {
            height: 48px;
            width: auto;
            transition: all 0.7s var(--ease);
            filter: brightness(0) invert(1); /* Başlangıçta bembeyaz */
        }

        .main-logo:hover {
            transform: scale(1.05);
        }

        /* 10px inince orijinal renge dön */
        .scrolled-logo .main-logo {
            filter: none;
        }

        @media (max-width: 767px) {
            .fixed-logo {
                top: 20px;
                left: 20px;
            }
            .main-logo {
                height: 36px;
            }
        }

        .nav-link {
            color: white;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-decoration: none;
            transition: all 0.4s var(--ease);
            padding: 8px 16px;
            border-radius: 999px;
        }

        /* Aktif Menü Durumu */
        .nav-link.active {
            background: var(--dark);
            color: white !important;
        }

        #navbar.scrolled .nav-link {
            color: var(--dark);
        }

        #navbar.scrolled .nav-link.active {
            background: var(--dark);
            color: white !important;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .rsvp-btn {
            background: white;
            color: #000;
            border: none;
            padding: 0.5rem 2rem;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }

        #navbar.scrolled {
            top: 24px;
            left: 0;
            right: 0;
            width: max-content; /* Sadece içerik kadar yer kaplasın */
            margin: 0 auto; /* Sayfayı ortalasın */
            padding: 0.8rem 2.5rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-radius: 999px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: center;
        }

        #navbar.scrolled .nav-logo,
        #navbar.scrolled .nav-link {
            color: var(--dark);
        }

        #navbar.scrolled .rsvp-btn {
            background: var(--dark);
            color: white;
        }

        /* ── MOBIL NAV & HAMBURGER ── */
        .mobile-only { display: none !important; }

        @media (max-width: 991px) {
            .desktop-only { display: none !important; }
            .mobile-only { display: flex !important; }
            
            #navbar {
                padding: 1.5rem 20px;
                justify-content: flex-end;
            }

            #navbar.scrolled {
                width: 100%; /* Mobilde genişlik tam olsun ki sağa yaslansın */
                margin: 0;
                left: 0;
                right: 0;
                transform: none;
                justify-content: flex-end;
                background: none;
                box-shadow: none;
                backdrop-filter: none;
            }
        }

        @media (min-width: 992px) {
            .mobile-only { display: none !important; }
            .desktop-only { display: flex !important; }
        }

        /* HAMBURGER STİLLERİ KALDIRILDI */

        /* ── FLOATING CONTROLS (LEFT) ── */
        .floating-controls-left {
            position: fixed !important;
            left: 3rem !important;
            bottom: 32px !important;
            top: auto !important;
            z-index: 9999 !important;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
            transition: all 0.7s var(--ease);
        }

        /* ── FLOATING CONTROLS (RIGHT) ── */
        .floating-controls-right {
            position: fixed !important;
            right: 3rem !important;
            bottom: 32px !important;
            top: auto !important;
            z-index: 9999 !important;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
            transition: all 0.7s var(--ease);
        }

        .floating-controls-left .music-btn,
        .floating-controls-right .music-btn {
            position: relative !important;
            bottom: auto !important;
            left: auto !important;
            margin: 0 !important;
        }

        .btn-label {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.05em;
        }

        /* Yukarı butonunda yazıyı gizle */
        #back-to-top .btn-label {
            display: none;
        }

        .music-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 999px;
            color: var(--dark);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: all 0.4s var(--ease);
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
        }

        #mobile-menu-toggle {
            display: none; /* Masaüstünde gizle */
        }

        .music-btn:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 991px) {
            .floating-controls-left {
                left: 20px !important;
                bottom: 20px !important;
            }
            .floating-controls-right {
                right: 20px !important;
                bottom: 20px !important;
            }
        }

        /* ── QR MODAL ── */
        .qr-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease);
        }

        .qr-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .qr-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }

        .qr-content {
            position: relative;
            background: white;
            width: 90%;
            max-width: 440px;
            padding: 50px 30px;
            border-radius: 50px;
            text-align: center;
            transform: translateY(40px);
            transition: all 0.6s var(--ease);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .qr-modal.active .qr-content {
            transform: translateY(0);
        }

        .qr-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f5f5f5;
            border: none;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a1a;
            transition: all 0.3s;
        }

        .qr-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .qr-header p {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
            max-width: 280px;
            margin: 0 auto 35px;
        }

        .qr-code-wrapper {
            background: #fff;
            padding: 25px;
            border: 1px solid #f0f0f0;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 30px;
        }

        .qr-code-wrapper img {
            width: 200px;
            height: 200px;
            display: block;
        }

        .qr-hint {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 20px;
        }

        .qr-action-btn {
            display: block;
            width: 100%;
            padding: 18px;
            border: 1px solid #eee;
            border-radius: 999px;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            transition: all 0.3s;
        }

        .qr-action-btn:hover {
            background: #f9f9f9;
            border-color: #ddd;
        }

        /* MOBİL MENU OVERLAY (Reference Image Logic) */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .menu-close-btn {
            position: absolute;
            top: 40px;
            right: 25px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 5600;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s var(--ease);
        }

        .mobile-menu-content {
            width: 100%;
            background: #fff;
            padding: 0 0 40px 0;
            transform: translateY(100%);
            transition: all 0.6s var(--ease);
            border-radius: 40px 40px 0 0;
            box-shadow: 0 -20px 40px rgba(0,0,0,0.15);
        }

        .mobile-menu-overlay.active .mobile-menu-content {
            transform: translateY(0);
        }

        .menu-handle {
            width: 50px;
            height: 4px;
            background: #e0e0e0;
            border-radius: 2px;
            margin: 15px auto 10px;
        }

        .menu-header-new {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background: #f8f9fa;
            margin: 10px 15px 20px;
            border-radius: 25px;
        }

        .header-info-new h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .header-info-new p {
            font-size: 0.85rem;
            color: #666;
            margin: 2px 0;
            line-height: 1.4;
        }

        .header-info-new p strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        .header-logo-new {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 15px;
            padding: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-logo-new img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .menu-list-new {
            padding: 0 25px;
        }

        .menu-section-label {
            font-size: 0.75rem;
            font-weight: 800;
            color: #bbb;
            margin: 25px 0 10px;
            letter-spacing: 0.1em;
        }

        .menu-item-new {
            display: flex;
            align-items: center;
            gap: 15px;
            width: 100%;
            padding: 18px 0;
            text-decoration: none;
            border-bottom: 1px solid #f2f2f2;
            background: none;
            border-left: none;
            border-right: none;
            border-top: none;
            cursor: pointer;
            transition: opacity 0.2s;
            text-align: left;
        }

        .menu-item-new:active {
            opacity: 0.6;
        }

        .item-icon-new {
            font-size: 1.2rem;
            width: 24px;
            display: flex;
            justify-content: center;
        }

        .item-text-new {
            font-size: 1.05rem;
            font-weight: 500;
            color: #333;
        }

        /* ── HERO WRAP ── */
        .hero-wrap {
            height: 100vh;
            position: relative;
        }

        /* Sticky kapsayıcı: GSAP Pin kullanacağız */
        .sticky-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            background: var(--bg);
        }

        /* ── PANEL 1: Hero ── */
        #hero-panel {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #hero-img-box {
            position: absolute;
            inset: 0;
            background: #111;
            overflow: hidden;
        }

        .hero-bg-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.95;
            display: block;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background-image: radial-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
            background-size: 4px 4px;
            pointer-events: none;
        }

        #hero-title {
            position: relative;
            z-index: 5;
            color: white;
            text-align: center;
            pointer-events: none;
        }

        #hero-title h1 {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            text-transform: lowercase;
            letter-spacing: -0.04em;
            font-size: clamp(3rem, 13vw, 11rem);
            line-height: 1;
        }

        .badge {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.22em;
        }

        /* Yan fotoğraflar - Görseldeki yerleşim */
        .fimg {
            position: absolute;
            z-index: 10;
            opacity: 0;
            transform: scale(0.8);
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            /* Gölgeler biraz daha net */
        }

        .fimg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .f1 {
            width: 200px;
            height: 180px;
        }

        /* Sol Üst (Ufak) */
        .f2 {
            width: 330px;
            height: 420px;
        }

        /* Sol Alt (Büyük Dikey) */
        .f3 {
            width: 280px;
            height: 420px;
        }

        /* Sağ Üst (Dikey) */
        .f4 {
            width: 260px;
            height: 180px;
        }

        /* Sağ Alt (Yatay) */

        @media (min-width: 768px) {
            .f1 {
                width: 420px;
                height: 280px;
                left: 8%;
                top: 14%;
                z-index: 12;
            }

            .f2 {
                width: 260px;
                height: 260px;
                left: 16%;
                bottom: 12%;
                z-index: 11;
            }

            .f3 {
                width: 360px;
                height: 260px;
                right: 10%;
                top: 18%;
                z-index: 10;
            }

            .f4 {
                width: 320px;
                height: 420px;
                right: 8%;
                bottom: 8%;
                z-index: 13;
            }
        }

        @media (max-width: 767px) {
            .f1 {
                width: 160px;
                height: 120px;
                left: 4%;
                top: 18%;
            }

            .f2 {
                width: 110px;
                height: 110px;
                left: 8%;
                bottom: 22%;
            }

            .f3 {
                width: 150px;
                height: 110px;
                right: 6%;
                top: 24%;
            }

            .f4 {
                width: 130px;
                height: 170px;
                right: 4%;
                bottom: 14%;
            }
        }

        #story-panel {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            height: 100%;
            background: var(--bg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /* Merkeze aldık */
            padding: 0 24px;
            text-align: center;
            z-index: 20;
        }

        @media (max-width: 767px) {
            #story-panel {
                padding-top: 0;
            }
        }

        .intro-text {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            /* Bir tık büyütüldü */
            line-height: 1.3;
            opacity: 0.65;
            margin-bottom: 0;
        }

        .intro-text em {
            font-style: italic;
        }

        .story-big-title {
            display: none;
        }

        /* Temizledik */

        /* ── STORY SECTION (devamı) ── */
        .story-section {
            padding: 80px 24px 100px;
            text-align: center;
            background: var(--bg);
        }

        /* Photo Stack */
        .photo-stack {
            position: relative;
            width: 300px;
            height: 370px;
            margin: 3rem auto;
            cursor: pointer;
        }

        .photo-card {
            position: absolute;
            inset: 0;
            background: white;
            padding: 10px 10px 52px;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
            border-radius: 3px;
        }

        .photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ── VENUE ── */
        .venue-section {
            padding: 100px 24px;
            background: white;
            text-align: center;
        }

        /* ── FOOTER ── */
        footer {
            min-height: 100vh;
            background: #111;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        footer .bg {
            position: absolute;
            inset: 0;
            background: #111; /* Siyah arkaplana geri dönüldü */
            opacity: 1;
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
        }

        /* ── MEMORIES ALBUM SECTION ── */
        .memories-section {
            height: 100vh;
            background: var(--bg);
            position: relative;
            padding: 0;
            margin: 0;
            overflow: hidden;
        }

        .memories-sticky {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .memories-bg-title {
            position: absolute;
            top: 6vh; 
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 4rem); /* Daha zarif bir boyut */
            color: var(--dark);
            opacity: 1;
            white-space: nowrap;
            pointer-events: none;
            z-index: 100;
            text-transform: lowercase;
            font-style: italic;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        /* Başlığın üzerine zarif bir üst yazı */
        .memories-bg-title::before {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.4em;
            opacity: 0.35;
            font-style: normal;
        }

        .memories-container {
            position: relative;
            width: 100%;
            height: 80vh; /* Resimleri biraz aşağı çekmek için alanı daralttık */
            margin-top: 12vh; /* Üstten boşluk bıraktık */
            max-width: 1200px;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .memory-card {
            position: absolute;
            width: min(440px, 80vw);
            height: min(580px, 68vh);
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .memory-inner {
            position: relative;
            width: 100%;
            height: 100%;
            background: #fff;
            padding: 10px 10px 70px;
            /* Fine-art çerçeve oranı */
            border-radius: 1px;
            /* KRİTİK: Çok katmanlı premium gölge */
            box-shadow:
                0 2px 5px rgba(0, 0, 0, 0.05),
                0 15px 35px rgba(0, 0, 0, 0.08),
                0 30px 60px rgba(0, 0, 0, 0.05);
            background-image: linear-gradient(135deg, #fff 0%, #fdfdfd 100%);
        }

        /* Posterin üzerine hafif bir kağıt dokusu efekti */
        .memory-inner::after {
            content: "";
            position: absolute;
            inset: 0;
            background: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
            opacity: 0.03;
            /* Çok çok silik doku */
            pointer-events: none;
        }

        .memory-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: contrast(1.05) saturate(1.1);
            /* Editorial renk canlılığı */
        }

        .memory-text {
            position: absolute;
            width: 280px;
            opacity: 0;
            pointer-events: none;
            z-index: 20;
        }

        .memory-text[data-side="left"] {
            left: -420px;
            /* Daha dışa taşındı (Resimle çakışmaz) */
            text-align: left;
        }

        .memory-text[data-side="right"] {
            right: -420px;
            /* Daha dışa taşındı */
            text-align: right;
        }

        .memory-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            line-height: 1.15;
            margin: 0.5rem 0;
            color: var(--dark);
            font-style: italic;
        }

        .memory-text p {
            font-size: 0.9rem;
            line-height: 1.6;
            opacity: 0.5;
            letter-spacing: 0.02em;
        }

        /* REMOVED */

            /* RESET */

            /* CLEANED */

        #back-to-top:hover {
            transform: translateY(-5px);
        }

        #back-to-top .badge {
            transition: all 0.3s ease;
        }

        #back-to-top:hover .badge {
            background: var(--dark) !important;
            color: white !important;
        }

        /* ── SERİF YARDIMCI ── */
        .serif {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.04em;
            text-transform: lowercase;
            font-style: italic;
        }

        /* REMOVED */
        /* REMOVED */

        .btn-text {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--dark);
            white-space: nowrap;
        }

        /* REMOVED HOVER */

        .music-btn svg {
            width: 20px;
            height: 20px;
            fill: var(--dark);
            transition: all 0.3s;
        }

        /* ── VENUE CARDS ── */
        .venue-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 4rem auto 0;
            padding: 0 2rem;
        }

        .venue-card {
            text-align: center;
        }

        .venue-img-wrapper {
            width: 100%;
            height: 450px;
            border-radius: 30px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .venue-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s var(--ease);
        }

        .venue-card:hover .venue-img-wrapper img {
            transform: scale(1.05);
        }

        .venue-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .venue-info p {
            font-size: 0.9rem;
            opacity: 0.6;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .directions-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 24px;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--dark);
            background: none;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .directions-btn:hover {
            background: var(--dark);
            color: white;
        }

        .venue-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 1.5rem;
        }

        @media (max-width: 991px) {
            .venue-grid {
                grid-template-columns: 1fr;
                gap: 6rem;
            }
            .venue-img-wrapper {
                height: 350px;
            }
            .venue-info {
                display: flex;
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }
            .venue-actions {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }
            .directions-btn {
                width: 100%;
                justify-content: center;
                margin: 0;
            }
        }

        .hidden {
            display: none !important;
        }

        /* ── HEART BURST EFFECT ── */
        .click-heart {
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            width: 14px;
            height: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: heartBurst 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .click-heart svg {
            width: 100%;
            height: 100%;
            fill: #ff4d4d; /* Romantik kırmızı */
            filter: drop-shadow(0 2px 5px rgba(255, 77, 77, 0.3));
        }

        @keyframes heartBurst {
            0% {
                transform: translate(-50%, -50%) scale(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1.2) rotate(var(--tr));
                opacity: 0;
            }
        }
        @media (max-width: 991px) { #mobile-menu-toggle { display: inline-flex; position: fixed; right: 24px; bottom: 24px; z-index: 2000; } .memories-section { height: auto !important; padding: 40px 0 !important; overflow: visible !important; } .memories-sticky { height: auto !important; display: block !important; position: relative !important; padding-top: 0 !important; } .memories-bg-title { position: relative !important; top: 0 !important; left: 0 !important; transform: none !important; margin: 0 auto 30px !important; text-align: center !important; display: block !important; } .memories-container { display: block !important; height: auto !important; margin-top: 0 !important; padding: 0 20px !important; } .memory-card { position: relative !important; top: 0 !important; left: 0 !important; width: 100% !important; height: auto !important; margin-bottom: 50px !important; opacity: 1 !important; visibility: visible !important; transform: none !important; display: block !important; } .memory-text, .memory-text * { text-align: center !important; position: relative !important; left: auto !important; right: auto !important; transform: none !important; width: 100% !important; opacity: 1 !important; visibility: visible !important; display: block !important; } .memory-inner { height: auto !important; padding: 10px !important; } .footer-credit { bottom: 15px !important; opacity: 0.5 !important; } } .footer-credit {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

        @media (max-width: 991px) {
            .footer-credit {
                bottom: 10px;
                opacity: 0.5;
            }
        }

        @media (max-width: 991px) { .memory-text { margin-top: 35px !important; } .memory-card { margin-bottom: 70px !important; } }

        /* ── BIRD CURSOR EFFECT ── */
        .bird-cursor {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 15000;
            width: 24px;
            height: 24px;
            opacity: 0;
            transition: opacity 0.5s var(--ease);
        }
        .bird-cursor.active {
            opacity: 0.45;
        }
        .bird-cursor svg {
            width: 100%;
            height: 100%;
            fill: #7d6e63;
        }
        @keyframes birdFlap {
            0%, 100% { transform: scaleY(1); }
            50% { transform: scaleY(0.3); }
        }
        .bird-cursor svg path {
            transform-origin: center;
            animation: birdFlap 0.25s ease-in-out infinite;
        }
