

        /* ============================================================
   DESIGN TOKENS
   ============================================================ */
        :root {
            --wine-950: #2a0812;
            --wine-900: #3d0f1e;
            --wine-800: #5c1730;
            --wine-700: #7a2140;
            --blush-400: #e8a0b4;
            --blush-200: #f3c4d1;
            --blush-100: #fbe9ee;
            --gold-500: #b8893c;
            --gold-400: #c9a24b;
            --gold-300: #ddc07c;
            --ink: #20090f;
            --ink-soft: #5c3f47;
            --paper: #fffaf8;
            --paper-alt: #fdf1ee;
            --line: rgba(42, 8, 18, 0.1);

            --display: 'Playfair Display', Georgia, serif;
            --body: 'DM Sans', -apple-system, sans-serif;

            --nav-h: 72px;
            --nav-h-scrolled: 58px;
            --radius-sm: 10px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --shadow-soft: 0 12px 30px rgba(42, 8, 18, 0.09);
            --shadow-strong: 0 20px 50px rgba(42, 8, 18, 0.18);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }
        html,body{
overflow-x: hidden;
        }

        body {
            margin: 0;
            font-family: var(--body);
            color: var(--ink);
            background: var(--paper);
            padding-top: 68px;
            
            -webkit-font-smoothing: antialiased;
            font-family: 'Times New Roman', Times, serif ;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

        h1,
        h2,
        h3 {
            font-family: var(--display);
            margin: 0;
            color: var(--wine-900);
            line-height: 1.15;
        }

        p {
            margin: 0;
            line-height: 1.7;
            font-size: 1.3rem !important;
            color: var(--ink-soft);
        }

        ul{
            font-size: 1.3rem !important;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            position: relative;
        }

        /* ============================================================
   AMBIENT BLOBS + HEARTS (kept from original, restyled)
   ============================================================ */
        .blob {
            position: fixed;
            border-radius: 50%;
            filter: blur(70px);
            opacity: .35;
            z-index: 0;
            pointer-events: none;
        }

        .blob.one {
            width: 340px;
            height: 340px;
            background: var(--blush-400);
            top: -100px;
            left: -100px;
        }

        .blob.two {
            width: 280px;
            height: 280px;
            background: var(--gold-300);
            top: 40%;
            right: -120px;
        }

        .blob.three {
            width: 300px;
            height: 300px;
            background: var(--wine-700);
            bottom: -140px;
            left: 30%;
            opacity: .18;
        }

        .heart {
            position: fixed;
            color: var(--blush-400);
            opacity: .25;
            z-index: 0;
            pointer-events: none;
            animation: drift 9s ease-in-out infinite;
        }

        .heart.one {
            font-size: 22px;
            top: 18%;
            left: 8%;
            animation-delay: 0s;
        }

        .heart.two {
            font-size: 16px;
            top: 55%;
            right: 10%;
            animation-delay: 2s;
        }

        .heart.three {
            font-size: 28px;
            bottom: 12%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes drift {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-18px) rotate(8deg);
            }
        }

        /* ============================================================
   NAVBAR — fixed, identical at every breakpoint
   ============================================================ */
        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-h);
            display: flex;
            align-items: center;
            background: rgba(42, 8, 18, 0.75);
            backdrop-filter: blur(14px) saturate(140%);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            border-bottom: 1px solid rgba(201, 162, 75, 0.22);
            transition: height .3s ease, background .3s ease;
        }

        .site-nav.is-scrolled {
            height: var(--nav-h-scrolled);
            background: rgba(42, 8, 18, 0.94);
        }

        .nav-inner {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-family: var(--display);
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--blush-100);
        }

        .nav-brand .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-400), var(--blush-400));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--wine-950);
            font-size: .8rem;
            flex-shrink: 0;
        }

        .nav-links {
            display: none;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--blush-100);
            font-size: 1.1rem;
            font-weight: 500;
            position: relative;
            padding: 6px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold-400);
            transition: width .25s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: none;
            align-items: center;
            gap: 12px;
        }

        .btn-login {
            text-decoration: none;
            color: var(--blush-100);
            font-size: 1rem;
            font-weight: 500;
            padding: 8px 4px;
        }

        .btn-join {
            text-decoration: none;
            color: var(--wine-950);
            background: linear-gradient(135deg, var(--gold-400), var(--blush-400));
            font-weight: 600;
            font-size: 1rem;
            padding: 10px 20px;
            border-radius: 999px;
            box-shadow: 0 4px 14px rgba(201, 162, 75, .25);
        }

        .nav-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: none;
            background: rgba(255, 255, 255, .08);
            border-radius: 10px;
            color: var(--blush-100);
            font-size: 1.05rem;
            cursor: pointer;
        }

        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(20, 4, 9, .5);
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s ease;
            z-index: 998;
        }

        .nav-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .nav-panel {
            position: fixed;
            top: 0;
            right: 0;
            height: 100%;
            width: min(80vw, 320px);
            background: linear-gradient(180deg, var(--wine-950), var(--wine-900));
            z-index: 999;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
            padding: 88px 26px 32px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .nav-panel.open {
            transform: translateX(0);
        }

        .nav-panel a {
            text-decoration: none;
            color: var(--blush-100);
            font-size: 1rem;
            font-weight: 500;
            padding: 13px 4px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .nav-panel .panel-actions {
            margin-top: 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .nav-panel .btn-login {
            text-align: center;
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 999px;
            padding: 11px 20px;
        }

        .nav-panel .btn-join {
            text-align: center;
            padding: 12px 20px;
        }

        .panel-close {
            position: absolute;
            top: 22px;
            right: 20px;
            width: 36px;
            height: 36px;
            border: none;
            background: rgba(255, 255, 255, .08);
            color: var(--blush-100);
            border-radius: 50%;
            font-size: .95rem;
            cursor: pointer;
        }

        @media (min-width:992px) {
            .nav-links {
                display: flex;
            }

            .nav-actions {
                display: flex;
            }

            .nav-toggle {
                display: none;
            }
        }

        /* ============================================================
   BADGE / EYEBROW
   ============================================================ */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--blush-100);
            color: var(--wine-800);
            border: 1px solid var(--blush-200);
            font-size: .8rem;
            font-weight: 600;
            letter-spacing: .02em;
            padding: 8px 16px;
            border-radius: 999px;
        }

        /* ============================================================
   HERO
   ============================================================ */
        .hero {
            padding: 56px 0 40px;
            position: relative;
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 44px;
            align-items: center;
        }

        .hero h1 {
            font-size: clamp(1.9rem, 5vw, 3.1rem);
            margin: 18px 0 16px;
        }

        .hero p.lead {
            font-size: 1.05rem;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 26px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-weight: 600;
            font-size: .95rem;
            padding: 14px 26px;
            border-radius: 999px;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .btn-gradient {
            color: var(--wine-950);
            background: linear-gradient(135deg, var(--gold-400), var(--blush-400));
            box-shadow: 0 8px 22px rgba(201, 162, 75, .28);
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(201, 162, 75, .38);
        }

        .btn-outline-custom {
            color: var(--wine-900);
            border: 1.5px solid var(--wine-800);
            background: transparent;
        }

        .btn-outline-custom:hover {
            background: var(--wine-900);
            color: #fff;
        }

        .trust-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 34px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .trust-item i {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--blush-100);
            color: var(--wine-800);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .trust-item p {
            margin: 0;
            font-weight: 700;
            color: var(--wine-900);
            font-size: .92rem;
        }

        .trust-item small {
            color: var(--ink-soft);
            font-size: .78rem;
        }

        .hero-image {
            position: relative;
        }

        .hero-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .floating {
            position: absolute;
            background: #fff;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-soft);
            z-index: 2;
        }

        .floating span {
            font-size: .75rem;
            color: var(--ink-soft);
        }

        .floating.one {
            top: 14px;
            left: -10px;
        }

        .floating.two {
            bottom: 16px;
            right: -10px;
        }

        @media (min-width:992px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
        }

        /* ============================================================
   STATISTICS
   ============================================================ */
        .stats-section {
            padding: 56px 0;
            background: var(--paper-alt);
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .stat-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 26px 16px;
            text-align: center;
            box-shadow: var(--shadow-soft);
        }

        .stat-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 12px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blush-100), var(--blush-200));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--wine-800);
            font-size: 1.3rem;
        }

        .stat-card h2 {
            font-size: 1.7rem;
            margin-bottom: 4px;
        }

        .stat-card p {
            font-size: .85rem;
            margin: 0;
        }

        @media (min-width:768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* ============================================================
   HOW IT WORKS
   ============================================================ */
        .how-section {
            padding: 70px 0;
            position: relative;
            z-index: 1;
        }

        .how-intro {
            text-align: center;
            max-width: 980px;
            margin: 0 auto 40px;
        }

        .how-intro .section-title {
            font-size: clamp(1.6rem, 4vw, 2.3rem);
            margin: 16px 0;
        }

        .how-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

       .how-image-wrapper {
    position: relative;
    padding: 20px;
}


/* Main Image */
.how-image-wrapper .main-img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.how-image-wrapper:hover .main-img {
    transform: translateY(-6px);
}


/* Floating Small Image */
.how-image-wrapper .small-img {
    position: absolute;
    width: 42%;
    max-width: 220px;
    bottom: -25px;
    left: -25px;

    border-radius: var(--radius-md);
    border: 5px solid #ffffff;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.18);

    object-fit: cover;

    transition: all 0.35s ease;
}


.how-image-wrapper:hover .small-img {
    transform: translateY(-8px) scale(1.03);
}



/* Decorative glow */
.how-image-wrapper::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(
        135deg,
        rgba(255,45,117,0.18),
        rgba(141,46,255,0.18)
    );

    border-radius: 50%;
    top: -40px;
    right: -40px;
    z-index: -1;
}



/* Mobile Responsive */
@media (max-width: 768px) {

    .how-image-wrapper {
        padding: 10px;
    }


    .how-image-wrapper .small-img {
        width: 45%;
        max-width: 160px;
        left: -5px;
        bottom: -15px;
        border-width: 3px;
    }

}

        .floating-card {
            position: absolute;
            background: #fff;
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-soft);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 2;
        }

        .floating-card i {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--blush-100);
            color: var(--wine-800);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-card.card-one {
            top: 10px;
            right: -14px;
        }

        .floating-card.card-two {
            bottom: 34px;
            right: -14px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .step-card {
            position: relative;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 26px 20px;
        }

        .step-number {
            font-family: var(--display);
            font-size: 1.5rem;
            color: var(--blush-200);
            font-weight: 700;
            display: block;
            margin-bottom: 8px;
        }

        .step-card i {
            color: var(--gold-500);
            font-size: 1.2rem;
            margin-bottom: 10px;
            display: block;
        }

        .step-card h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: .9rem;
        }

        @media (min-width:768px) {
            .steps-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width:992px) {
            .how-grid {
                grid-template-columns: 1fr 1fr;
                gap: 56px;
            }
        }

        /* ============================================================
   FEATURES
   ============================================================ */
        .features-section {
            padding: 70px 0;
            background: var(--paper-alt);
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 44px;
        }

        .section-header .section-title {
            font-size: clamp(1.6rem, 4vw, 2.3rem);
            margin: 16px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .feature-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 30px 24px;
            box-shadow: var(--shadow-soft);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-strong);
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--wine-800), var(--wine-900));
            color: var(--gold-300);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: .92rem;
        }

        @media (min-width:768px) {
            .features-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width:992px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ============================================================
   MEMBER SHOWCASE
   ============================================================ */
      .members-section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}


/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}


/* Member Card */
.member-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(31, 31, 53, 0.10);
    transition: all 0.35s ease;
    position: relative;
}


.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(31, 31, 53, 0.16);
}



/* Image Area */
.member-image {
    position: relative;
    aspect-ratio: 4 / 4.5;
    overflow: hidden;
}


.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}


.member-card:hover .member-image img {
    transform: scale(1.08);
}



/* Gradient Overlay */
.member-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.25),
        transparent 45%
    );
}



/* Online Badge */
.online-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;

    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);

    color: var(--wine-900);
    font-size: .75rem;
    font-weight: 700;

    padding: 7px 14px;
    border-radius: 50px;

    display: flex;
    align-items: center;
    gap: 7px;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}


.online-badge i {
    color: #27c46b;
    font-size: .55rem;
}



/* Member Content */
.member-content {
    padding: 26px;
}


.member-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--wine-900);
}



/* Match Percentage */
.match-score {
    display: inline-flex;
    align-items: center;

    background: linear-gradient(
        135deg,
        var(--blush-100),
        #ffe8f0
    );

    color: var(--wine-800);

    font-size: .8rem;
    font-weight: 800;

    padding: 7px 14px;
    border-radius: 50px;
}



/* Location */
.member-location {
    font-size: .9rem;
    color: var(--ink-soft);

    margin: 14px 0 18px;

    display: flex;
    align-items: center;
    gap: 8px;
}


.member-location i {
    color: var(--gold-500);
}



/* Interests */
.interest-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.interest-list span {
    background: #faf7f8;
    color: var(--ink-soft);

    font-size: .78rem;
    font-weight: 600;

    padding: 7px 13px;
    border-radius: 50px;

    transition: .3s ease;
}


.interest-list span:hover {
    background: var(--wine-800);
    color: #fff;
}



/* Decorative Card Glow */
.member-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;

    top: -60px;
    right: -60px;

    background: rgba(255,45,117,.12);
    border-radius: 50%;

    transition: .4s ease;
}


.member-card:hover::before {
    transform: scale(1.4);
}



/* Tablet */
@media (min-width:768px) {

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



/* Desktop */
@media (min-width:992px) {

    .members-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

}



/* Large Screens */
@media (min-width:1200px) {

    .members-section {
        padding: 110px 0;
    }

    .member-content {
        padding: 30px;
    }

}

        /* ============================================================
   TESTIMONIALS
   ============================================================ */
        .stories-section {
            padding: 70px 0;
            background: var(--paper-alt);
            position: relative;
            z-index: 1;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 28px 24px;
            box-shadow: var(--shadow-soft);
        }

        .testimonial-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-card .name {
            font-weight: 700;
            color: var(--wine-900);
            margin-bottom: 4px;
        }

        .testimonial-card .stars {
            color: var(--gold-500);
            font-size: .8rem;
        }

        .testimonial-card p {
            margin-top: 16px;
            font-size: .94rem;
            font-style: italic;
        }

        @media (min-width:992px) {
            .testimonial-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }


        @media (max-width:991px){

    .nav-links,
    .nav-actions{
        display:none;
    }

    .nav-links.active,
    .nav-actions.active{
        display:flex;
        flex-direction:column;
    }

}

        /* ============================================================
   SAFETY
   ============================================================ */
        .safety-section {
            padding: 70px 0;
            position: relative;
            z-index: 1;
        }

        .safety-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .safety-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 26px 18px;
            text-align: center;
        }

        .safety-card i {
            font-size: 1.5rem;
            color: var(--wine-800);
            margin-bottom: 12px;
            display: block;
        }

        .safety-card .label {
            font-weight: 700;
            color: var(--wine-900);
            margin-bottom: 8px;
        }

        .safety-card p {
            font-size: .85rem;
        }

       @media (max-width: 991px) {
    .safety-grid {
        grid-template-columns: 1fr;
    }
}

        /* ============================================================
   FAQ (custom accordion, no Bootstrap JS dependency)
   ============================================================ */
        .faq-section {
            padding: 70px 0;
            background: var(--paper-alt);
            position: relative;
            z-index: 1;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 1.2rem !important;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-sm);
            border: 1px solid var(--line);
            overflow: hidden;
        }

        .faq-q {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--body);
            font-weight: 600;
            color: var(--wine-900);
            font-size: 1.2rem !important;
            cursor: pointer;
        }

        .faq-q i {
            transition: transform .25s ease;
            color: var(--gold-500);
            flex-shrink: 0;
            margin-left: 12px;
            
        }

        .faq-item.open .faq-q i {
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease;
        }

        .faq-a-inner {
            padding: 0 20px 18px;
            font-size: 1.3rem;
        }

        .faq-item.open .faq-a {
            max-height: 220px;
        }

        /* ============================================================
   FINAL CTA
   ============================================================ */
        .cta-section {
            padding: 70px 0 90px;
            position: relative;
            z-index: 1;
        }

        .cta-card {
            background: linear-gradient(135deg, var(--wine-950), var(--wine-800));
            border-radius: var(--radius-lg);
            padding: 52px 24px;
            text-align: center;
            box-shadow: var(--shadow-strong);
        }

        .cta-card .eyebrow {
            background: rgba(255, 255, 255, .1);
            color: var(--gold-300);
            border-color: rgba(255, 255, 255, .15);
        }

        .cta-card h2 {
            color: #fff;
            font-size: clamp(1.8rem, 5vw, 2.6rem);
            margin: 18px 0;
        }

        .cta-card p {
            color: var(--blush-200);
            max-width: 520px;
            margin: 0 auto 32px;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        .cta-card .btn-outline-custom {
            color: #fff;
            border-color: rgba(255, 255, 255, .4);
        }

        .cta-card .btn-outline-custom:hover {
            background: #fff;
            color: var(--wine-900);
        }

        /* ============================================================
   FOOTER
   ============================================================ */
        .footer {
            background: var(--wine-950);
            color: var(--blush-200);
            padding: 56px 0 26px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-family: var(--display);
            font-weight: 600;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-brand .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-400), var(--blush-400));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--wine-950);
            font-size: .8rem;
        }

        .footer p.desc {
            font-size: .88rem;
            color: rgba(251, 233, 238, .65);
            max-width: 340px;
        }

        .footer-col p.heading {
            color: #fff;
            font-weight: 700;
            margin-bottom: 14px;
            font-size: .9rem;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            text-decoration: none;
            color: rgba(251, 233, 238, .7);
            font-size: 1.1rem;
        }

        .footer-links a:hover {
            color: var(--gold-400);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            margin-top: 40px;
            padding-top: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 1rem;
            color: rgba(251, 233, 238, .55);
        }

        @media (min-width:768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                
            }
        }

        @media (max-width: 991px) {
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom p {
        margin-bottom: 0;
    }

    .footer-bottom small {
        font-size: 14px !important;
    }
}
    