@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap');

:root {
    --navy: #14263f;
    --navy-deep: #0c1828;
    --orange: #f06a00;
    --orange-hot: #d85c00;
    --cream: #eef3f7;
    --mist: #d7e2ec;
    --ink: #121820;
    --muted: #5a6675;
    --white: #ffffff;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 7.75rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: 'Figtree', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

main,
section {
    max-width: 100%;
}

/* ——— Header ——— */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0.95rem 0 1.05rem;
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.96), rgba(12, 24, 40, 0.88));
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.site-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(220px, 40%);
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.85;
}

.header-inner {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.logo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.logo-kicker::before,
.logo-kicker::after {
    content: '';
    width: 1.4rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 106, 0, 0.8), transparent);
}

.logo-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    letter-spacing: 0.06em;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 0.2rem;
    transition: transform 0.25s var(--ease);
}

.logo-name:hover {
    transform: translateY(-1px);
}

.logo-name em {
    font-style: normal;
    color: var(--orange);
    text-shadow: 0 0 24px rgba(240, 106, 0, 0.25);
}

.logo-quote {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
}

.header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.15rem;
    padding: 0.55rem 1.25rem 0.55rem 0.65rem;
    background: linear-gradient(180deg, #ff8a1f, var(--orange));
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    box-shadow:
        0 8px 20px rgba(240, 106, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.header-call strong {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.header-call:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 26px rgba(240, 106, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    background: linear-gradient(180deg, #ff941f, var(--orange-hot));
}

.header-call-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f06a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.8.3 1.6.6 2.3a2 2 0 0 1-.5 2.1L8 9.1a16 16 0 0 0 6 6l1-1.2a2 2 0 0 1 2.1-.5c.7.3 1.5.5 2.3.6a2 2 0 0 1 1.6 2z'/%3E%3C/svg%3E")
        center / 1.05rem no-repeat,
        #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

/* ——— Hero ——— */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: hero-zoom 18s var(--ease) forwards;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 40, 0.72);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(920px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.45rem;
    opacity: 0;
    transform: translateY(24px);
    animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero-brand-accent {
    display: block;
    color: var(--orange);
    font-size: clamp(2.15rem, 6vw, 3.7rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-brand-line {
    display: block;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.35rem, 3.4vw, 2.15rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-brand::after {
    content: '';
    display: block;
    width: 4.5rem;
    height: 3px;
    margin: 1.1rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.hero-features {
    list-style: none;
    margin: 0 0 2.4rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    max-width: 760px;
    opacity: 0;
    transform: translateY(24px);
    animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero-features li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem 0.55rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.84rem, 1.8vw, 0.98rem);
    font-weight: 600;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero-features li::before {
    content: '';
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(240, 106, 0, 0.18);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2l2.8 2.8 6.2-6'%3E%3C/path%3E%3C/svg%3E"),
        linear-gradient(180deg, #ff9a3d, var(--orange));
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.7rem 0.7rem, cover;
}

.hero-features li:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 106, 0, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(24px);
    animation: rise 0.9s var(--ease) 0.45s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.45rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-hot);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ——— Sections ——— */
.section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-inner {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    max-width: 100%;
    min-width: 0;
}

.section-head {
    max-width: 36rem;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    color: var(--navy);
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ——— Service plaques ——— */
.plaques-section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(240, 106, 0, 0.1), transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(20, 38, 63, 0.08), transparent 48%),
        linear-gradient(180deg, var(--cream), #e7eef5 100%);
}

.plaques-stack {
    display: grid;
    gap: 1.5rem;
}

.service-plaque {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "main"
        "side"
        "cta";
    gap: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(16, 35, 58, 0.16);
    isolation: isolate;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (min-width: 901px) {
    .service-plaque {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
        grid-template-areas:
            "main side"
            "cta side";
    }
}

.service-plaque-glow {
    display: none;
    grid-area: unset;
}

@media (min-width: 901px) {
    .service-plaque-glow {
        display: block;
        position: absolute;
        width: 45%;
        height: 100%;
        right: 0;
        top: 0;
        z-index: 0;
        pointer-events: none;
    }
}

.service-plaque::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.service-plaque-main,
.service-plaque-side,
.service-plaque-cta {
    position: relative;
    z-index: 1;
}

.service-plaque-main {
    grid-area: main;
    padding: clamp(1.75rem, 4vw, 3rem);
    padding-bottom: 0.75rem;
}

.service-plaque-side {
    grid-area: side;
    padding: clamp(1.75rem, 4vw, 3rem);
    display: grid;
    align-content: center;
    gap: 0.35rem;
    border-left: none;
}

.service-plaque-cta {
    grid-area: cta;
    justify-self: start;
    margin: 0 clamp(1.75rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 901px) {
    .service-plaque-main {
        padding-bottom: 0.5rem;
    }

    .service-plaque-side {
        border-left: 1px solid rgba(20, 38, 63, 0.08);
    }

    .service-plaque--clean .service-plaque-side,
    .service-plaque--grounds .service-plaque-side {
        border-left: 1px solid rgba(20, 38, 63, 0.08);
    }

    .service-plaque--snow .service-plaque-side {
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }
}

.service-plaque-label {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-plaque h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.85rem;
}

.service-plaque-lead {
    margin: 0 0 1.4rem;
    max-width: 42ch;
    font-size: 1.05rem;
}

.service-plaque-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.service-plaque-list li {
    position: relative;
    padding-left: 1.35rem;
}

.service-plaque-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 106, 0, 0.2);
}

.service-plaque-side-title {
    margin: 0.9rem 0 0.2rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
}

.service-plaque-side .service-plaque-side-title:first-child {
    margin-top: 0;
}

.service-plaque-side p:not(.service-plaque-side-title) {
    margin: 0;
    max-width: 22ch;
}

/* Clean plaque — warm / fresh */
.service-plaque--clean {
    background:
        linear-gradient(135deg, #fff9f4 0%, #f7f1ea 42%, #eef4f8 100%);
    color: var(--navy);
    border: 1px solid rgba(20, 38, 63, 0.08);
}

.service-plaque--clean::before {
    opacity: 0.55;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(240, 106, 0, 0.18) 0 1.5px, transparent 2px),
        radial-gradient(circle at 72% 38%, rgba(20, 38, 63, 0.1) 0 1px, transparent 1.5px),
        radial-gradient(circle at 40% 78%, rgba(240, 106, 0, 0.12) 0 1px, transparent 1.5px);
    background-size: 160px 160px, 200px 200px, 180px 180px;
    animation: clean-drift 26s linear infinite;
}

.service-plaque--clean .service-plaque-glow {
    background: radial-gradient(circle, rgba(240, 106, 0, 0.18), transparent 68%);
}

.service-plaque--clean .service-plaque-label {
    border: 1px solid rgba(240, 106, 0, 0.35);
    color: var(--orange-hot);
    background: rgba(255, 255, 255, 0.65);
}

.service-plaque--clean .service-plaque-lead,
.service-plaque--clean .service-plaque-side p:not(.service-plaque-side-title) {
    color: var(--muted);
}

.service-plaque--clean .service-plaque-list li {
    color: var(--navy);
}

.service-plaque--clean .service-plaque-side {
    background: rgba(20, 38, 63, 0.04);
}

/* Grounds plaque — outdoor / green */
.service-plaque--grounds {
    background:
        linear-gradient(135deg, #f3f7f2 0%, #e7f0e6 45%, #edf3f0 100%);
    color: var(--navy);
    border: 1px solid rgba(20, 38, 63, 0.08);
}

.service-plaque--grounds::before {
    opacity: 0.5;
    background-image:
        radial-gradient(circle at 22% 28%, rgba(70, 120, 70, 0.16) 0 1.5px, transparent 2px),
        radial-gradient(circle at 68% 42%, rgba(20, 38, 63, 0.08) 0 1px, transparent 1.5px),
        radial-gradient(circle at 44% 76%, rgba(240, 106, 0, 0.1) 0 1px, transparent 1.5px);
    background-size: 170px 170px, 210px 210px, 190px 190px;
    animation: clean-drift 28s linear infinite;
}

.service-plaque--grounds .service-plaque-glow {
    background: radial-gradient(circle, rgba(70, 120, 70, 0.16), transparent 68%);
}

.service-plaque--grounds .service-plaque-label {
    border: 1px solid rgba(70, 120, 70, 0.35);
    color: #3f6b3f;
    background: rgba(255, 255, 255, 0.65);
}

.service-plaque--grounds .service-plaque-lead,
.service-plaque--grounds .service-plaque-side p:not(.service-plaque-side-title) {
    color: var(--muted);
}

.service-plaque--grounds .service-plaque-list li {
    color: var(--navy);
}

.service-plaque--grounds .service-plaque-list li::before {
    background: #4d7a4d;
    box-shadow: 0 0 0 3px rgba(77, 122, 77, 0.18);
}

.service-plaque--grounds .service-plaque-side {
    background: rgba(20, 38, 63, 0.04);
}

.service-plaque--grounds .service-plaque-side-title {
    color: #3f6b3f;
}

/* Snow plaque — cool winter */
.service-plaque--snow {
    background:
        linear-gradient(135deg, #10233a 0%, #1a3a5c 48%, #243f5f 100%);
    color: var(--white);
}

.service-plaque--snow::before {
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px),
        radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.25) 0 1px, transparent 1.5px),
        radial-gradient(circle at 40% 75%, rgba(255, 255, 255, 0.2) 0 1.5px, transparent 2px),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.5px);
    background-size: 180px 180px, 220px 220px, 160px 160px, 200px 200px;
    animation: snow-drift 22s linear infinite;
}

.service-plaque--snow .service-plaque-glow {
    background: radial-gradient(circle, rgba(240, 106, 0, 0.28), transparent 68%);
}

.service-plaque--snow .service-plaque-label {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.85);
}

.service-plaque--snow .service-plaque-lead,
.service-plaque--snow .service-plaque-side p:not(.service-plaque-side-title),
.service-plaque--snow .service-plaque-list li {
    color: rgba(255, 255, 255, 0.86);
}

.service-plaque--snow .service-plaque-side {
    background: rgba(255, 255, 255, 0.06);
}

@keyframes snow-drift {
    from { background-position: 0 0, 40px 20px, 10px 60px, 80px 0; }
    to { background-position: 0 180px, 40px 200px, 10px 240px, 80px 180px; }
}

@keyframes clean-drift {
    from { background-position: 0 0, 30px 10px, 15px 40px; }
    to { background-position: 0 160px, 30px 170px, 15px 200px; }
}

/* ——— Process ——— */
.process-section {
    background: var(--white);
    overflow: hidden;
}

.process-head {
    max-width: 36rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.process-label,
.area-label {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(240, 106, 0, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-hot);
}

.process-head h2,
.area-copy h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    color: var(--navy);
}

.process-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: none;
}

.process-step {
    position: relative;
    padding: 1.5rem 1.25rem 1.4rem;
    border: 1px solid rgba(20, 38, 63, 0.08);
    border-radius: 16px;
    background:
        linear-gradient(180deg, #ffffff, #f7fafc);
    box-shadow: 0 14px 30px rgba(20, 38, 63, 0.05);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 2.1rem;
    right: -0.5rem;
    width: 0.85rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(240, 106, 0, 0.55), transparent);
    z-index: 1;
    pointer-events: none;
}

.process-step:last-child::after {
    display: none;
}

.process-num {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--orange);
}

.process-step h3 {
    margin: 0 0 0.45rem;
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    color: var(--navy);
}

.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ——— Area ——— */
.area-section {
    background:
        radial-gradient(circle at 85% 20%, rgba(240, 106, 0, 0.08), transparent 40%),
        linear-gradient(180deg, #eef3f7, #e6edf4 100%);
}

.area-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.area-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.area-lead {
    margin: 0 0 1.35rem;
    max-width: 38ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.area-list {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.area-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--navy);
    font-weight: 600;
}

.area-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 106, 0, 0.18);
}

.area-note {
    margin: 0 0 1.35rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.area-map {
    min-height: 340px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 38, 63, 0.08);
    box-shadow: 0 20px 40px rgba(20, 38, 63, 0.08);
    background: #d9e2ec;
    max-width: 100%;
    min-width: 0;
}

.area-map img {
    width: 100%;
    max-width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
}

/* ——— FAQ ——— */
.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.faq-label {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(240, 106, 0, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-hot);
}

.faq-head h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    color: var(--navy);
}

.faq-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 30ch;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid rgba(20, 38, 63, 0.08);
    border-radius: 14px;
    background: #f7fafc;
    overflow: hidden;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.faq-item[open] {
    background: var(--white);
    border-color: rgba(240, 106, 0, 0.28);
    box-shadow: 0 12px 28px rgba(20, 38, 63, 0.06);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.05rem 3rem 1.05rem 1.15rem;
    position: relative;
    font-family: 'Syne', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(240, 106, 0, 0.12);
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item p {
    margin: 0;
    padding: 0 1.15rem 1.15rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 58ch;
}

/* ——— Floating call ——— */
.float-call {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 120;
    display: none;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem 0.7rem 0.7rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(180deg, #ff8a1f, var(--orange));
    box-shadow: 0 12px 28px rgba(240, 106, 0, 0.35);
}

.float-call-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f06a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.8.3 1.6.6 2.3a2 2 0 0 1-.5 2.1L8 9.1a16 16 0 0 0 6 6l1-1.2a2 2 0 0 1 2.1-.5c.7.3 1.5.5 2.3.6a2 2 0 0 1 1.6 2z'/%3E%3C/svg%3E")
        center / 1rem no-repeat,
        #fff;
}

.float-call-text {
    font-size: 0.9rem;
    font-weight: 800;
}

/* ——— Proof ——— */
.proof {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(240, 106, 0, 0.18), transparent 42%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.06), transparent 40%),
        linear-gradient(160deg, #0b1624 0%, #14263f 55%, #0f1d2e 100%);
    color: var(--white);
}

.proof::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
    pointer-events: none;
}

.proof .section-inner {
    position: relative;
    z-index: 1;
}

.proof-head {
    max-width: 36rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.proof-label {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(240, 106, 0, 0.45);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffb06a;
}

.proof-head h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    color: var(--white);
}

.proof-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.proof-item {
    position: relative;
    padding: 1.4rem 1.25rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(6px);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.proof-item::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.proof-item:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 106, 0, 0.35);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.proof-item strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    line-height: 1;
    margin-bottom: 0.65rem;
    color: var(--orange);
}

.proof-item h3 {
    margin: 0 0 0.4rem;
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.proof-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

/* ——— Contact ——— */
.contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(240, 106, 0, 0.1), transparent 42%),
        radial-gradient(circle at 90% 80%, rgba(20, 38, 63, 0.08), transparent 45%),
        linear-gradient(180deg, #f5f8fb 0%, #e8eef5 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: stretch;
}

.contact-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(240, 106, 0, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-hot);
}

.contact-copy h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 0.85rem;
    color: var(--navy);
}

.contact-lead {
    margin: 0 0 1.75rem;
    max-width: 34ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-lines {
    display: grid;
    gap: 0.75rem;
}

.contact-line {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid rgba(20, 38, 63, 0.08);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(20, 38, 63, 0.04);
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

a.contact-line:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 106, 0, 0.35);
    box-shadow: 0 14px 28px rgba(20, 38, 63, 0.08);
}

.contact-line-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(240, 106, 0, 0.12);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.15rem;
    flex-shrink: 0;
}

.contact-line-icon--phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f06a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.8.3 1.6.6 2.3a2 2 0 0 1-.5 2.1L8 9.1a16 16 0 0 0 6 6l1-1.2a2 2 0 0 1 2.1-.5c.7.3 1.5.5 2.3.6a2 2 0 0 1 1.6 2z'/%3E%3C/svg%3E");
}

.contact-line-icon--mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f06a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.contact-line-icon--pin {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f06a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-line small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.contact-line strong {
    display: block;
    font-size: 1.02rem;
    color: var(--navy);
    word-break: break-word;
}

a.contact-line:hover strong {
    color: var(--orange-hot);
}

.contact-form {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(20, 38, 63, 0.08);
    border-radius: 18px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: grid;
    gap: 0.95rem;
    box-shadow: 0 22px 45px rgba(20, 38, 63, 0.08);
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ffb06a, var(--orange));
}

.contact-form-head {
    margin-bottom: 0.25rem;
}

.contact-form-head h3 {
    margin: 0 0 0.25rem;
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    color: var(--navy);
}

.contact-form-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--mist);
    border-radius: 10px;
    font: inherit;
    color: var(--ink);
    background: #f7fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(240, 106, 0, 0.12);
}

.contact-submit {
    width: 100%;
    margin-top: 0.15rem;
    padding: 1rem 1.45rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff8a1f, var(--orange));
    box-shadow: 0 10px 22px rgba(240, 106, 0, 0.25);
}

.contact-submit:hover {
    background: linear-gradient(180deg, #ff941f, var(--orange-hot));
}

.form-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.45;
}

.form-note a {
    color: var(--navy);
    font-weight: 700;
    text-underline-offset: 2px;
}

.form-note a:hover {
    color: var(--orange);
}

.consent-check {
    display: grid !important;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    font-size: 0.84rem !important;
    font-weight: 500 !important;
    color: var(--muted) !important;
    line-height: 1.45;
    cursor: pointer;
}

.consent-check input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.15rem;
    accent-color: var(--orange);
    cursor: pointer;
}

.consent-check a {
    color: var(--navy);
    font-weight: 700;
    text-underline-offset: 2px;
}

.consent-check a:hover {
    color: var(--orange);
}

.form-status {
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--navy);
}

/* ——— Footer ——— */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.72);
    padding: 3rem 0 2rem;
}

.footer-inner {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.footer-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.footer-text {
    margin: 0 0 2rem;
    max-width: 42ch;
}

.footer-legal {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ——— Privacy page ——— */
.legal-page {
    background:
        linear-gradient(180deg, #eef3f7, #e4ebf2);
    min-height: 100vh;
}

.legal-wrap {
    width: min(820px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 3rem 0 4rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.back-link:hover {
    color: var(--orange);
}

.legal-doc {
    background: var(--white);
    padding: clamp(1.75rem, 4vw, 3rem);
    border-top: 4px solid var(--orange);
}

.legal-doc h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.legal-doc h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin: 2rem 0 0.75rem;
    padding-left: 0.85rem;
    border-left: 3px solid var(--orange);
}

.legal-doc p,
.legal-doc li {
    color: #3a4552;
    font-size: 0.95rem;
}

.legal-doc ul {
    padding-left: 1.2rem;
}

.legal-meta {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--mist);
}

.legal-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ——— Motion ——— */
@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-zoom {
    to {
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-layout,
    .area-layout,
    .faq-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-step::after {
        display: none;
    }

    .plaques-section {
        padding: clamp(3rem, 6vw, 4.5rem) 0;
        background: #eef3f7;
    }

    .plaques-section .section-inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .plaques-stack {
        gap: 1rem;
        padding: 0 1rem;
    }

    .service-plaque {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 12px 28px rgba(16, 35, 58, 0.08);
        border: 1px solid rgba(20, 38, 63, 0.08);
    }

    .service-plaque--snow {
        border-color: rgba(255, 255, 255, 0.08);
    }

    .service-plaque-side {
        border-left: none !important;
        border-top: 1px solid rgba(20, 38, 63, 0.08);
        background: transparent !important;
    }

    .service-plaque--snow .service-plaque-side {
        border-top-color: rgba(255, 255, 255, 0.12);
    }

    .service-plaque-main,
    .service-plaque-side {
        padding: 1.35rem 1.15rem;
    }

    .service-plaque-main {
        padding-bottom: 0.5rem;
    }

    .service-plaque-cta {
        margin: 0.35rem 1.15rem 1.35rem;
        width: calc(100% - 2.3rem);
        justify-self: stretch;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --header-h: 8.5rem;
    }

    .logo-name {
        font-size: 0.95rem;
        letter-spacing: 0.03em;
    }

    .header-call {
        padding: 0.5rem 1.1rem 0.5rem 0.55rem;
    }

    .header-call strong {
        font-size: 0.82rem;
    }

    .proof-head {
        margin-bottom: 1.75rem;
        text-align: left;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .proof-item {
        padding: 1.15rem 1.1rem 1.1rem;
    }

    .proof-item strong {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }

    .proof-item h3 {
        font-size: 1rem;
    }

    .proof-item p {
        font-size: 0.88rem;
    }

    .service-plaque-main,
    .service-plaque-side {
        padding: 1.35rem 1.2rem;
    }

    .service-plaque h2 {
        font-size: 1.55rem;
    }

    .service-plaque-lead {
        font-size: 0.98rem;
    }

    .service-plaque-side p:not(.service-plaque-side-title) {
        max-width: none;
    }

    .hero-content {
        padding-bottom: 3.25rem;
    }

    .hero-brand {
        margin-bottom: 1.4rem;
    }

    .hero-brand-accent {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
    }

    .hero-brand-line {
        font-size: clamp(1.15rem, 5vw, 1.45rem);
    }

    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1.85rem;
    }

    .hero-features li {
        white-space: normal;
        text-align: left;
        font-size: 0.86rem;
        padding: 0.5rem 0.8rem 0.5rem 0.55rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
    }

    .process-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .plaques-section {
        background: #eef3f7;
    }

    .area-map,
    .area-map img {
        height: 280px;
        min-height: 0;
    }

    .float-call {
        display: inline-flex;
    }

    .faq-head p {
        max-width: none;
    }

    .contact-line strong {
        overflow-wrap: anywhere;
    }
}
