*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --cream:#f7f1e8;
    --cream-2:#fbf8f2;
    --sage:#7fae9b;
    --sage-dark:#4f8678;
    --deep:#183f4a;
    --deep-2:#0f3038;
    --mint:#dceee8;
    --gold:#d8a451;
    --text:#24343a;
    --muted:#6d7b7f;
    --white:#ffffff;
    --border:#e5ddd0;
    --shadow:0 18px 50px rgba(24,63,74,.13);
    --soft-shadow:0 10px 30px rgba(24,63,74,.09);
}

body{
    font-family:'Inter', Arial, sans-serif;
    background:var(--cream);
    color:var(--text);
    line-height:1.7;
}

body:before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 8% 12%, rgba(127,174,155,.18), transparent 28%),
        radial-gradient(circle at 90% 4%, rgba(216,164,81,.18), transparent 24%),
        radial-gradient(circle at 90% 82%, rgba(127,174,155,.13), transparent 26%);
    z-index:-1;
}

.container{
    width:90%;
    max-width:1220px;
    margin:auto;
}

/* HEADER / NAV */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:transparent;
    padding:16px 0;
}

.header:before{
    content:"Phone: (619) 405-7663  •  California Telehealth Available";
    display:block;
    width:90%;
    max-width:1220px;
    margin:0 auto 12px;
    color:var(--deep);
    font-size:.9rem;
    font-weight:700;
    text-align:right;
}

.nav-container{
    background:rgba(255,255,255,.94);
    border:1px solid rgba(229,221,208,.95);
    border-radius:999px;
    box-shadow:var(--soft-shadow);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 22px;
    backdrop-filter:blur(12px);
}

.logo h2{
    color:var(--deep);
    font-size:1.15rem;
    font-weight:900;
    letter-spacing:-.03em;
}

.nav{
    display:flex;
    gap:28px;
    align-items:center;
}

.nav a{
    color:var(--deep);
    text-decoration:none;
    font-weight:800;
    font-size:.93rem;
}

.nav a:hover{
    color:var(--sage-dark);
}

.nav a:last-child{
    background:var(--sage-dark);
    color:var(--white);
    padding:12px 20px;
    border-radius:999px;
}

.mobile-toggle{
    display:none;
    font-size:30px;
    color:var(--deep);
    cursor:pointer;
}

/* HERO - SERENOVA STYLE */

.hero{
    position:relative;
    min-height:calc(100vh - 110px);
    display:flex;
    align-items:center;
    background:transparent;
    color:var(--text);
    overflow:hidden;
    padding:40px 0 80px;
}

.hero:before{
    content:"";
    position:absolute;
    width:620px;
    height:620px;
    background:var(--mint);
    border-radius:46% 54% 62% 38% / 48% 44% 56% 52%;
    right:-170px;
    top:40px;
    opacity:.75;
}

.hero:after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(216,164,81,.20);
    border-radius:61% 39% 45% 55% / 48% 54% 46% 52%;
    left:-80px;
    bottom:20px;
}

.overlay{
    display:none;
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:70px;
    align-items:center;
}

.hero-content{
    max-width:720px;
}

.experience-badge,
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--white);
    color:var(--sage-dark);
    border:1px solid var(--border);
    padding:10px 18px;
    border-radius:999px;
    font-size:.84rem;
    font-weight:900;
    margin-bottom:22px;
    box-shadow:var(--soft-shadow);
}

.experience-badge:before,
.section-tag:before{
    content:"";
    width:9px;
    height:9px;
    background:var(--gold);
    border-radius:50%;
}

.hero h1{
    color:var(--deep);
    font-size:clamp(3.3rem,6.4vw,6.1rem);
    line-height:.95;
    letter-spacing:-.07em;
    margin-bottom:28px;
}

.hero-subheadline{
    color:var(--deep-2);
    font-size:1.35rem;
    line-height:1.45;
    font-weight:750;
    margin-bottom:22px;
}

.hero p{
    color:var(--muted);
    font-size:1.06rem;
    max-width:700px;
}

.consult-note{
    margin-top:20px;
    color:var(--sage-dark)!important;
    font-style:italic;
    font-weight:700;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:34px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    min-height:56px;
    border-radius:999px;
    text-decoration:none;
    font-weight:900;
    transition:.25s ease;
}

.btn-primary{
    background:var(--sage-dark);
    color:var(--white);
    box-shadow:0 14px 34px rgba(79,134,120,.28);
}

.btn-primary:hover{
    background:var(--deep);
    transform:translateY(-2px);
}

.btn-secondary{
    background:var(--white);
    color:var(--deep);
    border:1px solid var(--border);
    box-shadow:var(--soft-shadow);
}

.btn-secondary:hover{
    transform:translateY(-2px);
    border-color:var(--sage);
}

.large-btn{
    font-size:1.02rem;
}

.trust-bar{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:36px;
}

.trust-item{
    background:rgba(255,255,255,.82);
    color:var(--deep);
    border:1px solid var(--border);
    border-radius:22px;
    padding:16px;
    font-size:.88rem;
    font-weight:850;
    box-shadow:var(--soft-shadow);
}

/* HERO IMAGE AS FLOATING CARD */

.hero-image-wrapper{
    position:relative;
    padding:18px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:42px;
    box-shadow:var(--shadow);
}

.hero-image-wrapper:before{
    content:"Free Consultation";
    position:absolute;
    left:-34px;
    bottom:54px;
    background:var(--deep);
    color:var(--white);
    border-radius:26px;
    padding:18px 22px;
    font-weight:900;
    box-shadow:var(--shadow);
    z-index:3;
}

.hero-image-wrapper:after{
    content:"38+ Years Experience";
    position:absolute;
    right:-22px;
    top:48px;
    background:var(--gold);
    color:var(--deep);
    border-radius:24px;
    padding:16px 20px;
    font-weight:900;
    box-shadow:var(--shadow);
    z-index:3;
}

.hero-headshot{
    width:100%;
    display:block;
    border-radius:32px;
    aspect-ratio:4/5;
    object-fit:cover;
}

/* SECTION BASE */

.section,
.video-section,
.consultation-section,
.referral-section,
.dark-section{
    padding:105px 0;
}

.section,
.video-section{
    background:transparent;
}

h2{
    font-size:clamp(2.25rem,4vw,3.65rem);
    line-height:1.08;
    color:var(--deep);
    letter-spacing:-.055em;
    margin-bottom:20px;
}

.center{
    text-align:center;
}

.large-text{
    font-size:1.18rem;
    color:var(--muted);
    max-width:850px;
    margin:20px auto;
}

/* VIDEO CARD */

.video-wrapper{
    margin:50px auto 0;
    max-width:980px;
    position:relative;
    padding-bottom:53%;
    height:0;
    overflow:hidden;
    border-radius:42px;
    background:var(--deep);
    box-shadow:var(--shadow);
    border:16px solid var(--white);
}

.video-wrapper iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

/* WHO I HELP */

.symptom-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:50px;
}

.symptom-item{
    background:var(--white);
    padding:24px;
    border-radius:26px;
    font-weight:800;
    color:var(--deep);
    border:1px solid var(--border);
    box-shadow:var(--soft-shadow);
}

.symptom-item:hover,
.card:hover{
    transform:translateY(-4px);
    transition:.25s ease;
}

/* DARK SECTION BUT SOFTER LIKE TEMPLATE */

.dark-section{
    background:var(--deep);
    color:var(--white);
    border-radius:48px;
    width:94%;
    margin:0 auto;
    overflow:hidden;
    position:relative;
}

.dark-section:before{
    content:"";
    position:absolute;
    width:430px;
    height:430px;
    background:rgba(127,174,155,.22);
    border-radius:50%;
    right:-140px;
    top:-140px;
}

.dark-section:after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(216,164,81,.14);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

.dark-section .container{
    position:relative;
    z-index:2;
}

.dark-section h2{
    color:var(--white);
}

.dark-section .large-text,
.dark-section p{
    color:#d9ebe9;
}

/* CARD GRID */

.card-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
}

.card{
    background:var(--white);
    color:var(--text);
    padding:34px;
    border-radius:32px;
    box-shadow:var(--soft-shadow);
    border:1px solid var(--border);
}

.card h3{
    color:var(--deep);
    margin-bottom:14px;
    font-size:1.23rem;
    letter-spacing:-.02em;
}

.card p,
.card li{
    color:var(--muted);
}

.card ul{
    padding-left:20px;
    margin-top:16px;
}

/* TWO COLUMN CONTENT */

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.responsive-image{
    width:100%;
    border-radius:38px;
    box-shadow:var(--shadow);
    border:14px solid var(--white);
}

.methods-box{
    background:var(--white);
    padding:42px;
    border-radius:34px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.methods-box h3{
    color:var(--deep);
    margin-bottom:18px;
}

.methods-box ul{
    padding-left:22px;
}

.methods-box li{
    margin-bottom:14px;
    color:var(--muted);
    font-weight:700;
}

.white-checks .symptom-item{
    background:rgba(255,255,255,.1);
    color:var(--white);
    border:1px solid rgba(255,255,255,.18);
    box-shadow:none;
}

/* CONSULTATION SECTION - APPOINTMENT STYLE */

.consultation-section{
    background:transparent;
}

.consultation-section .container{
    background:var(--mint);
    border:1px solid rgba(127,174,155,.28);
    border-radius:48px;
    padding:70px;
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
}

.consultation-section .container:after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-80px;
    top:-80px;
    background:rgba(255,255,255,.45);
    border-radius:50%;
}

.consultation-section h2,
.consultation-section p,
.consultation-section .hero-buttons{
    position:relative;
    z-index:2;
}

.consultation-section .hero-buttons{
    justify-content:center;
}

.referral-section{
    background:transparent;
}

.footer{
    background:var(--deep);
    color:var(--white);
    padding:70px 0;
    margin-top:40px;
    border-radius:48px 48px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer h3,
.footer h4{
    margin-bottom:10px;
}

.footer p{
    color:#d9ebe9;
}

.top-space{
    margin-top:40px;
}

.top-space-btn{
    margin-top:24px;
}

/* CONTACT PAGE */

.contact-form{
    background:var(--white);
    padding:40px;
    border-radius:34px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:16px;
    border:1px solid var(--border);
    border-radius:18px;
    font-family:inherit;
    font-size:1rem;
    background:var(--cream-2);
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:var(--sage);
    box-shadow:0 0 0 4px rgba(127,174,155,.18);
}

.contact-box{
    background:var(--white);
    padding:32px;
    border-radius:30px;
    margin-top:24px;
    border:1px solid var(--border);
    box-shadow:var(--soft-shadow);
}

/* RESPONSIVE */

@media(max-width:1100px){
    .hero-grid,
    .grid-2{
        grid-template-columns:1fr;
    }

    .hero-image-wrapper{
        max-width:520px;
        margin:auto;
    }

    .card-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .symptom-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-bar{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .header:before{
        text-align:center;
        font-size:.78rem;
    }

    .nav-container{
        border-radius:28px;
    }

    .nav{
        position:absolute;
        top:92px;
        left:5%;
        width:90%;
        background:var(--white);
        flex-direction:column;
        display:none;
        padding:25px;
        border-radius:28px;
        box-shadow:var(--shadow);
        border:1px solid var(--border);
        align-items:flex-start;
    }

    .nav.active{
        display:flex;
    }

    .nav a:last-child{
        width:100%;
        text-align:center;
    }

    .mobile-toggle{
        display:block;
    }

    .hero{
        min-height:auto;
        padding:35px 0 65px;
    }

    .hero-grid{
        gap:45px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .symptom-grid,
    .card-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .section,
    .video-section,
    .consultation-section,
    .referral-section,
    .dark-section{
        padding:70px 0;
    }

    .dark-section{
        width:92%;
        border-radius:34px;
    }

    .consultation-section .container{
        padding:45px 24px;
        border-radius:34px;
    }

    .hero-image-wrapper:before,
    .hero-image-wrapper:after{
        position:static;
        display:block;
        margin:10px 0;
        text-align:center;
    }
}

@media(max-width:576px){
    .container{
        width:92%;
    }

    .logo h2{
        font-size:1rem;
    }

    .hero h1{
        font-size:2.85rem;
    }

    .hero-subheadline{
        font-size:1.08rem;
    }

    .card,
    .methods-box,
    .contact-form{
        padding:26px;
    }

    .hero-image-wrapper{
        padding:12px;
        border-radius:30px;
    }

    .hero-headshot{
        border-radius:24px;
    }
}
