    :root {
        --teal: #1AA0C4;
        --teal-dark: #16839e;
        --teal-deep: #0F5E72;
        --teal-ink: #0C4A5A;
        --slate: #22424E;
        --slate-deep: #1A333C;
        --green: #7AB648;
        --green-deep: #5C8F33;
        --red: #E8342B;
        --amber: #F6A623;
        --ink: #26343B;
        --ink-70: rgba(38, 52, 59, .72);
        --ink-55: rgba(38, 52, 59, .66);
        --ink-30: rgba(38, 52, 59, .30);
        --line: rgba(15, 94, 114, .14);
        --tint: #EAF6FA;
        --tint-2: #F4F9FB;
        --surface: #F4F7F9;
        --white: #fff;
        --shadow-sm: 0 2px 10px rgba(15, 94, 114, .07), 0 8px 24px rgba(15, 94, 114, .05);
        --shadow-md: 0 6px 24px rgba(15, 94, 114, .10), 0 18px 50px rgba(15, 94, 114, .08);
        --shadow-lg: 0 12px 40px rgba(26, 160, 196, .18), 0 30px 70px rgba(15, 94, 114, .12);
        --r-sm: 10px;
        --r-md: 16px;
        --r-lg: 22px;
        --r-xl: 30px;
        --r-full: 999px;
        --display: 'Poppins', -apple-system, system-ui, sans-serif;
        --body: 'Open Sans', -apple-system, system-ui, sans-serif;
        --ease: cubic-bezier(.22, 1, .36, 1);
        --spring: cubic-bezier(.34, 1.4, .64, 1);
        --teal: #1f5fae;
        --teal-dark: #18497f;
        --teal-deep: #102f5c;
        --teal-ink: #0b1f3b;
        --slate: #0d2138;
        --slate-deep: #081626;
        --tint: #e9f1fb;
        --tint-2: #f4f8fd;
        --surface: #f2f6fb;
        --line: rgba(11, 31, 59, .13);
        --ink: #1d2c3d;
        --ink-70: rgba(29, 44, 61, .72);
        --ink-55: rgba(29, 44, 61, .68);
        --ink-30: rgba(29, 44, 61, .3);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: var(--body);
        color: var(--ink);
        background: var(--white);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        line-height: 1.6;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    button {
        cursor: pointer;
        font-family: var(--body);
        border: none;
        background: none;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: var(--display);
        line-height: 1.12;
        letter-spacing: -.01em;
        color: var(--teal-ink);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    /* ------- animations ------- */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(26px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes floatY {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-14px);
        }
    }

    @keyframes pulseDot {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.5);
            opacity: .5;
        }
    }

    @keyframes spinSlow {
        to {
            transform: rotate(360deg);
        }
    }

    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    .reveal.in {
        opacity: 1;
        transform: none;
    }

    .rd-1 {
        transition-delay: .08s;
    }

    .rd-2 {
        transition-delay: .16s;
    }

    .rd-3 {
        transition-delay: .24s;
    }

    .rd-4 {
        transition-delay: .32s;
    }

    .rd-5 {
        transition-delay: .4s;
    }

    /* ============================================================
   HEADER
   ============================================================ */
    #header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 14px 0;
        transition: all .35s var(--ease);
    }

    #header.scrolled {
        background: rgba(255, 255, 255, .94);
        backdrop-filter: blur(14px) saturate(160%);
        -webkit-backdrop-filter: blur(14px) saturate(160%);
        box-shadow: 0 4px 22px rgba(15, 94, 114, .09);
        padding: 8px 0;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 05px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .brand img {
        height: 46px;
        width: auto;
        transition: height .3s;
    }

    #header.scrolled .brand img {
        height: 40px;
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .nav a {
        padding: 9px 14px;
        border-radius: var(--r-full);
        font-size: 14.5px;
        font-weight: 600;
        color: var(--ink-70);
        transition: all .2s;
    }

    .nav a:hover {
        color: var(--teal-deep);
        background: var(--tint);
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .phone-link {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-weight: 700;
        font-size: 14.5px;
        color: var(--teal-deep);
        padding: 8px 12px;
        border-radius: var(--r-full);
        transition: background .2s;
    }

    .phone-link:hover {
        background: var(--tint);
    }

    .phone-link svg {
        width: 16px;
        height: 16px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: var(--display);
        font-weight: 600;
        border-radius: var(--r-full);
        transition: all .25s var(--spring);
        white-space: nowrap;
    }

    .btn-primary {
        padding: 11px 22px;
        font-size: 14.5px;
        background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        color: #fff;
        box-shadow: 0 6px 18px rgba(26, 160, 196, .32);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(26, 160, 196, .42);
    }

    .btn-primary:active {
        transform: translateY(0) scale(.98);
    }

    .btn-ghost {
        padding: 11px 22px;
        font-size: 14.5px;
        background: #fff;
        color: var(--teal-deep);
        border: 1.6px solid var(--line);
    }

    .btn-ghost:hover {
        border-color: var(--teal);
        background: var(--tint);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 9px;
        border-radius: var(--r-sm);
    }

    .hamburger span {
        width: 22px;
        height: 2.4px;
        background: var(--teal-deep);
        border-radius: 2px;
        transition: .3s;
    }

    /* mobile nav */
    .mnav {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(12, 74, 90, .97);
        z-index: 1100;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }

    .mnav.open {
        opacity: 1;
        pointer-events: all;
    }

    .mnav a {
        font-family: var(--display);
        font-size: 26px;
        font-weight: 600;
        color: #fff;
        padding: 10px 28px;
        border-radius: var(--r-md);
    }

    .mnav a:hover {
        color: var(--teal-light, #9fe3f4);
    }

    .mnav .x {
        position: absolute;
        top: 22px;
        right: 24px;
        color: #fff;
        font-size: 34px;
        line-height: 1;
        padding: 6px;
    }

    /* ============================================================
   HERO
   ============================================================ */
    #hero {
        position: relative;
        padding: 140px 0 80px;
        background:
            radial-gradient(120% 90% at 85% 0%, #DFF3F9 0%, rgba(223, 243, 249, 0) 55%),
            linear-gradient(180deg, #F3FAFC 0%, #ffffff 100%);
        overflow: hidden;
    }

    .hero-bubbles {
        position: absolute;
        inset: 0;
        background-image: url('assets/images/imgi_20_bubbles_bg2-scaled.png');
        background-size: 760px;
        background-position: center;
        opacity: .06;
        pointer-events: none;
    }

    .hero-wrap {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.06fr .94fr;
        gap: 54px;
        align-items: center;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #fff;
        border: 1px solid var(--line);
        padding: 7px 15px 7px 11px;
        border-radius: var(--r-full);
        font-size: 13px;
        font-weight: 700;
        color: var(--teal-deep);
        box-shadow: var(--shadow-sm);
        margin-bottom: 22px;
        animation: fadeUp .7s var(--ease) both;
    }

    .hero-eyebrow .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green);
        animation: pulseDot 2s ease-in-out infinite;
    }

    .hero h1 {
        font-size: clamp(38px, 5.2vw, 62px);
        font-weight: 800;
        color: var(--teal-ink);
        margin-bottom: 20px;
        animation: fadeUp .7s var(--ease) .06s both;
    }

    .hero h1 .accent {
        color: var(--teal);
    }

    .hero h1 .script {
        font-style: italic;
    }

    .hero-sub {
        font-size: clamp(16px, 1.6vw, 19px);
        color: var(--ink-70);
        max-width: 520px;
        margin-bottom: 30px;
        animation: fadeUp .7s var(--ease) .14s both;
    }

    .hero-ctas {
        display: flex;
        flex-wrap: wrap;
        gap: 13px;
        margin-bottom: 34px;
        animation: fadeUp .7s var(--ease) .22s both;
    }

    .btn-lg {
        padding: 16px 30px;
        font-size: 16px;
    }

    .hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 10px;
        animation: fadeUp .7s var(--ease) .3s both;
    }

    .trust-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--r-full);
        padding: 8px 15px;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink-70);
        box-shadow: var(--shadow-sm);
    }

    .trust-chip svg {
        width: 16px;
        height: 16px;
        color: var(--teal);
    }

    .trust-chip .stars {
        color: var(--amber);
        letter-spacing: 1px;
    }

    /* hero visual */
    .hero-visual {
        position: relative;
        animation: fadeUp .8s var(--ease) .2s both;
    }

    .hero-photo {
        position: relative;
        border-radius: var(--r-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        aspect-ratio: 4/3.4;
        border: 6px solid #fff;
    }

    .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 94, 114, 0) 50%, rgba(15, 94, 114, .30) 100%);
    }

    .badge-24 {
        position: absolute;
        top: -22px;
        left: -22px;
        width: 104px;
        height: 104px;
        border-radius: 50%;
        background: var(--red);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 28px rgba(232, 52, 43, .4);
        border: 4px solid #fff;
        animation: floatY 5s ease-in-out infinite;
    }

    .badge-24 b {
        font-family: var(--display);
        font-weight: 800;
        font-size: 26px;
        line-height: 1;
    }

    .badge-24 span {
        font-family: var(--display);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: .04em;
    }

    .float-card {
        position: absolute;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(8px);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        padding: 13px 16px;
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .float-card .fc-ic {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .float-card .fc-l {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--ink-55);
    }

    .float-card .fc-v {
        font-family: var(--display);
        font-weight: 700;
        font-size: 17px;
        color: var(--teal-ink);
        line-height: 1.1;
    }

    .fc-loc {
        bottom: 34px;
        left: -26px;
        animation: floatY 6s ease-in-out infinite;
    }

    .fc-rating {
        bottom: -18px;
        right: 18px;
        animation: floatY 7s ease-in-out .6s infinite;
    }

    /* ============================================================
   MARQUEE TRUST STRIP
   ============================================================ */
    #strip {
        background: var(--teal-deep);
        color: #fff;
        padding: 0;
        overflow: hidden;
    }

    .strip-inner {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 16px 0;
    }

    .strip-track {
        display: flex;
        gap: 0;
        width: max-content;
        animation: marquee 34s linear infinite;
    }

    @keyframes marquee {
        to {
            transform: translateX(-50%);
        }
    }

    .strip-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 30px;
        font-size: 14.5px;
        font-weight: 600;
        color: rgba(255, 255, 255, .92);
        white-space: nowrap;
    }

    .strip-item svg {
        width: 18px;
        height: 18px;
        color: #9fe3f4;
        flex-shrink: 0;
    }

    .strip-item .sep {
        color: rgba(255, 255, 255, .3);
    }

    /* ============================================================
   SECTION SHELL
   ============================================================ */
    section {
        position: relative;
    }

    .sec {
    padding: 90px 0;
}

.sec-top {
    padding-top: 90px;
}

.sec-bottom {
    padding-bottom: 90px;
}

/* Tablet */
@media (max-width: 991px) {
    .sec {
        padding: 60px 0;
    }

    .sec-top {
        padding-top: 60px;
    }

    .sec-bottom {
        padding-bottom: 60px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sec {
        padding: 50px 0;
    }

    .sec-top {
        padding-top: 50px;
    }

    .sec-bottom {
        padding-bottom: 50px;
    }
}

    .sec-head {
        margin-bottom: 54px;
    }

    .sec-head.center {
        text-align: center;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-family: var(--display);
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: var(--teal);
        margin-bottom: 14px;
    }

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 2.5px;
        border-radius: 2px;
        background: var(--teal);
    }

    .sec-head.center .eyebrow::before {
        display: none;
    }

    .sec-title {
        font-size: clamp(28px, 3.8vw, 46px);
        font-weight: 800;
        color: var(--teal-ink);
        margin-bottom: 14px;
    }

    .sec-title .accent {
        color: var(--teal);
    }

    .sec-sub {
        font-size: 17.5px;
        color: var(--ink-70);
        max-width: 560px;
    }

    .sec-head.center .sec-sub {
        margin: 0 auto;
    }

    /* ============================================================
   WHY SOCAL - the client's beloved circular photo icons
   ============================================================ */
    #why {
        background: linear-gradient(180deg, #fff 0%, var(--tint-2) 100%);
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 26px;
    }

    .why-card {
        text-align: center;
        padding: 14px 16px;
        border-radius: var(--r-lg);
        transition: transform .3s var(--ease), background .3s;
    }

    .why-card:hover {
        transform: translateY(-6px);
        background: #fff;
        box-shadow: var(--shadow-md);
    }

    .why-ring {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
        border-radius: 50%;
        padding: 7px;
        background: conic-gradient(from 180deg, var(--teal), #7fd6e8, var(--green), var(--teal));
        box-shadow: 0 14px 30px rgba(15, 94, 114, .16);
        position: relative;
    }

    .why-ring .why-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        background: #fff;
        border: 4px solid #fff;
    }

    .why-ring img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .why-card:hover .why-ring {
        animation: spinHue 1.2s var(--ease);
    }

    .why-card h3 {
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--teal-ink);
    }

    .why-card p {
        font-size: 14.5px;
        color: var(--ink-70);
        max-width: 300px;
        margin: 0 auto;
    }

    /* ============================================================
   SERVICES
   ============================================================ */
    #services {
        background: #fff;
    }

    .svc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .svc-card {
        position: relative;
        border-radius: var(--r-xl);
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
        transition: transform .35s var(--ease), box-shadow .35s;
        display: flex;
        flex-direction: column;
    }

    .svc-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-lg);
    }

    .svc-media {
        height: 188px;
        overflow: hidden;
        position: relative;
    }

    .svc-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s var(--ease);
    }

    .svc-card:hover .svc-media img {
        transform: scale(1.07);
    }

    .svc-tag {
        position: absolute;
        top: 14px;
        left: 14px;
        background: rgba(255, 255, 255, .95);
        color: var(--teal-deep);
        font-family: var(--display);
        font-weight: 700;
        font-size: 12px;
        padding: 6px 12px;
        border-radius: var(--r-full);
        box-shadow: var(--shadow-sm);
    }

    .svc-body {
        padding: 24px 24px 26px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .svc-body h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .svc-body p {
        font-size: 14.5px;
        color: var(--ink-70);
        margin-bottom: 18px;
        flex: 1;
    }

    .svc-link {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: var(--display);
        font-weight: 600;
        font-size: 14.5px;
        color: var(--teal);
        transition: gap .2s;
    }

    .svc-link:hover {
        gap: 11px;
    }

    .svc-link svg {
        width: 16px;
        height: 16px;
    }

    /* ============================================================
   PRICING - client's real teal price cards + cost estimator
   ============================================================ */
    #pricing {
        background: var(--tint-2);
    }

    .price-cards {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
        margin-bottom: 54px;
    }

    .price-card {
        border-radius: var(--r-lg);
        overflow: hidden;
        background: #fff;
        box-shadow: var(--shadow-sm);
        transition: transform .3s var(--ease), box-shadow .3s;
    }

    .price-card:hover {
        transform: translateY(-6px) scale(1.015);
        box-shadow: var(--shadow-md);
    }

    .price-card img {
        width: 100%;
        height: auto;
    }

    .price-note {
        text-align: center;
        font-size: 13.5px;
        color: var(--ink-55);
        margin-top: -34px;
        margin-bottom: 50px;
    }

    /* estimator */
    .estimator {
        background: #fff;
        border-radius: var(--r-xl);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        border: 1px solid var(--line);
    }

    .est-left {
        padding: 40px;
    }

    .est-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--tint);
        color: var(--teal-deep);
        font-family: var(--display);
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .08em;
        padding: 6px 13px;
        border-radius: var(--r-full);
        margin-bottom: 16px;
    }

    .est-left h3 {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .est-left p.est-tag {
        font-size: 14.5px;
        color: var(--ink-70);
        margin-bottom: 28px;
    }

    .est-field {
        margin-bottom: 24px;
    }

    .est-field label {
        display: block;
        font-family: var(--display);
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: var(--ink-55);
        margin-bottom: 12px;
    }

    .est-field label b {
        color: var(--teal-deep);
        font-size: 15px;
    }

    .est-slider {
        width: 100%;
        -webkit-appearance: none;
        height: 7px;
        border-radius: 4px;
        background: linear-gradient(90deg, var(--teal) 0%, #7fd6e8 18%, var(--line) 18%);
        outline: none;
    }

    .est-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--teal);
        border: 3px solid #fff;
        box-shadow: 0 3px 9px rgba(26, 160, 196, .4);
        cursor: pointer;
        transition: transform .2s var(--spring);
    }

    .est-slider::-webkit-slider-thumb:hover {
        transform: scale(1.18);
    }

    .est-slider::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--teal);
        border: 3px solid #fff;
        cursor: pointer;
    }

    .seg {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .seg button {
        flex: 1;
        min-width: 130px;
        padding: 12px 14px;
        border-radius: var(--r-md);
        border: 1.6px solid var(--line);
        background: #fff;
        font-family: var(--display);
        font-weight: 600;
        font-size: 13.5px;
        color: var(--ink-70);
        transition: all .2s;
        text-align: left;
        line-height: 1.3;
    }

    .seg button small {
        display: block;
        font-family: var(--body);
        font-weight: 600;
        color: var(--ink-55);
        font-size: 12px;
        margin-top: 2px;
    }

    .seg button.on {
        border-color: var(--teal);
        background: var(--tint);
        color: var(--teal-deep);
        box-shadow: 0 4px 12px rgba(26, 160, 196, .14);
    }

    .est-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 6px;
        cursor: pointer;
        user-select: none;
    }

    .switch {
        width: 46px;
        height: 26px;
        border-radius: var(--r-full);
        background: var(--line);
        position: relative;
        transition: background .2s;
        flex-shrink: 0;
    }

    .switch::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
        transition: transform .2s var(--spring);
    }

    .est-toggle.on .switch {
        background: var(--green);
    }

    .est-toggle.on .switch::after {
        transform: translateX(20px);
    }

    .est-toggle .tg-txt {
        font-size: 14px;
        font-weight: 600;
        color: var(--ink);
    }

    .est-toggle .tg-txt small {
        display: block;
        font-weight: 400;
        color: var(--ink-55);
        font-size: 12.5px;
    }

    .est-right {
        background: linear-gradient(155deg, var(--teal) 0%, var(--teal-deep) 100%);
        color: #fff;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .est-right::before {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .07);
        top: -90px;
        right: -70px;
    }

    .est-right .er-label {
        font-family: var(--display);
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .08em;
        opacity: .8;
        margin-bottom: 8px;
        position: relative;
    }

    .est-right .er-price {
        font-family: var(--display);
        font-size: 58px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 6px;
        position: relative;
    }

    .est-right .er-break {
        font-size: 13.5px;
        opacity: .82;
        line-height: 1.7;
        position: relative;
        margin-bottom: 22px;
    }

    .est-right .er-break span {
        display: block;
    }

    .est-right .btn {
        background: #fff;
        color: var(--teal-deep);
        padding: 13px 22px;
        font-size: 14.5px;
        position: relative;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
    }

    .est-right .btn:hover {
        transform: translateY(-2px);
    }

    /* ============================================================
   LOCATIONS - interactive pinned map (client liked this)
   ============================================================ */
    #locations {
        background: #fff;
    }

    .loc-layout {
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 28px;
    }

    .loc-search {
        position: relative;
        margin-bottom: 14px;
    }

    .loc-search input {
        width: 100%;
        padding: 13px 16px 13px 44px;
        border-radius: var(--r-md);
        border: 1.6px solid var(--line);
        font-family: var(--body);
        font-size: 14.5px;
        color: var(--ink);
        background: var(--tint-2);
        outline: none;
        transition: all .2s;
    }

    .loc-search input:focus {
        border-color: var(--teal);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(26, 160, 196, .1);
    }

    .loc-search svg {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        color: var(--ink-30);
    }

    .loc-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-height: 560px;
        overflow-y: auto;
        padding-right: 6px;
        scrollbar-width: thin;
        scrollbar-color: rgba(26, 160, 196, .3) transparent;
    }

    .loc-list::-webkit-scrollbar {
        width: 5px;
    }

    .loc-list::-webkit-scrollbar-thumb {
        background: rgba(26, 160, 196, .3);
        border-radius: 3px;
    }

    .loc-card {
        padding: 15px 17px;
        border-radius: var(--r-md);
        border: 1.6px solid var(--line);
        cursor: pointer;
        transition: all .2s;
        background: #fff;
    }

    .loc-card:hover,
    .loc-card.active {
        border-color: var(--teal);
        background: var(--tint);
        box-shadow: 0 4px 14px rgba(26, 160, 196, .1);
    }

    .loc-card-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 5px;
    }

    .loc-name {
        font-family: var(--display);
        font-weight: 700;
        font-size: 15.5px;
        color: var(--teal-ink);
    }

    .loc-badge {
        font-size: 11px;
        font-weight: 700;
        padding: 3px 9px;
        border-radius: var(--r-full);
        background: rgba(122, 182, 72, .14);
        color: var(--green-deep);
        white-space: nowrap;
    }

    .loc-addr {
        font-size: 13px;
        color: var(--ink-70);
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .loc-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 14px;
        font-size: 12.5px;
        color: var(--ink-55);
    }

    .loc-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .loc-meta svg {
        width: 13px;
        height: 13px;
        color: var(--teal);
    }

    .loc-dir {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: var(--display);
        font-weight: 600;
        font-size: 12.5px;
        color: var(--teal);
        margin-top: 9px;
        transition: gap .2s;
    }

    .loc-dir:hover {
        gap: 9px;
    }

    .map-shell {
        border-radius: var(--r-xl);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--line);
        min-height: 560px;
    }

    #leafletMap {
        width: 100%;
        height: 560px;
        min-height: 560px;
    }

    .leaflet-popup-content-wrapper {
        border-radius: 14px !important;
        box-shadow: 0 10px 34px rgba(15, 94, 114, .2) !important;
        border: none !important;
        padding: 0 !important;
        overflow: hidden;
    }

    .leaflet-popup-content {
        margin: 0 !important;
        width: 226px !important;
    }

    .mp {
        padding: 15px 16px;
        font-family: var(--body);
    }

    .mp-name {
        font-family: var(--display);
        font-weight: 700;
        font-size: 14.5px;
        color: var(--teal-ink);
        margin-bottom: 4px;
    }

    .mp-addr {
        font-size: 12.5px;
        color: var(--ink-70);
        line-height: 1.45;
        margin-bottom: 6px;
    }

    .mp-hours {
        font-size: 11.5px;
        color: var(--teal);
        font-weight: 700;
        margin-bottom: 3px;
    }

    .mp-phone {
        font-size: 12.5px;
        color: var(--ink-70);
        margin-bottom: 10px;
    }

    .mp-dir {
        display: inline-block;
        padding: 7px 14px;
        background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        color: #fff !important;
        border-radius: var(--r-full);
        font-family: var(--display);
        font-size: 12px;
        font-weight: 600;
    }

    /* ============================================================
   ECO STRIP
   ============================================================ */
    #eco {
        background: linear-gradient(135deg, #EAF6E6 0%, #E6F4F0 100%);
    }

    .eco-wrap {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 36px;
        align-items: center;
    }

    .eco-leaf {
        width: 118px;
        height: 118px;
        flex-shrink: 0;
        animation: floatY 6s ease-in-out infinite;
    }

    .eco-text h2 {
        font-size: clamp(24px, 3vw, 34px);
        color: var(--green-deep);
        margin-bottom: 10px;
    }

    .eco-text p {
        font-size: 16px;
        color: var(--ink-70);
        max-width: 620px;
    }

    .eco-cta {
        flex-shrink: 0;
    }

    /* ============================================================
   REVIEWS
   ============================================================ */
    #reviews {
        background: var(--slate);
        color: #fff;
        overflow: hidden;
    }

    #reviews .sec-title {
        color: #fff;
    }

    #reviews .sec-sub {
        color: rgba(255, 255, 255, .62);
    }

    #reviews .eyebrow {
        color: #9fe3f4;
    }

    #reviews .eyebrow::before {
        background: #9fe3f4;
    }

    .rev-stats {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
        margin-bottom: 52px;
    }

    .rev-stat {
        text-align: center;
        padding: 6px 46px;
        border-right: 1px solid rgba(255, 255, 255, .12);
    }

    .rev-stat:last-child {
        border-right: none;
    }

    .rev-stat .n {
        font-family: var(--display);
        font-weight: 800;
        font-size: 42px;
        color: #9fe3f4;
        line-height: 1;
        margin-bottom: 5px;
    }

    .rev-stat .l {
        font-size: 13px;
        color: rgba(255, 255, 255, .55);
        font-weight: 600;
    }

    .rev-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .rev-card {
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: var(--r-xl);
        padding: 28px;
        transition: all .3s;
    }

    .rev-card:hover {
        background: rgba(255, 255, 255, .08);
        border-color: rgba(159, 227, 244, .3);
        transform: translateY(-5px);
    }

    .rev-stars {
        color: var(--amber);
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .rev-text {
        font-size: 15px;
        line-height: 1.7;
        color: rgba(255, 255, 255, .82);
        margin-bottom: 22px;
        font-style: italic;
    }

    .rev-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .rev-av {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--display);
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
    }

    .rev-name {
        font-family: var(--display);
        font-weight: 600;
        font-size: 14px;
        color: #fff;
    }

    .rev-loc {
        font-size: 12.5px;
        color: rgba(255, 255, 255, .45);
    }

    /* ============================================================
   CONTACT / PICKUP CTA
   ============================================================ */
    #contact {
        background: #fff;
    }

    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .contact-feat {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin: 26px 0 30px;
    }

    .cf {
        display: flex;
        align-items: center;
        gap: 13px;
        font-size: 15px;
        color: var(--ink-70);
    }

    .cf-ic {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        background: var(--tint);
        color: var(--teal);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cf-ic svg {
        width: 18px;
        height: 18px;
    }

    .form-card {
        background: #fff;
        border-radius: var(--r-xl);
        padding: 36px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--line);
        position: relative;
        overflow: hidden;
    }

    .form-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--teal), var(--green));
    }

    .form-card h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .form-card .fc-sub {
        font-size: 14px;
        color: var(--ink-70);
        margin-bottom: 24px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
        margin-bottom: 13px;
    }

    .fg {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .fg.full {
        grid-column: 1/-1;
    }

    .fg label {
        font-family: var(--display);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: var(--ink-55);
    }

    .fg input,
    .fg select {
        padding: 12px 15px;
        border-radius: var(--r-md);
        border: 1.6px solid var(--line);
        font-family: var(--body);
        font-size: 14px;
        color: var(--ink);
        background: var(--tint-2);
        outline: none;
        transition: all .2s;
    }

    .fg input:focus,
    .fg select:focus {
        border-color: var(--teal);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(26, 160, 196, .09);
    }

    .fg input::placeholder {
        color: var(--ink-30);
    }

    .form-submit {
        width: 100%;
        margin-top: 10px;
        padding: 15px;
        background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        color: #fff;
        border-radius: var(--r-md);
        font-family: var(--display);
        font-weight: 700;
        font-size: 15.5px;
        box-shadow: 0 8px 22px rgba(26, 160, 196, .3);
        transition: all .25s var(--spring);
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(26, 160, 196, .4);
    }

    .form-foot {
        font-size: 12.5px;
        color: var(--ink-55);
        text-align: center;
        margin-top: 14px;
    }

    /* ============================================================
   FOOTER
   ============================================================ */
    #footer {
        background: var(--slate-deep);
        color: rgba(255, 255, 255, .62);
        padding: 72px 0 0;
    }

    .foot-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 42px;
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .foot-brand img {
        height: 48px;
        margin-bottom: 18px;
        opacity: .95;
    }

    .foot-brand p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 300px;
        margin-bottom: 22px;
    }

    .foot-social {
        display: flex;
        gap: 10px;
    }

    .foot-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .7);
        transition: all .2s;
    }

    .foot-social a:hover {
        background: var(--teal);
        border-color: var(--teal);
        color: #fff;
        transform: translateY(-2px);
    }

    .foot-social svg {
        width: 17px;
        height: 17px;
    }

    .foot-col h4 {
        font-family: var(--display);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: #fff;
        margin-bottom: 18px;
    }

    .foot-col a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, .6);
        margin-bottom: 10px;
        transition: color .2s;
    }

    .foot-col a:hover {
        color: #9fe3f4;
    }

    .foot-contact-item {
        display: flex;
        gap: 10px;
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .foot-contact-item svg {
        width: 17px;
        height: 17px;
        color: #9fe3f4;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .foot-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding: 22px 0;
        font-size: 13px;
        color: rgba(255, 255, 255, .62);
    }

    .foot-bottom a {
        color: rgba(255, 255, 255, .4);
    }

    .foot-bottom a:hover {
        color: #fff;
    }

    /* mobile sticky cta */
    .sticky-cta {
        display: none;
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 900;
        background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        color: #fff;
        text-align: center;
        padding: 15px;
        border-radius: var(--r-lg);
        font-family: var(--display);
        font-weight: 700;
        font-size: 15.5px;
        box-shadow: 0 10px 30px rgba(26, 160, 196, .45);
    }

    /* ============================================================
   RESPONSIVE
   ============================================================ */
    @media(max-width:1024px) {
        .hero-wrap {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-visual {
            max-width: 520px;
        }

        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .svc-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .price-cards {
            grid-template-columns: repeat(3, 1fr);
        }

        .loc-layout {
            grid-template-columns: 1fr;
        }

        .loc-list {
            max-height: 300px;
        }

        .estimator {
            grid-template-columns: 1fr;
        }

        .contact-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .foot-top {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .eco-wrap {
            grid-template-columns: auto 1fr;
        }

        .eco-cta {
            grid-column: 1/-1;
        }
    }

    @media(max-width:760px) {

        .nav,
        .header-cta .phone-link,
        .header-cta .btn-ghost {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .mnav {
            display: flex;
        }

        .sticky-cta {
            display: block;
        }

        .sec {
            padding: 64px 0;
        }

        #hero {
            padding: 120px 0 60px;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .svc-grid {
            grid-template-columns: 1fr;
        }

        .price-cards {
            grid-template-columns: repeat(2, 1fr);
        }

        .rev-grid {
            grid-template-columns: 1fr;
        }

        .rev-stat {
            padding: 6px 24px;
        }

        .foot-top {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .eco-wrap {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .eco-leaf {
            margin: 0 auto;
        }

        .eco-text p {
            margin: 0 auto;
        }

        .badge-24 {
            width: 88px;
            height: 88px;
            top: -16px;
            left: -12px;
        }

        .fc-loc {
            left: -8px;
        }
    }

    @media(max-width:430px) {
        .container {
            padding: 0 16px;
        }

        .price-cards {
            grid-template-columns: 1fr;
        }

        .hero-ctas {
            flex-direction: column;
        }

        .hero-ctas .btn {
            width: 100%;
        }

        .float-card {
            display: none;
        }
    }

    @keyframes spinHue {
        from {
            filter: hue-rotate(0);
        }

        to {
            filter: hue-rotate(20deg);
        }
    }

    /* ===== inner-page additions ===== */
    .nav a.active {
        color: var(--teal-deep);
        background: var(--tint);
    }

    .mnav a.active {
        color: #9fe3f4;
    }

    .page-hero {
        position: relative;
        padding: 138px 0 60px;
        background: radial-gradient(120% 90% at 85% 0%, #DFF3F9 0%, rgba(223, 243, 249, 0) 55%), linear-gradient(180deg, #F3FAFC 0%, #fff 100%);
        overflow: hidden;
    }

    .page-hero .hero-bubbles {
        opacity: .05;
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

    .crumb {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink-55);
        margin-bottom: 16px;
    }

    .crumb a {
        color: var(--teal);
    }

    .crumb a:hover {
        text-decoration: underline;
    }

    .crumb span {
        color: var(--ink-30);
    }

    .page-hero h1 {
        font-size: clamp(32px, 4.6vw, 52px);
        font-weight: 800;
        color: var(--teal-ink);
        margin-bottom: 14px;
        max-width: 780px;
    }

    .page-hero h1 .accent {
        color: var(--teal);
    }

    .page-hero p.lead {
        font-size: clamp(16px, 1.6vw, 19px);
        color: var(--ink-70);
        max-width: 620px;
    }

    .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 54px;
        align-items: center;
    }

    .split.rev .split-media {
        order: 2;
    }

    .split-media {
        border-radius: var(--r-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 6px solid #fff;
        aspect-ratio: 4/3;
    }

    .split-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .split h2 {
        font-size: clamp(24px, 3vw, 36px);
        margin-bottom: 14px;
    }

    .split p {
        font-size: 16px;
        color: var(--ink-70);
        margin-bottom: 8px;
    }

    .ticks {
        display: flex;
        flex-direction: column;
        gap: 11px;
        margin: 18px 0 26px;
    }

    .ticks li {
        display: flex;
        gap: 11px;
        font-size: 15px;
        color: var(--ink);
        align-items: flex-start;
    }

    .ticks svg {
        width: 20px;
        height: 20px;
        color: var(--green);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .step {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--r-lg);
        padding: 28px;
        box-shadow: var(--shadow-sm);
    }

    .step .num {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        color: #fff;
        font-family: var(--display);
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    .step h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 14.5px;
        color: var(--ink-70);
    }

    .ptable {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--line);
    }

    .ptable th,
    .ptable td {
        text-align: left;
        padding: 15px 22px;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
    }

    .ptable th {
        background: var(--tint);
        font-family: var(--display);
        color: var(--teal-deep);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    .ptable tr:last-child td {
        border-bottom: none;
    }

    .ptable td.price {
        font-family: var(--display);
        font-weight: 700;
        color: var(--teal-deep);
        white-space: nowrap;
        text-align: right;
    }

    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--r-full);
        padding: 9px 16px;
        font-size: 14px;
        font-weight: 600;
        color: var(--teal-deep);
        box-shadow: var(--shadow-sm);
    }

    .faq {
        max-width: 780px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq details {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
    }

    .faq summary {
        cursor: pointer;
        list-style: none;
        padding: 18px 20px;
        font-family: var(--display);
        font-weight: 600;
        font-size: 16px;
        color: var(--teal-ink);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .faq summary::-webkit-details-marker {
        display: none;
    }

    .faq summary::after {
        content: "+";
        font-size: 24px;
        color: var(--teal);
        line-height: 1;
        flex-shrink: 0;
    }

    .faq details[open] summary::after {
        content: "-";
    }

    .faq .faq-a {
        padding: 0 20px 20px;
        font-size: 15px;
        color: var(--ink-70);
        line-height: 1.7;
    }

    .cta-band {
        background: linear-gradient(135deg, var(--teal), var(--teal-deep));
        color: #fff;
        border-radius: var(--r-xl);
        padding: 56px 48px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-band::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
        top: -120px;
        right: -70px;
    }

    .cta-band h2 {
        color: #fff;
        font-size: clamp(26px, 3vw, 38px);
        margin-bottom: 12px;
        position: relative;
    }

    .cta-band p {
        color: rgba(255, 255, 255, .86);
        font-size: 17px;
        max-width: 540px;
        margin: 0 auto 26px;
        position: relative;
    }

    .cta-band .btns {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

    .cta-band .btn-primary {
        background: #fff;
        color: var(--teal-deep);
        box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
    }

    .cta-band .btn-ghost {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, .55);
    }

    .cta-band .btn-ghost:hover {
        background: rgba(255, 255, 255, .12);
        border-color: #fff;
    }

    .cinfo-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .cinfo-card {
        display: flex;
        gap: 15px;
        align-items: flex-start;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: var(--r-lg);
        background: #fff;
        box-shadow: var(--shadow-sm);
    }

    .cinfo-card .ic {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--tint);
        color: var(--teal);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cinfo-card .ic svg {
        width: 22px;
        height: 22px;
    }

    .cinfo-card h4 {
        font-size: 15px;
        margin-bottom: 5px;
        color: var(--teal-ink);
    }

    .cinfo-card p,
    .cinfo-card a {
        font-size: 14px;
        color: var(--ink-70);
        line-height: 1.5;
    }

    .cinfo-card a:hover {
        color: var(--teal);
    }

    /* big interactive brand hero (client's current-site design) - compact so the banner sits above the fold */
    #hero {
        padding: 100px 0 50px;
    }

    #hero .hero-wrap {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    #hero .hero-copy {
        max-width: 960px;
        margin: 0 auto;
    }

    #hero h1 {
        font-size: clamp(24px, 3.1vw, 38px);
        margin-bottom: 10px;
    }

    #hero .hero-eyebrow {
        margin-bottom: 14px;
    }

    #hero .hero-sub {
        font-size: 16px;
        margin-bottom: 16px;
    }

    #hero .hero-ctas {
        justify-content: center;
        margin-bottom: 14px;
    }

    #hero .hero-trust {
        justify-content: center;
        margin-bottom: 0;
    }

    .hero-banner {
        width: 100%;
    }

    .hero-map {
        position: relative;
        max-width: 1060px;
        margin: 0 auto;
        border-radius: var(--r-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--line);
        background: #fff;
        line-height: 0;
    }

    .hero-map img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-hotspot {
        position: absolute;
        border-radius: 14px;
        transition: background .2s, box-shadow .2s;
        cursor: pointer;
    }

    .hero-hotspot:hover,
    .hero-hotspot:focus-visible {
        background: rgba(26, 160, 196, .18);
        box-shadow: 0 0 0 2px var(--teal) inset;
        outline: none;
    }

    .hero-map-note {
        text-align: center;
        font-size: 13px;
        color: var(--ink-55);
        margin-top: 14px;
        line-height: 1.5;
    }

    /* socials / instagram feed */
    .ig-feed {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        max-width: 940px;
        margin: 0 auto;
    }

    .ig-tile {
        aspect-ratio: 1;
        border-radius: var(--r-md);
        background: linear-gradient(135deg, var(--teal), var(--teal-deep));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: var(--shadow-sm);
        transition: transform .25s var(--ease), box-shadow .25s;
    }

    .ig-tile:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .ig-tile svg {
        width: 30px;
        height: 30px;
        opacity: .92;
    }

    @media(max-width:760px) {
        .ig-feed {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media(max-width:1024px) {
        .split {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .split.rev .split-media {
            order: 0;
        }

        .steps {
            grid-template-columns: 1fr;
        }

        .cinfo-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width:760px) {
        .cta-band {
            padding: 40px 24px;
        }

        .page-hero {
            padding: 116px 0 46px;
        }
    }

    @media(max-width:480px) {
        .cinfo-grid {
            grid-template-columns: 1fr;
        }
    }

    #header {
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(14px) saturate(160%);
        -webkit-backdrop-filter: blur(14px) saturate(160%);
        box-shadow: 0 2px 16px rgba(11, 31, 59, .07);
    }

    #hero {
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        color: #fff;
        padding: 150px 0 84px;
        min-height: 600px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg,
                rgba(9, 20, 38, .93) 0%,
                rgba(9, 20, 38, .8) 40%,
                rgba(12, 30, 60, .5) 100%);
        z-index: 1;
    }

    #hero>* {
        position: relative;
        z-index: 2;
    }

    #hero .hero-bubbles {
        display: none;
    }

    #hero .hero-wrap {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
        width: 100%;
    }

    #hero .hero-copy {
        max-width: 640px;
        margin: 0;
    }

    /* location photo hero (matches the client's reference layout) */
    .loc-hero {
        padding: 150px 0 54px;
        color: #fff;
    }

    .loc-hero .crumb {
        color: rgba(255, 255, 255, .72);
        margin-bottom: 14px;
    }

    .loc-hero .crumb a {
        color: #9fc3ee;
    }

    .loc-hero .crumb a:hover {
        text-decoration: underline;
    }

    .loc-hero .crumb span {
        color: rgba(255, 255, 255, .4);
    }

    .loc-hero h1 {
        color: #fff;
        font-size: clamp(34px, 5vw, 54px);
        margin-bottom: 4px;
        line-height: 1.06;
    }

    .loc-hero-city {
        font-family: var(--display);
        font-weight: 600;
        font-size: clamp(17px, 2vw, 22px);
        color: rgba(255, 255, 255, .85);
        margin-bottom: 14px;
    }

    .loc-hero-tag {
        color: rgba(255, 255, 255, .72);
        font-size: 16px;
        max-width: 520px;
        margin-bottom: 24px;
    }

    .loc-hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    #hero .hero-eyebrow {
        background: rgba(255, 255, 255, .1);
        border-color: rgba(255, 255, 255, .2);
        color: #bcd4f0;
        box-shadow: none;
    }

    #hero .hero-eyebrow .dot {
        background: #7db7ee;
    }

    #hero h1 {
        color: #fff;
        font-size: clamp(30px, 4.2vw, 50px);
        margin-bottom: 14px;
    }

    #hero h1 .accent {
        color: #7db7ee;
    }

    #hero .hero-sub {
        color: rgba(255, 255, 255, .82);
        font-size: clamp(16px, 1.6vw, 19px);
        max-width: 560px;
        margin-bottom: 26px;
    }

    #hero .hero-ctas {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 0;
    }

    .btn-light {
        background: #fff;
        color: var(--teal-deep);
    }

    .btn-light:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
    }

    .btn-outline-light {
        background: transparent;
        color: #fff;
        border: 1.6px solid rgba(255, 255, 255, .55);
    }

    .btn-outline-light:hover {
        background: rgba(255, 255, 255, .12);
        border-color: #fff;
    }

    .hero-shot {
        border-radius: var(--r-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 5px solid rgba(255, 255, 255, .1);
        aspect-ratio: 4/3.2;
    }

    .hero-shot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* stats bar */
    #stats {
        background: #0b1d33;
        color: #fff;
        padding: 26px 0;
    }

    .stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .stat {
        text-align: center;
        padding: 6px 14px;
        border-right: 1px solid rgba(255, 255, 255, .12);
    }

    .stat:last-child {
        border-right: none;
    }

    .stat b {
        display: block;
        font-family: var(--display);
        font-weight: 800;
        font-size: 30px;
        color: #7db7ee;
        line-height: 1;
        margin-bottom: 6px;
    }

    .stat span {
        font-size: 13px;
        color: rgba(255, 255, 255, .66);
        font-weight: 600;
    }

    .stats-row2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .stat2 {
        display: flex;
        gap: 13px;
        align-items: flex-start;
        padding: 0 6px;
    }

    .stat2 .ic {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(125, 183, 238, .16);
        color: #7db7ee;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .stat2 .ic svg {
        width: 22px;
        height: 22px;
    }

    .stat2 b {
        display: block;
        font-family: var(--display);
        font-weight: 700;
        font-size: 15px;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 3px;
    }

    .stat2 span {
        font-size: 12.5px;
        color: rgba(255, 255, 255, .6);
    }

    @media(max-width:760px) {
        .stats-row2 {
            grid-template-columns: 1fr;
            gap: 14px;
        }
    }

    .psteps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    .pstep-img {
        aspect-ratio: 4/3;
        border-radius: var(--r-lg);
        background-size: cover;
        background-position: center;
        position: relative;
        box-shadow: var(--shadow-md);
        margin-bottom: 18px;
    }

    .pstep-num {
        position: absolute;
        top: 14px;
        left: 14px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        color: var(--teal-deep);
        font-family: var(--display);
        font-weight: 800;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
    }

    .pstep-kick {
        font-family: var(--display);
        font-size: 21px;
        font-weight: 800;
        color: var(--teal-deep);
        line-height: 1.12;
        margin-bottom: 1px;
    }

    .pstep h3 {
        font-size: 13.5px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--ink-55);
        font-weight: 700;
        margin-bottom: 8px;
    }

    .pstep p {
        font-size: 13.5px;
        color: var(--ink-70);
        line-height: 1.6;
    }

    @media(max-width:860px) {
        .psteps {
            grid-template-columns: 1fr;
            gap: 22px;
        }
    }

    .loc-thumb {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: var(--r-md);
        margin-bottom: 12px;
    }

    .loc-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--teal);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        margin-right: 8px;
        vertical-align: middle;
        flex-shrink: 0;
    }

    .pcards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .pcard {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform .3s var(--ease), box-shadow .3s;
    }

    .pcard:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .pcard-img {
        height: 160px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .pcard-ic {
        position: absolute;
        left: 20px;
        bottom: -24px;
        width: 48px;
        height: 48px;
        border-radius: 13px;
        background: #fff;
        box-shadow: var(--shadow-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--teal);
    }

    .pcard-ic svg {
        width: 24px;
        height: 24px;
    }

    .pcard-body {
        padding: 36px 22px 24px;
    }

    .pcard-body h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: var(--teal-ink);
    }

    .pcard-body p {
        font-size: 14.5px;
        color: var(--ink-70);
        line-height: 1.6;
    }

    .story-copy p {
        font-size: 16px;
        color: var(--ink-70);
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .story-copy p:last-child {
        margin-bottom: 0;
    }

    @media(max-width:900px) {
        .pcards {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width:560px) {
        .pcards {
            grid-template-columns: 1fr;
        }
    }

    .proof-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .proof-card {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--r-lg);
        padding: 30px 26px;
        box-shadow: var(--shadow-sm);
        transition: transform .3s var(--ease), box-shadow .3s;
    }

    .proof-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .proof-ic {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: var(--tint);
        color: var(--teal);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
    }

    .proof-ic svg {
        width: 26px;
        height: 26px;
    }

    .proof-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
        color: var(--teal-ink);
    }

    .proof-card p {
        font-size: 14.5px;
        color: var(--ink-70);
        line-height: 1.6;
    }

    .position-band {
        text-align: center;
        max-width: 780px;
        margin: 0 auto;
    }

    .position-band .lede {
        font-size: 14px;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--teal);
        font-weight: 700;
        font-family: var(--display);
        margin-bottom: 12px;
    }

    .position-band h2 {
        font-size: clamp(26px, 3.2vw, 40px);
        margin-bottom: 14px;
    }

    .position-band p {
        font-size: 17px;
        color: var(--ink-70);
    }

    @media(max-width:980px) {
        #hero .hero-wrap {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }

        #hero .hero-ctas {
            justify-content: center;
        }

        #hero .hero-sub {
            margin-left: auto;
            margin-right: auto;
        }

        .proof-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .stats-row {
            grid-template-columns: repeat(2, 1fr);
            gap: 22px 12px;
        }

        .stat:nth-child(2) {
            border-right: none;
        }
    }

    @media(max-width:560px) {
        .proof-grid {
            grid-template-columns: 1fr;
        }

        .stats-row {
            grid-template-columns: 1fr;
        }

        .stat {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            padding-bottom: 14px;
        }

        .stat:last-child {
            border-bottom: none;
        }

        #hero .hero-ctas {
            flex-direction: column;
        }

        #hero .hero-ctas .btn {
            width: 100%;
        }
    }

    .loc-dist {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        color: var(--teal);
        margin: 2px 0 4px;
    }

    @media(prefers-reduced-motion:reduce) {

        *,
        *::before,
        *::after {
            animation-duration: .001ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .001ms !important;
            scroll-behavior: auto !important
        }

        .reveal {
            opacity: 1 !important;
            transform: none !important
        }
    }

    .hcheck {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        margin-top: 16px;
        padding: 14px 16px;
        border: 1.6px solid var(--line);
        border-radius: var(--r-md);
        background: var(--tint-2);
        cursor: pointer;
        user-select: none;
    }

    .hcheck input {
        width: 20px;
        height: 20px;
        accent-color: var(--teal);
        margin-top: 1px;
        flex-shrink: 0;
        cursor: pointer;
    }

    .hcheck span {
        font-size: 14px;
        color: var(--ink);
        font-weight: 600;
        line-height: 1.4;
    }

    .form-submit[disabled] {
        opacity: .55;
        cursor: not-allowed;
        box-shadow: none;
    }

    /*   CONTACT PAGE   */

    .hero-bubbles {
        position: absolute;
        inset: 0;
        background-image: url('../images/imgi_20_bubbles_bg2-scaled.png') !important;
        background-size: 760px;
        background-position: center;
        opacity: .06;
        pointer-events: none;
    }

    .page-hero {
        position: relative;
        padding: 138px 0 60px;
        background: radial-gradient(120% 90% at 85% 0%, #DFF3F9 0%, rgba(223, 243, 249, 0) 55%), linear-gradient(180deg, #F3FAFC 0%, #fff 100%);
        overflow: hidden;
    }

    .page-hero .hero-bubbles {
        opacity: .05;
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

    .crumb {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink-55);
        margin-bottom: 16px;
    }

    .crumb a {
        color: var(--teal);
    }

    .crumb a:hover {
        text-decoration: underline;
    }

    .crumb span {
        color: var(--ink-30);
    }

    .page-hero h1 {
        font-size: clamp(32px, 4.6vw, 52px);
        font-weight: 800;
        color: var(--teal-ink);
        margin-bottom: 14px;
        max-width: 780px;
    }

    .page-hero h1 .accent {
        color: var(--teal);
    }

    .page-hero p.lead {
        font-size: clamp(16px, 1.6vw, 19px);
        color: var(--ink-70);
        max-width: 620px;
    }

    @media(max-width:760px) {
        .page-hero {
            padding: 116px 0 46px;
        }
    }

    /* ============================================================
   FAQ PAGE - NEW PRICING/INFO CARDS (.pcards-new)
   ============================================================ */
.pcards-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 18px;
}

.pcard-n {
  background: #fff;
  border: 1.6px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
}

.pcard-n:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

/* Safe Scoping: Isko .pcard-n ke andar rakha gaya hai taaki purana .pcard-ic kharab na ho */
.pcard-n .pcard-ic {
  position: static; /* Overriding previous absolute position */
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(26, 160, 196, .28);
}

.pcard-n .pcard-ic svg {
  width: 26px;
  height: 26px;
}

.pcard-n h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--teal-ink);
  margin-bottom: 15px;
}

.pcard-n ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.pcard-n li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-70);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
}

.pcard-n li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pcard-n li b {
  font-family: var(--display);
  font-weight: 700;
  color: var(--teal-deep);
  white-space: nowrap;
  font-size: 15px;
}

.pcard-n li small {
  display: block;
  font-size: 12px;
  color: var(--ink-55);
  margin-top: 2px;
}

/* ============================================================
   REWARDS PAGE - WINNERS GRID (.winners-grid)
   ============================================================ */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.winner {
  background: #fff;
  border: 1.6px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}

.winner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.winner img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ============================================================
   LOCATION DETAILS PAGE - AMENITIES & GALLERY 
   ============================================================ */
.loc-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
}

.loc-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

@media(max-width:760px) {
  .loc-gallery img {
    height: 190px;
  }
}

.amen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 12px;
}

.amen {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1.6px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.amen-ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--tint);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amen-ic svg {
  width: 17px;
  height: 17px;
}

/* SERVICES LIST (.svc-list) */

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 6px 0 22px;
}

.svc-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink-70);
  line-height: 1.55;
}

.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.svc-list li b {
  color: var(--ink);
  font-weight: 700;
}

/* ============================================================
   SHOW MOBILE MENU ON TABLET (Up to 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav,
  .header-cta .phone-link,
  .header-cta .btn-ghost {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .mnav {
    display: flex !important;
  }
}