        :root {
            --color-ink: #081b29;
            --color-deep: #0c3047;
            --color-mid: #145d67;
            --color-mid-light: #1e7a86;
            --color-cream: #f3efe6;
            --color-cream-light: #fbf7ef;
            --color-accent: #ffb703;
            --color-accent-soft: #ffd166;
            --color-accent-coral: #ff7b54;
            --color-muted: #5b6b76;
            --shadow-soft: 0 18px 45px rgba(8, 27, 41, .10);
            --shadow-strong: 0 24px 70px rgba(8, 27, 41, .18);
        }

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

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--color-ink);
            background:
                radial-gradient(circle at top, rgba(255, 183, 3, .08), transparent 24%),
                linear-gradient(180deg, #fffdf8 0%, #fff8ee 100%);
        }

        /* ── NAV ── */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all .4s ease;
        }

        #navbar.scrolled {
            background: rgba(8, 27, 41, .9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            box-shadow: 0 16px 45px rgba(8, 27, 41, .24);
        }

        .nav-link {
            position: relative;
            color: #fff;
            font-size: .85rem;
            letter-spacing: .06em;
            text-transform: uppercase;
            font-weight: 500;
            transition: color .3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width .3s;
        }

        .nav-link:hover {
            color: var(--color-accent);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--color-accent);
        }

        .nav-link.active::after {
            width: 100%;
        }

        .brand-lockup {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-mark {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-coral));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 30px rgba(255, 123, 84, .28);
        }

        .brand-mark span {
            font-family: 'Fraunces', serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-deep);
            letter-spacing: .02em;
            line-height: 1;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-title {
            font-family: 'Fraunces', serif;
            font-size: 1.82rem;
            font-weight: 700;
            letter-spacing: .02em;
            color: #fff;
            line-height: .95;
        }

        .brand-subtitle {
            color: rgba(243, 239, 230, .72);
            text-transform: uppercase;
            letter-spacing: .22em;
            font-size: .6rem;
            font-weight: 700;
            margin-top: 5px;
        }

        .footer-brand .brand-mark {
            width: 42px;
            height: 42px;
            box-shadow: none;
        }

        .footer-brand .brand-title {
            font-size: 1.7rem;
            color: var(--color-cream);
        }

        .footer-brand .brand-subtitle {
            color: rgba(243, 239, 230, .55);
        }

        /* ── HERO ── */
        .hero-section {
            min-height: 100vh;
            background:
                radial-gradient(circle at 50% 10%, rgba(255, 209, 102, .18), transparent 22%),
                linear-gradient(135deg, #07131d 0%, #0b2f46 54%, #123f55 100%);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            inset: auto 8% -18% 8%;
            height: 360px;
            background: radial-gradient(circle at center, rgba(255, 183, 3, .16), transparent 72%);
            filter: blur(10px);
            pointer-events: none;
        }

        .hero-veil {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(4, 15, 24, .56) 0%, rgba(4, 15, 24, .50) 30%, rgba(4, 15, 24, .72) 100%),
                radial-gradient(circle at 50% 28%, rgba(4, 15, 24, .08), rgba(4, 15, 24, .62) 82%);
            z-index: 1;
        }

        .hero-grain {
            position: absolute;
            inset: 0;
            opacity: .06;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: .12;
            background-image:
                linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
            background-size: 72px 72px;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 85%);
        }

        .hero-img {
            position: absolute;
            inset: 0;
            object-fit: cover;
            width: 100%;
            height: 100%;
            opacity: .24;
            transform: scale(1.04);
            filter: saturate(.78) contrast(1.04) brightness(.78);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: .74rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            font-weight: 800;
            color: var(--color-accent-soft);
            padding: .8rem 1.1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, .08);
            box-shadow: inset 0 0 0 1px rgba(255, 209, 102, .18);
            backdrop-filter: blur(12px);
        }

        .hero-lead {
            max-width: 50rem;
            margin-left: auto;
            margin-right: auto;
            color: rgba(243, 239, 230, .88);
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.85;
        }

        .hero-feature-row {
            display: flex;
            flex-wrap: wrap;
            gap: .75rem;
            justify-content: center;
        }

        .hero-feature-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: .75rem 1.05rem;
            border-radius: 999px;
            font-size: .82rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .92);
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            backdrop-filter: blur(10px);
        }

        .hero-trust-panel {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1px;
            border-radius: 24px;
            overflow: hidden;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .14);
            box-shadow: 0 22px 55px rgba(2, 10, 16, .22);
            backdrop-filter: blur(16px);
        }

        .hero-trust-item {
            padding: 1.45rem 1rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
        }

        .hero-trust-number {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.8rem, 3.2vw, 2.5rem);
            line-height: 1;
            color: var(--color-accent-soft);
            margin-bottom: .5rem;
        }

        .hero-trust-label {
            color: rgba(243, 239, 230, .78);
            font-size: .85rem;
            letter-spacing: .04em;
        }

        .page-intro {
            background:
                radial-gradient(circle at 50% 0, rgba(255, 209, 102, .26), transparent 24%),
                linear-gradient(135deg, #07131d 0%, #0b3854 54%, #145d67 100%);
            isolation: isolate;
        }

        .page-intro::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(5, 16, 24, .18) 0%, rgba(5, 16, 24, .08) 40%, rgba(5, 16, 24, .22) 100%);
            z-index: 0;
        }

        .page-intro .hero-pattern {
            opacity: .18;
            background-image:
                linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .95), rgba(0, 0, 0, .55));
        }

        .page-intro .section-tag {
            color: var(--color-accent-soft) !important;
            background: rgba(255, 255, 255, .08);
            box-shadow: inset 0 0 0 1px rgba(255, 209, 102, .18);
        }

        .page-intro .section-tag span {
            background: var(--color-accent-soft) !important;
            opacity: .95;
        }

        .page-intro h1 {
            color: #fff;
            text-shadow: 0 10px 28px rgba(0, 0, 0, .18);
        }

        .page-intro p {
            color: rgba(243, 239, 230, .9) !important;
        }

        .gold-line {
            width: 60px;
            height: 3px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-coral));
            color: var(--color-deep);
            font-weight: 800;
            border-radius: 999px;
            transition: all .28s ease;
            letter-spacing: .02em;
            box-shadow: 0 12px 30px rgba(255, 123, 84, .24);
            border: 1px solid rgba(255, 255, 255, .16);
        }

        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 36px rgba(255, 123, 84, .35);
        }

        .btn-outline-white {
            border: 1.5px solid rgba(255, 255, 255, .52);
            color: #fff;
            font-weight: 700;
            border-radius: 999px;
            transition: all .3s;
            letter-spacing: .04em;
            background: rgba(255, 255, 255, .04);
            backdrop-filter: blur(8px);
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, .14);
            border-color: rgba(255, 255, 255, .92);
            transform: translateY(-3px);
        }

        .btn-wa {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            font-weight: 800;
            border-radius: 999px;
            transition: all .3s;
            letter-spacing: .02em;
            box-shadow: 0 12px 28px rgba(37, 211, 102, .28);
        }

        .btn-wa:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 34px rgba(37, 211, 102, .38);
        }

        /* ── SECTION STYLES ── */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: .72rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--color-accent);
            font-weight: 700;
            padding: .55rem .9rem;
            border-radius: 999px;
            background: rgba(255, 183, 3, .08);
            box-shadow: inset 0 0 0 1px rgba(255, 183, 3, .16);
        }

        .section-title {
            font-family: 'Fraunces', serif;
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -.02em;
            color: var(--color-ink);
        }

        /* ── PRODUCT CARDS ── */
        .product-card {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all .4s ease;
            background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 248, 238, .96));
            border: 1px solid rgba(12, 48, 71, .07);
        }

        .product-card:hover {
            transform: translateY(-12px) scale(1.01);
            box-shadow: var(--shadow-strong);
            border-color: rgba(255, 183, 3, .28);
        }

        .product-card img {
            transition: transform .5s ease;
        }

        .product-card:hover img {
            transform: scale(1.06);
        }

        /* ── WHY US CARDS ── */
        .why-card {
            border: 1px solid rgba(12, 48, 71, .09);
            border-radius: 24px;
            padding: 2rem;
            transition: all .35s;
            background: linear-gradient(180deg, #fff, #fffaf2);
            box-shadow: 0 10px 30px rgba(8, 27, 41, .04);
        }

        .why-card:hover {
            border-color: rgba(255, 183, 3, .3);
            background: linear-gradient(180deg, #fff, #f7fbfc);
            box-shadow: 0 18px 45px rgba(8, 27, 41, .1);
            transform: translateY(-6px);
        }

        .icon-box {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--color-deep), var(--color-mid-light));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: 0 14px 30px rgba(8, 27, 41, .18);
        }

        /* ── GALLERY ── */
        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            aspect-ratio: 1;
            box-shadow: var(--shadow-soft);
        }

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

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(8, 27, 41, .88) 0%, rgba(8, 27, 41, .24) 55%, transparent 100%);
            opacity: 0;
            transition: opacity .3s;
            display: flex;
            align-items: flex-end;
            padding: 1.25rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* ── STATS ── */
        .stat-card {
            text-align: center;
            padding: 1.75rem 1rem;
            border-right: 1px solid rgba(243, 239, 230, .14);
            background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
        }

        .stat-card:last-child {
            border-right: none;
        }

        /* ── FLOATING WA ── */
        #wa-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            width: 62px;
            height: 62px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25D366, #128C7E);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 16px 36px rgba(37, 211, 102, .34);
            cursor: pointer;
            transition: all .3s;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, .22);
        }

        #wa-float:hover {
            transform: scale(1.12) translateY(-3px);
            box-shadow: 0 18px 42px rgba(37, 211, 102, .44);
        }

        #wa-float svg {
            width: 30px;
            height: 30px;
            fill: #fff;
        }

        .wa-pulse {
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: rgba(37, 211, 102, .4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: .6
            }

            50% {
                transform: scale(1.3);
                opacity: 0
            }
        }

        /* ── PAGE TRANSITIONS ── */
        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn .5s ease;
        }

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

            to {
                opacity: 1;
                transform: none
            }
        }

        /* ── FOOTER ── */
        footer {
            background: linear-gradient(180deg, #06131d 0%, #081b29 100%);
            color: rgba(243, 239, 230, .72);
        }

        .footer-link {
            color: rgba(243, 239, 230, .6);
            font-size: .9rem;
            transition: color .2s;
            display: block;
            margin-bottom: .5rem;
        }

        .footer-link:hover {
            color: var(--color-accent);
        }

        .social-icon-btn {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .25s ease;
        }

        .social-icon-btn svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .social-icon-btn.phone,
        .social-icon-btn.map {
            background: rgba(255, 255, 255, .08);
            color: #fff;
        }

        .social-icon-btn.phone:hover,
        .social-icon-btn.map:hover {
            background: var(--color-accent);
            color: var(--color-deep);
            transform: translateY(-2px);
        }

        .social-icon-btn.whatsapp {
            background: #16A34A;
            color: #fff;
        }

        .social-icon-btn.whatsapp:hover {
            background: #22C55E;
            transform: translateY(-2px);
        }

        /* ── FORM ── */
        .form-input {
            width: 100%;
            padding: .9rem 1rem;
            border: 1.5px solid rgba(12, 48, 71, .12);
            border-radius: 16px;
            font-family: 'Manrope', sans-serif;
            font-size: .95rem;
            outline: none;
            transition: border-color .25s, box-shadow .25s;
            color: var(--color-ink);
            background: rgba(255, 255, 255, .9);
        }

        .form-input:focus {
            border-color: var(--color-accent);
            box-shadow: 0 0 0 4px rgba(255, 183, 3, .18);
            background: #fff;
        }

        /* ── MOBILE NAV ── */
        #mobile-menu {
            display: none;
            background: rgba(8, 27, 41, .96);
            border: 1px solid rgba(255, 255, 255, .08);
            box-shadow: 0 20px 45px rgba(8, 27, 41, .24);
        }

        #mobile-menu.open {
            display: block;
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal-left.visible {
            opacity: 1;
            transform: none;
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal-right.visible {
            opacity: 1;
            transform: none;
        }

        /* delay helpers */
        .delay-1 {
            transition-delay: .1s
        }

        .delay-2 {
            transition-delay: .2s
        }

        .delay-3 {
            transition-delay: .3s
        }

        .delay-4 {
            transition-delay: .4s
        }

        .delay-5 {
            transition-delay: .5s
        }

        .delay-6 {
            transition-delay: .6s
        }

        /* ── HERO SCROLL INDICATOR ── */
        .scroll-ind {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: rgba(255, 255, 255, .64);
            font-size: .7rem;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .scroll-ind .line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(255, 209, 102, .95), transparent);
            animation: scrollLine 2s infinite;
        }

        @keyframes scrollLine {
            0% {
                transform: scaleY(0);
                transform-origin: top
            }

            50% {
                transform: scaleY(1);
                transform-origin: top
            }

            51% {
                transform-origin: bottom
            }

            100% {
                transform: scaleY(0);
                transform-origin: bottom
            }
        }

        /* ── TESTIMONIAL ── */
        .testimonial-card {
            background: linear-gradient(180deg, #fff, #fffaf2);
            border: 1px solid rgba(12, 48, 71, .08);
            border-radius: 22px;
            padding: 2rem;
            transition: box-shadow .3s, transform .3s;
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-soft);
            transform: translateY(-4px);
        }

        /* tag pills */
        .tag {
            display: inline-block;
            padding: .35rem .8rem;
            border-radius: 100px;
            font-size: .75rem;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
            }

            .hero-badge {
                width: 100%;
                justify-content: center;
                padding-left: .85rem;
                padding-right: .85rem;
            }

            .hero-feature-row {
                gap: .6rem;
            }

            .hero-feature-pill {
                width: 100%;
            }

            .hero-trust-panel {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .brand-title {
                font-size: 1.42rem;
            }

            .brand-subtitle {
                font-size: .52rem;
                letter-spacing: .18em;
            }
        }
