:root {
    --green: #0f6666;
    --green-dark: #083f3f;
    --green-soft: #d9eeee;
    --cream: #f7efe1;
    --cream-light: #fff8ec;
    --gold: #c8962f;
    --gold-soft: #ead8a8;
    --text: #143838;
    --muted: #5d6e6e;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 102, 102, .16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(200,150,47,.18), transparent 32%),
        linear-gradient(180deg, var(--cream-light), var(--cream));
}

.topbar {
    background: var(--cream-light);
    border-bottom: 1px solid rgba(15, 102, 102, .12);
}

.nav {
    max-width: 1180px;
    margin: auto;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--green);
    text-decoration: none;
}

.logo-mark {
    width: 54px;
    height: 48px;
    position: relative;
    border-left: 4px solid var(--green);
    border-right: 4px solid var(--green);
    border-bottom: 4px solid var(--green);
    border-radius: 4px;
}

.logo-mark::before {
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    border-left: 4px solid var(--green);
    border-top: 4px solid var(--green);
    transform: rotate(45deg);
    left: 6px;
    top: -19px;
    background: var(--cream-light);
}

.logo-mark::after {
    content: "✦";
    position: absolute;
    right: -13px;
    top: -16px;
    color: var(--gold);
    font-size: 25px;
}

.brand-text strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: .92;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.brand-text span {
    display: block;
    margin-top: 6px;
    color: #202828;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--green);
    text-decoration: none;
    font-weight: 900;
}

.hero {
    max-width: 1180px;
    margin: auto;
    padding: 42px 22px 0;
}

.hero-panel {
    min-height: 620px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    background:
        linear-gradient(
            90deg,
            rgba(255,248,236,.98) 0%,
            rgba(255,248,236,.9) 43%,
            rgba(255,248,236,.18) 74%
        ),
        url('/images/hero-cleaning.webp') center right / cover no-repeat;
}

.hero-mobile-image {
    display: none;
}

.hero-content {
    max-width: 620px;
    padding: 56px;
}

.eyebrow {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 18px;
}

h1 {
    font-family: Georgia, serif;
    color: var(--green);
    font-size: clamp(46px, 6vw, 78px);
    line-height: .95;
    margin: 0 0 24px;
}

.script {
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    color: #1f2929;
    font-size: 21px;
    line-height: 1.5;
    margin: 0 0 30px;
}

.button {
    display: inline-block;
    background: var(--green);
    color: white;
    text-decoration: none;
    font-weight: 900;
    padding: 15px 23px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(15,102,102,.24);
}

.trust-strip {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 3px solid rgba(255,255,255,.75);
}

.trust-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 22px 22px;
    border-right: 1px solid rgba(200,150,47,.7);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 24px;
}

.trust-item strong {
    display: block;
    font-size: 17px;
    letter-spacing: .8px;
}

.trust-item span {
    color: rgba(255,255,255,.82);
    line-height: 1.35;
    font-size: 14px;
}

.section {
    max-width: 1180px;
    margin: auto;
    padding: 54px 22px 20px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.panel {
    background: rgba(255,248,236,.9);
    border-radius: 28px;
    padding: 34px;
    border: 1px solid rgba(15,102,102,.1);
    box-shadow: 0 14px 34px rgba(15,102,102,.08);
}

.panel.dark {
    background: linear-gradient(145deg, var(--green), var(--green-dark));
    color: white;
}

.panel h2 {
    font-family: Georgia, serif;
    color: var(--green);
    font-size: 38px;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.panel.dark h2 {
    color: white;
}

.gold-script {
    color: var(--gold);
    font-style: italic;
    text-transform: none;
    font-weight: 400;
}

.service-row {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    margin-bottom: 14px;
    background: rgba(255,255,255,.52);
    border-radius: 22px;
    border: 1px solid rgba(15,102,102,.08);
}

.panel.dark .service-row {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
}

.badge {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #179090, var(--green-dark));
    color: white;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}

.service-row h3 {
    margin: 0 0 6px;
    color: var(--green);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.panel.dark .service-row h3 {
    color: white;
}

.service-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 16px;
}

.panel.dark .service-row p {
    color: rgba(255,255,255,.84);
}

.proud {
    margin-top: 32px;
    padding: 26px;
    border-radius: 22px;
    background: rgba(255,255,255,.52);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border: 1px solid rgba(200,150,47,.22);
}
.proud strong,
.proud span {
    text-align: center;
}
.proud-icon {
    color: var(--gold);
    font-size: 42px;
}

.proud strong {
    display: block;
    color: var(--green);
    font-family: Georgia, serif;
    font-size: 24px;
}

.proud span {
    display: block;
    color: #3b4444;
    margin-top: 3px;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
}

.callout {
    max-width: 1180px;
    margin: 42px auto 0;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 0 0 30px 30px;
    box-shadow: var(--shadow);
}

.callout h2 {
    font-family: Georgia, serif;
    font-size: 36px;
    margin: 0 0 8px;
    color: white;
}

.callout p {
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    line-height: 1.45;
}

.callout .button {
    background: var(--gold);
    color: #152018;
    justify-self: end;
    box-shadow: none;
}

footer {
    text-align: center;
    color: var(--muted);
    padding: 28px 20px 44px;
}

@media (max-width: 850px) {
    .hero {
        padding: 24px 14px 0;
    }

    .hero-panel {
        background: var(--cream-light);
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .hero-mobile-image {
        display: block;
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        padding: 34px 24px 40px;
    }

    .trust-strip,
    .two-column,
    .callout {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(200,150,47,.45);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .callout .button {
        justify-self: start;
    }

    .brand-text strong {
        font-size: 24px;
    }

    .brand-text span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .nav {
        align-items: flex-start;
    }

    .service-row {
        grid-template-columns: 64px 1fr;
    }

    .badge {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}

.small-hero {
    min-height: 260px;
}

.content-section {
    padding: 60px 20px;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border-left: 6px solid #c62828;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.info-card h2 {
    margin-top: 0;
    color: var(--green);
}

.small-hero {
    min-height: 260px;
}

.content-section {
    padding: 60px 20px;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border-left: 6px solid #c62828;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.info-card h2 {
    margin-top: 0;
    color: var(--green);
}

.site-footer {
    text-align: center;
    padding: 30px 20px;
}
