        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --pink: #FF3C78;
            --hot-pink: #FF006E;
            --yellow: #FFDE59;
            --black: #1A1A2E;
            --white: #FEFEFE;
            --teal: #00C9A7;
            --orange: #FF8A5C;
            --lavender: #C3B1E1;
            --cream: #FFF8E7;
            --light-pink: #FFE0EB;
            --lime: #C6F135;
            --border: 3px solid var(--black);
            --border-thick: 4px solid var(--black);
            --shadow: 6px 6px 0px var(--black);
            --shadow-sm: 4px 4px 0px var(--black);
            --shadow-lg: 8px 8px 0px var(--black);
            --radius: 16px;
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--cream);
            color: var(--black);
            overflow-x: hidden;
            scrollbar-width: none
        }

        ::-webkit-scrollbar {
            display: none
        }

        ::selection {
            background: var(--pink);
            color: white
        }

        /* ========== INTRO ========== */
        .intro {
            position: fixed;
            inset: 0;
            background: var(--black);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: clip-path 1s cubic-bezier(.77, 0, .175, 1)
        }

        .intro.hidden {
            clip-path: circle(0% at 50% 50%);
            pointer-events: none
        }

        .intro-shapes {
            position: absolute;
            inset: 0;
            overflow: hidden
        }

        .intro-shape {
            position: absolute;
            border: 3px solid rgba(255, 60, 120, 0.2);
            border-radius: 50%;
            animation: iFloat 8s ease-in-out infinite
        }

        @keyframes iFloat {

            0%,
            100% {
                transform: translate(0, 0) rotate(0)
            }

            50% {
                transform: translate(40px, -40px) rotate(180deg)
            }
        }


        .intro-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2.2rem, 9vw, 5.5rem);
            color: #fff;
            text-align: center;
            line-height: 1;
            z-index: 2;
            animation: fadeU 1s ease .3s both
        }

        .intro-title span {
            color: var(--pink)
        }

        .intro-sub {
            font-family: 'Caveat', cursive;
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            color: var(--yellow);
            z-index: 2;
            animation: fadeU 1s ease .6s both
        }

        .intro-btn {
            padding: 18px 52px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            background: var(--yellow);
            color: var(--black);
            border: var(--border-thick);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all .12s;
            z-index: 2;
            animation: fadeU 1s ease .9s both;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .intro-btn:hover {
            transform: translate(-3px, -3px);
            box-shadow: 10px 10px 0 #fff
        }

        .intro-btn:active {
            transform: translate(4px, 4px);
            box-shadow: 1px 1px 0 #fff
        }


        @keyframes fadeU {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ========== MARQUEE ========== */
        .marquee {
            border-top: var(--border);
            border-bottom: var(--border);
            padding: 14px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 2
        }

        .marquee.pink-bg {
            background: var(--pink);
            color: #fff
        }

        .marquee.yellow-bg {
            background: var(--yellow)
        }

        .marquee.teal-bg {
            background: var(--teal);
            color: #fff
        }

        .marquee.lavender-bg {
            background: var(--lavender)
        }

        .marquee.lime-bg {
            background: var(--lime)
        }

        .marquee.dark-bg {
            background: var(--black);
            color: #fff;
            border-color: var(--black)
        }

        .mq-inner {
            display: inline-flex;
            animation: mq 22s linear infinite;
            font-family: 'Archivo Black', sans-serif;
            font-size: .95rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            gap: 40px
        }

        .mq-inner.reverse {
            animation-direction: reverse
        }

        .mq-inner span {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0
        }

        @keyframes mq {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
            background: var(--cream)
        }

        .hero-shape {
            position: absolute;
            border-radius: var(--radius);
            border: var(--border);
            opacity: .15;
            animation: bgF 15s ease-in-out infinite
        }

        @keyframes bgF {

            0%,
            100% {
                transform: translate(0, 0) rotate(0)
            }

            33% {
                transform: translate(40px, -50px) rotate(90deg)
            }

            66% {
                transform: translate(-30px, 30px) rotate(200deg)
            }
        }

        .hero-content {
            text-align: center;
            z-index: 5;
            max-width: 900px
        }


        .hero-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(3.2rem, 13vw, 9rem);
            line-height: .9;
            margin-bottom: 16px
        }

        .hero-heading .stroke {
            -webkit-text-stroke: 3px var(--black);
            -webkit-text-fill-color: transparent
        }

        .hero-heading .accent {
            color: var(--pink)
        }

        .hero-name {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: clamp(1rem, 3.5vw, 1.6rem);
            letter-spacing: 8px;
            text-transform: uppercase;
            margin: 20px 0 8px;
            padding: 12px 30px;
            background: var(--black);
            color: var(--yellow);
            display: inline-block;
            border-radius: 8px;
            border: var(--border)
        }

        .hero-sub {
            font-family: 'Caveat', cursive;
            font-size: clamp(1.4rem, 4.5vw, 2.2rem);
            color: var(--hot-pink);
            margin: 16px 0 36px
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: var(--pink);
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            border: var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all .12s;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px
        }

        .hero-cta:hover {
            transform: translate(-3px, -3px);
            box-shadow: 10px 10px 0 var(--black)
        }

        .sticker {
            position: absolute;
            z-index: 3;
            animation: sFloat 5s ease-in-out infinite;
            filter: drop-shadow(3px 3px 0 rgba(26, 26, 46, .3))
        }

        .sticker-box {
            background: #fff;
            border: var(--border);
            border-radius: 12px;
            padding: 8px 14px;
            font-weight: 700;
            font-size: .75rem;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            gap: 6px;
            position: absolute;
            z-index: 3;
            animation: sFloat 5s ease-in-out infinite
        }

        .real-sticker {
            position: absolute;
            z-index: 4;
            filter: drop-shadow(5px 5px 0 var(--black));
            transition: all .3s ease;
            cursor: grab
        }

        .real-sticker:active {
            cursor: grabbing
        }

        .real-sticker img {
            width: 150px;
            height: auto;
            border: 4px solid #fff;
            border-radius: 12px;
            display: block;
            user-select: none;
            -webkit-user-drag: none
        }

        .real-sticker:hover {
            transform: scale(1.1) rotate(5deg)
        }

        .laxmi-pop {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            animation: lPop 1s ease-out forwards;
            border: 3px solid #fff;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            width: 80px;
            height: auto
        }

        @keyframes lPop {
            0% {
                opacity: 0;
                transform: scale(0.5) translateY(0) rotate(-20deg)
            }

            20% {
                opacity: 1;
                transform: scale(1.2) translateY(-20px) rotate(10deg)
            }

            100% {
                opacity: 0;
                transform: scale(0.8) translateY(-100px) rotate(30deg)
            }
        }

        @keyframes sFloat {

            0%,
            100% {
                transform: translateY(0) rotate(-3deg)
            }

            50% {
                transform: translateY(-12px) rotate(3deg)
            }
        }

        /* ========== BENTO STATS ========== */
        .stats {
            padding: 80px 20px;
            background: var(--light-pink);
            position: relative;
            z-index: 2
        }

        .sec-header {
            text-align: center;
            margin-bottom: 50px
        }

        .sec-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--yellow);
            padding: 8px 20px;
            border: var(--border);
            border-radius: 50px;
            box-shadow: var(--shadow-sm);
            font-weight: 700;
            font-size: .75rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 14px;
            color: var(--black)
        }

        .sec-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2rem, 7vw, 3.8rem);
            line-height: 1.05
        }

        .sec-title .pk {
            color: var(--pink)
        }

        .sec-title .yl {
            color: var(--orange)
        }

        .bento {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 950px;
            margin: 0 auto
        }

        .b-card {
            background: var(--white);
            border: var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px;
            transition: all .15s;
            position: relative;
            overflow: hidden
        }

        .b-card:hover {
            transform: translate(-3px, -3px);
            box-shadow: 10px 10px 0 var(--black)
        }

        .b-card.feat {
            grid-column: span 2;
            grid-row: span 2;
            background: var(--pink);
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center
        }

        .b-card.yl {
            background: var(--yellow)
        }

        .b-card.tl {
            background: var(--teal);
            color: #fff
        }

        .b-card.lv {
            background: var(--lavender)
        }

        .b-card.or {
            background: var(--orange);
            color: #fff
        }

        .b-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block
        }

        .b-label {
            font-size: .7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            opacity: .65;
            margin-bottom: 4px
        }

        .b-val {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            line-height: 1
        }

        .b-txt {
            font-family: 'Caveat', cursive;
            font-size: 1.2rem;
            margin-top: 6px
        }

        .b-card.feat .b-icon {
            font-size: 3.5rem
        }

        .b-card.feat .b-val {
            font-size: clamp(2.2rem, 6vw, 3.5rem)
        }

        .b-card.feat .b-txt {
            font-size: 1.4rem
        }

        .b-card .corner-deco {
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 50px;
            height: 50px;
            border-radius: 50% 0 var(--radius) 0;
            opacity: .15
        }

        .b-card.feat .corner-deco {
            background: #fff
        }

        .b-card.yl .corner-deco {
            background: var(--black)
        }

        .b-card.tl .corner-deco {
            background: #fff
        }

        /* ========== TIMELINE ========== */
        .timeline {
            padding: 80px 20px;
            background: var(--cream);
            position: relative;
            z-index: 2
        }

        .tl-container {
            max-width: 850px;
            margin: 0 auto;
            position: relative
        }

        .tl-line {
            position: absolute;
            left: 50%;
            top: 20px;
            bottom: 20px;
            width: 4px;
            background: var(--black);
            transform: translateX(-50%);
            border-radius: 2px;
            z-index: 1
        }

        .tl-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
            width: 100%
        }

        .tl-item:nth-child(odd) {
            justify-content: flex-start
        }

        .tl-item:nth-child(even) {
            justify-content: flex-end
        }

        .tl-dot {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 20px;
            height: 20px;
            background: var(--pink);
            border: 3px solid var(--black);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 3;
            transition: all .3s
        }

        .tl-item:hover .tl-dot {
            transform: translateX(-50%) scale(1.3);
            background: var(--yellow)
        }

        .tl-content {
            width: 45%;
            background: var(--white);
            border: var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            position: relative;
            transition: all .3s
        }

        .tl-item:hover .tl-content {
            transform: scale(1.02) rotate(-1deg);
            box-shadow: 8px 8px 0 var(--pink)
        }

        .tl-item:nth-child(even):hover .tl-content {
            transform: scale(1.02) rotate(1deg)
        }

        .tl-date {
            font-family: 'Archivo Black', sans-serif;
            color: var(--pink);
            font-size: .85rem;
            margin-bottom: 6px;
            text-transform: uppercase;
            display: inline-block;
            background: var(--light-pink);
            padding: 4px 12px;
            border-radius: 20px;
            border: 2px solid rgba(0, 0, 0, .1)
        }

        .tl-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            margin-bottom: 8px;
            line-height: 1.2
        }

        .tl-desc {
            font-size: .92rem;
            line-height: 1.6;
            opacity: .85
        }

        .tl-icon {
            font-size: 2rem;
            margin-bottom: 12px;
            color: var(--black)
        }

        /* ========== LOVE LETTER ========== */
        .letter {
            padding: 80px 20px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2
        }

        .paper {
            max-width: 650px;
            width: 100%;
            background: #fff;
            border: var(--border-thick);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 50px 45px;
            position: relative;
            background-image: repeating-linear-gradient(transparent, transparent 31px, #ede7dd 31px, #ede7dd 32px);
            background-position: 0 48px
        }

        .paper::before {
            content: '';
            position: absolute;
            left: 48px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #ffb3b3
        }

        .paper-clip {
            position: absolute;
            top: -16px;
            right: 35px;
            width: 28px;
            height: 55px;
            border: 3px solid var(--pink);
            border-radius: 14px 14px 0 0;
            border-bottom: none;
            z-index: 3
        }

        .paper-tape {
            position: absolute;
            top: -8px;
            left: 30px;
            width: 60px;
            height: 22px;
            background: var(--yellow);
            opacity: .7;
            border: 2px solid var(--black);
            border-radius: 3px;
            transform: rotate(-5deg)
        }

        .l-date {
            font-family: 'Caveat', cursive;
            font-size: 1rem;
            color: var(--pink);
            margin-bottom: 18px;
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 6px
        }

        .l-greet {
            font-family: 'Caveat', cursive;
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            color: var(--hot-pink);
            margin-bottom: 18px
        }

        .l-body {
            font-family: 'Caveat', cursive;
            font-size: clamp(1.15rem, 3vw, 1.4rem);
            line-height: 2;
            color: #333;
            margin-bottom: 28px
        }

        .l-body .hl {
            background: var(--yellow);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 700
        }

        .l-body .ul {
            text-decoration: underline;
            text-decoration-color: var(--pink);
            text-underline-offset: 3px;
            font-weight: 600
        }

        .l-sign {
            font-family: 'Caveat', cursive;
            font-size: 1.7rem;
            color: var(--pink);
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px
        }

        /* ========== POEMS ========== */
        .poems {
            padding: 100px 20px;
            background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
            color: #fff;
            position: relative;
            overflow: hidden;
            z-index: 2
        }

        .poems .sec-tag {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px)
        }

        .poems .sec-title {
            color: #fff
        }

        .poems .sec-title .pk {
            color: #ff9a9e
        }

        .poem-tabs {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin-bottom: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px
        }

        .poem-tab {
            background: transparent;
            border: none;
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.5);
            padding: 10px 0;
            position: relative;
            transition: all .3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer
        }

        .poem-tab::after {
            content: '';
            position: absolute;
            bottom: -21px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--pink);
            transition: width .3s ease
        }

        .poem-tab:hover {
            color: #fff;
            transform: translateY(-2px)
        }

        .poem-tab.active {
            color: #fff
        }

        .poem-tab.active::after {
            width: 100%
        }

        .poem-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 60px 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5)
        }

        .poem-page {
            display: none;
            animation: poemIn .8s cubic-bezier(.16, 1, .3, 1)
        }

        .poem-page.active {
            display: block
        }

        .poem-title-wrap {
            text-align: center;
            margin-bottom: 50px;
            position: relative
        }

        .poem-big-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: clamp(3rem, 10vw, 5rem);
            background: linear-gradient(to right, #fff, #b3b3b3);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
            margin-bottom: 10px
        }

        .poem-big-title::after {
            display: none
        }

        .poem-subtitle {
            font-family: 'Space Grotesk', sans-serif;
            text-transform: uppercase;
            font-size: .8rem;
            letter-spacing: 4px;
            opacity: .7;
            color: var(--lavender)
        }

        .stanza {
            background: transparent;
            border: none;
            padding: 0;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            transition: transform .3s ease
        }

        .stanza:hover {
            transform: scale(1.02);
            background: transparent;
            border: none
        }

        .stanza::before {
            display: none
        }

        .stanza::after {
            content: '✦';
            display: block;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.2);
            font-size: 1.2rem
        }

        .stanza:last-child::after {
            display: none
        }

        .stanza-num {
            display: none
        }

        .verse {
            font-family: 'Caveat', cursive;
            font-size: clamp(1.4rem, 4vw, 1.8rem);
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)
        }

        .verse .glow {
            color: #ff9a9e;
            text-shadow: 0 0 15px rgba(255, 154, 158, 0.6);
            font-weight: 700
        }

        .verse .gold {
            color: #fecfef;
            text-shadow: 0 0 10px rgba(254, 207, 239, 0.5);
            font-weight: 700
        }

        .verse .tl,
        .verse .lav,
        .verse .orng,
        .verse .lm,
        .verse .wh {
            color: #fff;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.4)
        }

        .poem-anchor {
            display: block;
            font-family: 'Syne', sans-serif;
            font-size: 1rem;
            color: var(--pink);
            letter-spacing: 4px;
            margin-bottom: 10px;
            opacity: .8;
            text-transform: uppercase
        }

        .poem-anchor.tl-anchor {
            color: var(--teal)
        }

        .poem-deco {
            display: none
        }

        .poem-footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05)
        }

        .poem-footer-text {
            font-family: 'Caveat', cursive;
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px
        }

        .poem-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-top: 20px
        }

        .poem-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all .25s;
            border: none
        }

        .poem-dot.active {
            background: #fff;
            transform: scale(1.5);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5)
        }

        .poem-quill {
            display: none
        }

        .stanza-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all .6s cubic-bezier(.16, 1, .3, 1)
        }

        .stanza-reveal.vis {
            opacity: 1;
            transform: translateY(0)
        }

        @media(max-width:768px) {
            .stanza {
                padding: 20px 22px
            }

            .poem-tab {
                padding: 11px 22px;
                font-size: .78rem
            }

            .poem-deco {
                display: none
            }

            .tl-line {
                left: 20px
            }

            .tl-item {
                justify-content: flex-start !important;
                padding-left: 45px
            }

            .tl-content {
                width: 100%
            }

            .tl-dot {
                left: 20px
            }

            .tl-item:nth-child(even) .tl-content {
                margin-left: 0
            }

            .tl-item:nth-child(odd) .tl-content {
                margin-right: 0
            }
        }

        @media(max-width:480px) {
            .poem-tab {
                padding: 10px 18px;
                font-size: .72rem;
                letter-spacing: 1px
            }

            .stanza {
                padding: 18px 16px
            }
        }

        /* ========== REASONS ========== */
        .reasons {
            padding: 80px 20px;
            background: var(--white);
            position: relative;
            z-index: 2
        }

        .r-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 20px 20px 30px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none
        }

        .r-scroll::-webkit-scrollbar {
            display: none
        }

        .r-card {
            min-width: 280px;
            max-width: 300px;
            border: var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px 24px;
            scroll-snap-align: center;
            flex-shrink: 0;
            transition: all .15s;
            position: relative
        }

        .r-card:nth-child(1) {
            background: var(--light-pink)
        }

        .r-card:nth-child(2) {
            background: var(--yellow)
        }

        .r-card:nth-child(3) {
            background: #d0f5ec
        }

        .r-card:nth-child(4) {
            background: var(--lavender)
        }

        .r-card:nth-child(5) {
            background: var(--orange);
            color: #fff
        }

        .r-card:nth-child(6) {
            background: var(--lime)
        }

        .r-card:hover {
            transform: translate(-3px, -3px) rotate(-1deg);
            box-shadow: 10px 10px 0 var(--black)
        }

        .r-num {
            font-family: 'Archivo Black', sans-serif;
            font-size: 3.5rem;
            opacity: .1;
            position: absolute;
            top: 8px;
            right: 16px;
            line-height: 1
        }

        .r-icon {
            width: 54px;
            height: 54px;
            background: var(--black);
            color: #fff;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 14px;
            border: var(--border);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, .3)
        }

        .r-card:nth-child(5) .r-icon {
            background: #fff;
            color: var(--black)
        }

        .r-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.25rem;
            margin-bottom: 8px
        }

        .r-desc {
            font-size: .88rem;
            line-height: 1.65;
            opacity: .8
        }

        .scroll-hint {
            text-align: center;
            font-size: .8rem;
            color: var(--pink);
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 10px
        }

        /* ========== PROMISES ========== */
        .promises {
            padding: 80px 20px;
            background: var(--black);
            color: #fff;
            position: relative;
            z-index: 2
        }

        .promises .sec-tag {
            background: var(--pink);
            color: #fff;
            border-color: rgba(255, 255, 255, .2)
        }

        .promises .sec-title {
            color: #fff
        }

        .promises .sec-title .pk {
            color: var(--yellow)
        }

        .p-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 16px;
            max-width: 950px;
            margin: 0 auto
        }

        .p-card {
            background: rgba(255, 255, 255, .05);
            border: 2px solid rgba(255, 255, 255, .1);
            border-radius: var(--radius);
            padding: 28px;
            transition: all .25s;
            position: relative;
            overflow: hidden
        }

        .p-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--pink)
        }

        .p-card:hover {
            background: rgba(255, 255, 255, .1);
            border-color: var(--pink);
            transform: translateY(-5px)
        }

        .p-card:nth-child(2)::before {
            background: var(--yellow)
        }

        .p-card:nth-child(3)::before {
            background: var(--teal)
        }

        .p-card:nth-child(4)::before {
            background: var(--orange)
        }

        .p-card:nth-child(5)::before {
            background: var(--lavender)
        }

        .p-card:nth-child(6)::before {
            background: var(--lime)
        }

        .p-icon {
            font-size: 1.5rem;
            margin-bottom: 12px;
            display: block
        }

        .p-text {
            font-size: .95rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, .8)
        }

        .p-text strong {
            color: var(--pink)
        }

        .p-card:nth-child(2) .p-text strong {
            color: var(--yellow)
        }

        .p-card:nth-child(3) .p-text strong {
            color: var(--teal)
        }

        .p-card:nth-child(4) .p-text strong {
            color: var(--orange)
        }

        .p-card:nth-child(5) .p-text strong {
            color: var(--lavender)
        }

        /* ========== TYPEWRITER ========== */
        .tw-section {
            padding: 80px 20px;
            background: var(--cream);
            text-align: center;
            position: relative;
            z-index: 2
        }

        .tw-text {
            font-family: 'Caveat', cursive;
            font-size: clamp(1.8rem, 6vw, 3rem);
            color: var(--hot-pink);
            min-height: 55px
        }

        .tw-text .cur {
            border-right: 3px solid var(--pink);
            padding-right: 2px;
            animation: blink .7s step-end infinite
        }

        @keyframes blink {
            50% {
                border-color: transparent
            }
        }

        /* ========== SECRET ========== */
        .secret {
            padding: 100px 20px;
            background: var(--light-pink);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2
        }

        .secret-card {
            max-width: 500px;
            width: 100%;
            background: var(--white);
            border: var(--border-thick);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .secret-pre {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(1.2rem, 4vw, 1.6rem);
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px
        }

        .secret-pre i {
            font-size: 2rem;
            color: var(--pink)
        }

        .s-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--pink);
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            border: var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all .12s
        }

        .s-btn:hover {
            transform: translate(-2px, -2px);
            box-shadow: 9px 9px 0 var(--black)
        }

        .s-btn:active {
            transform: translate(3px, 3px);
            box-shadow: 2px 2px 0 var(--black)
        }

        .s-reveal {
            display: none;
            padding-top: 20px
        }

        .s-reveal.show {
            display: block;
            animation: fadeU .6s ease
        }

        .s-msg {
            font-family: 'Caveat', cursive;
            font-size: clamp(1.4rem, 5vw, 2rem);
            color: var(--hot-pink);
            line-height: 1.6
        }

        .s-emoji {
            font-size: 4rem;
            display: block;
            margin: 16px 0;
            animation: hPulse 1s ease-in-out infinite
        }

        @keyframes hPulse {

            0%,
            100% {
                transform: scale(1)
            }

            50% {
                transform: scale(1.15)
            }
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--black);
            color: #fff;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            z-index: 2
        }

        .f-heart {
            font-size: 4rem;
            display: block;
            margin-bottom: 20px;
            animation: hPulse 1.2s ease-in-out infinite
        }

        .f-text {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(1.5rem, 5vw, 2.5rem);
            margin-bottom: 8px
        }

        .f-text .pk {
            color: var(--pink)
        }

        .f-sub {
            font-family: 'Caveat', cursive;
            font-size: 1.3rem;
            color: var(--yellow);
            margin-bottom: 6px
        }

        .f-date {
            font-size: .8rem;
            color: rgba(255, 255, 255, .35);
            margin-top: 12px;
            letter-spacing: 2px;
            text-transform: uppercase
        }

        .f-made {
            margin-top: 20px;
            font-size: .7rem;
            color: rgba(255, 255, 255, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px
        }

        /* ========== MUSIC BTN ========== */
        .mu-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 52px;
            height: 52px;
            background: var(--pink);
            color: #fff;
            border: var(--border);
            border-radius: 50%;
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all .12s
        }

        .mu-btn:hover {
            transform: translate(-2px, -2px);
            box-shadow: 7px 7px 0 var(--black)
        }

        .mu-btn.on {
            animation: mBounce .5s ease-in-out infinite alternate
        }

        @keyframes mBounce {
            from {
                transform: scale(1)
            }

            to {
                transform: scale(1.08)
            }
        }

        /* ========== CURSOR ========== */
        .c-heart {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            font-size: 14px;
            animation: cFade .7s ease forwards
        }

        @keyframes cFade {
            0% {
                opacity: 1;
                transform: scale(1) translateY(0)
            }

            100% {
                opacity: 0;
                transform: scale(.2) translateY(-35px) rotate(25deg)
            }
        }

        .click-burst {
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            animation: cBurst .6s ease-out forwards
        }

        @keyframes cBurst {
            0% {
                opacity: 1;
                transform: scale(.5) translate(0, 0)
            }

            100% {
                opacity: 0;
                transform: scale(1.3) translate(var(--tx), var(--ty))
            }
        }

        .confetti-p {
            position: fixed;
            pointer-events: none;
            z-index: 10001;
            border-radius: 3px
        }

        /* ========== REVEAL ========== */
        .rv {
            opacity: 0;
            transform: translateY(40px);
            transition: all .8s cubic-bezier(.16, 1, .3, 1)
        }

        .rv.vis {
            opacity: 1;
            transform: translateY(0)
        }

        .rv-s {
            opacity: 0;
            transform: scale(.85);
            transition: all .8s cubic-bezier(.16, 1, .3, 1)
        }

        .rv-s.vis {
            opacity: 1;
            transform: scale(1)
        }

        .rv-l {
            opacity: 0;
            transform: translateX(-40px);
            transition: all .8s cubic-bezier(.16, 1, .3, 1)
        }

        .rv-l.vis {
            opacity: 1;
            transform: translateX(0)
        }

        /* ========== BG SHAPES ========== */
        .bg-shapes {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden
        }

        .bg-s {
            position: absolute;
            border: 3px solid rgba(255, 60, 120, .06);
            border-radius: var(--radius);
            animation: bgF 15s ease-in-out infinite
        }

        /* ========== GALLERY ========== */
        .gallery {
            padding: 100px 20px;
            background: var(--yellow);
            position: relative;
            z-index: 2;
            background-image: radial-gradient(var(--black) 1px, transparent 1px);
            background-size: 24px 24px
        }

        .g-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px
        }

        .polaroid {
            background: #fff;
            padding: 16px 16px 50px 16px;
            box-shadow: var(--shadow);
            border: var(--border);
            transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
            transform: rotate(var(--r));
            position: relative;
            width: 280px;
            flex-shrink: 0;
            cursor: pointer
        }

        .polaroid:hover {
            transform: scale(1.1) rotate(0);
            z-index: 10;
            box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.8)
        }

        .polaroid::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%) rotate(-2deg);
            width: 100px;
            height: 35px;
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(2px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
        }

        .p-img {
            width: 100%;
            aspect-ratio: 1;
            background: #eee;
            border: 2px solid var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative
        }

        .p-img i {
            font-size: 3rem;
            color: rgba(0, 0, 0, 0.1)
        }

        .p-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s
        }

        .polaroid:hover .p-img img {
            transform: scale(1.1)
        }

        .p-caption {
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            text-align: center;
            font-family: 'Caveat', cursive;
            font-size: 1.5rem;
            color: var(--black);
            font-weight: 700;
            padding: 0 10px
        }

        .p-date {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--pink);
            color: #fff;
            font-size: 0.6rem;
            padding: 4px 8px;
            border-radius: 4px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            border: 1px solid var(--black);
            transform: rotate(5deg)
        }

        /* ========== MODAL ========== */
        .modal {
            position: fixed;
            z-index: 20000;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            cursor: zoom-out;
            display: flex;
            visibility: hidden;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease, visibility 0.4s;
            pointer-events: none;
        }

        .modal.show {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            max-width: 90%;
            max-height: 80vh;
            border: 5px solid #fff;
            border-radius: 12px;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .modal.show .modal-content {
            transform: scale(1);
        }

        .modal-caption {
            color: #fff;
            font-family: 'Caveat', cursive;
            font-size: 2.5rem;
            margin-top: 20px;
            text-align: center;
        }

        .modal-close {
            position: absolute;
            top: 30px;
            right: 30px;
            color: #fff;
            font-size: 2.5rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .modal-close:hover {
            transform: rotate(90deg) scale(1.2);
            color: var(--pink);
        }

        /* ========== COUPONS ========== */
        .coupons {
            padding: 80px 20px;
            background: var(--cream);
            position: relative;
            z-index: 2
        }

        .c-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto
        }

        .coupon {
            background: var(--white);
            border: var(--border-thick);
            border-radius: var(--radius);
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center
        }

        .coupon:hover {
            transform: translate(-5px, -5px) rotate(1deg);
            box-shadow: 12px 12px 0 var(--black)
        }

        .coupon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -15px;
            width: 30px;
            height: 30px;
            background: var(--cream);
            border: var(--border-thick);
            border-radius: 50%;
            transform: translateY(-50%)
        }

        .coupon::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -15px;
            width: 30px;
            height: 30px;
            background: var(--cream);
            border: var(--border-thick);
            border-radius: 50%;
            transform: translateY(-50%)
        }

        .c-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            animation: sFloat 4s ease-in-out infinite
        }

        .c-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 10px;
            text-transform: uppercase
        }

        .c-desc {
            font-family: 'Space Grotesk', sans-serif;
            font-size: .95rem;
            margin-bottom: 20px;
            opacity: .8
        }

        .c-btn {
            padding: 10px 24px;
            background: var(--black);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: .8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all .2s
        }

        .coupon:hover .c-btn {
            background: var(--pink);
            transform: scale(1.1)
        }

        .coupon.redeemed {
            pointer-events: none
        }

        .coupon.redeemed::before,
        .coupon.redeemed::after {
            background: var(--light-pink)
        }

        .c-stamp {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-25deg) scale(3);
            font-family: 'Archivo Black', sans-serif;
            font-size: 2.5rem;
            color: var(--hot-pink);
            border: 5px solid var(--hot-pink);
            padding: 10px 20px;
            border-radius: 12px;
            opacity: 0;
            transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
            z-index: 10;
            pointer-events: none;
            background: rgba(255, 255, 255, 0.9)
        }

        .coupon.redeemed .c-stamp {
            opacity: 0.85;
            transform: translate(-50%, -50%) rotate(-25deg) scale(1)
        }

        /* ========== BUCKET LIST ========== */
        .bucket {
            padding: 80px 20px;
            background: var(--black);
            color: #fff;
            position: relative;
            z-index: 2;
            overflow: hidden
        }

        .bucket .sec-title .pk {
            color: var(--lime)
        }

        .b-list {
            max-width: 600px;
            /* More compact width */
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
            /* Reduced gap */
        }

        .b-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            /* Pill shape for compactness */
            padding: 15px 25px;
            /* Reduced padding */
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all .3s ease;
        }

        .b-item:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--lime);
            transform: translateX(5px);
        }

        .b-check {
            width: 24px;
            height: 24px;
            border: 2px solid var(--lime);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--black);
            /* Checkmark color (when active) */
            flex-shrink: 0;
            background: transparent;
            transition: all 0.3s;
        }

        .b-text {
            font-family: 'Space Grotesk', sans-serif;
            /* Better font */
            font-weight: 500;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        /* Unchecked state styles - ensuring no ticks by default as requested */
        .b-item.done .b-check {
            background: var(--lime);
        }

        /* ========== RESPONSIVE ========== */
        @media(max-width:768px) {
            .bento {
                grid-template-columns: repeat(2, 1fr)
            }

            .b-card.feat {
                grid-column: span 2;
                grid-row: span 1
            }

            .p-grid {
                grid-template-columns: 1fr
            }

            .paper {
                padding: 58px 25px 40px 60px;
                background-position: 0 8px;
                line-height: 32px
            }

            .paper::before {
                left: 40px
            }

            .sticker {
                font-size: 2rem !important
            }

            .r-card {
                min-width: 260px
            }
        }

        @media(max-width:480px) {
            .bento {
                grid-template-columns: 1fr
            }

            .b-card.feat {
                grid-column: span 1
            }

            .r-card {
                min-width: 240px
            }

            .hero-heading {
                font-size: clamp(2rem, 10vw, 2.5rem);
                line-height: 1.1;
                margin-bottom: 15px
            }

            .hero-badge {
                font-size: 0.55rem;
                padding: 6px 12px;
                letter-spacing: 1px;
                margin-bottom: 25px;
                width: auto;
                max-width: 90%;
            }

            .hero-name {
                font-size: 0.7rem;
                letter-spacing: 2px;
                padding: 10px 20px;
                margin: 5px 0 10px;
                width: auto;
                max-width: 85%
            }

            .hero-sub {
                font-size: 0.95rem;
                margin-bottom: 25px;
                padding: 0 20px;
                line-height: 1.4
            }

            .sticker {
                transform: scale(0.6) !important
            }

            .sticker-box {
                font-size: 0.5rem;
                padding: 4px 8px;
                transform: scale(0.85);
                white-space: nowrap
            }

            /* Reposition "She's The One" */
            .sb-1 {
                top: 70px !important;
                right: 5% !important;
                left: auto !important;
                transform: scale(0.9) !important;
            }

            /* Reposition "My Queen" */
            .sb-2 {
                bottom: 90px !important;
                left: 5% !important;
                right: auto !important;
                background: var(--yellow) !important;
                transform: scale(0.9) !important;
            }

            .real-sticker img {
                width: 75px;
                border-width: 2px
            }

            /* Move top-right image */
            .rs-1 {
                top: 13% !important;
                right: -10px !important;
                left: auto !important;
                transform: rotate(10deg) scale(0.8) !important;
            }

            /* Move bottom-left image */
            .rs-2 {
                bottom: 18% !important;
                left: -10px !important;
                right: auto !important;
                transform: rotate(-5deg) scale(0.8) !important;
            }

            .hero-heading .stroke {
                -webkit-text-stroke: 4px var(--black);
                paint-order: stroke fill
            }

            .hero-cta {
                padding: 12px 24px;
                font-size: 0.8rem;
                width: auto;
                min-width: 200px
            }

            .intro-title {
                font-size: clamp(1.8rem, 10vw, 3rem)
            }

            .intro-btn {
                padding: 14px 30px;
                font-size: 0.85rem
            }

            .secret-card {
                padding: 30px 20px
            }
        }



        /* ========== VOICE NOTE ========== */
        .voice-section {
            padding: 80px 20px;
            background: var(--yellow);
            position: relative;
            z-index: 2;
            background-image: radial-gradient(var(--black) 1px, transparent 1px);
            background-size: 24px 24px;
        }

        .voice-card {
            max-width: 500px;
            margin: 0 auto;
            background: #fff;
            border: var(--border-thick);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 8px 8px 0 var(--black);
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            transition: transform 0.3s;
        }

        .voice-card:hover {
            transform: translate(-3px, -3px);
            box-shadow: 12px 12px 0 var(--black);
        }

        .vc-icon {
            width: 60px;
            height: 60px;
            background: var(--pink);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: 2px solid var(--black);
            flex-shrink: 0;
        }

        .vc-content {
            flex-grow: 1;
        }

        .vc-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vc-sub {
            font-size: 0.8rem;
            opacity: 0.7;
            font-family: 'Space Grotesk', sans-serif;
        }

        .vc-wave {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            height: 25px;
            margin-top: 5px;
        }

        .vc-bar {
            width: 4px;
            background: var(--black);
            border-radius: 2px;
            animation: wave 1s ease-in-out infinite;
            height: 10%;
        }

        .voice-card.playing .vc-bar {
            animation-play-state: running;
        }

        .voice-card:not(.playing) .vc-bar {
            animation-play-state: paused;
            height: 20%;
        }

        .vc-bar:nth-child(1) {
            animation-delay: 0s;
        }

        .vc-bar:nth-child(2) {
            animation-delay: 0.1s;
        }

        .vc-bar:nth-child(3) {
            animation-delay: 0.2s;
        }

        .vc-bar:nth-child(4) {
            animation-delay: 0.3s;
        }

        .vc-bar:nth-child(5) {
            animation-delay: 0.4s;
        }

        .vc-bar:nth-child(6) {
            animation-delay: 0.5s;
        }

        .vc-bar:nth-child(7) {
            animation-delay: 0.4s;
        }

        .vc-bar:nth-child(8) {
            animation-delay: 0.3s;
        }

        .vc-bar:nth-child(9) {
            animation-delay: 0.2s;
        }

        .vc-bar:nth-child(10) {
            animation-delay: 0.1s;
        }

        @keyframes wave {

            0%,
            100% {
                height: 20%;
            }

            50% {
                height: 100%;
                background: var(--pink);
            }
        }

        .vc-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--black);
            background: var(--cream);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.2s;
        }

        .vc-btn:hover {
            background: var(--pink);
            color: #fff;
            transform: scale(1.1);
        }

        @media(max-width: 500px) {
            .voice-card {
                padding: 15px;
                gap: 15px;
            }

            .vc-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .vc-btn {
                width: 45px;
                height: 45px;
            }

            .vc-title {
                font-size: 1rem;
            }
        }

        @media(max-width: 400px) {
            .voice-card {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .vc-content {
                width: 100%;
            }

            .vc-title {
                justify-content: center;
            }

            .vc-wave {
                justify-content: center;
            }

            .voice-card .vc-btn {
                width: 55px;
                height: 55px;
                margin-top: 10px;
            }
        }

        /* ========== POEMS MINIMAL ========== */
        .poems-min {
            padding: 100px 20px;
            background: #faf9f6;
            /* Off-white / Cream */
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .p-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding: 40px 60px;
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            text-align: center;
        }

        .p-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .p-slide.active {
            display: block;
            opacity: 1;
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .p-title-sm {
            font-family: 'Syne', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--pink);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .p-title-lg {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: #222;
            margin-bottom: 30px;
            font-style: italic;
        }

        .p-body {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 40px;
        }

        .p-verse {
            margin-bottom: 25px;
        }

        .p-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            color: #ccc;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .p-nav-btn:hover {
            color: var(--pink);
            transform: translateY(-50%) scale(1.1);
        }

        .p-nav-btn.prev {
            left: 10px;
        }

        .p-nav-btn.next {
            right: 10px;
        }

        .p-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .p-dot {
            width: 6px;
            height: 6px;
            background: #ddd;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .p-dot.active {
            transform: scale(1.5);
            background: var(--pink);
        }

        @media(max-width: 600px) {
            .p-container {
                padding: 30px 20px;
            }

            .p-title-lg {
                font-size: 2.2rem;
            }

            .p-body {
                font-size: 1.15rem;
            }

            .p-nav-btn {
                display: none;
            }

            /* Hide arrows on mobile, rely on swipe/dots */
        }

        /* ========== MAP CONNECTION ========== */
        .connection-map {
            padding: 80px 20px;
            background: var(--white);
            position: relative;
            z-index: 2;
            overflow: hidden;
            text-align: center;
        }

        .map-visual {
            max-width: 900px;
            margin: 40px auto;
            position: relative;
            height: 300px;
            background: rgba(0, 0, 0, 0.02);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10%;
        }

        .map-point {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .mp-icon {
            width: 60px;
            height: 60px;
            background: var(--white);
            border: 3px solid var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 6px 6px 0 var(--pink);
            transition: all 0.3s;
        }

        .map-point:hover .mp-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .mp-label {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .mp-sub {
            font-size: 0.8rem;
            opacity: 0.6;
            font-family: 'Space Grotesk', sans-serif;
        }

        .map-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .connection-line {
            fill: none;
            stroke: var(--pink);
            stroke-width: 3;
            stroke-dasharray: 10, 10;
            stroke-linecap: round;
            animation: dashMove 3s linear infinite;
        }

        @keyframes dashMove {
            to {
                stroke-dashoffset: -20;
            }
        }

        .traveling-heart {
            offset-path: path('M 150 150 Q 450 50 750 150');
            animation: travel 6s linear infinite;
            font-size: 1.8rem;
            position: absolute;
        }

        @keyframes travel {
            0% {
                offset-distance: 0%;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                offset-distance: 100%;
                opacity: 0;
            }
        }

        .distance-tag {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--black);
            color: var(--yellow);
            padding: 8px 18px;
            border-radius: 50px;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 4px 4px 0 var(--pink);
            z-index: 10;
        }

        @media(max-width: 768px) {
            .map-visual {
                padding: 0 5%;
                height: 250px;
            }

            .mp-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .mp-label {
                font-size: 0.85rem;
            }

            .traveling-heart {
                font-size: 1.4rem;
            }
        }