﻿:root {
    --ink: #1A2733;
    --mist: #F7F9FA;
    --teal: #1B4B6E;
    --teal-deep: #102D42;
    --marigold: #E8A33D;
    --line: #DCE4EA;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    background: var(--mist);
    color: var(--ink);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Fraunces',serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: 'Space Mono',monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teal);
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* floating background blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 420px;
    height: 420px;
    background: #8fd0bd;
    top: -120px;
    right: -100px;
    animation: drift1 18s ease-in-out infinite;
}

.blob-2 {
    width: 340px;
    height: 340px;
    background: #f3cd8c;
    top: 40vh;
    left: -140px;
    animation: drift2 22s ease-in-out infinite;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #a9dcd0;
    top: 90vh;
    right: -80px;
    animation: drift1 20s ease-in-out infinite reverse;
}

@keyframes drift1 {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-30px,40px);
    }
}

@keyframes drift2 {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(40px,-30px);
    }
}

/* glass nav */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246,248,247,0.7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184,196,192,0.5);
}

nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces',serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces',serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 36px;
    font-size: 0.95rem;
    font-weight: 500;
}

    .nav-links a {
        color: var(--ink);
        text-decoration: none;
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 28px rgba(15,110,91,0.32);
    }

/* hero */
.hero {
    padding: 90px 0 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.4rem,4.4vw,3.6rem);
    line-height: 1.06;
    margin: 18px 0 22px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--teal);
    }

.hero p.lead {
    font-size: 1.08rem;
    color: #3C4E49;
    max-width: 460px;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.trust-line {
    display: flex;
    gap: 22px;
    font-size: 0.86rem;
    color: #4B5F5A;
}

    .trust-line strong {
        color: var(--ink);
        font-family: 'Fraunces',serif;
        font-size: 1.05rem;
    }

/* floating hero card */
.hero-visual {
    position: relative;
}

.float-card {
    background: linear-gradient(160deg,#DDE6ED,#C5D3DE);
    border-radius: 24px;
    aspect-ratio: 4/4.4;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 70px -25px rgba(16,45,66,0.4);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-16px);
    }
}

.float-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 40%);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 24px;
    background: linear-gradient(0deg, rgba(16,45,66,0.85), transparent);
    color: #fff;
}

    .photo-caption h3 {
        color: #fff;
        font-size: 1.15rem;
        font-weight: 500;
    }

.stamp {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--marigold);
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed rgba(11,74,62,0.4);
    font-family: 'Space Mono',monospace;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.35;
    padding: 10px;
    box-shadow: 0 16px 32px rgba(232,163,61,0.4);
    animation: float 5s ease-in-out infinite, spin 14s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stamp span {
    display: block;
    font-family: 'Fraunces',serif;
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
}

/* scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* services with tilt */
.services {
    padding: 90px 0;
}

.section-head {
    max-width: 560px;
    margin-bottom: 52px;
}

    .section-head h2 {
        font-size: clamp(1.8rem,3vw,2.4rem);
        margin-top: 14px;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.tilt-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 24px 26px;
    transition: transform .15s ease, box-shadow .3s ease, border-color .3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

    .tilt-card:hover {
        box-shadow: 0 24px 44px -16px rgba(15,49,43,0.25);
        border-color: var(--teal);
    }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tilt-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.tilt-card p {
    font-size: 0.88rem;
    color: #5A6B66;
}

/* why us floating icons */
.why {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.why-item {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    border: 1px solid var(--line);
    transition: transform .3s ease;
}

    .why-item:hover {
        transform: translateY(-8px);
    }

    .why-item .glyph {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--mist);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 18px;
        animation: float 6s ease-in-out infinite;
    }

    .why-item:nth-child(2) .glyph {
        animation-delay: .5s;
    }

    .why-item:nth-child(3) .glyph {
        animation-delay: 1s;
    }

    .why-item h3 {
        font-size: 1.08rem;
        font-weight: 600;
        margin-bottom: 8px;
        font-family: 'Inter',sans-serif;
    }

    .why-item p {
        font-size: 0.9rem;
        color: #5A6B66;
    }

/* testimonial */
.testimonial {
    background: var(--teal-deep);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.stars {
    color: var(--marigold);
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.testimonial blockquote {
    font-family: 'Fraunces',serif;
    font-style: italic;
    font-size: clamp(1.3rem,2.6vw,1.75rem);
    line-height: 1.5;
    margin-bottom: 32px;
}

.testimonial-author {
    font-family: 'Space Mono',monospace;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* CTA */
.cta-banner {
    background: rgba(232,115,90,0.55);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 28px;
    margin: 90px auto;
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(36,34,42,0.25), inset 0 1px 0 rgba(255,255,255,0.4);
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
        pointer-events: none;
    }
    .cta-banner h2 {
        font-size: clamp(1.6rem,3vw,2.2rem);
        color: var(--teal-deep);
        max-width: 480px;
    }

    .cta-banner .btn-primary {
        background: var(--teal-deep);
    }

footer {
    background: var(--teal-deep);
    color: rgba(255,255,255,0.82);
    padding: 64px 0 32px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 56px;
    align-items: end;
}

    .footer-grid h4 {
        font-family: 'Space Mono',monospace;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--marigold);
        margin-bottom: 18px;
    }

    .footer-grid ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }

    .footer-grid a {
        color: inherit;
        text-decoration: none;
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces',serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-fab {
    display: none;
}

@media (max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .mobile-fab {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 60;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--teal);
        color: #fff;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        box-shadow: 0 14px 30px rgba(15,110,91,0.4);
        animation: float 3s ease-in-out infinite;
        text-decoration: none;
    }
}
/* ---------- Services listing page ---------- */
.page-hero {
    padding: 70px 0 40px;
    text-align: center;
}

    .page-hero h1 {
        font-size: clamp(2rem,4vw,2.8rem);
        margin-top: 14px;
    }

    .page-hero p {
        color: #3C4E49;
        max-width: 520px;
        margin: 14px auto 0;
    }

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 6px 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--mist);
    text-decoration: none;
    color: var(--ink);
    transition: transform .2s ease, color .2s ease;
}

    .checklist-item:hover {
        transform: translateX(6px);
        color: var(--teal);
    }

    .checklist-item .check {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--teal);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .checklist-item span.name {
        font-weight: 600;
        font-size: 0.98rem;
    }

.properties-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 44px;
}

.property-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform .2s ease;
}

    .property-badge:hover {
        transform: translateY(-3px);
    }

    .property-badge .check {
        color: var(--teal);
    }

/* ---------- Service detail page ---------- */
.detail-hero {
    padding: 80px 0 40px;
}

    .detail-hero .eyebrow {
        margin-bottom: 10px;
        display: block;
    }

    .detail-hero h1 {
        font-size: clamp(2rem,4vw,2.8rem);
        margin-bottom: 16px;
    }

.detail-body {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 48px;
    padding: 0 0 90px;
    align-items: start;
}

.detail-desc p {
    color: #3C4E49;
    line-height: 1.7;
    font-size: 1.02rem;
}

.included-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

    .included-card h3 {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

.included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .included-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.94rem;
    }

        .included-list li .check {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--mist);
            color: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 24px;
}

@media (max-width:900px) {
    .checklist-grid {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .detail-body {
        grid-template-columns: 1fr;
    }

    .included-card {
        position: static;
    }
}
/* ---------- Photo gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin: 40px 0;
}

    .gallery-grid img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
        border: 1px solid var(--line);
        transition: transform .25s ease;
    }

        .gallery-grid img:hover {
            transform: scale(1.03);
        }

/* ---------- How it works (arrow cards) ---------- */
.process-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 8px;
}

.step-card {
    flex: 1;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px;
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces',serif;
    font-weight: 700;
    margin-bottom: 14px;
}

.step-card h4 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'Inter',sans-serif;
}

.step-card p {
    font-size: 0.85rem;
    color: #5A6B66;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    flex-shrink: 0;
    color: var(--teal);
    font-size: 1.4rem;
}

/* ---------- FAQ accordion ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.96rem;
}

    .faq-question .icon {
        transition: transform .25s ease;
        color: var(--teal);
    }

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 22px;
    font-size: 0.9rem;
    color: #5A6B66;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

@media (max-width:900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        width: auto;
        height: 24px;
        margin: 0 auto;
    }
}
/* ---------- Services page: property type cards ---------- */
.property-section {
    padding: 70px 0 20px;
}

    .property-section h2 {
        font-size: clamp(1.5rem,2.6vw,2rem);
        text-align: center;
        margin-bottom: 36px;
    }

.property-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.property-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .property-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 36px -14px rgba(15,49,43,0.2);
    }

    .property-card .glyph {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--mist);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .property-card h4 {
        font-size: 1.02rem;
        font-weight: 600;
        margin-bottom: 8px;
        font-family: 'Inter',sans-serif;
    }

    .property-card p {
        font-size: 0.86rem;
        color: #5A6B66;
        line-height: 1.5;
    }

@media (max-width:900px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------- Not Sure What You Need? flip cards ---------- */
.finder-section {
    padding: 70px 0;
}

    .finder-section h2 {
        font-size: clamp(1.5rem,2.6vw,2rem);
        text-align: center;
        margin-bottom: 10px;
    }

    .finder-section .sub {
        text-align: center;
        color: #3C4E49;
        margin-bottom: 40px;
    }

.finder-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.flip-card {
    perspective: 1200px;
    height: 190px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .6s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner, .flip-card.flipped .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-front {
    background: #fff;
    border: 1px solid var(--line);
}

    .flip-front .glyph {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .flip-front p {
        font-size: 0.96rem;
        font-weight: 600;
        line-height: 1.4;
    }

.flip-back {
    background: var(--teal-deep);
    color: #fff;
    transform: rotateY(180deg);
    align-items: flex-start;
    justify-content: space-between;
    text-decoration: none;
}

    .flip-back .eyebrow {
        color: var(--marigold);
    }

    .flip-back h4 {
        color: #fff;
        font-size: 1.1rem;
        margin: 8px 0;
    }

    .flip-back .go {
        font-size: 0.86rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
    }

@media (max-width:900px) {
    .finder-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .finder-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------- Recent Work strip ---------- */
.recent-work {
    padding: 20px 0 70px;
}

    .recent-work h2 {
        font-size: clamp(1.5rem,2.6vw,2rem);
        text-align: center;
        margin-bottom: 36px;
    }

.work-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

    .work-strip img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 16px;
        flex-shrink: 0;
        scroll-snap-align: start;
        border: 1px solid var(--line);
        transition: transform .25s ease;
    }

        .work-strip img:hover {
            transform: scale(1.04);
        }

    .work-strip::-webkit-scrollbar {
        height: 6px;
    }

    .work-strip::-webkit-scrollbar-thumb {
        background: var(--line);
        border-radius: 10px;
    }
/* ---------- Quick service picker (below hero) ---------- */
.quick-pick {
    padding: 0 0 70px;
}

.quick-pick-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 16px 36px -18px rgba(15,49,43,0.16);
    padding: 26px 30px;
    border: 1px solid var(--line);
}

    .quick-pick-card h3 {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

.quick-pick-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.quick-pick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    width: 88px;
    text-align: center;
    transition: transform .2s ease;
}

    .quick-pick-item:hover {
        transform: translateY(-4px);
    }

.quick-pick-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--mist);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.quick-pick-item:hover .quick-pick-icon {
    border-color: var(--teal);
    box-shadow: 0 10px 20px -8px rgba(15,110,91,0.35);
}

.quick-pick-item span.label {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
}

@media (max-width:900px) {
    .quick-pick-grid {
        justify-content: center;
    }
}
/* ---------- Most Popular Services slider ---------- */
.popular {
    padding: 90px 0;
}

.popular-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 44px;
}

.pill-badge {
    display: inline-block;
    background: rgba(15,110,91,0.1);
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.popular-header h2 {
    font-size: clamp(1.8rem,3vw,2.4rem);
    margin-bottom: 10px;
}

.popular-header p {
    color: #5A6B66;
    font-size: 0.96rem;
}

.popular-slider-wrap {
    position: relative;
}

.popular-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 16px;
    scrollbar-width: none;
}

    .popular-track::-webkit-scrollbar {
        display: none;
    }

.popular-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .popular-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 36px -16px rgba(15,49,43,0.25);
    }

.popular-img {
    height: 170px;
    background: linear-gradient(160deg,#DCE7E3,#C7D8D2);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.popular-body {
    padding: 18px 20px 22px;
}

    .popular-body h4 {
        font-size: 1.02rem;
        margin-bottom: 6px;
        font-family: 'Inter',sans-serif;
        font-weight: 600;
    }

    .popular-body p {
        font-size: 0.85rem;
        color: #5A6B66;
        margin-bottom: 14px;
        min-height: 38px;
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(15,49,43,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 5;
    color: var(--ink);
}

    .slider-arrow.left {
        left: -8px;
    }

    .slider-arrow.right {
        right: -8px;
    }

@media (max-width:900px) {
    .slider-arrow {
        display: none;
    }
}
/* ---------- Homepage: How It Works zigzag band ---------- */
.hiw-band {
    position: relative;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    padding: 90px 0 100px;
    margin: 60px 0;
    clip-path: polygon( 0% 4%, 5% 0%, 12% 3%, 20% 0%, 28% 3%, 36% 0%, 44% 3%, 52% 0%, 60% 3%, 68% 0%, 76% 3%, 84% 0%, 92% 3%, 100% 0%, 100% 96%, 94% 100%, 86% 97%, 78% 100%, 70% 97%, 62% 100%, 54% 97%, 46% 100%, 38% 97%, 30% 100%, 22% 97%, 14% 100%, 6% 97%, 0% 100% );
    overflow: hidden;
}

.hiw-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 3;
}

.hiw-pill {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-family: 'Space Mono',monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.hiw-header h2 {
    color: #fff;
    font-size: clamp(1.7rem,3vw,2.3rem);
}

.hiw-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
}

.hiw-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 16px;
}

.hiw-step p {
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.4;
}

.hiw-dots {
    flex: 0 0 60px;
    height: 1px;
    border-top: 2px dotted rgba(255,255,255,0.5);
    margin: 0 6px 40px;
    position: relative;
}

    .hiw-dots::after {
        content: '→';
        position: absolute;
        right: -14px;
        top: -11px;
        color: rgba(255,255,255,0.7);
    }

/* floating bubbles */
.hiw-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), rgba(255,255,255,0.05) 70%);
    z-index: 1;
    pointer-events: none;
}

.b1 {
    width: 26px;
    height: 26px;
    top: 18%;
    left: 20%;
    animation: bubbleFloat 7s ease-in-out infinite;
}

.b2 {
    width: 16px;
    height: 16px;
    top: 14%;
    right: 22%;
    animation: bubbleFloat 5.5s ease-in-out infinite .5s;
}

.b3 {
    width: 20px;
    height: 20px;
    top: 10%;
    right: 15%;
    animation: bubbleFloat 6.5s ease-in-out infinite 1s;
}

.b4 {
    width: 14px;
    height: 14px;
    top: 60%;
    right: 6%;
    animation: bubbleFloat 6s ease-in-out infinite 1.5s;
}

.b5 {
    width: 10px;
    height: 10px;
    top: 75%;
    right: 12%;
    animation: bubbleFloat 5s ease-in-out infinite .8s;
}

.b6 {
    width: 22px;
    height: 22px;
    top: 8%;
    left: 38%;
    animation: bubbleFloat 8s ease-in-out infinite 2s;
}

.b7 {
    width: 12px;
    height: 12px;
    bottom: 12%;
    left: 9%;
    animation: bubbleFloat 5.8s ease-in-out infinite .3s;
}

@keyframes bubbleFloat {
    0%,100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-18px) translateX(6px);
    }
}

@media (max-width:900px) {
    .hiw-steps {
        flex-direction: column;
        gap: 36px;
    }

    .hiw-dots {
        transform: rotate(90deg);
        margin: 0;
    }

    .hiw-band {
        clip-path: none;
        padding: 70px 0;
    }
}
/* ---------- Service Area + Testimonials (side by side) ---------- */
.area-testi-wrap {
    padding: 80px 0;
}

.area-testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* --- Service radar --- */
.radar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

    .radar-card .eyebrow {
        margin-bottom: 6px;
    }

    .radar-card h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 6px;
    }

    .radar-card p.sub {
        color: #5A6B66;
        font-size: 0.88rem;
        text-align: center;
        margin-bottom: 20px;
    }

.radar-stage {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-ring {
    position: absolute;
    border: 1.5px solid var(--teal);
    border-radius: 50%;
    opacity: 0;
    animation: radarPulse 3.2s ease-out infinite;
}

    .radar-ring.r1 {
        width: 80px;
        height: 80px;
        animation-delay: 0s;
    }

    .radar-ring.r2 {
        width: 80px;
        height: 80px;
        animation-delay: 1s;
    }

    .radar-ring.r3 {
        width: 80px;
        height: 80px;
        animation-delay: 2s;
    }

@keyframes radarPulse {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0.6;
    }

    100% {
        width: 260px;
        height: 260px;
        opacity: 0;
    }
}

.radar-center {
    position: relative;
    z-index: 3;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(15,110,91,0.4);
    text-align: center;
}

    .radar-center .pin {
        font-size: 1.1rem;
    }

    .radar-center span.name {
        font-size: 0.68rem;
        font-weight: 700;
        line-height: 1.1;
        margin-top: 2px;
    }

.radar-satellite {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 18px rgba(15,49,43,0.12);
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}

    .radar-satellite.s1 {
        top: 6%;
        right: 2%;
    }

    .radar-satellite.s2 {
        bottom: 10%;
        left: 0%;
        animation-delay: 1s;
    }

    .radar-satellite .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--marigold);
    }

/* --- Testimonials --- */
.testi-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-top {
    text-align: left;
    margin-bottom: 24px;
}

.testi-header h3 {
    font-size: 1.3rem;
    margin: 8px 0 6px;
    position: relative;
    display: inline-block;
}

    .testi-header h3::after {
        content: '';
        display: block;
        width: 46px;
        height: 3px;
        background: var(--marigold);
        border-radius: 4px;
        margin-top: 8px;
    }

.testi-header p {
    color: #5A6B66;
    font-size: 0.86rem;
    margin-top: 12px;
}

.testi-slide-wrap {
    position: relative;
    min-height: 180px;
}

.testi-slide {
    display: none;
    animation: fadeSlide .4s ease;
}

    .testi-slide.active {
        display: block;
    }

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 0.98rem;
}

.testi-stars {
    color: var(--marigold);
    font-size: 0.9rem;
}

.testi-quote {
    border-left: 3px solid var(--teal);
    padding-left: 16px;
    color: #3C4E49;
    font-size: 0.94rem;
    line-height: 1.6;
}

.testi-dots {
    display: flex;
    gap: 8px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.testi-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    border: none;
    padding: 0;
}

    .testi-dot.active {
        background: var(--teal);
        width: 22px;
        border-radius: 6px;
        transition: width .2s ease;
    }

@media (max-width:900px) {
    .area-testi-grid {
        grid-template-columns: 1fr;
    }
}
.testi-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.testi-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--mist);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--ink);
}

    .testi-arrow:hover {
        background: var(--teal);
        color: #fff;
        border-color: var(--teal);
    }

.testi-counter {
    font-size: 0.82rem;
    color: #5A6B66;
    font-weight: 600;
}

.testi-see-all {
    margin-top: 18px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--teal);
    display: inline-block;
}

/* ---------- All Reviews page ---------- */
.reviews-page {
    padding: 70px 0 90px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
}

@media (max-width:900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------- Why Choose Hippo Cleaning (redesigned) ---------- */
.why-redesign {
    padding: 90px 0;
}

.why-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-copy .eyebrow {
    margin-bottom: 12px;
    display: block;
}

.why-copy h2 {
    font-size: clamp(1.8rem,3vw,2.4rem);
    margin-bottom: 18px;
    line-height: 1.15;
}

.why-copy > p {
    color: #3C4E49;
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 460px;
}

.why-checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

    .why-check-item:last-child {
        border-bottom: none;
    }

.why-check-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(15,110,91,0.3);
}

.why-check-item span.text {
    font-weight: 600;
    font-size: 0.98rem;
    padding-top: 4px;
}

/* photo collage */
.why-collage {
    position: relative;
    height: 440px;
}

.why-photo {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 30px 60px -20px rgba(15,49,43,0.3);
    background: linear-gradient(160deg,#DCE7E3,#C7D8D2);
}

    .why-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .why-photo.p1 {
        width: 78%;
        height: 70%;
        top: 0;
        left: 0;
        z-index: 2;
        animation: float 6s ease-in-out infinite;
    }

    .why-photo.p2 {
        width: 56%;
        height: 56%;
        bottom: 0;
        right: 0;
        z-index: 3;
        animation: float 6s ease-in-out infinite 1s;
    }

.why-floating-stat {
    position: absolute;
    bottom: 14%;
    left: -6%;
    z-index: 4;
    background: #fff;
    border-radius: 18px;
    padding: 18px 24px;
    box-shadow: 0 20px 40px -12px rgba(15,49,43,0.3);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 5s ease-in-out infinite .5s;
}

    .why-floating-stat .icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--mist);
        color: var(--teal);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }

    .why-floating-stat strong {
        display: block;
        font-family: 'Fraunces',serif;
        font-size: 1.3rem;
        line-height: 1;
    }

    .why-floating-stat span {
        font-size: 0.76rem;
        color: #5A6B66;
        font-weight: 600;
    }

@media (max-width:900px) {
    .why-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-collage {
        height: 340px;
        margin-top: 20px;
    }

    .why-floating-stat {
        left: 4%;
        padding: 14px 18px;
    }
}
/* ---------- Instagram reels slider ---------- */
.insta-section {
    padding: 80px 0;
    text-align: center;
}

.insta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,163,61,0.12);
    color: var(--marigold);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.insta-section h2 {
    font-size: clamp(1.7rem,3vw,2.3rem);
    margin-bottom: 8px;
}

.insta-section > p {
    color: #5A6B66;
    margin-bottom: 40px;
}

.insta-slider-wrap {
    position: relative;
}

.insta-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 16px;
    scrollbar-width: none;
}

    .insta-track::-webkit-scrollbar {
        display: none;
    }

.insta-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
}
.insta-card-inner {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px -14px rgba(15,49,43,0.25);
    transition: box-shadow .3s ease;
    width: 326px;
}
.insta-card-inner {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px -14px rgba(15,49,43,0.25);
    transition: box-shadow .3s ease;
    width: 326px;
}

.insta-card iframe, .insta-card blockquote {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width:900px) {
    .insta-card {
        flex-basis: 80%;
    }
}
.footer-mascot {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .footer-mascot img {
        max-height: 220px;
        width: auto;
        filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
    }

@media (max-width:900px) {
    .footer-mascot {
        display: none;
    }
}
/* ---------- Instagram "Follow for More" button ---------- */
.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background-size: 200% auto;
    color: #fff;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 14px 30px -8px rgba(221,42,123,0.45);
    transition: background-position .5s ease, transform .25s ease, box-shadow .25s ease;
    margin-top: 8px;
}

    .insta-follow-btn:hover {
        background-position: right center;
        transform: translateY(-3px);
        box-shadow: 0 20px 40px -10px rgba(221,42,123,0.55);
        color: #fff;
    }

    .insta-follow-btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
/* ---------- The Numbers That Define Hippo Cleaning ---------- */
.stats-band {
    position: relative;
    background: var(--teal-deep);
    padding: 100px 0 0;
    margin: 60px 0 0;
    clip-path: polygon(0% 6%, 8% 0%, 18% 5%, 28% 0%, 38% 5%, 48% 0%, 58% 5%, 68% 0%, 78% 5%, 88% 0%, 100% 5%, 100% 100%, 0% 100%);
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-bottom: 70px;
    position: relative;
    z-index: 3;
}

.stats-photo {
    position: relative;
    display: flex;
    justify-content: center;
}

    .stats-photo img {
        max-width: 100%;
        height: auto;
        filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
    }

.stats-copy .eyebrow {
    color: var(--marigold);
    margin-bottom: 10px;
    display: block;
}

.stats-copy h2 {
    color: #fff;
    font-size: clamp(1.8rem,3vw,2.4rem);
    margin-bottom: 18px;
}

.stats-copy p {
    color: rgba(255,255,255,0.75);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 440px;
}

.stats-strip {
    background: var(--marigold);
    padding: 56px 0 64px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    text-align: center;
}

    .stats-strip .stat h3 {
        color: #fff;
        font-family: 'Fraunces',serif;
        font-size: clamp(1.8rem,3vw,2.6rem);
        margin-bottom: 6px;
    }

    .stats-strip .stat p {
        color: rgba(255,255,255,0.85);
        font-size: 0.86rem;
        font-weight: 600;
    }

.stats-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), rgba(255,255,255,0.05) 70%);
    z-index: 1;
    pointer-events: none;
}

.sb1 {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 8%;
    animation: bubbleFloat 6s ease-in-out infinite;
}

.sb2 {
    width: 14px;
    height: 14px;
    top: 20%;
    left: 52%;
    animation: bubbleFloat 5s ease-in-out infinite .6s;
}

.sb3 {
    width: 24px;
    height: 24px;
    top: 8%;
    right: 8%;
    animation: bubbleFloat 7s ease-in-out infinite 1.2s;
}

.sb4 {
    width: 12px;
    height: 12px;
    top: 35%;
    right: 20%;
    animation: bubbleFloat 5.5s ease-in-out infinite .3s;
}

.sb5 {
    width: 16px;
    height: 16px;
    bottom: 22%;
    right: 6%;
    animation: bubbleFloat 6.5s ease-in-out infinite 1s;
}

@media (max-width:900px) {
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-copy p {
        margin: 0 auto;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stats-band {
        clip-path: none;
        padding-top: 60px;
    }
}
/* ---------- General FAQ (homepage) ---------- */
.gfaq-section {
    padding: 90px 0;
}

.gfaq-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 50px;
}

.gfaq-pill {
    display: inline-block;
    background: rgba(58,71,80,0.08);
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 100px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
}

.gfaq-header h2 {
    font-size: clamp(1.8rem,3vw,2.4rem);
    margin-bottom: 10px;
}

.gfaq-header p {
    color: #5A6B66;
    font-size: 0.98rem;
}

.gfaq-list {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.gfaq-item {
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

    .gfaq-item:last-child {
        border-bottom: none;
    }

    .gfaq-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--marigold);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .35s ease;
    }

    .gfaq-item.open::before {
        transform: scaleY(1);
    }

    .gfaq-item.open {
        background: linear-gradient(90deg, rgba(232,115,90,0.05), transparent 40%);
    }

.gfaq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
}

.gfaq-category {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--marigold);
    margin-bottom: 6px;
}

.gfaq-question h4 {
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0;
}

.gfaq-chevron {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s ease, background .3s ease;
}

.gfaq-item.open .gfaq-chevron {
    transform: rotate(180deg);
    background: var(--teal);
}

    .gfaq-item.open .gfaq-chevron svg path {
        stroke: #fff;
    }

.gfaq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease;
}

.gfaq-item.open .gfaq-answer-wrap {
    grid-template-rows: 1fr;
}

.gfaq-answer-inner {
    overflow: hidden;
}

.gfaq-answer {
    padding: 0 28px 24px 28px;
    color: #5A6B66;
    font-size: 0.94rem;
    line-height: 1.65;
}

@media (max-width:600px) {
    .gfaq-question {
        padding: 18px 20px;
    }

    .gfaq-answer {
        padding: 0 20px 20px 20px;
    }
}
/* ---------- Recent Work: shuffling polaroid stack ---------- */
.polaroid-section {
    padding: 80px 0;
    text-align: center;
}

    .polaroid-section h2 {
        font-size: clamp(1.6rem,2.8vw,2.2rem);
        margin-bottom: 8px;
    }

    .polaroid-section p {
        color: #5A6B66;
        margin-bottom: 50px;
    }

.polaroid-stack {
    position: relative;
    width: 280px;
    height: 320px;
    margin: 0 auto;
}

.polaroid-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 14px 14px 46px;
    box-shadow: 0 20px 40px -14px rgba(36,34,42,0.35);
    transition: transform 0.7s cubic-bezier(.22,1,.36,1), z-index 0s;
}

    .polaroid-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 2px;
    }

    .polaroid-card .tag {
        position: absolute;
        bottom: 14px;
        left: 14px;
        right: 14px;
        font-family: 'Space Mono',monospace;
        font-size: 0.72rem;
        color: #5A6B66;
        text-align: left;
    }

    .polaroid-card.pos-0 {
        transform: translate(0,0) rotate(-4deg) scale(1);
        z-index: 4;
    }

    .polaroid-card.pos-1 {
        transform: translate(14px,10px) rotate(6deg) scale(0.96);
        z-index: 3;
    }

    .polaroid-card.pos-2 {
        transform: translate(-10px,20px) rotate(-8deg) scale(0.92);
        z-index: 2;
    }

    .polaroid-card.pos-3 {
        transform: translate(6px,30px) rotate(10deg) scale(0.88);
        z-index: 1;
    }

    .polaroid-card.pos-back {
        transform: translate(0,40px) rotate(0deg) scale(0.8);
        z-index: 0;
        opacity: 0;
    }

@media (max-width:500px) {
    .polaroid-stack {
        width: 230px;
        height: 270px;
    }
}
/* ---------- Hero: shuffling photo stack (fills the float-card frame) ---------- */
.hero-stack-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 1.1s cubic-bezier(.22,1,.36,1), opacity 0.7s ease, box-shadow 1.1s ease;
}

    .hero-stack-photo.pos-0 {
        animation: heroPhotoPop 1.1s cubic-bezier(.22,1,.36,1);
    }

@keyframes heroPhotoPop {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }

    40% {
        box-shadow: 0 0 0 10px rgba(255,255,255,0.15);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}}

    .hero-stack-photo.pos-0 {
        transform: scale(1) rotate(0deg);
        z-index: 4;
        opacity: 1;
    }

    .hero-stack-photo.pos-1 {
        transform: scale(0.94) rotate(-2deg) translate(6px,10px);
        z-index: 3;
        opacity: 1;
    }

    .hero-stack-photo.pos-2 {
        transform: scale(0.88) rotate(3deg) translate(-8px,18px);
        z-index: 2;
        opacity: 1;
    }

    .hero-stack-photo.pos-3 {
        transform: scale(0.82) rotate(-4deg) translate(4px,26px);
        z-index: 1;
        opacity: 0.6;
    }

    .hero-stack-photo.pos-back {
        transform: scale(0.75) translate(0,34px);
        z-index: 0;
        opacity: 0;
    }
/* ---------- Contact Form ---------- */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.contact-info .eyebrow {
    margin-bottom: 10px;
    display: block;
}

.contact-info h2 {
    font-size: clamp(1.8rem,3vw,2.4rem);
    margin-bottom: 16px;
}

.contact-info > p {
    color: #5A6B66;
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

    .contact-detail:last-child {
        border-bottom: none;
    }

    .contact-detail .ic {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--mist);
        color: var(--teal);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .contact-detail strong {
        display: block;
        font-size: 0.94rem;
        margin-bottom: 2px;
    }

    .contact-detail span {
        font-size: 0.86rem;
        color: #5A6B66;
    }

.contact-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 30px 60px -25px rgba(16,45,66,0.25);
    position: relative;
    overflow: hidden;
}

.field-group {
    position: relative;
    margin-bottom: 24px;
}

    .field-group input, .field-group select, .field-group textarea {
        width: 100%;
        border: 1.5px solid var(--line);
        border-radius: 12px;
        padding: 22px 16px 10px;
        font-size: 0.96rem;
        font-family: 'Inter',sans-serif;
        background: #fff;
        transition: border-color .2s ease, box-shadow .2s ease;
        color: var(--ink);
    }

    .field-group textarea {
        min-height: 100px;
        resize: vertical;
    }

        .field-group input:focus, .field-group select:focus, .field-group textarea:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 4px rgba(27,75,110,0.12);
        }

    .field-group label {
        position: absolute;
        left: 16px;
        top: 16px;
        font-size: 0.96rem;
        color: #8A9199;
        pointer-events: none;
        transition: all .18s ease;
        background: #fff;
        padding: 0 4px;
    }

    .field-group input:focus + label,
    .field-group input:not(:placeholder-shown) + label,
    .field-group select:focus + label,
    .field-group select:valid + label,
    .field-group textarea:focus + label,
    .field-group textarea:not(:placeholder-shown) + label {
        top: -9px;
        left: 12px;
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--teal);
    }

.field-error {
    color: #C0392B;
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

.contact-submit-btn {
    width: 100%;
    border: none;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

    .contact-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(27,75,110,0.4);
    }

    .contact-submit-btn.loading {
        opacity: 0.75;
        pointer-events: none;
    }

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: spin .7s linear infinite;
}

.contact-submit-btn.loading .btn-spinner {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success state */
.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.success-check-circle {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
}

    .success-check-circle circle {
        stroke: var(--teal);
        stroke-width: 3;
        fill: none;
        stroke-dasharray: 283;
        stroke-dashoffset: 283;
        animation: drawCircle .6s ease forwards;
    }

    .success-check-circle path {
        stroke: var(--teal);
        stroke-width: 4;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 40;
        stroke-dashoffset: 40;
        animation: drawCheck .4s ease forwards .6s;
    }

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.contact-success h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-success p {
    color: #5A6B66;
    font-size: 0.94rem;
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px;
    }
}
.logo-mark-img {
    height: 44px;
    padding: 4px 8px;
    border-radius: 12px;
    background: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

    .logo-mark-img img {
        height: 100%;
        width: auto;
        display: block;
        object-fit: contain;
    }
/* ---------- Industrial Showcase (below hero) ---------- */
.industrial-section {
    padding: 80px 0 70px;
    background: var(--mist);
}

.industrial-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
}

    .industrial-header .eyebrow {
        margin-bottom: 10px;
        display: block;
    }

    .industrial-header h2 {
        font-size: clamp(1.7rem,3vw,2.3rem);
        margin-bottom: 10px;
    }

    .industrial-header p {
        color: #5A6B66;
        font-size: 0.96rem;
    }

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    background-size: cover;
    background-position: center;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .industry-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 44px -16px rgba(16,45,66,0.35);
    }

    .industry-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(16,45,66,0.9) 10%, rgba(16,45,66,0.15) 65%, transparent 100%);
    }

.industry-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 20px;
}

.industry-card .glyph {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.industry-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    font-family: 'Inter',sans-serif;
}

.industry-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding-top: 44px;
    border-top: 1px solid var(--line);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 11px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform .2s ease, border-color .2s ease;
}

    .trust-badge:hover {
        transform: translateY(-3px);
        border-color: var(--teal);
    }

    .trust-badge .check {
        color: var(--teal);
        font-size: 1rem;
    }

@media (max-width:900px) {
    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------- Industrial Spotlight: Floor & Facade ---------- */
.spotlight-section {
    padding: 20px 0 80px;
}

.spotlight-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

    .spotlight-header .eyebrow {
        margin-bottom: 10px;
        display: block;
    }

    .spotlight-header h2 {
        font-size: clamp(1.7rem,3vw,2.3rem);
    }

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.spotlight-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .spotlight-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 55px -18px rgba(16,45,66,0.4);
    }

    .spotlight-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(16,45,66,0.92) 15%, rgba(16,45,66,0.3) 60%, transparent 100%);
    }

.spotlight-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: var(--marigold);
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
}

.spotlight-body {
    position: relative;
    z-index: 2;
    padding: 32px 30px;
}

    .spotlight-body h3 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .spotlight-body p {
        color: rgba(255,255,255,0.82);
        font-size: 0.94rem;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 320px;
    }

    .spotlight-body .btn-primary {
        background: var(--marigold);
        color: var(--teal-deep);
    }

@media (max-width:900px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-card {
        height: 340px;
    }
}
/* ---------- Industrial Spotlight: Floor & Facade ---------- */
.spotlight-section {
    padding: 20px 0 80px;
}

.spotlight-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

    .spotlight-header .eyebrow {
        margin-bottom: 10px;
        display: block;
    }

    .spotlight-header h2 {
        font-size: clamp(1.7rem,3vw,2.3rem);
    }

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.spotlight-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .spotlight-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 55px -18px rgba(16,45,66,0.4);
    }

    .spotlight-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(16,45,66,0.92) 15%, rgba(16,45,66,0.3) 60%, transparent 100%);
    }

.spotlight-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: var(--marigold);
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
}

.spotlight-body {
    position: relative;
    z-index: 2;
    padding: 32px 30px;
}

    .spotlight-body h3 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .spotlight-body p {
        color: rgba(255,255,255,0.82);
        font-size: 0.94rem;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 320px;
    }

    .spotlight-body .btn-primary {
        background: var(--marigold);
        color: var(--teal-deep);
    }

@media (max-width:900px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-card {
        height: 340px;
    }
}
/* ---------- Industrial Spotlight: Floor & Facade ---------- */
.spotlight-section {
    padding: 20px 0 80px;
}

.spotlight-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

    .spotlight-header .eyebrow {
        margin-bottom: 10px;
        display: block;
    }

    .spotlight-header h2 {
        font-size: clamp(1.7rem,3vw,2.3rem);
    }

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.spotlight-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

    .spotlight-card, .spotlight-card:hover, .spotlight-card:active, .spotlight-card:focus, .spotlight-card:visited {
        text-decoration: none;
        outline: none;
        color: inherit;
    }

    .spotlight-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 55px -18px rgba(16,45,66,0.4);
    }

    .spotlight-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(16,45,66,0.92) 15%, rgba(16,45,66,0.3) 60%, transparent 100%);
    }

.spotlight-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: var(--marigold);
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
}

.spotlight-body {
    position: relative;
    z-index: 2;
    padding: 32px 30px;
}

    .spotlight-body h3 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .spotlight-body p {
        color: rgba(255,255,255,0.82);
        font-size: 0.94rem;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 320px;
    }

    .spotlight-body .btn-primary {
        background: var(--marigold);
        color: var(--teal-deep);
    }

@media (max-width:900px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-card {
        height: 340px;
    }
}
/* ---------- Featured highlight for Floor/Facade in Popular Services ---------- */
.popular-card.featured {
    border: 2px solid var(--marigold);
    box-shadow: 0 0 0 5px rgba(201,166,107,0.18), 0 20px 40px -16px rgba(16,45,66,0.3);
    animation: featuredGlow 2.4s ease-in-out infinite;
}

@keyframes featuredGlow {
    0%,100% {
        box-shadow: 0 0 0 5px rgba(201,166,107,0.18), 0 20px 40px -16px rgba(16,45,66,0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201,166,107,0.28), 0 20px 40px -16px rgba(16,45,66,0.3);
    }
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: var(--marigold);
    color: var(--teal-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-card {
    position: relative;
}
/* ---------- Featured highlight for Floor/Facade in the checklist grid ---------- */
.checklist-item.featured {
    background: rgba(201,166,107,0.08);
    border-radius: 10px;
    margin: -2px -10px;
    padding: 14px 10px 14px 14px !important;
}

    .checklist-item.featured .check {
        background: var(--marigold);
    }

    .checklist-item.featured span.name {
        color: var(--teal-deep);
    }

.checklist-featured-tag {
    margin-left: auto;
    background: var(--marigold);
    color: var(--teal-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
}
/* ---------- ServiceIndex: photo-backed hero + section bands ---------- */
.page-hero-photo {
    position: relative;
    padding: 110px 0 90px;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

    .page-hero-photo::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(16,45,66,0.88) 0%, rgba(16,45,66,0.75) 100%);
    }

    .page-hero-photo .wrap {
        position: relative;
        z-index: 2;
    }

    .page-hero-photo .eyebrow {
        color: rgba(255,255,255,0.7);
    }

    .page-hero-photo h1 {
        color: #fff;
    }

    .page-hero-photo p {
        color: rgba(255,255,255,0.75);
    }

.section-band-white {
    background: #fff;
    padding-top: 6px;
}

.section-band-navy {
    background: var(--teal-deep);
    padding: 80px 0;
}

    .section-band-navy .polaroid-section h2, .section-band-navy h2 {
        color: #fff;
    }

    .section-band-navy .polaroid-section p, .section-band-navy p {
        color: rgba(255,255,255,0.7);
    }
/* ---------- Hero: auto-sliding industrial + housing showcase ---------- */
.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--teal-deep);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    .hero-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(16,45,66,0.88) 0%, rgba(16,45,66,0.5) 55%, rgba(16,45,66,0.15) 100%);
    }

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 520px;
}

    .hero-slide-content .eyebrow {
        color: var(--marigold);
        margin-bottom: 14px;
        display: block;
    }

    .hero-slide-content h1 {
        color: #fff;
        font-size: clamp(2rem,4vw,3.1rem);
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .hero-slide-content p {
        color: rgba(255,255,255,0.78);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

.hero-slider-nav {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

    .hero-dot.active {
        width: 28px;
        border-radius: 6px;
        background: var(--marigold);
    }

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
}

    .hero-slider-arrow:hover {
        background: rgba(255,255,255,0.25);
    }

    .hero-slider-arrow.left {
        left: 24px;
    }

    .hero-slider-arrow.right {
        right: 24px;
    }

@media (max-width:900px) {
    .hero-slider {
        height: 78vh;
    }

    .hero-slider-arrow {
        display: none;
    }
}