:root {
    --ink: #18201c;
    --ink-2: #27322c;
    --paper: #f6f3eb;
    --white: #fffdf8;
    --orange: #f26a2e;
    --orange-dark: #d9531f;
    --sage: #9fb19f;
    --green: #506a58;
    --line: rgba(24, 32, 28, .15);
    --muted: #68736d;
    --shadow: 0 24px 70px rgba(16, 24, 20, .14);
    --radius: 1.25rem;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.35rem, 5vw, 4.6rem); }
h3 { margin-bottom: .75rem; font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section-muted { background: var(--paper); }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 200;
    padding: .75rem 1rem;
    border-radius: .5rem;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-150%);
    transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.3rem;
    color: var(--orange-dark);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before { width: 2rem; height: 2px; background: currentColor; content: ""; }
.eyebrow.light { color: #ffc19e; }

.button {
    display: inline-flex;
    min-height: 3.65rem;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: .85rem 1.45rem;
    border: 2px solid var(--orange);
    border-radius: .25rem;
    background: var(--orange);
    color: #171d19;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.button:hover { border-color: #ff8450; background: #ff8450; transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
    outline: 3px solid #ffb38c;
    outline-offset: 3px;
}
.button-small { min-height: 2.85rem; padding: .65rem 1rem; font-size: .9rem; }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-light:hover { border-color: #fff; background: transparent; color: #fff; }
.button-full { width: 100%; }
.text-link { color: var(--ink); font-weight: 800; text-underline-offset: .3em; }
.light-link { color: #fff; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    color: #fff;
    transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
}

.site-header.is-solid {
    border-color: var(--line);
    background: rgba(255, 253, 248, .96);
    color: var(--ink);
    box-shadow: 0 8px 35px rgba(18, 28, 22, .08);
    backdrop-filter: blur(14px);
}

.header-inner { display: flex; min-height: 5rem; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: inherit; line-height: 1; text-decoration: none; }
.brand-mark {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    border: 2px solid var(--orange);
    border-radius: 50% 50% 50% .4rem;
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    transform: rotate(-4deg);
}
.brand-copy { display: grid; gap: .2rem; }
.brand-copy strong { font-size: .96rem; letter-spacing: .02em; text-transform: uppercase; }
.brand-copy small { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav > a:not(.button) { font-size: .9rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button):hover { color: var(--orange); }
.menu-toggle { display: none; width: 2.9rem; height: 2.9rem; padding: .65rem; border: 0; background: transparent; color: currentColor; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s, opacity .2s; }

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: min(900px, 96vh);
    align-items: end;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
    background-image: url("../images/garbage-removal-waterloo-region.webp");
    background-position: center center;
    background-size: cover;
    transform: scale(1.01);
}
.hero-shade {
    background:
        linear-gradient(90deg, rgba(15, 24, 19, .96) 0%, rgba(15, 24, 19, .80) 35%, rgba(15, 24, 19, .20) 66%, rgba(15, 24, 19, .08) 100%),
        linear-gradient(0deg, rgba(15, 24, 19, .66) 0%, transparent 42%);
}
.hero-inner { position: relative; z-index: 1; padding-top: 10rem; padding-bottom: clamp(4.5rem, 8vw, 7.5rem); }
.hero-copy { max-width: 720px; }
.hero h1 { margin-bottom: 1.6rem; font-size: clamp(3.4rem, 7.8vw, 7.3rem); line-height: .92; }
.hero h1 em { color: #ffc19e; font-weight: 400; }
.hero-lead { max-width: 670px; margin-bottom: 2rem; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; gap: 1.7rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .8rem 1.7rem; margin: 2.2rem 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.78); font-size: .86rem; font-weight: 700; }
.hero-points li { display: flex; align-items: center; gap: .55rem; }
.hero-points li::before { width: .45rem; height: .45rem; border-radius: 50%; background: var(--orange); content: ""; }

.answer-strip { background: var(--ink); color: #fff; }
.answer-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.answer-grid p { display: grid; gap: .15rem; min-height: 8rem; align-content: center; margin: 0; padding: 1.5rem 2.5rem; border-left: 1px solid rgba(255,255,255,.14); }
.answer-grid p:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.answer-grid strong { color: #ffc19e; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.answer-grid span { font-size: .92rem; }

/* Intro and services */
.split-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.split-heading h2 { max-width: 800px; margin-bottom: 0; }
.prose { padding-top: 2.3rem; color: var(--muted); font-size: 1.06rem; }
.prose p:last-child { margin-bottom: 0; }
.section-heading { max-width: 770px; margin-bottom: 3.5rem; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.06rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 300px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.34); transition: background .25s, transform .25s; }
.service-card:hover { z-index: 1; background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card.featured { background: var(--ink); color: #fff; }
.service-card.featured p, .service-card.featured li { color: rgba(255,255,255,.73); }
.service-number { display: block; margin-bottom: 4rem; color: var(--orange-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.service-card.featured .service-number { color: #ffc19e; }
.service-card h3 { max-width: 270px; font-size: 1.45rem; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card ul { margin: 1rem 0 0; padding: 0; color: var(--muted); font-size: .86rem; list-style: none; }
.service-card li { margin-top: .4rem; }
.service-card li::before { margin-right: .5rem; color: var(--orange); content: "—"; }

/* Results */
.results-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(340px, .7fr); gap: clamp(3rem, 7vw, 6.5rem); align-items: center; }
.before-after { position: relative; aspect-ratio: 2 / 1; min-height: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.before-after img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; }
.image-label { position: absolute; top: 1rem; padding: .55rem .85rem; border-radius: 50rem; background: rgba(24,32,28,.9); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.label-before { left: 1rem; }
.label-after { left: calc(50% + 1rem); background: var(--orange); color: var(--ink); }
.results-copy h2 { font-size: clamp(2.4rem, 4.8vw, 4.25rem); }
.results-copy > p { color: var(--muted); }
.check-list { margin: 1.5rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin-bottom: .85rem; padding-left: 1.8rem; }
.check-list li::before { position: absolute; top: .08rem; left: 0; color: var(--orange-dark); font-weight: 900; content: "✓"; }
.image-note { font-size: .75rem; font-style: italic; }

/* Job examples */
.jobs-section { background: #eee9dd; }
.jobs-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .6fr); gap: clamp(2rem, 7vw, 7rem); align-items: end; margin-bottom: 3.5rem; }
.jobs-heading h2 { max-width: 830px; margin-bottom: 0; }
.jobs-heading > p { margin-bottom: .5rem; color: var(--muted); }
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.job-card { overflow: hidden; border: 1px solid rgba(24,32,28,.1); border-radius: var(--radius); background: var(--white); box-shadow: 0 16px 45px rgba(18,28,22,.08); }
.job-image { position: relative; aspect-ratio: 2 / 1; min-height: 0; overflow: hidden; background: #d8d7d0; }
.job-image img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .45s ease; }
.job-card:first-child .job-image img { object-position: center 58%; }
.job-card:hover .job-image img { transform: scale(1.02); }
.job-image .image-label { top: .75rem; padding: .42rem .65rem; font-size: .6rem; }
.job-image .label-before { left: .75rem; }
.job-image .label-after { left: calc(50% + .75rem); }
.job-card-copy { padding: 1.55rem; }
.job-card-copy h3 { margin-bottom: .7rem; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.job-card-copy > p:last-child { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.job-type { margin-bottom: .65rem; color: var(--orange-dark); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.jobs-disclosure { max-width: 750px; margin: 1.3rem 0 0; color: var(--muted); font-size: .74rem; font-style: italic; }

/* Process */
.process-section { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.process-section::before { position: absolute; top: -15rem; right: -12rem; width: 34rem; height: 34rem; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.light-heading { position: relative; margin-bottom: 4.5rem; }
.light-heading h2 { max-width: 750px; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-grid::before { position: absolute; top: 1.85rem; right: 10%; left: 10%; height: 1px; background: rgba(255,255,255,.22); content: ""; }
.process-grid li { position: relative; padding: 0 2rem; text-align: center; }
.process-grid li > span { position: relative; z-index: 1; display: grid; width: 3.7rem; height: 3.7rem; place-items: center; margin: 0 auto 2rem; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: var(--ink); color: #ffc19e; font-weight: 800; }
.process-grid h3 { font-size: 1.25rem; }
.process-grid p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: .9rem; }

/* Items and area */
.take-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.tag-list { display: flex; flex-wrap: wrap; gap: .65rem; }
.tag-list span { padding: .62rem .9rem; border: 1px solid var(--line); border-radius: 50rem; background: var(--paper); color: var(--ink-2); font-size: .86rem; font-weight: 700; }
.notice-card { padding: clamp(2rem, 4vw, 3.2rem); border: 1px solid #e6b18f; border-radius: var(--radius); background: #fff2e8; }
.notice-kicker { color: var(--orange-dark); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.notice-card h3 { font-family: Georgia, serif; font-size: 1.85rem; font-weight: 500; }
.notice-card p:last-child { margin-bottom: 0; color: #654c3f; font-size: .92rem; }
.area-section { background: var(--green); color: #fff; }
.area-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.area-grid h2 { max-width: 680px; }
.area-grid > div:first-child > p:not(.eyebrow) { max-width: 620px; margin-bottom: 2rem; color: rgba(255,255,255,.76); }
.area-list { border-top: 1px solid rgba(255,255,255,.22); }
.area-list div { display: grid; grid-template-columns: minmax(120px, .35fr) 1fr; gap: 1.5rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.area-list strong { color: #fff; }
.area-list span { color: rgba(255,255,255,.67); font-size: .9rem; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.faq-heading { position: sticky; top: 8rem; }
.faq-heading h2 { font-size: clamp(2.5rem, 5vw, 4.4rem); }
.faq-heading > p:last-child { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.55rem 0; font-weight: 800; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; flex: 0 0 auto; width: 1.8rem; height: 1.8rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--orange-dark); transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details div { padding: 0 3.4rem 1.55rem 0; color: var(--muted); }
.accordion details div p { margin-bottom: 0; }

/* Quote form */
.quote-section { background: #202a24; color: #fff; }
.quote-grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.quote-copy { position: sticky; top: 8rem; }
.quote-copy h2 { font-size: clamp(3rem, 6vw, 5.5rem); }
.quote-copy > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.7); }
.contact-options { display: grid; gap: 1px; margin-top: 2.5rem; background: rgba(255,255,255,.15); }
.contact-options > * { display: grid; gap: .2rem; padding: 1rem 0; background: #202a24; text-decoration: none; }
.contact-options span { color: rgba(255,255,255,.54); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.contact-options strong { font-size: 1rem; }
.contact-options a:hover strong { color: #ffc19e; }
.quote-form { position: relative; padding: clamp(1.5rem, 5vw, 3.5rem); border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.form-alert { margin-bottom: 1.5rem; padding: 1rem; border-left: 4px solid; font-size: .9rem; }
.form-alert.success { border-color: #43855a; background: #e9f6ed; color: #20492c; }
.form-alert.error { border-color: #b74f35; background: #fff0ec; color: #713423; }
.form-row { display: grid; gap: 1rem; }
.two-col { grid-template-columns: 1fr 1fr; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; margin-bottom: .45rem; font-size: .83rem; font-weight: 800; }
.field label span, .consent strong { color: var(--orange-dark); }
.field label small { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
    width: 100%;
    min-height: 3.35rem;
    padding: .78rem .9rem;
    border: 1px solid #c8cdc9;
    border-radius: .25rem;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #7d8982; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,106,46,.12); outline: 0; }
.field > small { display: block; margin-top: .35rem; color: var(--muted); font-size: .72rem; }
.upload-field { margin-top: .25rem; }
.photo-input {
    width: 100%;
    min-height: 3.65rem;
    padding: .5rem;
    border: 1px dashed #aeb7b1;
    border-radius: .35rem;
    background: #f7f5ef;
    color: var(--muted);
    font-size: .82rem;
}
.photo-input:hover { border-color: var(--orange-dark); background: #fff7f1; }
.photo-input::file-selector-button {
    min-height: 2.55rem;
    margin-right: .8rem;
    padding: .55rem .9rem;
    border: 1px solid var(--ink);
    border-radius: .2rem;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}
.photo-input:focus-visible { border-color: var(--orange); outline: 3px solid #ffb38c; outline-offset: 3px; }
.photo-list { margin-top: .65rem; padding: .7rem .85rem; border-radius: .25rem; background: #eaf3ec; color: #31513a; font-size: .78rem; font-weight: 700; }
.photo-list.is-error { background: #fff0ec; color: #713423; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; margin: .25rem 0 1.4rem; color: var(--muted); font-size: .78rem; }
.consent input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; accent-color: var(--orange-dark); }
.consent a { color: var(--ink); font-weight: 700; }
.form-note { margin: .8rem 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Footer */
.site-footer { padding-top: 4.5rem; background: #111713; color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 3rem; padding-bottom: 4rem; }
.footer-top > div:first-child { max-width: 360px; }
.footer-brand { margin-bottom: 1.5rem; }
.footer-top p, .footer-top span { color: rgba(255,255,255,.56); font-size: .87rem; }
.footer-top h2 { margin-bottom: 1.1rem; font-family: inherit; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-top > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-top a { color: rgba(255,255,255,.66); font-size: .86rem; text-decoration: none; }
.footer-top a:hover { color: #ffc19e; }
.creator-row { display: flex; justify-content: flex-end; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.creator-credit {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-height: 4.6rem;
    padding: .7rem .8rem .7rem 1.15rem;
    border: 1px solid rgba(146, 89, 255, .5);
    border-radius: .75rem;
    background: #100c1d;
    box-shadow: 0 10px 30px rgba(82, 67, 235, .14);
    color: #fff;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.creator-credit:hover { border-color: #9f6cff; box-shadow: 0 12px 34px rgba(113, 85, 255, .25); transform: translateY(-2px); }
.creator-credit span { color: rgba(255,255,255,.68); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.creator-credit img { width: 140px; height: auto; object-fit: contain; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.44); font-size: .75rem; }
.footer-bottom p:last-child { display: flex; gap: .7rem; }
.footer-bottom a { color: inherit; text-underline-offset: .25em; }
.mobile-cta { display: none; }

/* Legal */
.legal-page { background: var(--paper); }
.legal-page .site-header { position: static; }
.legal-main { padding: 5rem 0 7rem; }
.legal-content { max-width: 760px; }
.legal-content h1 { margin-bottom: .7rem; font-size: clamp(3rem, 7vw, 5.5rem); }
.legal-content h2 { margin: 2.5rem 0 .7rem; font-family: inherit; font-size: 1.35rem; font-weight: 800; }
.legal-content p { color: #4f5b55; }
.legal-updated { font-size: .86rem; }

@media (max-width: 1020px) {
    .main-nav { gap: 1rem; }
    .main-nav > a:not(.button) { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-grid { grid-template-columns: 1fr 1fr; }
    .job-card:last-child { grid-column: 1 / -1; max-width: calc(50% - .625rem); }
    .results-grid { grid-template-columns: 1fr; }
    .results-copy { max-width: 720px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1rem; }
    .process-grid::before { display: none; }
    .take-grid, .area-grid, .faq-grid, .quote-grid { gap: 4rem; }
    .footer-top { grid-template-columns: 1.3fr repeat(3, .7fr); gap: 1.5rem; }
}

@media (max-width: 780px) {
    html { scroll-padding-top: 4.5rem; }
    body { padding-bottom: 4.1rem; }
    .container { width: min(calc(100% - 1.5rem), var(--container)); }
    .section { padding: 4.75rem 0; }
    .header-inner { min-height: 4.5rem; }
    .brand-mark { width: 2.4rem; height: 2.4rem; }
    .brand-copy strong { font-size: .84rem; }
    .brand-copy small { font-size: .63rem; }
    .site-header .main-nav > .button { display: none; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 4.5rem;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 1rem .75rem 1.5rem;
        border-top: 1px solid var(--line);
        background: var(--white);
        color: var(--ink);
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(-1rem);
        visibility: hidden;
        transition: opacity .2s, transform .2s, visibility .2s;
    }
    .main-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
    .main-nav > a:not(.button) { display: block; padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

    .hero { min-height: 780px; align-items: end; }
    .hero-media { background-position: 63% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(15,24,19,.93), rgba(15,24,19,.62)), linear-gradient(0deg, rgba(15,24,19,.65), transparent); }
    .hero-inner { padding-top: 9rem; padding-bottom: 4rem; }
    .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
    .hero-points { gap: .65rem 1.1rem; }
    .answer-grid { grid-template-columns: 1fr; padding: 1rem 0; }
    .answer-grid p, .answer-grid p:last-child { min-height: auto; padding: 1rem .5rem; border: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
    .answer-grid p:last-child { border-bottom: 0; }
    .split-heading, .jobs-heading, .take-grid, .area-grid, .faq-grid, .quote-grid { grid-template-columns: 1fr; }
    .split-heading { gap: 2rem; }
    .prose { padding-top: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 250px; }
    .service-number { margin-bottom: 2.5rem; }
    .results-grid { gap: 3rem; }
    .jobs-grid { grid-template-columns: 1fr; }
    .job-card:last-child { grid-column: auto; max-width: none; }
    .before-after { border-radius: .75rem; }
    .process-grid { grid-template-columns: 1fr; gap: 2.8rem; }
    .process-grid li { padding: 0; }
    .process-grid li > span { margin-bottom: 1.25rem; }
    .faq-heading, .quote-copy { position: static; }
    .area-list div { grid-template-columns: 1fr; gap: .25rem; }
    .two-col { grid-template-columns: 1fr; gap: 0; }
    .quote-form { padding: 1.25rem; border-radius: .75rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: .6rem; }
    .creator-row { justify-content: center; }
    .mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 110; display: grid; grid-template-columns: auto 1fr; padding: .55rem; background: var(--white); box-shadow: 0 -8px 30px rgba(15,24,19,.14); }
    .mobile-cta a { display: grid; min-height: 3rem; place-items: center; padding: .65rem 1rem; font-size: .82rem; font-weight: 800; text-decoration: none; }
    .mobile-call { color: var(--ink); }
    .mobile-quote { border-radius: .2rem; background: var(--orange); color: var(--ink); }
    .mobile-cta:has(.mobile-quote:first-child) { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { width: min(calc(100% - 1.1rem), var(--container)); }
    h2 { font-size: 2.65rem; }
    .hero-lead { font-size: 1rem; }
    .hero-points { display: grid; }
    .service-card { padding: 1.5rem; }
    .label-before { left: .5rem; }
    .label-after { left: calc(50% + .5rem); }
    .image-label { top: .5rem; padding: .4rem .6rem; font-size: .6rem; }
    .footer-top { grid-template-columns: 1fr; }
    .creator-credit { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
