/* ==========================================================================
   WHO DID THIS?™
   Cleaning-Industry Visual System — V2
   Bright, modern, lifestyle-first, not a clone of previous templates.
   ========================================================================== */


/* ==========================================================================
   01. TOKENS
   ========================================================================== */

:root {
    --ink: #132033;
    --ink-soft: #24344d;
    --muted: #6f7d91;

    --paper: #ffffff;
    --paper-soft: #f6f9fc;
    --paper-blue: #eef6ff;

    --blue: #1d63ff;
    --blue-deep: #1249c7;
    --aqua: #46d7d2;
    --orange: #ff6b2c;
    --yellow: #ffd85a;

    --line: #dbe5ef;
    --line-strong: #c8d6e5;

    --shadow:
        0 18px 50px rgba(25, 52, 88, 0.12);

    --shadow-soft:
        0 10px 28px rgba(25, 52, 88, 0.08);

    --display:
        "Arial Narrow",
        "Helvetica Neue Condensed",
        Arial,
        Helvetica,
        sans-serif;

    --sans:
        Inter,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    --mono:
        "Courier New",
        Courier,
        monospace;

    --max: 1480px;

    --page-pad:
        clamp(1rem, 2.4vw, 2rem);

    --section-y:
        clamp(4.5rem, 8vw, 8rem);
}


/* ==========================================================================
   02. RESET
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;

    color: var(--ink);
    background: var(--paper);

    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    color: var(--ink);
    background: var(--yellow);
}


/* ==========================================================================
   03. SHARED LAYOUT
   ========================================================================== */

.header-inner,
.section-inner,
.footer-inner,
.trust-inner,
.section-intro-block,
.service-band {
    width: min(
        calc(100% - (var(--page-pad) * 2)),
        var(--max)
    );

    margin-inline: auto;
}

.section-label,
.eyebrow,
.service-index,
.estimate-kicker,
.photo-label,
.policy-kicker {
    margin: 0;

    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-label,
.service-index,
.eyebrow {
    color: var(--blue);
}


/* ==========================================================================
   04. HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;

    min-width: 0;
}

.brand-mark {
    flex: 0 0 auto;

    display: grid;
    place-items: center;

    width: 48px;
    aspect-ratio: 1;

    color: var(--paper);
    background: var(--blue);

    border-radius: 14px;

    box-shadow:
        4px 4px 0 var(--aqua);

    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.brand-copy {
    display: grid;
    gap: 0.08rem;

    min-width: 0;
}

.brand-copy strong {
    font-family: var(--display);
    font-size: clamp(1.12rem, 1.7vw, 1.55rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.brand-copy small {
    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.4rem);
}

.site-nav a,
.footer-links a {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    padding: 0.55rem 0;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.15rem;
    left: 0;

    height: 2px;

    content: "";

    background: var(--orange);

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0.7rem 1rem;

    color: var(--paper);
    background: var(--blue);

    border-radius: 999px;

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;

    transition:
        transform 160ms ease,
        background 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--blue-deep);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 42px;

    padding: 0.7rem;

    border: 1px solid var(--line-strong);
    border-radius: 12px;

    background: var(--paper);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    height: 2px;

    background: currentColor;

    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.menu-toggle span + span {
    margin-top: 5px;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0.85rem 1.35rem;

    border-radius: 999px;

    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    transition:
        transform 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--paper);
    background: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--blue-deep);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.75);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--paper);
}


/* ==========================================================================
   06. HERO — FULL-WIDTH LIFESTYLE
   ========================================================================== */

.hero {
    position: relative;

    min-height:
        min(
            860px,
            calc(100vh - 82px)
        );

    display: grid;
    align-items: stretch;

    overflow: hidden;

    background: var(--ink);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media img {
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-shade {
    background:
        linear-gradient(
            90deg,
            rgba(15, 28, 46, 0.84) 0%,
            rgba(15, 28, 46, 0.65) 42%,
            rgba(15, 28, 46, 0.14) 74%,
            rgba(15, 28, 46, 0.05) 100%
        );
}

.hero-inner {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - (var(--page-pad) * 2)),
        var(--max)
    );

    margin-inline: auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 430px);

    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;

    padding:
        clamp(4.5rem, 8vw, 8rem)
        0;
}

.hero-copy {
    max-width: 720px;

    color: var(--paper);
}

.eyebrow {
    color: var(--aqua);
}

.hero h1 {
    max-width: 700px;

    margin: 1.1rem 0 0;

    font-family: var(--display);
    font-size: clamp(5.5rem, 10vw, 10.5rem);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;

    color: var(--yellow);
}

.hero-tagline {
    margin: 1.3rem 0 0;

    color: var(--aqua);

    font-family: var(--mono);
    font-size: clamp(0.78rem, 1vw, 0.95rem);
    font-weight: 900;
    letter-spacing: 0.055em;
}

.hero-intro {
    max-width: 610px;

    margin: 1rem 0 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;

    margin-top: 2rem;
}


/* ==========================================================================
   07. HERO ESTIMATE CARD
   ========================================================================== */

.estimate-card {
    align-self: end;

    margin-bottom: clamp(0rem, 2vw, 2rem);

    padding:
        clamp(1.4rem, 2.2vw, 2rem);

    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);

    border-radius: 26px;

    box-shadow: var(--shadow);
}

.estimate-kicker {
    color: var(--orange);
}

.estimate-card h2 {
    margin:
        0.7rem 0 0;

    font-family: var(--display);
    font-size: clamp(2.2rem, 3.6vw, 3.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.estimate-lines {
    display: grid;
    gap: 0.75rem;

    margin-top: 1.4rem;
}

.estimate-lines > div {
    padding:
        0.9rem
        1rem;

    background: var(--paper-soft);

    border: 1px solid var(--line);
    border-radius: 14px;
}

.estimate-lines span,
.estimate-lines strong {
    display: block;
}

.estimate-lines span {
    margin-bottom: 0.22rem;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.estimate-lines strong {
    font-size: 0.95rem;
}

.estimate-link {
    display: flex;
    justify-content: space-between;

    margin-top: 0.9rem;
    padding:
        0.95rem
        1rem;

    color: var(--paper);
    background: var(--blue);

    border-radius: 14px;

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.estimate-note {
    margin:
        0.8rem 0 0;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.48rem;
    line-height: 1.45;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}


/* ==========================================================================
   08. TRUST STRIP
   ========================================================================== */

.trust-strip {
    position: relative;
    z-index: 3;

    background: var(--paper);

    border-bottom: 1px solid var(--line);
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    min-height: 112px;
}

.trust-inner > div {
    display: flex;
    align-items: center;
    gap: 0.85rem;

    min-width: 0;

    padding:
        1.2rem
        clamp(1rem, 2vw, 1.5rem);
}

.trust-inner > div + div {
    border-left: 1px solid var(--line);
}

.trust-inner span {
    flex: 0 0 auto;

    color: var(--orange);

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 900;
}

.trust-inner strong {
    font-family: var(--display);
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}


/* ==========================================================================
   09. SERVICES INTRO
   ========================================================================== */

.services {
    padding:
        var(--section-y)
        0;
}

.section-intro-block {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(260px, 0.5fr);

    gap: clamp(3rem, 8vw, 8rem);
    align-items: end;

    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-intro-block h2,
.levels-heading h2,
.included-heading h2,
.evidence-copy h2,
.why-copy h2,
.reviews-heading h2,
.estimate-copy h2 {
    margin:
        0.9rem 0 0;

    font-family: var(--display);
    font-size: clamp(3.5rem, 6.5vw, 6.7rem);
    font-weight: 900;
    line-height: 0.84;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.section-intro-block h2 span,
.levels-heading h2 span,
.included-heading h2 span,
.evidence-copy h2 span,
.why-copy h2 span,
.reviews-heading h2 span,
.estimate-copy h2 span {
    display: block;
    color: var(--blue);
}

.section-intro-block > p:last-child {
    max-width: 520px;
    margin: 0;
}


/* ==========================================================================
   10. ALTERNATING SERVICE BANDS
   ========================================================================== */

.service-band {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(340px, 0.92fr);

    min-height: 560px;

    margin-bottom: clamp(2rem, 4vw, 4rem);

    background: var(--paper-soft);

    border: 1px solid var(--line);
    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow-soft);
}

.service-band-reverse {
    grid-template-columns:
        minmax(340px, 0.92fr)
        minmax(0, 1.08fr);
}

.service-band-reverse .service-photo {
    order: 2;
}

.service-band-reverse .service-content {
    order: 1;
}

.service-photo {
    position: relative;

    min-width: 0;
    min-height: 560px;

    background: var(--paper-blue);
}

.service-photo img {
    height: 100%;
    object-fit: cover;
}

.photo-label {
    position: absolute;
    top: 1rem;
    left: 1rem;

    padding:
        0.55rem
        0.7rem;

    color: var(--paper);
    background: var(--blue);

    border-radius: 999px;
}

.photo-label-orange {
    background: var(--orange);
}

.photo-label-yellow {
    color: var(--ink);
    background: var(--yellow);
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding:
        clamp(2rem, 5vw, 5rem);
}

.service-content h3 {
    margin:
        0.8rem 0 0;

    font-family: var(--display);
    font-size: clamp(3.2rem, 5.4vw, 5.6rem);
    font-weight: 900;
    line-height: 0.84;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.service-content h3 span {
    display: block;
    color: var(--blue);
}

.service-content > p {
    max-width: 560px;

    margin:
        1.2rem 0 0;
}

.service-points {
    display: grid;
    gap: 0.75rem;

    margin:
        1.5rem 0 0;
    padding: 0;

    list-style: none;
}

.service-points li {
    position: relative;

    padding-left: 1.35rem;
}

.service-points li::before {
    position: absolute;
    top: 0.68em;
    left: 0;

    width: 7px;
    height: 7px;

    content: "";

    background: var(--aqua);

    border-radius: 50%;

    transform: translateY(-50%);
}

.service-footnote {
    margin-top: auto !important;
    padding-top: 1.8rem;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}


/* ==========================================================================
   11. CLEANING LEVEL SCALE
   ========================================================================== */

.cleaning-levels {
    padding:
        var(--section-y)
        0;

    background: var(--paper-blue);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.levels-heading {
    max-width: 860px;
}

.level-scale {
    display: grid;
    gap: 0;

    margin-top: clamp(2.8rem, 5vw, 4rem);

    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow-soft);
}

.level-row {
    display: grid;
    grid-template-columns:
        90px
        minmax(250px, 0.8fr)
        minmax(320px, 1.1fr)
        minmax(190px, 0.45fr);

    gap: 1.5rem;
    align-items: center;

    min-width: 0;

    padding:
        clamp(1.2rem, 2.6vw, 2rem);

    background: var(--paper);
}

.level-row + .level-row {
    border-top: 1px solid var(--line);
}

.level-row-featured {
    background:
        linear-gradient(
            90deg,
            rgba(29, 99, 255, 0.07),
            rgba(70, 215, 210, 0.08)
        );
}

.level-number {
    color: var(--blue);

    font-family: var(--display);
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.04em;
}

.level-name strong,
.level-name span,
.level-status span,
.level-status strong {
    display: block;
}

.level-name strong {
    font-family: var(--display);
    font-size: clamp(1.5rem, 2.4vw, 2.3rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.level-name span {
    margin-top: 0.3rem;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
}

.level-row > p {
    margin: 0;
}

.level-status {
    justify-self: end;

    min-width: 150px;

    padding:
        0.8rem
        1rem;

    background: var(--paper-soft);

    border: 1px solid var(--line);
    border-radius: 12px;
}

.level-status span {
    margin-bottom: 0.2rem;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.48rem;
    font-weight: 900;
}

.level-status strong {
    color: var(--orange);

    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}


/* ==========================================================================
   12. WHAT'S INCLUDED
   ========================================================================== */

.included {
    padding:
        var(--section-y)
        0;
}

.included-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, 0.5fr);

    gap: clamp(3rem, 8vw, 8rem);
    align-items: end;

    margin-bottom: clamp(2.8rem, 5vw, 4rem);
}

.included-heading > p {
    max-width: 520px;
    margin: 0;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border:
        1px
        solid
        var(--line);

    border-radius: 24px;

    overflow: hidden;
}

.room-list {
    min-width: 0;

    padding:
        clamp(1.4rem, 2.8vw, 2.2rem);

    background: var(--paper-soft);
}

.room-list + .room-list {
    border-left: 1px solid var(--line);
}

.room-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    color: var(--paper);
    background: var(--blue);

    border-radius: 14px;

    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 900;
}

.room-list:nth-child(2) .room-icon {
    background: var(--aqua);
    color: var(--ink);
}

.room-list:nth-child(3) .room-icon {
    background: var(--orange);
}

.room-list:nth-child(4) .room-icon {
    background: var(--yellow);
    color: var(--ink);
}

.room-list h3 {
    margin:
        1rem 0 0;

    font-family: var(--display);
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.room-list ul {
    display: grid;
    gap: 0.6rem;

    margin:
        1.2rem 0 0;
    padding: 0;

    list-style: none;
}

.room-list li {
    position: relative;

    padding-left: 1.1rem;
}

.room-list li::before {
    position: absolute;
    top: 0.67em;
    left: 0;

    width: 6px;
    height: 6px;

    content: "";

    background: var(--aqua);

    border-radius: 50%;

    transform: translateY(-50%);
}

.included-note {
    margin:
        1rem 0 0;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.54rem;
    font-weight: 700;
    text-transform: uppercase;
}


/* ==========================================================================
   13. EVIDENCE — OVERLAPPING IMAGES
   ========================================================================== */

.evidence-section {
    padding:
        var(--section-y)
        0;

    color: var(--paper);
    background: var(--ink);
}

.evidence-copy {
    max-width: 760px;
}

.evidence-copy .section-label {
    color: var(--aqua);
}

.evidence-copy h2 span {
    color: var(--yellow);
}

.evidence-copy > p:last-child {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.72);
}

.evidence-stage {
    position: relative;

    min-height: clamp(620px, 54vw, 820px);

    margin-top: clamp(3rem, 6vw, 5rem);
}

.evidence-photo {
    position: absolute;

    margin: 0;

    overflow: hidden;

    background: var(--paper);

    border:
        10px
        solid
        var(--paper);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.3);
}

.evidence-photo img {
    height: 100%;

    object-fit: cover;
}

.evidence-photo-before {
    top: 0;
    left: 0;

    width: min(58%, 760px);
    height: 68%;

    transform: rotate(-2.5deg);
}

.evidence-photo-after {
    right: 0;
    bottom: 0;

    width: min(58%, 760px);
    height: 68%;

    transform: rotate(2deg);
}

.evidence-photo figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;

    padding:
        0.8rem
        1rem;

    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);

    border-radius: 12px;
}

.evidence-photo figcaption span,
.evidence-photo figcaption strong {
    display: block;
}

.evidence-photo figcaption span {
    margin-bottom: 0.2rem;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.5rem;
    font-weight: 900;
}

.evidence-photo figcaption strong {
    color: var(--blue);

    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.evidence-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;

    width: 170px;
    aspect-ratio: 1;

    display: grid;
    place-content: center;

    color: var(--paper);

    border: 4px solid var(--orange);
    border-radius: 50%;

    text-align: center;

    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;

    transform:
        translate(-50%, -50%)
        rotate(-8deg);
}

.evidence-stamp strong {
    display: block;

    color: var(--yellow);

    font-family: var(--display);
    font-size: 2rem;
    line-height: 0.9;
    letter-spacing: -0.03em;
}


/* ==========================================================================
   14. WHY US
   ========================================================================== */

.why-us {
    padding:
        var(--section-y)
        0;

    background: var(--paper-blue);
}

.why-grid {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.9fr)
        minmax(0, 1.1fr);

    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.why-copy {
    position: sticky;
    top: 120px;
}

.why-copy > p:last-child {
    max-width: 560px;
}

.why-points {
    display: grid;
    gap: 1rem;
}

.why-points article {
    display: grid;
    grid-template-columns:
        54px
        minmax(0, 1fr);

    gap: 1rem;

    padding:
        1.4rem;

    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: 18px;
}

.why-points article > span {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    color: var(--paper);
    background: var(--blue);

    border-radius: 50%;

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 900;
}

.why-points article:nth-child(2) > span {
    background: var(--aqua);
    color: var(--ink);
}

.why-points article:nth-child(3) > span {
    background: var(--orange);
}

.why-points article:nth-child(4) > span {
    background: var(--yellow);
    color: var(--ink);
}

.why-points strong {
    display: block;

    font-family: var(--display);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.why-points p {
    margin:
        0.45rem 0 0;

    color: var(--muted);
}


/* ==========================================================================
   15. REVIEWS
   ========================================================================== */

.reviews {
    padding:
        var(--section-y)
        0;
}

.reviews-heading {
    max-width: 860px;
}

.review-disclaimer {
    max-width: 560px;

    color: var(--muted);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;

    margin-top: clamp(2.8rem, 5vw, 4rem);
}

.review-grid blockquote {
    margin: 0;

    padding:
        clamp(1.5rem, 2.8vw, 2.2rem);

    background: var(--paper-soft);

    border: 1px solid var(--line);
    border-radius: 20px;
}

.stars {
    color: var(--orange);
    letter-spacing: 0.08em;
}

.review-grid blockquote p {
    margin:
        1rem 0 0;

    font-family: var(--display);
    font-size: clamp(1.4rem, 2.1vw, 1.9rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.review-grid blockquote footer {
    margin-top: 1.3rem;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}


/* ==========================================================================
   16. HOUSE POLICY — HAZARD STRIP
   ========================================================================== */

.house-policy {
    position: relative;

    overflow: hidden;

    color: var(--ink);
    background:
        repeating-linear-gradient(
            -45deg,
            var(--yellow) 0,
            var(--yellow) 22px,
            #ffcf2b 22px,
            #ffcf2b 44px
        );
}

.policy-marquee {
    position: absolute;
    inset:
        0
        auto
        auto
        0;

    width: 100%;

    padding:
        0.7rem
        0;

    color: var(--paper);
    background: var(--orange);

    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.house-policy .section-inner {
    padding:
        clamp(5rem, 9vw, 8rem)
        0
        clamp(4.5rem, 8vw, 7rem);
}

.policy-kicker {
    color: var(--orange-deep, #b13d12);
}

.house-policy blockquote {
    max-width: 1180px;

    margin:
        1.2rem 0 0;

    font-family: var(--display);
    font-size: clamp(3.8rem, 7.7vw, 8rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.house-policy blockquote span {
    color: var(--blue-deep);
}

.policy-credit {
    margin:
        1.1rem 0 0;

    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}


/* ==========================================================================
   17. ESTIMATE SECTION
   ========================================================================== */

.estimate-section {
    padding:
        var(--section-y)
        0;

    background: var(--paper-soft);
}

.estimate-layout {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.9fr)
        minmax(380px, 0.78fr);

    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.estimate-copy {
    padding-top: 1rem;
}

.estimate-copy > p:last-child {
    max-width: 560px;
}

.quote-sheet {
    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.quote-sheet-header {
    padding:
        1rem
        1.2rem;

    color: var(--paper);
    background: var(--blue);

    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quote-field {
    padding:
        1.2rem
        1.3rem;
}

.quote-field + .quote-field {
    border-top: 1px solid var(--line);
}

.quote-field span,
.quote-field strong {
    display: block;
}

.quote-field span {
    margin-bottom: 0.25rem;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.5rem;
    font-weight: 900;
}

.quote-field strong {
    font-family: var(--display);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.quote-button {
    display: flex;
    justify-content: space-between;

    margin: 1rem;

    padding:
        1rem
        1.1rem;

    color: var(--paper);
    background: var(--orange);

    border-radius: 14px;

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quote-note {
    margin:
        0
        1rem
        1rem;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.48rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}


/* ==========================================================================
   18. FOOTER
   ========================================================================== */

.site-footer {
    color: var(--paper);
    background: var(--ink);
}

.footer-inner {
    min-height: 122px;

    display: grid;
    grid-template-columns:
        1fr
        auto
        1fr;

    gap: 2rem;
    align-items: center;
}

.footer-brand {
    display: grid;
    gap: 0.28rem;
}

.footer-brand strong {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.footer-brand span,
.footer-meta,
.footer-links {
    font-family: var(--mono);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-brand span,
.footer-meta,
.footer-links a {
    color: #aeb8c5;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--aqua);
}

.footer-meta {
    display: grid;
    gap: 0.28rem;
    justify-items: end;
}


/* ==========================================================================
   19. RESPONSIVE — LAPTOP
   ========================================================================== */

@media (max-width: 1180px) {

    .site-nav {
        gap: 1.1rem;
    }

    .hero-inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 380px);

        gap: 3rem;
    }

    .service-band,
    .service-band-reverse {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, 0.9fr);
    }

    .level-row {
        grid-template-columns:
            70px
            minmax(220px, 0.7fr)
            minmax(260px, 1fr)
            minmax(150px, 0.4fr);
    }

}


/* ==========================================================================
   20. RESPONSIVE — TABLET / MOBILE NAV
   ========================================================================== */

@media (max-width: 980px) {

    html {
        scroll-padding-top: 72px;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-copy small,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        z-index: 99;

        display: grid;
        gap: 0;

        max-height: 0;

        overflow: hidden;

        background: var(--paper);

        border-bottom: 1px solid var(--line);

        visibility: hidden;
        opacity: 0;

        transition:
            max-height 220ms ease,
            opacity 180ms ease,
            visibility 180ms ease;
    }

    .site-nav.is-open {
        max-height: 420px;

        visibility: visible;
        opacity: 1;
    }

    .site-nav a {
        padding:
            1.05rem
            var(--page-pad);

        border-top: 1px solid var(--line);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(15, 28, 46, 0.9) 0%,
                rgba(15, 28, 46, 0.66) 55%,
                rgba(15, 28, 46, 0.48) 100%
            );
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 2rem;

        padding:
            5rem
            0
            3rem;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero h1 {
        font-size: clamp(5rem, 15vw, 8rem);
    }

    .estimate-card {
        align-self: auto;
        margin: 0;

        max-width: 620px;
    }

    .trust-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-inner > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .trust-inner > div:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .section-intro-block,
    .included-heading,
    .why-grid,
    .estimate-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-band,
    .service-band-reverse {
        grid-template-columns: 1fr;
    }

    .service-band-reverse .service-photo,
    .service-band-reverse .service-content {
        order: initial;
    }

    .service-photo {
        min-height: 460px;
    }

    .service-content {
        padding:
            2.8rem
            clamp(1.4rem, 4vw, 3rem);
    }

    .level-row {
        grid-template-columns:
            70px
            minmax(0, 1fr);

        gap:
            1rem
            1.3rem;
    }

    .level-row > p,
    .level-status {
        grid-column: 2;
    }

    .level-status {
        justify-self: start;
    }

    .room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .room-list:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .room-list:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .why-copy {
        position: static;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.1rem;

        padding:
            2rem
            0;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-meta {
        justify-items: start;
    }

}


/* ==========================================================================
   21. RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 640px) {

    :root {
        --page-pad: 1rem;
        --section-y: 4rem;
    }

    body {
        font-size: 15px;
    }

    .brand-mark {
        width: 42px;
        border-radius: 12px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .hero-inner {
        padding:
            4rem
            0
            2rem;
    }

    .hero h1 {
        font-size: clamp(4.2rem, 19vw, 6rem);
        line-height: 0.8;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .estimate-card {
        border-radius: 20px;
    }

    .trust-inner {
        grid-template-columns: 1fr;
    }

    .trust-inner > div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .section-intro-block h2,
    .levels-heading h2,
    .included-heading h2,
    .evidence-copy h2,
    .why-copy h2,
    .reviews-heading h2,
    .estimate-copy h2 {
        font-size: clamp(3.1rem, 15vw, 4.6rem);
    }

    .service-band {
        border-radius: 22px;
    }

    .service-photo {
        min-height: 320px;
    }

    .service-content h3 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }

    .level-row {
        grid-template-columns: 1fr;
    }

    .level-row > * {
        grid-column: 1 !important;
    }

    .level-number {
        font-size: 3.3rem;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .room-list + .room-list {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .evidence-stage {
        min-height: 760px;
    }

    .evidence-photo-before,
    .evidence-photo-after {
        width: 88%;
        height: 46%;
    }

    .evidence-photo-before {
        top: 0;
        left: 0;
    }

    .evidence-photo-after {
        right: 0;
        bottom: 0;
    }

    .evidence-stamp {
        width: 130px;
    }

    .evidence-stamp strong {
        font-size: 1.5rem;
    }

    .why-points article {
        grid-template-columns:
            44px
            minmax(0, 1fr);
    }

    .house-policy blockquote {
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

}


/* ==========================================================================
   22. VERY SMALL MOBILE
   ========================================================================== */

@media (max-width: 390px) {

    .hero h1 {
        font-size: 3.8rem;
    }

    .section-intro-block h2,
    .levels-heading h2,
    .included-heading h2,
    .evidence-copy h2,
    .why-copy h2,
    .reviews-heading h2,
    .estimate-copy h2 {
        font-size: 3rem;
    }

    .service-content h3 {
        font-size: 2.9rem;
    }

    .house-policy blockquote {
        font-size: 2.9rem;
    }

}


/* ==========================================================================
   23. ACCESSIBILITY / MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }

}

a:focus-visible,
button:focus-visible {
    outline:
        3px
        solid
        var(--orange);

    outline-offset: 4px;
}


/* ==========================================================================
   24. SERVICES INTRO DESKTOP LOCK — V3
   Explicit placement prevents the intro headline from drifting into the
   right column and removes the oversized dead zone before the service bands.
   ========================================================================== */

@media (min-width: 981px) {

    .section-intro-block {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(300px, 0.55fr);

        grid-template-areas:
            "heading copy";

        align-items: end;

        padding-top: 0;
    }

    .section-intro-block > div {
        grid-area: heading;

        min-width: 0;
        max-width: 760px;
    }

    .section-intro-block > p:last-child {
        grid-area: copy;

        align-self: end;

        width: 100%;
        max-width: 480px;

        margin:
            0
            0
            0.2rem;

        justify-self: end;
    }

    .section-intro-block h2 {
        width: 100%;
        max-width: 760px;

        margin:
            0.9rem
            0
            0;

        font-size: clamp(3.6rem, 5.6vw, 5.8rem);
        line-height: 0.86;
        letter-spacing: -0.055em;

        overflow-wrap: normal;
        word-break: normal;
    }

    .section-intro-block h2 span {
        display: block;
    }
}


/* ==========================================================================
   25. SERVICES INTRO TABLET / MOBILE LOCK
   ========================================================================== */

@media (max-width: 980px) {

    .section-intro-block {
        display: block;
    }

    .section-intro-block > div,
    .section-intro-block > p:last-child {
        width: 100%;
        max-width: 680px;
    }

    .section-intro-block > p:last-child {
        margin-top: 1.35rem;
    }

    .section-intro-block h2 {
        width: 100%;
        max-width: 680px;
    }
}


/* ==========================================================================
   26. WHY-US HEADING CONTAINMENT — V4
   Prevents "PROFESSIONAL" from escaping the left column and colliding
   with the trust cards at normal desktop/laptop widths.
   ========================================================================== */

.why-copy {
    min-width: 0;
}

.why-copy h2 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(3rem, 4.7vw, 4.9rem);
    line-height: 0.86;
    letter-spacing: -0.055em;

    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 1180px) and (min-width: 981px) {

    .why-grid {
        grid-template-columns:
            minmax(0, 0.86fr)
            minmax(0, 1.14fr);

        gap: clamp(2.5rem, 5vw, 4rem);
    }

    .why-copy h2 {
        font-size: clamp(3rem, 4.35vw, 3.9rem);
    }
}

@media (max-width: 980px) {

    .why-copy h2 {
        max-width: 720px;

        font-size: clamp(3.1rem, 10vw, 5rem);
    }
}

@media (max-width: 640px) {

    .why-copy h2 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }
}


/* ==========================================================================
   27. KEEP SIDE-EYE TOGETHER
   ========================================================================== */

.keep-together {
    display: inline-block !important;
    white-space: nowrap;
}


/* MOBILE QA LOCK — WHO DID THIS V5 */

@media (max-width: 640px) {

    /* ------------------------------------------------------
       GLOBAL MOBILE CONTAINMENT
       ------------------------------------------------------ */

    main,
    section,
    .section-inner,
    .reviews-heading,
    .review-grid,
    .review-grid blockquote {
        min-width: 0;
        max-width: 100%;
    }


    /* ------------------------------------------------------
       REVIEWS HEADING
       ------------------------------------------------------ */

    .reviews-heading h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(2.65rem, 9.7vw, 3.2rem);
        line-height: 0.88;
        letter-spacing: -0.05em;

        overflow-wrap: normal;
        word-break: normal;
    }

    .reviews-heading h2 span {
        display: block;
    }

    .review-disclaimer {
        max-width: 100%;
        margin-top: 1rem;
    }


    /* ------------------------------------------------------
       REVIEW CARDS
       ------------------------------------------------------ */

    .review-grid {
        gap: 0.9rem;
        margin-top: 2.2rem;
    }

    .review-grid blockquote {
        width: 100%;

        padding: 1.35rem;

        border-radius: 18px;
    }

    .review-grid blockquote p {
        font-size: clamp(1.25rem, 5.3vw, 1.6rem);
        line-height: 1.05;
        letter-spacing: -0.02em;
    }

    .stars {
        font-size: 0.9rem;
        letter-spacing: 0.035em;
    }

    .review-grid blockquote footer {
        font-size: 0.48rem;
        line-height: 1.4;
    }


    /* ------------------------------------------------------
       WHY-US HEADING
       Keep SIDE-EYE together without forcing overflow.
       ------------------------------------------------------ */

    .why-copy h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(2.8rem, 11vw, 3.7rem);
        line-height: 0.88;
    }

    .keep-together {
        display: inline-block !important;
        white-space: nowrap !important;
    }


    /* ------------------------------------------------------
       HEADER
       ------------------------------------------------------ */

    .brand-copy {
        min-width: 0;
    }

    .brand-copy strong {
        white-space: nowrap;
        font-size: 0.94rem;
    }

}


/* Smaller phones */

@media (max-width: 390px) {

    .reviews-heading h2 {
        font-size: 2.55rem;
    }

    .review-grid blockquote p {
        font-size: 1.22rem;
    }

    .why-copy h2 {
        font-size: 2.75rem;
    }

}

/* END MOBILE QA LOCK — WHO DID THIS V5 */


/* EVIDENCE FINAL FIX — V7 */


/* ----------------------------------------------------------
   EXHIBIT A / BEFORE

   Put the label in the upper-left corner where the AFTER
   photo cannot cover it.
   ---------------------------------------------------------- */

.evidence-photo-before figcaption {
    top: 1rem !important;
    right: auto !important;
    bottom: auto !important;
    left: 1rem !important;

    z-index: 20 !important;
}


/* Keep the actual photographs in predictable layers. */

.evidence-photo-before {
    z-index: 1;
}

.evidence-photo-after {
    z-index: 2;
}


/* ----------------------------------------------------------
   CASE CLOSED STAMP

   The stamp must sit above BOTH photographs.
   ---------------------------------------------------------- */

.evidence-stamp {
    z-index: 30 !important;

    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    isolation: isolate;
}


/* CASE gets its own high-contrast mini label. */

.evidence-stamp-case {
    display: inline-block !important;

    margin-bottom: 0.18rem;
    padding: 0.18rem 0.42rem;

    color: #ffffff !important;
    background: #102038;

    border-radius: 999px;

    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-shadow: none !important;
}


/* CLOSED remains the loud part of the stamp. */

.evidence-stamp strong {
    position: relative;
    z-index: 2;

    display: block !important;

    color: var(--yellow) !important;

    text-shadow:
        0 1px 2px rgba(15, 28, 46, 0.75);
}


/* ----------------------------------------------------------
   MOBILE

   Keep the same behavior when the photos stack tighter.
   ---------------------------------------------------------- */

@media (max-width: 640px) {

    .evidence-photo-before figcaption {
        top: 0.75rem !important;
        left: 0.75rem !important;
    }

    .evidence-stamp {
        z-index: 30 !important;
    }

    .evidence-stamp-case {
        font-size: 0.58rem;
    }
}


/* END EVIDENCE FINAL FIX — V7 */
