     /* ============================================================
                   ROOT — PINK + BLACK THEME
                   ============================================================ */
        :root {
            --pink-100: #FFF0F5;
            --pink-200: #FFD9E8;
            --pink-300: #FFB3D1;
            --pink-400: #FF8CB8;
            --pink-500: #F062A0;
            --pink-600: #D6266F;
            --pink-700: #B01A5A;
            --pink-800: #8C1249;
            --pink-900: #5C0D2F;

            --black: #1a1a1a;
            --black-light: #2d2d2d;
            --black-muted: #3d3d3d;
            --black-soft: #4a4a4a;

            --gold: #D4AF37;
            --gold-light: #F0D080;
            --cream: #FFF8F7;
            --white: #FFFFFF;
            --light-bg: #FFF5F8;
            --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
            --shadow-hover: 0 16px 56px rgba(0, 0, 0, 0.20);
            --nav-w: 250px;
            --radius: 16px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ============================================================
                   RESET & BASE
                   ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: var(--light-bg);
            color: var(--black);
            font-family: 'Jost', sans-serif;
            font-weight: 400;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1,
        h2,
        h3,
        h4,
        .display {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            line-height: 1.08;
            color: var(--black);
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }
        ::selection {
            background: var(--pink-600);
            color: #fff;
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        :focus-visible {
            outline: 2px solid var(--pink-600);
            outline-offset: 3px;
        }

        /* ============================================================
                   SCROLLBAR
                   ============================================================ */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--pink-100);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--pink-400);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--pink-600);
        }

        /* ============================================================
                   FLOATING PETALS
                   ============================================================ */
        .petal-container {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .petal {
            position: absolute;
            width: 18px;
            height: 22px;
            background: radial-gradient(circle at 30% 30%, var(--pink-300), var(--pink-600));
            border-radius: 0 70% 0 70%;
            opacity: 0.35;
            animation: floatPetal 18s linear infinite;
        }
        @keyframes floatPetal {
            0% {
                transform: translateY(-60px) rotate(0deg) scale(0.8);
                opacity: 0;
            }
            10% {
                opacity: 0.4;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(calc(100vh + 100px)) rotate(320deg) scale(1.2);
                opacity: 0;
            }
        }

        /* ============================================================
                   SIDE NAV — DARK GRADIENT (KEPT AS YOU LOVED IT)
                   ============================================================ */
        .side-nav {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: var(--nav-w);
            background: linear-gradient(160deg, #1a0a12 0%, #2d0f1e 40%, #1c0a14 100%);
            border-right: 2px solid var(--pink-700);
            z-index: 200;
            display: flex;
            flex-direction: column;
            padding: 28px 18px 24px;
            transition: transform 0.4s ease;
            box-shadow: 4px 0 40px rgba(0, 0, 0, 0.5);
        }
        .side-nav .brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 22px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 2px solid rgba(255, 179, 209, 0.25);
        }
        .side-nav .brand .logo-img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--pink-500);
            background: var(--white);
            box-shadow: 0 0 30px rgba(214, 38, 111, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
            /* --- NEW LOGO ANIMATION: gentle float + shimmer --- */
            animation: logoFloat 4.5s ease-in-out infinite;
        }
        .side-nav .brand .logo-img:hover {
            transform: scale(1.07) rotate(-3deg);
            box-shadow: 0 0 60px rgba(214, 38, 111, 0.55), 0 8px 40px rgba(0, 0, 0, 0.5);
            animation-play-state: paused;
        }

        /* --- NEW ANIMATION: float + shimmer instead of pulse --- */
        @keyframes logoFloat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(214, 38, 111, 0.20), 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 60px rgba(214, 38, 111, 0.50), 0 8px 30px rgba(0, 0, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(214, 38, 111, 0.20), 0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

        .side-nav .brand .brand-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            letter-spacing: 0.02em;
            text-shadow: 0 2px 20px rgba(214, 38, 111, 0.3);
        }
        .side-nav .brand .brand-name .sub {
            display: block;
            font-family: 'Jost', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--pink-300);
            letter-spacing: 0.06em;
            margin-top: 4px;
            text-transform: uppercase;
        }
        .side-nav .brand .brand-name .sub em {
            font-style: normal;
            color: #fff;
            font-weight: 600;
        }

        .side-nav .nav-links {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-top: 4px;
        }
        .side-nav .nav-links a {
            position: relative;
            padding: 11px 16px 11px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.65);
            border-radius: 10px;
            transition: all 0.3s ease;
            letter-spacing: 0.03em;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 3px solid transparent;
        }
        .side-nav .nav-links a .link-icon {
            display: none;
        }
        .side-nav .nav-links a .link-label {
            flex: 1;
        }
        .side-nav .nav-links a .link-arrow {
            opacity: 0;
            transform: translateX(-6px);
            transition: all 0.3s ease;
            font-size: 0.7rem;
            color: var(--pink-400);
        }
        .side-nav .nav-links a:hover .link-arrow,
        .side-nav .nav-links a.active .link-arrow {
            opacity: 1;
            transform: translateX(0);
        }
        .side-nav .nav-links a:hover,
        .side-nav .nav-links a.active {
            background: rgba(214, 38, 111, 0.2);
            color: #fff;
            border-left-color: var(--pink-500);
            padding-left: 24px;
        }
        .side-nav .nav-links a.active {
            background: rgba(214, 38, 111, 0.25);
            color: #fff;
            font-weight: 600;
            border-left-color: var(--pink-400);
            box-shadow: inset 0 0 30px rgba(214, 38, 111, 0.05);
        }

        .side-nav .nav-flourish {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--pink-400), var(--pink-600), var(--pink-400), transparent);
            margin: 14px 0 14px;
            border-radius: 2px;
        }

        .side-nav .nav-contact {
            font-size: 0.76rem;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.02em;
            text-align: center;
        }
        .side-nav .nav-contact .contact-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .side-nav .nav-contact a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 3px;
            color: var(--pink-300);
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.82rem;
        }
        .side-nav .nav-contact a:hover {
            color: #fff;
        }
        .side-nav .nav-contact a .icon {
            width: 16px;
            height: 16px;
            stroke: var(--pink-400);
            flex-shrink: 0;
            transition: stroke 0.3s ease;
        }
        .side-nav .nav-contact a:hover .icon {
            stroke: #fff;
        }

        .nav-toggle {
            position: fixed;
            top: 16px;
            left: 16px;
            z-index: 300;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--pink-300);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .nav-toggle:hover {
            background: var(--pink-100);
            border-color: var(--pink-600);
            transform: scale(1.05);
        }
        .nav-toggle svg {
            width: 22px;
            height: 22px;
            stroke: var(--black);
        }
        .nav-scrim {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
            z-index: 190;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        /* ============================================================
                   MAIN WRAPPER
                   ============================================================ */
        .main {
            margin-left: var(--nav-w);
            position: relative;
            z-index: 1;
        }

        /* ============================================================
                   SECTION COMMON
                   ============================================================ */
        section {
            padding: 90px 7vw 80px;
            position: relative;
        }
        .section-head {
            max-width: 620px;
            margin-bottom: 48px;
        }
        .section-head .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--pink-600);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-head .eyebrow::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--black);
        }
        .section-head h2 {
            font-size: clamp(2.2rem, 4.2vw, 3.4rem);
            color: var(--black);
        }
        .section-head p {
            color: var(--black-soft);
            margin-top: 10px;
            font-size: 1.02rem;
            font-weight: 300;
        }

        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================================
                   HERO SLIDER
                   ============================================================ */
        .hero {
            min-height: 100svh;
            padding: 0;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
            background: var(--pink-100);
        }
        .hero .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.2s ease;
            display: flex;
            align-items: center;
        }
        .hero .slide.active {
            opacity: 1;
        }
        .hero .slide .slide-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero .slide .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 240, 245, 0.78) 20%, rgba(0, 0, 0, 0.25) 80%);
            z-index: 1;
        }
        .hero .slide .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 7vw;
            max-width: 700px;
        }
        .hero .slide .hero-content .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--black);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            padding: 6px 18px 6px 14px;
            border-radius: 40px;
            border: 1px solid rgba(214, 38, 111, 0.2);
        }
        .hero .slide .hero-content .eyebrow::before {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--black);
        }
        .hero .slide .hero-content h1 {
            font-size: clamp(2.8rem, 6.5vw, 5rem);
            font-style: italic;
            color: var(--black);
            text-shadow: 0 2px 30px rgba(255, 255, 255, 0.3);
            margin-top: 12px;
        }
        .hero .slide .hero-content h1 em {
            font-style: normal;
            color: var(--pink-600);
        }
        .hero .slide .hero-content p {
            margin-top: 16px;
            max-width: 460px;
            color: var(--black-light);
            font-size: 1.05rem;
            font-weight: 400;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            padding: 12px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }
        .hero .slide .hero-content .hero-cta {
            display: flex;
            gap: 14px;
            margin-top: 32px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 34px;
            border-radius: 50px;
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
        }
        .btn-primary {
            background: var(--black);
            color: #fff;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.30);
        }
        .btn-primary:hover {
            background: var(--pink-700);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        }
        .btn-ghost {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            color: var(--black);
            border: 2px solid var(--black);
        }
        .btn-ghost:hover {
            background: var(--black);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
        }

        .hero .slide-dots {
            position: absolute;
            left: 7vw;
            bottom: 40px;
            z-index: 3;
            display: flex;
            gap: 12px;
        }
        .hero .slide-dots button {
            width: 32px;
            height: 4px;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.25);
            transition: all 0.4s ease;
            border: none;
        }
        .hero .slide-dots button.active {
            background: var(--black);
            width: 48px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

        /* ============================================================
                   ABOUT
                   ============================================================ */
        #about {
            background: var(--white);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
            align-items: start;
        }
        .about-copy p {
            color: var(--black-soft);
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .about-copy strong {
            color: var(--black);
            font-weight: 600;
        }
        .about-copy .experience-badge {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: var(--pink-100);
            padding: 10px 24px 10px 20px;
            border-radius: 50px;
            border-left: 4px solid var(--pink-500);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--black);
            margin: 10px 0 16px;
        }
        .about-copy .experience-badge span {
            font-family: 'Jost', sans-serif;
            font-weight: 400;
            font-size: 0.78rem;
            color: var(--pink-600);
            letter-spacing: 0.04em;
        }
        .about-copy .badge-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 18px 0 22px;
        }
        .about-copy .badge-row .badge {
            border: 1px solid var(--pink-300);
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--black);
            background: var(--pink-100);
            transition: all 0.3s ease;
        }
        .about-copy .badge-row .badge:hover {
            background: var(--pink-200);
            border-color: var(--black);
            transform: translateY(-2px);
        }
        .about-copy .owner-line {
            margin-top: 18px;
            padding-top: 16px;
            border-top: 2px solid var(--black);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 600;
            font-style: italic;
            color: var(--black);
        }
        .about-copy .owner-line span {
            display: block;
            font-family: 'Jost', sans-serif;
            font-style: normal;
            font-size: 0.78rem;
            font-weight: 400;
            color: var(--pink-500);
            letter-spacing: 0.06em;
            margin-top: 2px;
        }
        .branch-chips {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .branch-chip {
            border: 1px solid var(--pink-300);
            padding: 20px 24px;
            border-radius: var(--radius);
            background: var(--pink-100);
            border-left: 4px solid var(--pink-500);
            transition: all 0.3s ease;
        }
        .branch-chip:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow);
        }
        .branch-chip .new-tag {
            display: inline-block;
            background: var(--black);
            color: #fff;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 14px;
            border-radius: 40px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 4px;
        }
        .branch-chip h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--black);
        }
        .branch-chip p {
            color: var(--black-soft);
            font-size: 0.9rem;
            margin-top: 4px;
        }
        .branch-chip .branch-desc {
            color: var(--pink-600);
            font-size: 0.82rem;
            font-weight: 500;
            margin-top: 4px;
        }

        /* ============================================================
                   SERVICES
                   ============================================================ */
        #services {
            background: var(--pink-100);
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
        }
        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 6px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--black);
        }
        .service-card .card-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
            background: var(--pink-200);
        }
        .service-card .card-body {
            padding: 14px 16px 18px;
            text-align: center;
        }
        .service-card .card-body h3 {
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--black);
            letter-spacing: 0.02em;
        }
        .service-card .card-body .click-hint {
            font-size: 0.68rem;
            color: var(--pink-400);
            margin-top: 4px;
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }
        .service-card .card-body .click-hint svg {
            width: 12px;
            height: 12px;
            stroke: var(--pink-400);
        }

        /* ---- Service Modal ---- */
        .service-modal {
            position: fixed;
            inset: 0;
            z-index: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            padding: 20px;
        }
        .service-modal.open {
            opacity: 1;
            pointer-events: auto;
        }
        .service-modal .scrim {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
        }
        .service-modal .modal-box {
            position: relative;
            background: var(--white);
            border-radius: var(--radius);
            max-width: 460px;
            width: 100%;
            padding: 36px 32px 32px;
            transform: scale(0.92) translateY(30px);
            transition: transform 0.4s ease, opacity 0.4s ease;
            opacity: 0;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
            border: 1px solid var(--pink-200);
            max-height: 90vh;
            overflow-y: auto;
        }
        .service-modal.open .modal-box {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        .service-modal .modal-box .close-btn {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 1.8rem;
            color: var(--black-soft);
            transition: color 0.3s ease;
            line-height: 1;
            background: none;
            border: none;
            padding: 4px 8px;
            border-radius: 50%;
        }
        .service-modal .modal-box .close-btn:hover {
            color: var(--black);
            background: var(--pink-100);
        }
        .service-modal .modal-box .modal-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 16px;
            background: var(--pink-200);
        }
        .service-modal .modal-box h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--black);
        }
        .service-modal .modal-box .modal-sub {
            color: var(--pink-500);
            font-size: 0.85rem;
            margin-bottom: 14px;
            font-weight: 500;
        }
        .service-modal .modal-box ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .service-modal .modal-box ul li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 14px;
            border-radius: 8px;
            background: var(--pink-100);
            font-size: 0.95rem;
            color: var(--black);
            transition: all 0.3s ease;
            animation: slideUp 0.35s ease backwards;
        }
        .service-modal .modal-box ul li:nth-child(1) {
            animation-delay: 0.04s;
        }
        .service-modal .modal-box ul li:nth-child(2) {
            animation-delay: 0.08s;
        }
        .service-modal .modal-box ul li:nth-child(3) {
            animation-delay: 0.12s;
        }
        .service-modal .modal-box ul li:nth-child(4) {
            animation-delay: 0.16s;
        }
        .service-modal .modal-box ul li:nth-child(5) {
            animation-delay: 0.20s;
        }
        .service-modal .modal-box ul li:nth-child(6) {
            animation-delay: 0.24s;
        }
        .service-modal .modal-box ul li:hover {
            background: var(--pink-200);
            transform: translateX(4px);
        }
        .service-modal .modal-box ul li .dot {
            width: 8px;
            height: 8px;
            background: var(--black);
            border-radius: 50%;
            flex-shrink: 0;
        }
        @keyframes slideUp {
            0% {
                opacity: 0;
                transform: translateY(14px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================================
                   BRIDAL — TALLER IMAGE (aspect-ratio: 3/4)
                   ============================================================ */
        #bridal {
            background: var(--white);
        }
        .bridal-wrap {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 50px;
            align-items: center;
        }
        .bridal-wrap .bridal-visual {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 3px solid var(--pink-300);
        }
        .bridal-wrap .bridal-visual img {
            width: 100%;
            height: auto;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .bridal-wrap .bridal-visual:hover img {
            transform: scale(1.03);
        }
        .bridal-wrap .bridal-copy p {
            color: var(--black-soft);
            max-width: 48ch;
        }
        .bridal-wrap .bridal-list {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .bridal-wrap .bridal-list li {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px dashed var(--pink-200);
            padding-bottom: 8px;
            font-size: 0.95rem;
        }
        .bridal-wrap .bridal-list li span:first-child {
            color: var(--black);
            font-weight: 500;
        }
        .bridal-wrap .bridal-list li span:last-child {
            color: var(--pink-600);
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-style: italic;
        }

        /* ============================================================
                   GALLERY
                   ============================================================ */
        #gallery {
            background: var(--white);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .gallery-grid .gallery-item {
            overflow: hidden;
            border-radius: 12px;
            position: relative;
            cursor: pointer;
            aspect-ratio: 1 / 1;
            background: var(--black);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 3px solid transparent;
        }
        .gallery-grid .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
            will-change: transform;
        }
        .gallery-grid .gallery-item:hover img {
            transform: scale(1.12);
            filter: brightness(0.7) saturate(1.1);
        }
        .gallery-grid .gallery-item:hover {
            border-color: var(--pink-500);
            box-shadow: 0 12px 40px rgba(214, 38, 111, 0.25);
            transform: translateY(-6px) scale(1.01);
            z-index: 2;
        }

        .gallery-grid .gallery-item .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px 18px;
            color: #fff;
        }
        .gallery-grid .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        .gallery-grid .gallery-item .gallery-overlay .gallery-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 600;
            transform: translateY(12px);
            transition: transform 0.4s ease 0.05s;
            color: #fff;
        }
        .gallery-grid .gallery-item:hover .gallery-overlay .gallery-label {
            transform: translateY(0);
        }
        .gallery-grid .gallery-item .gallery-overlay .gallery-sub {
            font-size: 0.7rem;
            font-weight: 300;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            transform: translateY(8px);
            transition: transform 0.4s ease 0.1s;
        }
        .gallery-grid .gallery-item:hover .gallery-overlay .gallery-sub {
            transform: translateY(0);
        }

        .gallery-grid .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
            aspect-ratio: auto;
        }
        .gallery-grid .gallery-item:nth-child(4) {
            grid-column: span 2;
            aspect-ratio: auto;
        }
        .gallery-grid .gallery-item:nth-child(6) {
            grid-row: span 2;
            aspect-ratio: auto;
        }

        /* ---- Gallery Lightbox ---- */
        .gallery-lightbox {
            position: fixed;
            inset: 0;
            z-index: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            padding: 40px 20px;
            background: rgba(0, 0, 0, 0.88);
            backdrop-filter: blur(16px);
        }
        .gallery-lightbox.open {
            opacity: 1;
            pointer-events: auto;
        }
        .gallery-lightbox .lightbox-close {
            position: absolute;
            top: 24px;
            right: 32px;
            font-size: 2.8rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease, color 0.3s ease;
            line-height: 1;
            padding: 4px 12px;
            border-radius: 8px;
            z-index: 10;
        }
        .gallery-lightbox .lightbox-close:hover {
            transform: rotate(90deg);
            color: var(--pink-400);
        }
        .gallery-lightbox .lightbox-img-wrap {
            max-width: 90vw;
            max-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .gallery-lightbox .lightbox-img-wrap img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            border: 3px solid rgba(255, 255, 255, 0.12);
            background: var(--black);
        }
        .gallery-lightbox .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        .gallery-lightbox .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.08);
        }
        .gallery-lightbox .lightbox-nav.prev {
            left: 20px;
        }
        .gallery-lightbox .lightbox-nav.next {
            right: 20px;
        }
        .gallery-lightbox .lightbox-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.06em;
            background: rgba(0, 0, 0, 0.4);
            padding: 6px 18px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* ============================================================
                   CONTACT
                   ============================================================ */
        #contact {
            background: var(--pink-100);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 50px;
        }
        .branch-card {
            border: 1px solid var(--pink-200);
            border-radius: var(--radius);
            padding: 24px 26px 28px;
            margin-bottom: 20px;
            background: var(--white);
            transition: all 0.3s ease;
            border-left: 4px solid var(--pink-500);
        }
        .branch-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }
        .branch-card .new-tag {
            display: inline-block;
            background: var(--black);
            color: #fff;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 14px;
            border-radius: 40px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 4px;
        }
        .branch-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--black);
        }
        .branch-card p {
            color: var(--black-soft);
            font-size: 0.9rem;
            margin-top: 4px;
            line-height: 1.6;
        }
        .branch-card .phones {
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .branch-card .phones a {
            font-size: 0.92rem;
            color: var(--black);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }
        .branch-card .phones a:hover {
            color: var(--pink-600);
        }
        .branch-card .phones a .icon {
            width: 16px;
            height: 16px;
            stroke: var(--black);
        }
        .branch-card .map-link {
            margin-top: 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--black);
            transition: color 0.3s ease;
        }
        .branch-card .map-link:hover {
            color: var(--pink-600);
        }
        .branch-card .map-link .icon {
            width: 14px;
            height: 14px;
            stroke: currentColor;
        }
        .branch-card .mini-map {
            margin-top: 14px;
            border-radius: 10px;
            overflow: hidden;
            height: 140px;
            border: 2px solid var(--pink-300);
        }
        .branch-card .mini-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ---- Enquiry Form ---- */
        .enquiry-form {
            border: 1px solid var(--pink-300);
            border-radius: var(--radius);
            padding: 32px 30px;
            background: var(--white);
            box-shadow: var(--shadow);
        }
        .enquiry-form h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--black);
        }
        .enquiry-form>p {
            color: var(--black-soft);
            font-size: 0.88rem;
            margin-bottom: 22px;
        }
        .enquiry-form .form-row {
            margin-bottom: 18px;
        }
        .enquiry-form .form-row label {
            display: block;
            font-size: 0.76rem;
            font-weight: 500;
            color: var(--black);
            letter-spacing: 0.04em;
            margin-bottom: 6px;
        }
        .enquiry-form .form-row input,
        .enquiry-form .form-row select,
        .enquiry-form .form-row textarea {
            width: 100%;
            background: var(--white);
            border: 1.5px solid var(--pink-200);
            border-radius: 10px;
            padding: 10px 14px;
            color: var(--black);
            font-family: 'Jost', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .enquiry-form .form-row input:focus,
        .enquiry-form .form-row select:focus,
        .enquiry-form .form-row textarea:focus {
            border-color: var(--black);
            box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
            outline: none;
        }
        .enquiry-form .form-row select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1a1a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
        }
        .enquiry-form .form-row select option {
            background: var(--white);
            color: var(--black);
        }
        .enquiry-form .form-row textarea {
            resize: vertical;
            min-height: 70px;
        }
        .enquiry-form .form-two {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .enquiry-form .form-submit {
            width: 100%;
            justify-content: center;
            background: var(--black);
            color: #fff;
            padding: 14px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 4px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
            border: none;
        }
        .enquiry-form .form-submit:hover {
            background: var(--pink-700);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30);
        }
        .enquiry-form .form-submit .icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* ============================================================
                   FOOTER — FIXED FOR MOBILE VISIBILITY
                   ============================================================ */
        footer {
            padding: 30px 7vw 26px;
            border-top: 2px solid var(--pink-300);
            background: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.82rem;
            color: var(--black-soft);
        }
        footer .foot-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
        }
        footer .foot-credit a {
            color: var(--pink-600);
            font-weight: 600;
            transition: color 0.3s ease;
        }
        footer .foot-credit a:hover {
            color: var(--black);
            text-decoration: underline;
        }

        /* ============================================================
                   FLOATING BUTTONS — FIXED FOR MOBILE
                   ============================================================ */
        .fab-wrap {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 250;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }
        .fab {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border: none;
        }
        .fab:hover {
            transform: scale(1.08);
        }
        .fab-whatsapp {
            background: #25D366;
            position: relative;
        }
        .fab-whatsapp::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid #25D366;
            opacity: 0.5;
            animation: pulseWA 2.4s ease-out infinite;
        }
        @keyframes pulseWA {
            0% {
                transform: scale(0.9);
                opacity: 0.6;
            }
            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }
        .fab-whatsapp svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }
        .fab-top {
            background: var(--white);
            border: 1px solid var(--pink-300);
            opacity: 0;
            pointer-events: none;
            transform: translateY(12px);
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .fab-top.show {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .fab-top:hover {
            background: var(--pink-100);
            border-color: var(--pink-600);
        }
        .fab-top svg {
            width: 20px;
            height: 20px;
            stroke: var(--black);
        }

        /* ============================================================
                   RESPONSIVE — FIXED FOR MOBILE VISIBILITY
                   ============================================================ */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .bridal-wrap {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .gallery-grid .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 2;
            }
            .gallery-grid .gallery-item:nth-child(4) {
                grid-column: span 2;
            }
            .gallery-grid .gallery-item:nth-child(6) {
                grid-row: span 2;
            }
        }

        @media (max-width: 800px) {
            :root {
                --nav-w: 280px;
            }
            .side-nav {
                transform: translateX(-100%);
                box-shadow: 8px 0 40px rgba(0, 0, 0, 0.10);
            }
            .side-nav.open {
                transform: translateX(0);
            }
            .nav-toggle {
                display: flex;
            }
            .nav-scrim.show {
                opacity: 1;
                pointer-events: auto;
            }
            .main {
                margin-left: 0;
            }
            section {
                padding: 70px 5vw 60px;
            }
            .hero .slide .hero-content {
                padding: 0 5vw;
            }
            .hero .slide-dots {
                left: 5vw;
                bottom: 28px;
            }
            .service-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 14px;
            }
            .service-card .card-img {
                height: 130px;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .gallery-grid .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 2;
            }
            .gallery-grid .gallery-item:nth-child(4) {
                grid-column: span 2;
            }
            .gallery-grid .gallery-item:nth-child(6) {
                grid-row: span 2;
            }
            .enquiry-form .form-two {
                grid-template-columns: 1fr;
            }
            footer {
                flex-direction: column;
                text-align: center;
                padding: 24px 4vw 20px;
                gap: 8px;
            }
            footer .foot-brand {
                font-size: 1rem;
            }
            footer .foot-credit {
                font-size: 0.78rem;
            }
            .gallery-lightbox .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .gallery-lightbox .lightbox-nav.prev {
                left: 8px;
            }
            .gallery-lightbox .lightbox-nav.next {
                right: 8px;
            }
            .gallery-lightbox .lightbox-close {
                top: 16px;
                right: 20px;
                font-size: 2rem;
            }
            .fab-wrap {
                right: 16px;
                bottom: 16px;
                gap: 10px;
            }
            .fab {
                width: 50px;
                height: 50px;
            }
            .fab-whatsapp svg {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 50px 4vw 40px;
            }
            .service-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .service-card .card-img {
                height: 110px;
            }
            .service-card .card-body h3 {
                font-size: 0.85rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .gallery-grid .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 2;
            }
            .gallery-grid .gallery-item:nth-child(4) {
                grid-column: span 2;
            }
            .gallery-grid .gallery-item:nth-child(6) {
                grid-row: span 2;
            }
            .hero .slide .hero-content h1 {
                font-size: 2rem;
            }
            .hero .slide .hero-content p {
                font-size: 0.9rem;
                padding: 10px 14px;
            }
            .btn {
                padding: 10px 22px;
                font-size: 0.82rem;
            }
            .branch-card .mini-map {
                height: 100px;
            }
            .service-modal .modal-box {
                padding: 24px 18px 22px;
                margin: 10px;
            }
            .service-modal .modal-box .modal-img {
                height: 130px;
            }
            .gallery-lightbox {
                padding: 16px 8px;
            }
            .gallery-lightbox .lightbox-img-wrap img {
                max-height: 70vh;
            }
            .gallery-lightbox .lightbox-nav {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .gallery-lightbox .lightbox-counter {
                font-size: 0.7rem;
                padding: 4px 14px;
                bottom: 16px;
            }
            footer .foot-brand {
                font-size: 0.9rem;
            }
            footer .foot-credit {
                font-size: 0.7rem;
            }
            .fab-wrap {
                right: 12px;
                bottom: 12px;
                gap: 8px;
            }
            .fab {
                width: 44px;
                height: 44px;
            }
            .fab-whatsapp svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 380px) {
            .service-grid {
                grid-template-columns: 1fr;
            }
        }