:root {
    --ink: #1f2523;
    --muted: #5f6965;
    --line: #d9ded9;
    --paper: #ffffff;
    --soft: #f5f7f4;
    --soft-strong: #ecefe9;
    --green: #1f6a50;
    --green-dark: #154b39;
    --gold: #b98a3b;
    --gold-soft: #f4ead7;
    --shadow: 0 18px 45px rgba(31, 37, 35, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font: 16px/1.55 Arial, Helvetica, sans-serif;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(185, 138, 59, 0.55);
    outline-offset: 3px;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.brand {
    min-width: 0;
    text-decoration: none;
}

.brand-name {
    display: block;
    font-weight: 800;
    line-height: 1.1;
}

.brand-subtitle {
    display: none;
    color: var(--muted);
    font-size: 0.85rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-phone {
    display: none;
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #ffffff;
    background: var(--green);
    box-shadow: 0 12px 28px rgba(31, 106, 80, 0.24);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
}

.btn-light {
    color: var(--green-dark);
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-small {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 0.92rem;
}

.label-desktop {
    display: none;
}

.label-mobile {
    display: inline;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(560px, 76svh, 720px);
    overflow: hidden;
    color: #ffffff;
}

.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(19, 26, 24, 0.84) 0%, rgba(19, 26, 24, 0.63) 48%, rgba(19, 26, 24, 0.28) 100%),
        linear-gradient(0deg, rgba(19, 26, 24, 0.35), rgba(19, 26, 24, 0.12));
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    padding: 72px 0 56px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 920px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.05rem, 6vw, 4.1rem);
    line-height: 1.02;
}

.hero h1 span {
    display: block;
}

.hero-lead {
    max-width: 660px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.08rem, 2.8vw, 1.35rem);
}

.hero-trustline {
    max-width: 920px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.94rem;
    font-weight: 800;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 560px;
    margin-top: 28px;
}

.hero-points {
    display: grid;
    gap: 10px;
    max-width: 720px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 800;
}

.hero-points li::before,
.mini-trust-copy span::before,
.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
}

.mini-trust {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.mini-trust-inner {
    display: grid;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
}

.mini-trust-copy {
    display: grid;
    gap: 10px;
}

.mini-trust-copy span {
    position: relative;
    padding-left: 26px;
    font-weight: 800;
}

.trust-mark-small {
    width: 132px;
    max-height: 86px;
    object-fit: contain;
}

.section,
.section-tight {
    padding: 64px 0;
}

.section-tight {
    padding-top: 42px;
    padding-bottom: 42px;
}

.section-muted {
    background: var(--soft);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

h2,
h3,
p {
    overflow-wrap: anywhere;
}

h2 {
    margin: 0;
    font-size: clamp(1.85rem, 5vw, 3rem);
    line-height: 1.08;
}

h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.2;
}

p {
    margin: 0;
    color: var(--muted);
}

.section-heading p:not(.section-kicker),
.trust-copy p,
.problem-copy p,
.service-copy p,
.contact-copy p,
.need-layout p,
.local-cta p {
    margin-top: 14px;
    font-size: 1.04rem;
}

.trust-copy h2 {
    font-size: clamp(1.65rem, 4vw, 2.45rem);
}

.trust-layout {
    display: grid;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(31, 37, 35, 0.08);
}

.trust-mark-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    border-radius: 8px;
    background: var(--soft);
}

.trust-mark {
    width: min(190px, 78%);
    object-fit: contain;
}

.text-strong {
    color: var(--ink);
    font-weight: 700;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--green-dark);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.use-grid {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.use-card,
.process-step {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.use-card {
    padding: 22px;
}

.use-card p {
    margin-top: 10px;
}

.problem-layout {
    display: grid;
    gap: 32px;
    align-items: center;
}

.fit-layout,
.need-layout {
    display: grid;
    gap: 24px;
    align-items: start;
}

.section-heading-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.service-layout {
    max-width: 1120px;
}

.problem-copy {
    max-width: 650px;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0 28px;
    list-style: none;
}

.fit-list,
.need-list {
    margin-top: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-weight: 700;
}

.image-stack {
    display: grid;
    gap: 16px;
}

figure {
    margin: 0;
}

.image-stack img,
.process-photos img,
.contact-photo img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    max-height: 390px;
    object-fit: cover;
    border-radius: 8px;
}

figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.process-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.process-step {
    padding: 22px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--green);
    font-weight: 900;
}

.process-step p {
    margin-top: 10px;
}

.process-photos {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.local-cta {
    color: #ffffff;
    background: var(--green-dark);
}

.local-cta-inner {
    display: grid;
    gap: 22px;
    align-items: center;
    padding: 44px 0;
}

.local-cta .section-kicker {
    color: var(--gold-soft);
}

.local-cta h2,
.local-cta p {
    color: #ffffff;
}

.contact-section {
    background: var(--soft);
}

.contact-layout {
    display: grid;
    gap: 28px;
    align-items: start;
}

.contact-direct {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.contact-direct a {
    color: var(--green-dark);
    font-weight: 900;
    text-decoration: none;
}

.contact-photo {
    display: none;
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.field {
    display: grid;
    gap: 7px;
}

label {
    font-weight: 900;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #c9d1cc;
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: #ffffff;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(31, 106, 80, 0.12);
}

input[type="file"] {
    padding: 10px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.btn-form {
    width: 100%;
    border: 0;
}

.field-full {
    grid-column: 1 / -1;
}

.btn[disabled],
.btn-form[disabled] {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-note {
    color: var(--muted);
    font-size: 0.93rem;
    text-align: center;
}

.form-trust {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    color: var(--ink);
    font-weight: 800;
}

.form-trust span {
    position: relative;
    padding-left: 24px;
}

.form-trust span::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.faq-section {
    background: #ffffff;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.faq-list p {
    margin-top: 12px;
}

.form-message {
    display: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
}

.form-message.success {
    display: block;
    color: #0f4d35;
    background: #e3f4eb;
    border: 1px solid #b9dfca;
}

.form-message.error {
    display: block;
    color: #7a1f1f;
    background: #fbe6e6;
    border: 1px solid #e7b9b9;
}

.site-footer {
    padding: 28px 0 84px;
    color: #ffffff;
    background: #202523;
}

.footer-inner {
    display: grid;
    gap: 18px;
    align-items: center;
}

.footer-brand span,
.footer-brand small,
.footer-contact a,
.footer-contact span {
    display: block;
}

.footer-brand span {
    font-weight: 900;
}

.footer-brand small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
}

.footer-mark {
    width: 112px;
    max-height: 74px;
    object-fit: contain;
}

.footer-contact {
    display: grid;
    gap: 5px;
}

.footer-contact a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
}

.sticky-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    background: rgba(31, 37, 35, 0.9);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.sticky-btn {
    min-height: 46px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-decoration: none;
}

.sticky-call {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.sticky-quote {
    color: #ffffff;
    background: var(--green);
}

@media (min-width: 520px) {
    .label-desktop {
        display: inline;
    }

    .label-mobile {
        display: none;
    }

    .brand-subtitle,
    .header-phone {
        display: block;
    }

    .hero-actions {
        grid-template-columns: auto auto;
    }

    .hero-points {
        grid-template-columns: repeat(3, max-content);
        gap: 18px;
    }

    .mini-trust-inner {
        grid-template-columns: 1fr auto;
    }

    .mini-trust-copy {
        grid-template-columns: repeat(2, auto);
        align-items: center;
    }
}

@media (min-width: 700px) {
    .site-header {
        padding-right: 28px;
        padding-left: 28px;
    }

    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fit-layout,
    .need-layout {
        grid-template-columns: 1fr 0.85fr;
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-photos,
    .image-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .local-cta-inner {
        grid-template-columns: 1fr auto;
    }

    .footer-inner {
        grid-template-columns: 1fr auto auto;
    }
}

@media (min-width: 900px) {
    .section,
    .section-tight {
        padding: 86px 0;
    }

    .section-tight {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .trust-layout {
        grid-template-columns: 300px 1fr;
        padding: 30px;
    }

    .trust-mark-wrap {
        min-height: 180px;
    }

    .trust-mark {
        width: min(230px, 82%);
    }

    .mini-trust-copy {
        grid-template-columns: repeat(4, auto);
    }

    .use-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .problem-layout,
    .contact-layout {
        grid-template-columns: 1fr 0.82fr;
    }

    .lead-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .btn-form,
    .form-note,
    .form-message {
        grid-column: 1 / -1;
    }

    .contact-photo {
        display: block;
        margin-top: 26px;
    }

    .lead-form {
        padding: 28px;
    }

    .sticky-contact-bar {
        display: none;
    }

    .site-footer {
        padding-bottom: 28px;
    }
}

@media (max-width: 899px) {
    body {
        padding-bottom: 74px;
    }
}

@media (max-width: 519px) {
    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .brand {
        overflow: hidden;
    }

    .brand-name {
        font-size: 0.98rem;
        white-space: nowrap;
    }

    .header-actions {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-inner {
        padding-top: 64px;
        padding-bottom: 44px;
    }

    .hero h1 {
        max-width: 350px;
        font-size: clamp(1.92rem, 8vw, 2.05rem);
        line-height: 1.04;
    }

    .hero-lead {
        max-width: 340px;
        font-size: 1rem;
    }

    .hero-trustline {
        max-width: 340px;
        font-size: 0.9rem;
    }

    .hero-actions {
        max-width: 100%;
    }

    .trust-mark-small {
        width: 104px;
    }

    .trust-layout {
        padding: 18px;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .site-header {
        gap: 10px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .btn-small {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 0.86rem;
    }
}
