/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --gold:#c6a46c;
    --dark:#0c0c0d;
    --soft:#f5f5f5;
    --white:#ffffff;
    --text:#bcbcbc;
    --border:rgba(255,255,255,0.08);

}

body{

    font-family:'Inter',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;

}

.container{

    width:90%;
    max-width:1280px;
    margin:auto;

}

/* HEADER */

.header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;

    background:rgba(0,0,0,0.78);
    backdrop-filter:blur(10px);

    border-bottom:1px solid var(--border);

}

.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;

}

.logo{

    font-size:34px;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;

}

.logo span{

    color:var(--gold);

}

.navbar{

    display:flex;
    gap:35px;

}

.navbar a{

    color:white;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    transition:0.4s;

}

.navbar a:hover{

    color:var(--gold);

}

.header-btn{

    padding:13px 28px;
    border:1px solid var(--gold);
    color:var(--gold);
    text-decoration:none;
    border-radius:50px;
    transition:0.4s;

}

.header-btn:hover{

    background:var(--gold);
    color:black;

}

/* HERO */

/* ===================================
   PREMIUM HERO BANNER
=================================== */

.hero{

    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#000;

}

/* BANNER IMAGE */

.hero-banner{

    position:absolute;
    inset:0;
    z-index:1;

}

.hero-banner img{

    width:100%;
    height:100%;

    /* PERFECT CENTER POSITION */
    object-fit:cover;
    object-position:center center;

    /* PREMIUM EFFECT */
    transform:scale(1.03);

    filter:
    brightness(0.55)
    contrast(1.08)
    saturate(1.05);

}

/* DARK OVERLAY */

.hero-overlay{

    position:absolute;
    inset:0;
    z-index:2;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.72)
    );

}

/* GOLD LIGHT EFFECT */

.hero::before{

    content:'';

    position:absolute;
    top:-15%;
    right:-10%;

    width:700px;
    height:700px;

    background:
    radial-gradient(
        circle,
        rgba(198,164,108,0.18),
        transparent 70%
    );

    z-index:2;

}

/* HERO CONTENT */

.hero-content{

    position:relative;
    z-index:5;

    max-width:760px;
    width:100%;

    text-align:center;

    padding:0 20px;

}

.hero-subtitle{

    color:#c6a46c;

    text-transform:uppercase;
    letter-spacing:5px;
    font-size:13px;

}

.hero h1{

    font-size:92px;
    line-height:1;

    margin:25px 0;

    color:#fff;

    font-family:'Cormorant Garamond',serif;

    text-shadow:
    0 4px 20px rgba(0,0,0,0.45);

}

.hero p{

    max-width:680px;

    margin:0 auto 45px;

    color:#f1f1f1;
    font-size:20px;
    line-height:1.9;

}

/* MOBILE */

@media(max-width:768px){

    .hero{

        min-height:100vh;
        padding:180px 0 100px;

    }

    .hero-banner img{

        object-position:center center;

    }

    .hero h1{

        font-size:46px;
        line-height:1.1;

    }

    .hero p{

        font-size:16px;

    }

}

@media(max-width:480px){

    .hero h1{

        font-size:36px;

    }

}

/* BUTTONS */

.btn-primary{

    display:inline-block;
    padding:18px 42px;
    background:var(--gold);
    color:black;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    letter-spacing:1px;
    transition:0.4s;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-outline{

    display:inline-block;
    padding:18px 42px;
    border:1px solid white;
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:0.4s;

}

.btn-outline:hover{

    background:white;
    color:black;

}

/* STATS */

.stats{

    background:#111;
    padding:80px 0;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;

}

.stat-box{

    text-align:center;
    padding:40px 20px;
    border:1px solid var(--border);
    border-radius:20px;

}

.stat-box h2{

    font-size:55px;
    color:var(--gold);
    font-family:'Cormorant Garamond',serif;

}

.stat-box p{

    color:#bbb;

}

/* ABOUT */

.about{

    padding:120px 0;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image img{

    width:100%;
    border-radius:24px;

}

.section-tag{

    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;

}

.about-content h2{

    font-size:62px;
    margin:25px 0;
    font-family:'Cormorant Garamond',serif;

}

.about-content p{

    color:#bdbdbd;
    margin-bottom:30px;

}

.feature-list{

    margin-bottom:35px;

}

.feature-item{

    padding:14px 0;
    border-bottom:1px solid var(--border);

}

/* FEATURES */

.features{

    background:#111;
    padding:120px 0;

}

.section-heading{

    text-align:center;
    margin-bottom:70px;

}

.section-heading h2{

    font-size:60px;
    margin-top:18px;
    font-family:'Cormorant Garamond',serif;

}

.feature-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

.feature-card{

    background:#171717;
    padding:50px 40px;
    border-radius:24px;
    border:1px solid var(--border);
    transition:0.4s;

}

.feature-card:hover{

    transform:translateY(-8px);
    border-color:var(--gold);

}

.feature-icon{

    font-size:60px;
    color:var(--gold);
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;

}

.feature-card h3{

    font-size:34px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;

}

.feature-card p{

    color:#bdbdbd;

}

/* MEMBERS */

.members{

    padding:120px 0;

}

.member-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;

}

.member-card{

    background:#151515;
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border);

}

.member-card img{

    width:100%;
    height:380px;
    object-fit:cover;

}

.member-info{

    padding:28px;

}

.member-info h3{

    font-size:34px;
    font-family:'Cormorant Garamond',serif;

}

.member-info p{

    color:var(--gold);

}

/* CTA */

.cta{

    padding:120px 0;
    background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url('images/cta-bg.jpg') center/cover no-repeat;

    text-align:center;

}

.cta h2{

    font-size:70px;
    max-width:900px;
    margin:auto;

    font-family:'Cormorant Garamond',serif;

}

.cta p{

    margin:25px 0 40px;
    color:#ddd;
    font-size:19px;

}

/* ===================================
   PREMIUM FOOTER DESIGN
=================================== */

.footer{

    background:#050505;

    padding-top:90px;

    border-top:1px solid rgba(255,255,255,0.06);

}

/* FOOTER GRID */

.footer-grid{

    display:grid;

    grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr;

    gap:60px;

    padding-bottom:70px;

}

/* LOGO */

.footer-logo{

    font-size:58px;

    font-family:'Cormorant Garamond',serif;
    font-weight:700;

    color:#c6a46c;

    margin-bottom:24px;

    line-height:1;

}

/* USA BOX */

/* FOOTER LOGO */

.footer-logo{

    font-size:52px;

    font-family:'Cormorant Garamond',serif;
    font-weight:700;

    color:#ffffff;

    margin-bottom:24px;

    line-height:1.1;

}

/* GOLD HIGHLIGHT */

.footer-logo span{

    color:#c6a46c;

}

/* MOBILE */

@media(max-width:768px){

    .footer-logo{

        font-size:40px;

    }

}

@media(max-width:480px){

    .footer-logo{

        font-size:32px;

    }

}
/* ABOUT TEXT */

.footer-about p{

    color:#a9a9a9;

    font-size:18px;
    line-height:1.9;

    max-width:420px;

}

/* FOOTER TITLES */

.footer-links h3{

    color:#fff;

    font-size:32px;

    margin-bottom:28px;

    font-family:'Cormorant Garamond',serif;

}

/* LINKS */

.footer-links ul{

    list-style:none;

}

.footer-links ul li{

    margin-bottom:18px;

}

.footer-links ul li a{

    color:#bdbdbd;

    text-decoration:none;

    font-size:18px;

    transition:0.4s ease;

    position:relative;

}

.footer-links ul li a:hover{

    color:#c6a46c;
    padding-left:6px;

}

/* BOTTOM */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,0.06);

    padding:28px 20px;

    text-align:center;

}

.footer-bottom p{

    color:#7f7f7f;

    font-size:15px;
    letter-spacing:1px;

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .footer-grid{

        grid-template-columns:
        1fr
        1fr;

        gap:50px;

    }

    .footer-logo{

        font-size:48px;

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer{

        padding-top:70px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

        text-align:center;

    }

    .footer-about p{

        margin:auto;

    }

    .footer-logo{

        font-size:42px;

    }

    .footer-logo span{

        width:58px;
        height:58px;

        font-size:32px;

    }

    .footer-links h3{

        font-size:28px;

    }

    .footer-links ul li a{

        font-size:17px;

    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .footer-logo{

        font-size:34px;

    }

    .footer-logo span{

        width:52px;
        height:52px;

        font-size:28px;

    }

    .footer-about p{

        font-size:16px;

    }

    .footer-links h3{

        font-size:24px;

    }

    .footer-links ul li{

        margin-bottom:15px;

    }

    .footer-links ul li a{

        font-size:16px;

    }

}
/* RESPONSIVE */

@media(max-width:992px){

    .about-grid{

        grid-template-columns:1fr;

    }

    .hero h1{

        font-size:60px;

    }

    .cta h2{

        font-size:50px;

    }

}

@media(max-width:768px){

    .navbar{

        display:none;

    }

    .hero h1{

        font-size:42px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .section-heading h2,
    .about-content h2{

        font-size:42px;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

}

/* MOBILE FRIENDLY IMPROVEMENTS */
/* Add this at bottom of existing style.css */

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 992px){

    .container{
        width:92%;
    }

    .header .container{
        padding:18px 0;
    }

    .navbar{
        gap:18px;
    }

    .hero{
        min-height:100vh;
        padding:120px 0 80px;
    }

    .hero h1{
        font-size:58px;
        line-height:1.1;
    }

    .hero p{
        font-size:18px;
        padding:0 15px;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content h2{
        font-size:48px;
    }

    .section-heading h2{
        font-size:48px;
    }

    .cta h2{
        font-size:48px;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px){

    body{
        overflow-x:hidden;
    }

    section{
        padding:80px 0;
    }

    /* HEADER */

    .header{
        padding:0;
    }

    .header .container{
        flex-direction:column;
        gap:18px;
        padding:16px 0;
    }

    .logo{
        font-size:28px;
        text-align:center;
    }

    .navbar{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .navbar a{
        font-size:11px;
        letter-spacing:1px;
    }

    .header-btn{
        padding:10px 22px;
        font-size:13px;
    }

    /* HERO */

    .hero{
        height:auto;
        min-height:100vh;
        padding:170px 0 100px;
    }

    .hero-content{
        width:100%;
        padding:0 15px;
    }

    .hero-subtitle{
        font-size:11px;
        letter-spacing:3px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.1;
        margin:20px 0;
    }

    .hero p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:35px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        width:100%;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        max-width:320px;
        text-align:center;
        padding:16px 20px;
    }

    /* STATS */

    .stats{
        padding:60px 0;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:18px;
    }

    .stat-box{
        padding:28px 15px;
        border-radius:18px;
    }

    .stat-box h2{
        font-size:38px;
    }

    .stat-box p{
        font-size:13px;
    }

    /* ABOUT */

    .about{
        padding:80px 0;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:38px;
        line-height:1.15;
    }

    .about-content p{
        font-size:15px;
    }

    .feature-item{
        font-size:14px;
        padding:12px 0;
    }

    /* SECTION HEADINGS */

    .section-heading{
        margin-bottom:45px;
    }

    .section-heading h2{
        font-size:40px;
        line-height:1.15;
    }

    /* FEATURES */

    .feature-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .feature-card{
        padding:35px 25px;
        border-radius:20px;
    }

    .feature-icon{
        font-size:48px;
    }

    .feature-card h3{
        font-size:28px;
    }

    .feature-card p{
        font-size:15px;
    }

    /* MEMBERS */

    .member-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .member-card img{
        height:340px;
    }

    .member-info{
        padding:22px;
    }

    .member-info h3{
        font-size:28px;
    }

    /* CTA */

    .cta{
        padding:90px 0;
    }

    .cta h2{
        font-size:38px;
        line-height:1.15;
    }

    .cta p{
        font-size:16px;
        padding:0 10px;
    }

    /* FOOTER */

    .footer{
        padding-top:70px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .footer h4{
        margin-bottom:18px;
    }

    .copyright{
        font-size:13px;
        padding:22px 15px;
    }

}

/* =========================
   SMALL MOBILE DEVICES
========================= */

@media (max-width: 480px){

    .container{
        width:94%;
    }

    .hero{
        padding-top:180px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:15px;
    }

    .section-heading h2,
    .about-content h2,
    .cta h2{
        font-size:32px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-box h2{
        font-size:34px;
    }

    .feature-card{
        padding:30px 22px;
    }

    .feature-card h3{
        font-size:24px;
    }

    .member-card img{
        height:300px;
    }

    .btn-primary,
    .btn-outline{
        max-width:100%;
    }

}

/* =========================
   EXTRA LARGE SCREENS
========================= */

@media (min-width: 1600px){

    .hero h1{
        font-size:110px;
    }

    .container{
        max-width:1400px;
    }

}

/* ===================================
   MOBILE BUTTON SPACING FIX
=================================== */

@media(max-width:768px){

    .hero-buttons{

        display:flex;
        flex-direction:column;
        align-items:center;

        gap:18px; /* SPACE BETWEEN BUTTONS */

        width:100%;
        margin-top:10px;

    }

    .btn-primary,
    .btn-outline{

        width:100%;
        max-width:320px;

        text-align:center;

    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .hero-buttons{

        gap:16px;

    }

    .btn-primary,
    .btn-outline{

        max-width:100%;

    }

}

/* ===================================
   LUXURY COLOR MATCHED PRICING DESIGN
   MATCHES BLACK + GOLD WEBSITE THEME
=================================== */

.pricing-section{

    padding:120px 0;

    background:#0c0c0d;

}

/* SECTION TITLE */

.pricing-section .section-heading{

    text-align:center;
    margin-bottom:70px;

}

.pricing-section .section-heading h2{

    font-size:68px;

    color:#ffffff;

    font-family:'Cormorant Garamond',serif;
    font-weight:700;

}

/* GRID */

.pricing-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

/* CARD */

.pricing-card{

    position:relative;

    background:#151515;

    border:1px solid rgba(255,255,255,0.06);

    border-radius:28px;

    padding:55px 40px;

    text-align:center;

    transition:0.4s ease;

    overflow:hidden;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.35);

}

/* GOLD TOP BORDER */

.pricing-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:2px;

    background:
    linear-gradient(
        to right,
        transparent,
        #c6a46c,
        transparent
    );

}

/* HOVER */

.pricing-card:hover{

    transform:translateY(-10px);

    border-color:rgba(198,164,108,0.35);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.45);

}

/* ACTIVE CARD */

.active-plan{

    border:1px solid #c6a46c;

    transform:scale(1.03);

    background:
    linear-gradient(
        180deg,
        rgba(198,164,108,0.08),
        #151515
    );

}

/* POPULAR BADGE */

.popular-badge{

    position:absolute;

    top:18px;
    right:18px;

    background:#c6a46c;

    color:#111;

    font-size:12px;
    font-weight:700;

    padding:8px 16px;

    border-radius:30px;

    letter-spacing:1px;

}

/* ICON */

.plan-icon{

    width:82px;
    height:82px;

    margin:0 auto 30px;

    background:
    rgba(198,164,108,0.12);

    color:#c6a46c;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    border:1px solid rgba(198,164,108,0.15);

}

/* PLAN TITLE */

.pricing-card h3{

    font-size:42px;

    color:#ffffff;

    margin-bottom:14px;

    font-family:'Cormorant Garamond',serif;

}

/* DURATION */

.plan-duration{

    color:#c6a46c;

    font-size:38px;
    font-weight:700;

    margin-bottom:28px;

    font-family:'Cormorant Garamond',serif;

}

/* PRICING */

.pricing{

    margin-bottom:38px;

}

.pricing p{

    font-size:22px;

    color:#ffffff;

    margin-bottom:15px;

    font-weight:600;

}

.pricing span{

    color:#bdbdbd;
    font-weight:400;

}

/* FEATURES */

.plan-features{

    list-style:none;

    margin-bottom:42px;

}

.plan-features li{

    margin-bottom:16px;

    color:#cfcfcf;

    font-size:17px;

}

/* BUTTON */

.pricing-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:190px;
    height:58px;

    background:
    linear-gradient(
        135deg,
        #c6a46c,
        #e3c88e
    );

    color:#111;

    text-decoration:none;

    border-radius:10px;

    font-weight:700;
    letter-spacing:1px;

    transition:0.4s ease;

}

.pricing-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(198,164,108,0.28);

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .pricing-section .section-heading h2{

        font-size:54px;

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .pricing-section{

        padding:90px 0;

    }

    .pricing-section .section-heading{

        margin-bottom:50px;

    }

    .pricing-section .section-heading h2{

        font-size:42px;
        line-height:1.2;

    }

    .pricing-grid{

        grid-template-columns:1fr;

        gap:28px;

    }

    .pricing-card{

        padding:45px 28px;

    }

    .pricing-card h3{

        font-size:36px;

    }

    .plan-duration{

        font-size:30px;

    }

    .pricing p{

        font-size:18px;

    }

    .plan-features li{

        font-size:16px;

    }

    .pricing-btn{

        width:100%;

    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .pricing-section .section-heading h2{

        font-size:34px;

    }

    .pricing-card{

        padding:40px 22px;

    }

}


/* ===================================
   ABOUT PAGE
=================================== */

.about-hero-section{

    position:relative;

    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.about-hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.55)
    );

}

.about-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.about-small-title{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.about-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.about-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* ABOUT SECTION */

.about-page-section{

    padding:120px 0;

}

.about-page-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-page-image img{

    width:100%;

    border-radius:24px;

}

.about-page-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.about-page-content p{

    color:#bdbdbd;

    margin-bottom:25px;

    line-height:1.9;

}

.about-feature-list{

    margin:35px 0;

}

.about-feature-item{

    padding:14px 0;

    border-bottom:1px solid var(--border);

}

/* WHY SECTION */

.about-why-section{

    background:#111;

    padding:120px 0;

}

.about-why-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.about-why-card{

    background:#171717;

    padding:50px 40px;

    border-radius:24px;

    border:1px solid var(--border);

    transition:0.4s;

}

.about-why-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.about-why-icon{

    font-size:60px;

    color:var(--gold);

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

.about-why-card h3{

    font-size:34px;

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;

}

.about-why-card p{

    color:#bdbdbd;

    line-height:1.9;

}

/* MISSION */

.about-mission-section{

    padding:120px 0;

    text-align:center;

}

.about-mission-content{

    max-width:900px;

    margin:auto;

}

.about-mission-content h2{

    font-size:68px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.about-mission-content p{

    color:#cfcfcf;

    font-size:19px;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .about-page-grid{

        grid-template-columns:1fr;

    }

    .about-hero-content h1{

        font-size:62px;

    }

    .about-page-content h2,
    .about-mission-content h2{

        font-size:50px;

    }

}

@media(max-width:768px){

    .about-hero-section{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .about-hero-content{

        text-align:center;

    }

    .about-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .about-hero-content p{

        font-size:16px;

    }

    .about-page-section,
    .about-why-section,
    .about-mission-section{

        padding:90px 0;

    }

    .about-page-content{

        text-align:center;

    }

    .about-page-content h2,
    .about-mission-content h2{

        font-size:38px;

        line-height:1.15;

    }

    .about-why-grid{

        grid-template-columns:1fr;

    }

    .about-why-card{

        padding:40px 28px;

    }

}

@media(max-width:480px){

    .about-hero-content h1{

        font-size:36px;

    }

    .about-page-content h2,
    .about-mission-content h2{

        font-size:32px;

    }

}

/* ===================================
   MEMBERSHIP PAGE
=================================== */

.membership-hero{

    position:relative;

    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.membership-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.86),
        rgba(0,0,0,0.55)
    );

}

.membership-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.membership-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.membership-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.membership-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* INTRO */

.membership-intro{

    padding:120px 0;

}

.membership-intro-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.membership-intro-image img{

    width:100%;

    border-radius:24px;

}

.membership-intro-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.membership-intro-content p{

    color:#bdbdbd;

    margin-bottom:25px;

    line-height:1.9;

}

.membership-feature-list{

    margin-top:35px;

}

.membership-feature-item{

    padding:15px 0;

    border-bottom:1px solid var(--border);

}

/* PRICING */

.membership-pricing{

    padding:120px 0;

    background:#111;

}

.membership-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.membership-card{

    position:relative;

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    padding:55px 40px;

    text-align:center;

    transition:0.4s;

}

.membership-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.active-membership{

    border:1px solid var(--gold);

}

.popular-tag{

    position:absolute;

    top:20px;
    right:20px;

    background:var(--gold);

    color:#111;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}

.membership-icon{

    width:80px;
    height:80px;

    margin:auto auto 28px;

    border-radius:50%;

    background:
    rgba(198,164,108,0.12);

    color:var(--gold);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

}

.membership-card h3{

    font-size:42px;

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;

}

.membership-duration{

    color:var(--gold);

    font-size:36px;

    margin-bottom:28px;

    font-family:'Cormorant Garamond',serif;

}

.membership-price{

    margin-bottom:35px;

}

.membership-price p{

    font-size:22px;

    margin-bottom:14px;

}

.membership-price span{

    color:#bdbdbd;

}

.membership-features{

    list-style:none;

    margin-bottom:40px;

}

.membership-features li{

    margin-bottom:16px;

    color:#cfcfcf;

}

/* BENEFITS */

.membership-benefits{

    padding:120px 0;

}

.membership-benefit-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.membership-benefit-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:24px;

    padding:50px 40px;

    transition:0.4s;

}

.membership-benefit-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.benefit-number{

    font-size:60px;

    color:var(--gold);

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

.membership-benefit-card h3{

    font-size:34px;

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;

}

.membership-benefit-card p{

    color:#bdbdbd;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .membership-intro-grid{

        grid-template-columns:1fr;

    }

    .membership-hero-content h1{

        font-size:62px;

    }

    .membership-intro-content h2{

        font-size:50px;

    }

}

@media(max-width:768px){

    .membership-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .membership-hero-content{

        text-align:center;

    }

    .membership-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .membership-hero-content p{

        font-size:16px;

    }

    .membership-intro,
    .membership-pricing,
    .membership-benefits{

        padding:90px 0;

    }

    .membership-intro-content{

        text-align:center;

    }

    .membership-intro-content h2{

        font-size:38px;

        line-height:1.15;

    }

    .membership-grid,
    .membership-benefit-grid{

        grid-template-columns:1fr;

    }

    .membership-card,
    .membership-benefit-card{

        padding:40px 28px;

    }

}

@media(max-width:480px){

    .membership-hero-content h1{

        font-size:36px;

    }

    .membership-intro-content h2{

        font-size:32px;

    }

}

/* ===================================
   SUCCESS STORIES PAGE
=================================== */

.stories-hero{

    position:relative;

    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.stories-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.86),
        rgba(0,0,0,0.55)
    );

}

.stories-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.stories-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.stories-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.stories-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* INTRO */

.stories-intro{

    padding:120px 0;

}

.stories-intro-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.stories-intro-image img{

    width:100%;

    border-radius:24px;

}

.stories-intro-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.stories-intro-content p{

    color:#bdbdbd;

    margin-bottom:25px;

    line-height:1.9;

}

.stories-feature-list{

    margin-top:35px;

}

.stories-feature-item{

    padding:15px 0;

    border-bottom:1px solid var(--border);

}

/* STORIES */

.stories-section{

    padding:120px 0;

    background:#111;

}

.stories-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.story-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

    transition:0.4s;

}

.story-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.story-card img{

    width:100%;

    height:380px;

    object-fit:cover;

}

.story-content{

    padding:35px;

}

.story-content h3{

    font-size:38px;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}

.story-content span{

    display:block;

    color:var(--gold);

    margin-bottom:18px;

}

.story-content p{

    color:#cfcfcf;

    line-height:1.9;

}

/* BENEFITS */

.stories-benefits{

    padding:120px 0;

}

.stories-benefit-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.stories-benefit-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:24px;

    padding:50px 40px;

    transition:0.4s;

}

.stories-benefit-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.stories-number{

    font-size:60px;

    color:var(--gold);

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

.stories-benefit-card h3{

    font-size:34px;

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;

}

.stories-benefit-card p{

    color:#bdbdbd;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .stories-intro-grid{

        grid-template-columns:1fr;

    }

    .stories-hero-content h1{

        font-size:62px;

    }

    .stories-intro-content h2{

        font-size:50px;

    }

}

@media(max-width:768px){

    .stories-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .stories-hero-content{

        text-align:center;

    }

    .stories-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .stories-hero-content p{

        font-size:16px;

    }

    .stories-intro,
    .stories-section,
    .stories-benefits{

        padding:90px 0;

    }

    .stories-intro-content{

        text-align:center;

    }

    .stories-intro-content h2{

        font-size:38px;

        line-height:1.15;

    }

    .stories-grid,
    .stories-benefit-grid{

        grid-template-columns:1fr;

    }

    .story-content{

        padding:28px;

    }

    .stories-benefit-card{

        padding:40px 28px;

    }

}

@media(max-width:480px){

    .stories-hero-content h1{

        font-size:36px;

    }

    .stories-intro-content h2{

        font-size:32px;

    }

    .story-card img{

        height:320px;

    }

}

/* ===================================
   PRIVACY POLICY PAGE
=================================== */

.policy-hero{

    position:relative;

    min-height:80vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.policy-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.policy-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.policy-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.policy-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.policy-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* POLICY SECTION */

.policy-section{

    padding:120px 0;

}

.policy-wrapper{

    max-width:1000px;

    margin:auto;

}

.policy-box{

    background:#171717;

    border:1px solid var(--border);

    border-radius:24px;

    padding:50px;

    margin-bottom:35px;

    transition:0.4s;

}

.policy-box:hover{

    border-color:var(--gold);

    transform:translateY(-5px);

}

.policy-box h2{

    font-size:42px;

    margin-bottom:22px;

    font-family:'Cormorant Garamond',serif;

}

.policy-box p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:18px;

}

.policy-box ul{

    padding-left:22px;

}

.policy-box ul li{

    color:#cfcfcf;

    margin-bottom:14px;

    line-height:1.8;

}

/* RESPONSIVE */

@media(max-width:992px){

    .policy-hero-content h1{

        font-size:62px;

    }

}

@media(max-width:768px){

    .policy-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .policy-hero-content{

        text-align:center;

    }

    .policy-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .policy-hero-content p{

        font-size:16px;

    }

    .policy-section{

        padding:90px 0;

    }

    .policy-box{

        padding:35px 25px;

    }

    .policy-box h2{

        font-size:32px;

    }

}

@media(max-width:480px){

    .policy-hero-content h1{

        font-size:36px;

    }

    .policy-box h2{

        font-size:28px;

    }

}

/* ===================================
   TERMS & CONDITIONS PAGE
=================================== */

.terms-hero{

    position:relative;

    min-height:80vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.terms-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.terms-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.terms-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.terms-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.terms-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* TERMS SECTION */

.terms-section{

    padding:120px 0;

}

.terms-wrapper{

    max-width:1000px;

    margin:auto;

}

/* TERMS BOX */

.terms-box{

    background:#171717;

    border:1px solid var(--border);

    border-radius:24px;

    padding:50px;

    margin-bottom:35px;

    transition:0.4s ease;

}

.terms-box:hover{

    transform:translateY(-5px);

    border-color:var(--gold);

}

/* TITLE */

.terms-box h2{

    font-size:42px;

    margin-bottom:22px;

    font-family:'Cormorant Garamond',serif;

    color:#fff;

}

/* PARAGRAPH */

.terms-box p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:18px;

    font-size:16px;

}

/* LIST */

.terms-box ul{

    padding-left:22px;

}

.terms-box ul li{

    color:#cfcfcf;

    margin-bottom:14px;

    line-height:1.8;

}

/* STRONG */

.terms-box strong{

    color:var(--gold);

}

/* RESPONSIVE */

@media(max-width:992px){

    .terms-hero-content h1{

        font-size:62px;

    }

}

@media(max-width:768px){

    .terms-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .terms-hero-content{

        text-align:center;

    }

    .terms-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .terms-hero-content p{

        font-size:16px;

    }

    .terms-section{

        padding:90px 0;

    }

    .terms-box{

        padding:35px 25px;

    }

    .terms-box h2{

        font-size:32px;

    }

}

@media(max-width:480px){

    .terms-hero-content h1{

        font-size:36px;

    }

    .terms-box h2{

        font-size:28px;

    }

    .terms-box{

        border-radius:18px;

    }

}

/* ===================================
   DATING TIPS PAGE
=================================== */

.tips-hero{

    position:relative;

    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.tips-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.tips-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.tips-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.tips-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.tips-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* INTRO */

.tips-intro{

    padding:120px 0;

}

.tips-intro-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.tips-intro-image img{

    width:100%;

    border-radius:24px;

}

.tips-intro-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.tips-intro-content p{

    color:#bdbdbd;

    margin-bottom:25px;

    line-height:1.9;

}

/* TIPS SECTION */

.tips-section{

    padding:120px 0;

    background:#111;

}

.tips-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.tips-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

    transition:0.4s;

}

.tips-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.tips-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.tips-card-content{

    padding:35px;

}

.tips-card-content span{

    display:inline-block;

    color:var(--gold);

    margin-bottom:14px;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:2px;

}

.tips-card-content h3{

    font-size:36px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

.tips-card-content p{

    color:#cfcfcf;

    line-height:1.9;

}

/* FEATURED */

.featured-tips{

    padding:120px 0;

}

.featured-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.featured-box{

    background:#171717;

    border:1px solid var(--border);

    border-radius:24px;

    padding:50px 40px;

    transition:0.4s;

}

.featured-box:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.featured-number{

    font-size:60px;

    color:var(--gold);

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

.featured-box h3{

    font-size:34px;

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;

}

.featured-box p{

    color:#bdbdbd;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .tips-intro-grid{

        grid-template-columns:1fr;

    }

    .tips-hero-content h1{

        font-size:62px;

    }

    .tips-intro-content h2{

        font-size:50px;

    }

}

@media(max-width:768px){

    .tips-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .tips-hero-content{

        text-align:center;

    }

    .tips-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .tips-hero-content p{

        font-size:16px;

    }

    .tips-intro,
    .tips-section,
    .featured-tips{

        padding:90px 0;

    }

    .tips-intro-content{

        text-align:center;

    }

    .tips-intro-content h2{

        font-size:38px;

        line-height:1.15;

    }

    .tips-grid,
    .featured-grid{

        grid-template-columns:1fr;

    }

    .tips-card-content{

        padding:28px;

    }

    .featured-box{

        padding:40px 28px;

    }

}

@media(max-width:480px){

    .tips-hero-content h1{

        font-size:36px;

    }

    .tips-intro-content h2{

        font-size:32px;

    }

    .tips-card img{

        height:260px;

    }

}

/* ===================================
   FAQ PAGE
=================================== */

.faq-hero{

    position:relative;

    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.faq-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.faq-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.faq-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.faq-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.faq-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* FAQ SECTION */

.faq-section{

    padding:120px 0;

}

.faq-wrapper{

    max-width:950px;

    margin:auto;

}

/* FAQ ITEM */

.faq-item{

    background:#171717;

    border:1px solid var(--border);

    border-radius:20px;

    margin-bottom:24px;

    overflow:hidden;

    transition:0.4s ease;

}

.faq-item:hover{

    border-color:var(--gold);

}

/* QUESTION */

.faq-question{

    width:100%;

    background:none;

    border:none;

    outline:none;

    color:#fff;

    font-size:24px;

    font-family:'Cormorant Garamond',serif;

    padding:28px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;

    text-align:left;

}

.faq-question span{

    color:var(--gold);

    font-size:28px;

}

/* ANSWER */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height 0.4s ease;

}

.faq-answer p{

    color:#cfcfcf;

    padding:0 30px 30px;

    line-height:1.9;

}

/* ACTIVE */

.faq-item.active .faq-answer{

    max-height:300px;

}

/* RESPONSIVE */

@media(max-width:992px){

    .faq-hero-content h1{

        font-size:62px;

    }

}

@media(max-width:768px){

    .faq-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .faq-hero-content{

        text-align:center;

    }

    .faq-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .faq-hero-content p{

        font-size:16px;

    }

    .faq-section{

        padding:90px 0;

    }

    .faq-question{

        font-size:20px;

        padding:24px;

    }

    .faq-answer p{

        padding:0 24px 24px;

    }

}

@media(max-width:480px){

    .faq-hero-content h1{

        font-size:36px;

    }

    .faq-question{

        font-size:18px;

    }

}

/* ===================================
   CONTACT PAGE
=================================== */

.contact-hero{

    position:relative;

    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.contact-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.contact-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.contact-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.contact-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.contact-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* CONTACT SECTION */

.contact-section{

    padding:120px 0;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

/* LEFT */

.contact-info h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.contact-info p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:35px;

}

/* CONTACT BOX */

.contact-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#171717;

    border:1px solid var(--border);

    border-radius:20px;

    padding:25px;

    margin-bottom:22px;

    transition:0.4s;

}

.contact-box:hover{

    border-color:var(--gold);

    transform:translateY(-5px);

}

.contact-icon{

    width:65px;
    height:65px;

    border-radius:50%;

    background:
    rgba(198,164,108,0.12);

    color:var(--gold);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.contact-box h3{

    font-size:28px;

    margin-bottom:8px;

    font-family:'Cormorant Garamond',serif;

}

.contact-box p{

    margin:0;

}

/* FORM */

.contact-form-wrapper{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px;

}

.contact-form{

    width:100%;

}

.form-group{

    margin-bottom:24px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    background:#111;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:12px;

    padding:18px 20px;

    color:#fff;

    font-size:15px;

    outline:none;

    transition:0.4s;

    font-family:'Inter',sans-serif;

}

.contact-form textarea{

    resize:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--gold);

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#8a8a8a;

}

/* RESPONSIVE */

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .contact-hero-content h1{

        font-size:62px;

    }

    .contact-info h2{

        font-size:50px;

    }

}

@media(max-width:768px){

    .contact-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .contact-hero-content{

        text-align:center;

    }

    .contact-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .contact-hero-content p{

        font-size:16px;

    }

    .contact-section{

        padding:90px 0;

    }

    .contact-info{

        text-align:center;

    }

    .contact-info h2{

        font-size:38px;

        line-height:1.15;

    }

    .contact-form-wrapper{

        padding:35px 25px;

    }

}

@media(max-width:480px){

    .contact-hero-content h1{

        font-size:36px;

    }

    .contact-info h2{

        font-size:32px;

    }

    .contact-box{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}

/* ===================================
   HELP PAGE
=================================== */

.help-hero{

    position:relative;

    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.help-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.help-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.help-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.help-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.help-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* HELP SECTION */

.help-section{

    padding:120px 0;

}

.help-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

/* CARD */

.help-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px 35px;

    transition:0.4s ease;

}

.help-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.help-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:
    rgba(198,164,108,0.12);

    color:var(--gold);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    margin-bottom:28px;

}

.help-card h3{

    font-size:36px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

.help-card p{

    color:#cfcfcf;

    line-height:1.9;

}

/* STEPS */

.help-steps{

    padding:120px 0;

    background:#111;

}

.help-steps-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

/* STEP BOX */

.help-step-box{

    background:#171717;

    border:1px solid var(--border);

    border-radius:24px;

    padding:50px 40px;

    transition:0.4s ease;

}

.help-step-box:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.help-number{

    font-size:60px;

    color:var(--gold);

    margin-bottom:20px;

    font-family:'Cormorant Garamond',serif;

}

.help-step-box h3{

    font-size:34px;

    margin-bottom:16px;

    font-family:'Cormorant Garamond',serif;

}

.help-step-box p{

    color:#cfcfcf;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .help-hero-content h1{

        font-size:62px;

    }

}

@media(max-width:768px){

    .help-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .help-hero-content{

        text-align:center;

    }

    .help-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .help-hero-content p{

        font-size:16px;

    }

    .help-section,
    .help-steps{

        padding:90px 0;

    }

    .help-grid,
    .help-steps-grid{

        grid-template-columns:1fr;

    }

    .help-card,
    .help-step-box{

        padding:40px 28px;

    }

}

@media(max-width:480px){

    .help-hero-content h1{

        font-size:36px;

    }

    .help-card h3,
    .help-step-box h3{

        font-size:28px;

    }

}

/* ===================================
   BLOG PAGE
=================================== */

.blog-hero{

    position:relative;

    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    url('img/home-banner.png')
    center/cover no-repeat;

}

.blog-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.blog-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.blog-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.blog-hero-content h1{

    font-size:88px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.blog-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

}

/* FEATURED BLOG */

.featured-blog{

    padding:120px 0;

}

.featured-blog-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.featured-blog-image img{

    width:100%;

    border-radius:28px;

}

.featured-blog-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.featured-blog-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:35px;

}

/* BLOG SECTION */

.blog-section{

    padding:120px 0;

    background:#111;

}

.blog-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

/* BLOG CARD */

.blog-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

    transition:0.4s ease;

}

.blog-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.blog-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.blog-card-content{

    padding:35px;

}

.blog-card-content span{

    display:inline-block;

    color:var(--gold);

    margin-bottom:15px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

}

.blog-card-content h3{

    font-size:34px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

.blog-card-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:28px;

}

/* BLOG BUTTON */

.blog-btn{

    color:var(--gold);

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

}

.blog-btn:hover{

    color:#fff;

}

/* NEWSLETTER */

.blog-newsletter{

    padding:120px 0;

}

.newsletter-content{

    max-width:850px;

    margin:auto;

    text-align:center;

}

.newsletter-content h2{

    font-size:62px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.newsletter-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:40px;

}

/* FORM */

.newsletter-form{

    display:flex;

    gap:20px;

    justify-content:center;

    flex-wrap:wrap;

}

.newsletter-form input{

    width:420px;

    max-width:100%;

    background:#171717;

    border:1px solid var(--border);

    border-radius:12px;

    padding:18px 20px;

    color:#fff;

    outline:none;

    font-size:15px;

}

.newsletter-form input:focus{

    border-color:var(--gold);

}

.newsletter-form input::placeholder{

    color:#8a8a8a;

}

/* RESPONSIVE */

@media(max-width:992px){

    .featured-blog-grid{

        grid-template-columns:1fr;

    }

    .blog-hero-content h1{

        font-size:62px;

    }

    .featured-blog-content h2,
    .newsletter-content h2{

        font-size:50px;

    }

}

@media(max-width:768px){

    .blog-hero{

        min-height:90vh;

        padding:150px 0 90px;

    }

    .blog-hero-content{

        text-align:center;

    }

    .blog-hero-content h1{

        font-size:44px;

        line-height:1.1;

    }

    .blog-hero-content p{

        font-size:16px;

    }

    .featured-blog,
    .blog-section,
    .blog-newsletter{

        padding:90px 0;

    }

    .featured-blog-content{

        text-align:center;

    }

    .featured-blog-content h2,
    .newsletter-content h2{

        font-size:38px;

        line-height:1.15;

    }

    .blog-grid{

        grid-template-columns:1fr;

    }

    .blog-card-content{

        padding:28px;

    }

}

@media(max-width:480px){

    .blog-hero-content h1{

        font-size:36px;

    }

    .featured-blog-content h2,
    .newsletter-content h2{

        font-size:32px;

    }

    .blog-card img{

        height:260px;

    }

}

/* ===================================
   NEW YORK LANDING PAGE
=================================== */

/* ===================================
   NEW YORK LANDING PAGE
=================================== */

.newyork-hero{

    position:relative;

    min-height:95vh;

    display:flex;
    align-items:center;

    background:
    url('img/newyorksd.png')
    center/cover no-repeat;

}

.newyork-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.newyork-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.newyork-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.newyork-hero-content h1{

    font-size:90px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.newyork-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

/* BUTTONS */

.newyork-btns{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    border:1px solid var(--gold);

    color:#fff;

    text-decoration:none;

    transition:0.4s ease;

}

.btn-outline:hover{

    background:var(--gold);

    color:#111;

}

/* INTRO */

.newyork-intro{

    padding:120px 0;

}

.newyork-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.newyork-image img{

    width:100%;

    border-radius:30px;

}

.newyork-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.newyork-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:24px;

}

/* STATS */

.newyork-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.newyork-stat{

    background:#171717;

    border:1px solid var(--border);

    border-radius:20px;

    padding:25px;

    min-width:160px;

    text-align:center;

}

.newyork-stat h3{

    color:var(--gold);

    font-size:40px;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}

/* FEATURES */

.newyork-features{

    padding:120px 0;

    background:#111;

}

.newyork-feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.newyork-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px 35px;

    transition:0.4s ease;

}

.newyork-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.newyork-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:
    rgba(198,164,108,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:var(--gold);

    margin-bottom:28px;

}

.newyork-card h3{

    font-size:36px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

.newyork-card p{

    color:#cfcfcf;

    line-height:1.9;

}

/* CONTENT */

.newyork-content-section{

    padding:120px 0;

}

.newyork-wrapper{

    max-width:1100px;

    margin:auto;

}

.newyork-wrapper h2{

    font-size:58px;

    margin:70px 0 25px;

    font-family:'Cormorant Garamond',serif;

}

.newyork-wrapper p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:25px;

    font-size:17px;

}

.newyork-wrapper img{

    width:100%;

    border-radius:30px;

    margin:50px 0;

}

/* LIST */

.newyork-list{

    margin:30px 0;

    padding-left:25px;

}

.newyork-list li{

    color:#d5d5d5;

    margin-bottom:16px;

    line-height:1.9;

}

/* HIGHLIGHT */

.newyork-highlight{

    background:#171717;

    border-left:4px solid var(--gold);

    padding:40px;

    border-radius:20px;

    margin:50px 0;

}

.newyork-highlight h3{

    font-size:38px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

/* CTA */

.newyork-cta{

    padding:120px 0;

    background:#111;

    text-align:center;

}

.newyork-cta h2{

    font-size:64px;

    margin-bottom:25px;

    font-family:'Cormorant Garamond',serif;

}

.newyork-cta p{

    color:#cfcfcf;

    max-width:700px;

    margin:auto auto 40px;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .newyork-grid{

        grid-template-columns:1fr;

    }

    .newyork-hero-content h1{

        font-size:64px;

    }

    .newyork-content h2,
    .newyork-wrapper h2{

        font-size:46px;

    }

}

@media(max-width:768px){

    .newyork-hero{

        min-height:95vh;

        padding:150px 0 100px;

    }

    .newyork-hero-content{

        text-align:center;

    }

    .newyork-hero-content h1{

        font-size:46px;

        line-height:1.1;

    }

    .newyork-hero-content p{

        font-size:16px;

    }

    .newyork-btns{

        justify-content:center;

    }

    .newyork-intro,
    .newyork-features,
    .newyork-content-section,
    .newyork-cta{

        padding:90px 0;

    }

    .newyork-content h2,
    .newyork-wrapper h2,
    .newyork-cta h2{

        font-size:38px;

    }

    .newyork-feature-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    .newyork-hero-content h1{

        font-size:38px;

    }

    .newyork-content h2,
    .newyork-wrapper h2,
    .newyork-cta h2{

        font-size:32px;

    }

    .btn-outline,
    .btn-primary{

        width:100%;

    }

}

/* ===================================
   CALIFORNIA LANDING PAGE
=================================== */

.california-hero{

    position:relative;

    min-height:95vh;

    display:flex;
    align-items:center;

    background:
    url('img/sugardaddycalifornia.png')
    center/cover no-repeat;

}

.california-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.california-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.california-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.california-hero-content h1{

    font-size:90px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.california-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

/* BUTTONS */

.california-btns{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    border:1px solid var(--gold);

    color:#fff;

    text-decoration:none;

    transition:0.4s ease;

}

.btn-outline:hover{

    background:var(--gold);

    color:#111;

}

/* INTRO */

.california-intro{

    padding:120px 0;

}

.california-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.california-image img{

    width:100%;

    border-radius:30px;

}

.california-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.california-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:24px;

}

/* STATS */

.california-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.california-stat{

    background:#171717;

    border:1px solid var(--border);

    border-radius:20px;

    padding:25px;

    min-width:160px;

    text-align:center;

}

.california-stat h3{

    color:var(--gold);

    font-size:40px;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}

/* FEATURES */

.california-features{

    padding:120px 0;

    background:#111;

}

.california-feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.california-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px 35px;

    transition:0.4s ease;

}

.california-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.california-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:
    rgba(198,164,108,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:var(--gold);

    margin-bottom:28px;

}

.california-card h3{

    font-size:36px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

.california-card p{

    color:#cfcfcf;

    line-height:1.9;

}

/* CONTENT */

.california-content-section{

    padding:120px 0;

}

.california-wrapper{

    max-width:1100px;

    margin:auto;

}

.california-wrapper h2{

    font-size:58px;

    margin:70px 0 25px;

    font-family:'Cormorant Garamond',serif;

}

.california-wrapper p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:25px;

    font-size:17px;

}

.california-wrapper img{

    width:100%;

    border-radius:30px;

    margin:50px 0;

}

/* LIST */

.california-list{

    margin:30px 0;

    padding-left:25px;

}

.california-list li{

    color:#d5d5d5;

    margin-bottom:16px;

    line-height:1.9;

}

/* HIGHLIGHT */

.california-highlight{

    background:#171717;

    border-left:4px solid var(--gold);

    padding:40px;

    border-radius:20px;

    margin:50px 0;

}

.california-highlight h3{

    font-size:38px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

/* CTA */

.california-cta{

    padding:120px 0;

    background:#111;

    text-align:center;

}

.california-cta h2{

    font-size:64px;

    margin-bottom:25px;

    font-family:'Cormorant Garamond',serif;

}

.california-cta p{

    color:#cfcfcf;

    max-width:700px;

    margin:auto auto 40px;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .california-grid{

        grid-template-columns:1fr;

    }

    .california-hero-content h1{

        font-size:64px;

    }

    .california-content h2,
    .california-wrapper h2{

        font-size:46px;

    }

}

@media(max-width:768px){

    .california-hero{

        min-height:95vh;

        padding:150px 0 100px;

    }

    .california-hero-content{

        text-align:center;

    }

    .california-hero-content h1{

        font-size:46px;

        line-height:1.1;

    }

    .california-hero-content p{

        font-size:16px;

    }

    .california-btns{

        justify-content:center;

    }

    .california-intro,
    .california-features,
    .california-content-section,
    .california-cta{

        padding:90px 0;

    }

    .california-content h2,
    .california-wrapper h2,
    .california-cta h2{

        font-size:38px;

    }

    .california-feature-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    .california-hero-content h1{

        font-size:38px;

    }

    .california-content h2,
    .california-wrapper h2,
    .california-cta h2{

        font-size:32px;

    }

    .btn-outline,
    .btn-primary{

        width:100%;

    }

}

/* ===================================
   TEXAS LANDING PAGE
=================================== */

.texas-hero{

    position:relative;

    min-height:95vh;

    display:flex;
    align-items:center;

    background:
    url('img/sugardaddytexas.png')
    center/cover no-repeat;

}

.texas-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.texas-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.texas-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.texas-hero-content h1{

    font-size:90px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.texas-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

/* BUTTONS */

.texas-btns{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    border:1px solid var(--gold);

    color:#fff;

    text-decoration:none;

    transition:0.4s ease;

}

.btn-outline:hover{

    background:var(--gold);

    color:#111;

}

/* INTRO */

.texas-intro{

    padding:120px 0;

}

.texas-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.texas-image img{

    width:100%;

    border-radius:30px;

}

.texas-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.texas-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:24px;

}

/* STATS */

.texas-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.texas-stat{

    background:#171717;

    border:1px solid var(--border);

    border-radius:20px;

    padding:25px;

    min-width:160px;

    text-align:center;

}

.texas-stat h3{

    color:var(--gold);

    font-size:40px;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}

/* FEATURES */

.texas-features{

    padding:120px 0;

    background:#111;

}

.texas-feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.texas-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px 35px;

    transition:0.4s ease;

}

.texas-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.texas-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:
    rgba(198,164,108,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:var(--gold);

    margin-bottom:28px;

}

.texas-card h3{

    font-size:36px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

.texas-card p{

    color:#cfcfcf;

    line-height:1.9;

}

/* CONTENT */

.texas-content-section{

    padding:120px 0;

}

.texas-wrapper{

    max-width:1100px;

    margin:auto;

}

.texas-wrapper h2{

    font-size:58px;

    margin:70px 0 25px;

    font-family:'Cormorant Garamond',serif;

}

.texas-wrapper p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:25px;

    font-size:17px;

}

.texas-wrapper img{

    width:100%;

    border-radius:30px;

    margin:50px 0;

}

/* LIST */

.texas-list{

    margin:30px 0;

    padding-left:25px;

}

.texas-list li{

    color:#d5d5d5;

    margin-bottom:16px;

    line-height:1.9;

}

/* HIGHLIGHT */

.texas-highlight{

    background:#171717;

    border-left:4px solid var(--gold);

    padding:40px;

    border-radius:20px;

    margin:50px 0;

}

.texas-highlight h3{

    font-size:38px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

/* CTA */

.texas-cta{

    padding:120px 0;

    background:#111;

    text-align:center;

}

.texas-cta h2{

    font-size:64px;

    margin-bottom:25px;

    font-family:'Cormorant Garamond',serif;

}

.texas-cta p{

    color:#cfcfcf;

    max-width:700px;

    margin:auto auto 40px;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .texas-grid{

        grid-template-columns:1fr;

    }

    .texas-hero-content h1{

        font-size:64px;

    }

    .texas-content h2,
    .texas-wrapper h2{

        font-size:46px;

    }

}

@media(max-width:768px){

    .texas-hero{

        min-height:95vh;

        padding:150px 0 100px;

    }

    .texas-hero-content{

        text-align:center;

    }

    .texas-hero-content h1{

        font-size:46px;

        line-height:1.1;

    }

    .texas-hero-content p{

        font-size:16px;

    }

    .texas-btns{

        justify-content:center;

    }

    .texas-intro,
    .texas-features,
    .texas-content-section,
    .texas-cta{

        padding:90px 0;

    }

    .texas-content h2,
    .texas-wrapper h2,
    .texas-cta h2{

        font-size:38px;

    }

    .texas-feature-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    .texas-hero-content h1{

        font-size:38px;

    }

    .texas-content h2,
    .texas-wrapper h2,
    .texas-cta h2{

        font-size:32px;

    }

    .btn-outline,
    .btn-primary{

        width:100%;

    }

}

/* ===================================
   FLORIDA LANDING PAGE
=================================== */

.florida-hero{

    position:relative;

    min-height:95vh;

    display:flex;
    align-items:center;

    background:
    url('img/florida.png')
    center/cover no-repeat;

}

.florida-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.florida-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.florida-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.florida-hero-content h1{

    font-size:90px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.florida-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

/* BUTTONS */

.florida-btns{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    border:1px solid var(--gold);

    color:#fff;

    text-decoration:none;

    transition:0.4s ease;

}

.btn-outline:hover{

    background:var(--gold);

    color:#111;

}

/* INTRO */

.florida-intro{

    padding:120px 0;

}

.florida-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.florida-image img{

    width:100%;

    border-radius:30px;

}

.florida-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.florida-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:24px;

}

/* STATS */

.florida-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.florida-stat{

    background:#171717;

    border:1px solid var(--border);

    border-radius:20px;

    padding:25px;

    min-width:160px;

    text-align:center;

}

.florida-stat h3{

    color:var(--gold);

    font-size:40px;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}

/* FEATURES */

.florida-features{

    padding:120px 0;

    background:#111;

}

.florida-feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.florida-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px 35px;

    transition:0.4s ease;

}

.florida-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.florida-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:
    rgba(198,164,108,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:var(--gold);

    margin-bottom:28px;

}

.florida-card h3{

    font-size:36px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

.florida-card p{

    color:#cfcfcf;

    line-height:1.9;

}

/* CONTENT */

.florida-content-section{

    padding:120px 0;

}

.florida-wrapper{

    max-width:1100px;

    margin:auto;

}

.florida-wrapper h2{

    font-size:58px;

    margin:70px 0 25px;

    font-family:'Cormorant Garamond',serif;

}

.florida-wrapper p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:25px;

    font-size:17px;

}

.florida-wrapper img{

    width:100%;

    border-radius:30px;

    margin:50px 0;

}

/* LIST */

.florida-list{

    margin:30px 0;

    padding-left:25px;

}

.florida-list li{

    color:#d5d5d5;

    margin-bottom:16px;

    line-height:1.9;

}

/* HIGHLIGHT */

.florida-highlight{

    background:#171717;

    border-left:4px solid var(--gold);

    padding:40px;

    border-radius:20px;

    margin:50px 0;

}

.florida-highlight h3{

    font-size:38px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

/* CTA */

.florida-cta{

    padding:120px 0;

    background:#111;

    text-align:center;

}

.florida-cta h2{

    font-size:64px;

    margin-bottom:25px;

    font-family:'Cormorant Garamond',serif;

}

.florida-cta p{

    color:#cfcfcf;

    max-width:700px;

    margin:auto auto 40px;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .florida-grid{

        grid-template-columns:1fr;

    }

    .florida-hero-content h1{

        font-size:64px;

    }

    .florida-content h2,
    .florida-wrapper h2{

        font-size:46px;

    }

}

@media(max-width:768px){

    .florida-hero{

        min-height:95vh;

        padding:150px 0 100px;

    }

    .florida-hero-content{

        text-align:center;

    }

    .florida-hero-content h1{

        font-size:46px;

        line-height:1.1;

    }

    .florida-hero-content p{

        font-size:16px;

    }

    .florida-btns{

        justify-content:center;

    }

    .florida-intro,
    .florida-features,
    .florida-content-section,
    .florida-cta{

        padding:90px 0;

    }

    .florida-content h2,
    .florida-wrapper h2,
    .florida-cta h2{

        font-size:38px;

    }

    .florida-feature-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    .florida-hero-content h1{

        font-size:38px;

    }

    .florida-content h2,
    .florida-wrapper h2,
    .florida-cta h2{

        font-size:32px;

    }

    .btn-outline,
    .btn-primary{

        width:100%;

    }

}

/* ===================================
   PENNSYLVANIA LANDING PAGE
=================================== */

.penn-hero{

    position:relative;

    min-height:95vh;

    display:flex;
    align-items:center;

    background:
    url('img/pennsylvaniadating.png')
    center/cover no-repeat;

}

.penn-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.58)
    );

}

.penn-hero-content{

    position:relative;
    z-index:2;

    max-width:760px;

}

.penn-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.penn-hero-content h1{

    font-size:90px;

    line-height:1;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.penn-hero-content p{

    color:#e2e2e2;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

/* BUTTONS */

.penn-btns{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    border:1px solid var(--gold);

    color:#fff;

    text-decoration:none;

    transition:0.4s ease;

}

.btn-outline:hover{

    background:var(--gold);

    color:#111;

}

/* INTRO */

.penn-intro{

    padding:120px 0;

}

.penn-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.penn-image img{

    width:100%;

    border-radius:30px;

}

.penn-content h2{

    font-size:60px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

}

.penn-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:24px;

}

/* STATS */

.penn-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.penn-stat{

    background:#171717;

    border:1px solid var(--border);

    border-radius:20px;

    padding:25px;

    min-width:160px;

    text-align:center;

}

.penn-stat h3{

    color:var(--gold);

    font-size:40px;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}

/* FEATURES */

.penn-features{

    padding:120px 0;

    background:#111;

}

.penn-feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.penn-card{

    background:#171717;

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px 35px;

    transition:0.4s ease;

}

.penn-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.penn-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:
    rgba(198,164,108,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:var(--gold);

    margin-bottom:28px;

}

.penn-card h3{

    font-size:36px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

.penn-card p{

    color:#cfcfcf;

    line-height:1.9;

}

/* CONTENT */

.penn-content-section{

    padding:120px 0;

}

.penn-wrapper{

    max-width:1100px;

    margin:auto;

}

.penn-wrapper h2{

    font-size:58px;

    margin:70px 0 25px;

    font-family:'Cormorant Garamond',serif;

}

.penn-wrapper p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:25px;

    font-size:17px;

}

.penn-wrapper img{

    width:100%;

    border-radius:30px;

    margin:50px 0;

}

/* LIST */

.penn-list{

    margin:30px 0;

    padding-left:25px;

}

.penn-list li{

    color:#d5d5d5;

    margin-bottom:16px;

    line-height:1.9;

}

/* HIGHLIGHT */

.penn-highlight{

    background:#171717;

    border-left:4px solid var(--gold);

    padding:40px;

    border-radius:20px;

    margin:50px 0;

}

.penn-highlight h3{

    font-size:38px;

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

}

/* CTA */

.penn-cta{

    padding:120px 0;

    background:#111;

    text-align:center;

}

.penn-cta h2{

    font-size:64px;

    margin-bottom:25px;

    font-family:'Cormorant Garamond',serif;

}

.penn-cta p{

    color:#cfcfcf;

    max-width:700px;

    margin:auto auto 40px;

    line-height:1.9;

}

/* RESPONSIVE */

@media(max-width:992px){

    .penn-grid{

        grid-template-columns:1fr;

    }

    .penn-hero-content h1{

        font-size:64px;

    }

    .penn-content h2,
    .penn-wrapper h2{

        font-size:46px;

    }

}

@media(max-width:768px){

    .penn-hero{

        min-height:95vh;

        padding:150px 0 100px;

    }

    .penn-hero-content{

        text-align:center;

    }

    .penn-hero-content h1{

        font-size:46px;

        line-height:1.1;

    }

    .penn-hero-content p{

        font-size:16px;

    }

    .penn-btns{

        justify-content:center;

    }

    .penn-intro,
    .penn-features,
    .penn-content-section,
    .penn-cta{

        padding:90px 0;

    }

    .penn-content h2,
    .penn-wrapper h2,
    .penn-cta h2{

        font-size:38px;

    }

    .penn-feature-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    .penn-hero-content h1{

        font-size:38px;

    }

    .penn-content h2,
    .penn-wrapper h2,
    .penn-cta h2{

        font-size:32px;

    }

    .btn-outline,
    .btn-primary{

        width:100%;

    }

}
