:root {
            --rose: #e8556d;
            --blush: #f7cdd6;
            --petal: #fdf0f3;
            --gold: #c8945a;
            --cream: #fef9f5;
            --sage: #7a9e7e;
            --deep: #1a0f12;
            --text: #3b2028;
            --muted: #9e7a82;
            --white: #ffffff;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ── CURSOR ── */
        .cursor {
            width: 16px;
            height: 16px;
            background: var(--rose);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform .15s ease, width .2s, height .2s, background .2s;
            mix-blend-mode: multiply;
        }

        /* ── NAVBAR ── */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 20px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background .3s, backdrop-filter .3s, box-shadow .3s;
        }

        nav.scrolled {
            background: rgba(254, 249, 245, .92);
            backdrop-filter: blur(18px);
            box-shadow: 0 2px 30px rgba(232, 85, 109, .08);
        }

        .logo {
            display: flex;
            flex-direction: column;
            line-height: 1;
            text-decoration: none;
        }

        .logo-top {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            color: var(--rose);
            letter-spacing: -0.5px;
        }

        .logo-bottom {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.82rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--rose);
            transition: width .3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--rose);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.82rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 500;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 6px 20px rgba(232, 85, 109, .3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(232, 85, 109, .4);
        }

        /* hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 26px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all .3s;
        }

        /* ── HERO ── */
        #home {
            min-height: 100vh;
            background: var(--deep);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 100px;
            padding-bottom: 60px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 80% at 80% 50%, rgba(232, 85, 109, .18) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200, 148, 90, .12) 0%, transparent 60%);
        }

        /* Floating decorative circles */
        .float-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 85, 109, .15), transparent 70%);
            animation: floatUp 8s ease-in-out infinite;
        }

        .fc1 {
            width: 320px;
            height: 320px;
            top: -80px;
            right: 15%;
            animation-delay: 0s;
        }

        .fc2 {
            width: 180px;
            height: 180px;
            bottom: 10%;
            left: 5%;
            animation-delay: -3s;
            background: radial-gradient(circle, rgba(200, 148, 90, .12), transparent);
        }

        .fc3 {
            width: 90px;
            height: 90px;
            top: 30%;
            right: 5%;
            animation-delay: -5s;
        }

        @keyframes floatUp {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-20px) scale(1.05);
            }
        }

        /* balloon decorative elements */
        .balloon-deco {
            position: absolute;
            right: 8%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            opacity: .55;
        }

        .balloon {
            width: 70px;
            height: 85px;
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            position: relative;
            animation: sway 4s ease-in-out infinite;
        }

        .balloon::after {
            content: '';
            position: absolute;
            bottom: -18px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 60px;
            background: rgba(255, 255, 255, .3);
        }

        .b1 {
            background: linear-gradient(135deg, #f7cdd6, #e8556d);
            animation-delay: 0s;
        }

        .b2 {
            background: linear-gradient(135deg, #fde68a, #c8945a);
            margin-top: 30px;
            animation-delay: -1.5s;
            width: 55px;
            height: 68px;
        }

        .b3 {
            background: linear-gradient(135deg, #bbf7d0, #7a9e7e);
            margin-top: 25px;
            animation-delay: -3s;
            width: 80px;
            height: 96px;
        }

        @keyframes sway {

            0%,
            100% {
                transform: rotate(-4deg);
            }

            50% {
                transform: rotate(4deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 5%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232, 85, 109, .15);
            border: 1px solid rgba(232, 85, 109, .3);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--blush);
            margin-bottom: 24px;
        }

        .hero-badge span {
            width: 6px;
            height: 6px;
            background: var(--rose);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: .3;
            }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 6vw, 5.5rem);
            line-height: 1.05;
            color: var(--white);
            margin-bottom: 10px;
        }

        .hero-title .accent {
            color: var(--rose);
            font-style: italic;
        }

        .hero-title .gold {
            color: var(--gold);
        }

        .hero-sub {
            font-family: 'Dancing Script', cursive;
            font-size: clamp(1.4rem, 3vw, 2rem);
            color: var(--blush);
            margin-bottom: 20px;
        }

        .hero-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.8;
            max-width: 480px;
            margin-bottom: 40px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--rose);
            color: var(--white);
            padding: 14px 34px;
            border-radius: 50px;
            font-size: 0.88rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 8px 30px rgba(232, 85, 109, .4);
            transition: transform .2s, box-shadow .2s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(232, 85, 109, .5);
        }

        .btn-outline {
            border: 1.5px solid rgba(255, 255, 255, .3);
            color: var(--white);
            padding: 14px 34px;
            border-radius: 50px;
            font-size: 0.88rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 500;
            transition: background .2s, border-color .2s;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .6);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
        }

        .hero-visual {
            position: relative;
            padding-right: 5%;
            animation: floatImage 6s ease-in-out infinite;
        }

        .hero-visual-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--white);
            padding: 16px 24px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        @keyframes floatImage {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .stat-item {
            color: var(--white);
        }

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            display: block;
            color: var(--rose);
        }

        .stat-label {
            font-size: 0.72rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            opacity: .6;
        }

        /* ── MARQUEE ── */
        .marquee-strip {
            background: var(--rose);
            padding: 14px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-track {
            display: inline-flex;
            animation: marquee 25s linear infinite;
        }

        .marquee-track span {
            font-size: 0.78rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
            padding: 0 24px;
            opacity: .9;
            font-weight: 500;
        }

        .marquee-track span.dot {
            opacity: .5;
            padding: 0 8px;
        }

        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* ── SECTION SHARED ── */
        section {
            padding: 90px 5%;
        }

        .section-label {
            font-size: 0.72rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--rose);
            font-weight: 500;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-label::before {
            content: '';
            display: block;
            width: 30px;
            height: 1.5px;
            background: var(--rose);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.2rem);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .section-title em {
            color: var(--rose);
            font-style: italic;
        }

        .section-desc {
            color: var(--muted);
            line-height: 1.8;
            max-width: 520px;
        }

        /* ── SERVICES ── */
        #services {
            background: var(--petal);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 52px;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            transition: transform .3s, box-shadow .3s;
            cursor: default;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(232, 85, 109, .12);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--rose), var(--gold));
        }

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 20px;
            background: var(--petal);
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.7;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 18px;
        }

        .service-tags span {
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 50px;
            background: var(--petal);
            color: var(--muted);
            letter-spacing: .5px;
        }

        /* ── GALLERY ── */
        #gallery {
            background: var(--deep);
            padding: 90px 5%;
        }

        #gallery .section-label {
            color: var(--blush);
        }

        #gallery .section-label::before {
            background: var(--blush);
        }

        #gallery .section-title {
            color: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto;
            gap: 16px;
            margin-top: 48px;
        }

        .g-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background: rgba(255, 255, 255, .05);
        }

        .g-item.tall {
            grid-row: span 2;
        }

        .g-item.wide {
            grid-column: span 2;
        }

        .g-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: transform .4s;
        }

        .g-item.tall .g-placeholder {
            aspect-ratio: 3/5;
        }

        .g-item.wide .g-placeholder {
            aspect-ratio: 16/7;
        }

        .g-item:hover .g-placeholder {
            transform: scale(1.04);
        }

        /* Each card gets a tinted gradient background */
        .g1 {
            background: linear-gradient(135deg, #4a1525, #e8556d22);
        }

        .g2 {
            background: linear-gradient(135deg, #1a2a1a, #7a9e7e22);
        }

        .g3 {
            background: linear-gradient(135deg, #2a1f0f, #c8945a22);
        }

        .g4 {
            background: linear-gradient(135deg, #1a0f1f, #9b59b622);
        }

        .g5 {
            background: linear-gradient(135deg, #0f1e22, #3498db22);
        }

        .g6 {
            background: linear-gradient(135deg, #221010, #e8556d22);
        }

        .g-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px 20px 18px;
            background: linear-gradient(transparent, rgba(10, 5, 7, .8));
            color: var(--white);
        }

        .g-label h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
        }

        .g-label p {
            font-size: 0.72rem;
            opacity: .6;
            letter-spacing: .5px;
        }

        /* ── WHY US ── */
        #why {
            background: var(--cream);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 52px;
        }

        .why-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .why-card-big {
            width: 320px;
            height: 380px;
            border-radius: 30px;
            background: linear-gradient(135deg, #f7cdd6, #e8556d);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(232, 85, 109, .25);
        }

        .why-card-big::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            top: -60px;
            right: -60px;
        }

        .why-float-card {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--white);
            border-radius: 18px;
            padding: 16px 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
        }

        .why-float-card .big-num {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--rose);
            font-weight: 900;
        }

        .why-float-card small {
            font-size: 0.72rem;
            color: var(--muted);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .why-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .why-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
        }

        .why-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: var(--petal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .why-item h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            margin-bottom: 4px;
        }

        .why-item p {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ── OCCASIONS ── */
        #occasions {
            background: var(--petal);
        }

        .occasions-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 8px 4px 20px;
            margin-top: 40px;
            scrollbar-width: none;
        }

        .occasions-scroll::-webkit-scrollbar {
            display: none;
        }

        .oc-pill {
            min-width: 160px;
            padding: 28px 20px;
            border-radius: 20px;
            background: var(--white);
            text-align: center;
            cursor: default;
            transition: transform .2s, box-shadow .2s;
            border: 2px solid transparent;
        }

        .oc-pill:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(232, 85, 109, .12);
            border-color: var(--blush);
        }

        .oc-pill .oc-icon {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .oc-pill span {
            font-size: 0.8rem;
            color: var(--text);
            font-weight: 500;
            letter-spacing: .3px;
        }

        /* ── BOOKING ── */
        #book {
            background: linear-gradient(135deg, var(--deep) 0%, #2d1020 100%);
            padding: 90px 5%;
        }

        #book .section-label {
            color: var(--blush);
        }

        #book .section-label::before {
            background: var(--blush);
        }

        #book .section-title {
            color: var(--white);
        }

        .book-layout {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 64px;
            margin-top: 52px;
            align-items: start;
        }

        .book-info {
            color: rgba(255, 255, 255, .7);
        }

        .book-info p {
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: rgba(232, 85, 109, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .contact-item strong {
            display: block;
            color: var(--white);
            font-size: 0.9rem;
        }

        .contact-item small {
            font-size: 0.8rem;
            opacity: .6;
        }

        .book-form {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 24px;
            padding: 40px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 7px;
            margin-bottom: 16px;
        }

        .form-group label {
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 12px;
            padding: 13px 16px;
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            transition: border-color .2s, background .2s;
            outline: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, .3);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--rose);
            background: rgba(232, 85, 109, .06);
        }

        .form-group select option {
            background: #2d1020;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 90px;
        }

        .form-submit {
            width: 100%;
            background: var(--rose);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 15px 32px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 8px 30px rgba(232, 85, 109, .4);
            margin-top: 8px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(232, 85, 109, .5);
        }

        /* ── TESTIMONIALS ── */
        #reviews {
            background: var(--cream);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .review-card {
            background: var(--white);
            border-radius: 20px;
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: transform .3s;
        }

        .review-card:hover {
            transform: translateY(-4px);
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            right: 16px;
            font-family: 'Playfair Display', serif;
            font-size: 8rem;
            color: var(--petal);
            line-height: 1;
            pointer-events: none;
        }

        .stars {
            color: #f59e0b;
            font-size: 0.9rem;
            margin-bottom: 14px;
            letter-spacing: 2px;
        }

        .review-text {
            font-size: 0.9rem;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blush), var(--rose));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--white);
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .reviewer strong {
            font-size: 0.88rem;
            display: block;
        }

        .reviewer small {
            font-size: 0.75rem;
            color: var(--muted);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--deep);
            color: rgba(255, 255, 255, .65);
            padding: 64px 5% 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .logo-top {
            display: block;
            margin-bottom: 6px;
        }

        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.8;
            margin-top: 16px;
            max-width: 280px;
        }

        footer h5 {
            font-family: 'Playfair Display', serif;
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        footer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        footer ul li a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, .55);
            text-decoration: none;
            transition: color .2s;
        }

        footer ul li a:hover {
            color: var(--rose);
        }

        .footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 14px;
            font-size: 0.85rem;
        }

        .footer-contact-item span:first-child {
            opacity: .5;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: gap;
            font-size: 0.78rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .06);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: rgba(255, 255, 255, .7);
            font-size: 0.85rem;
            transition: background .2s, color .2s;
        }

        .social-link:hover {
            background: var(--rose);
            color: var(--white);
        }

        /* ── WHATSAPP FLOAT ── */
        .wa-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 200;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.6rem;
            box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
            animation: bloop 3s ease-in-out infinite;
        }

        @keyframes bloop {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {

            .nav-links,
            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .why-grid,
            .book-layout {
                grid-template-columns: 1fr;
            }

            .why-visual {
                display: none;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }

            .g-item.wide {
                grid-column: span 1;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .balloon-deco {
                display: none;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }

            .hero-badge {
                justify-content: center;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero-visual {
                padding-right: 0;
            }

            .hero-visual-badge {
                left: 50%;
                transform: translateX(-50%);
                bottom: -20px;
                width: max-content;
            }
        }

        @media (max-width: 600px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .g-item.tall {
                grid-row: span 1;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-btns {
                flex-direction: column;
            }

            .hero-btns a {
                text-align: center;
            }
        }

        /* mobile nav overlay */
        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 150;
            background: rgba(26, 15, 18, .97);
            backdrop-filter: blur(20px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav a {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--white);
            text-decoration: none;
            transition: color .2s;
        }

        .mobile-nav a:hover {
            color: var(--rose);
        }

        .mobile-close {
            position: absolute;
            top: 24px;
            right: 5%;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.6rem;
            cursor: pointer;
        }