:root {
    color-scheme: light;
    --green: #075d38;
    --green-dark: #033c25;
    --green-soft: #e9f3ee;
    --red: #c91e24;
    --red-dark: #9f151b;
    --ink: #181a1d;
    --muted: #62686a;
    --paper: #ffffff;
    --soft: #f5f6f3;
    --line: #dfe3de;
    --shadow: 0 22px 60px rgba(10, 31, 21, 0.12);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-underline-offset: 4px;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    padding: 10px 16px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    color: #fff;
    background: var(--ink);
    transform: translateY(-160%);
}

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

.sr-only {
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    min-height: 94px;
    border-bottom: 1px solid rgba(223, 227, 222, 0.9);
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
    min-height: 78px;
    box-shadow: 0 10px 30px rgba(10, 31, 21, 0.08);
}

.header-inner {
    min-height: inherit;
    display: grid;
    grid-template-columns: 174px 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-brand {
    width: 168px;
    height: 88px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-decoration: none;
}

.site-brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.3vw, 30px);
}

.site-nav a {
    padding: 10px 0;
    position: relative;
    color: #303536;
    font-size: 0.92rem;
    font-weight: 720;
    text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 5px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav .nav-cta {
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 20px;
    color: #fff;
    background: var(--red);
    box-shadow: 0 10px 22px rgba(201, 30, 36, 0.2);
}

.header-phone {
    min-width: 155px;
    display: grid;
    color: var(--green);
    text-decoration: none;
    text-align: right;
}

.header-phone span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-phone strong {
    font-size: 1rem;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 12px;
    display: none;
    place-content: center;
    gap: 5px;
    background: var(--green);
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    width: 22px;
    height: 2px;
    display: block;
    background: #fff;
}

.hero {
    padding: clamp(58px, 8vw, 104px) 0 68px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(7, 93, 56, 0.08), transparent 42%),
        linear-gradient(180deg, #fff 0%, #f7faf7 100%);
}

.hero::before {
    width: 520px;
    height: 520px;
    border: 95px solid rgba(7, 93, 56, 0.05);
    border-radius: 50%;
    position: absolute;
    top: -330px;
    right: -130px;
    content: "";
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    align-items: center;
    gap: clamp(46px, 7vw, 90px);
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 5.6rem);
}

.hero h1 span {
    color: var(--red);
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 30px;
    color: #535a59;
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 52px;
    border: 2px solid var(--green);
    border-radius: var(--radius-sm);
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: var(--green);
    box-shadow: 0 12px 26px rgba(7, 93, 56, 0.18);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    background: var(--green-dark);
    box-shadow: 0 16px 32px rgba(7, 93, 56, 0.24);
    transform: translateY(-2px);
}

.button.secondary {
    color: var(--green);
    background: transparent;
    box-shadow: none;
}

.button.secondary:hover {
    color: #fff;
    background: var(--green);
}

.hero-points {
    margin: 28px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4f5754;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-points li::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
    content: "";
}

.hero-gallery {
    min-height: 520px;
    position: relative;
}

.hero-photo {
    border: 7px solid #fff;
    border-radius: var(--radius-md);
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--green-soft);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo figcaption {
    padding: 9px 13px;
    position: absolute;
    right: 8px;
    bottom: 8px;
    color: #fff;
    background: rgba(3, 60, 37, 0.9);
    font-size: 0.76rem;
    font-weight: 780;
}

.hero-photo:nth-child(1) {
    width: 64%;
    height: 57%;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-photo:nth-child(2) {
    width: 46%;
    height: 43%;
    top: 8%;
    right: 0;
    z-index: 1;
}

.hero-photo:nth-child(3) {
    width: 48%;
    height: 42%;
    bottom: 0;
    left: 6%;
    z-index: 3;
}

.hero-photo:nth-child(4) {
    width: 49%;
    height: 49%;
    right: 1%;
    bottom: 2%;
    z-index: 4;
}

.trust-strip {
    color: #fff;
    background: var(--green-dark);
}

.trust-grid {
    min-height: 118px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-item {
    min-height: 50px;
    padding: 0 24px;
    display: grid;
    align-content: center;
    gap: 3px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.trust-item strong {
    font-size: 1rem;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
}

.section {
    padding: clamp(76px, 9vw, 118px) 0;
}

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

.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.legal-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 4.4vw, 4rem);
}

.section-heading p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 335px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    display: grid;
    align-content: start;
    background: #fff;
    box-shadow: 0 12px 30px rgba(10, 31, 21, 0.05);
    transition: border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.service-card:hover {
    border-color: rgba(7, 93, 56, 0.35);
    box-shadow: 0 20px 42px rgba(10, 31, 21, 0.1);
    transform: translateY(-5px);
}

.service-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--red);
    font-size: 0.82rem;
    font-weight: 850;
}

.service-card h3 {
    margin: 26px 0 14px;
    font-size: 1.32rem;
}

.service-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.work-card {
    min-height: 390px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background: var(--green-soft);
    box-shadow: var(--shadow);
}

.work-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    transition: transform 420ms ease;
}

.work-card:hover img {
    transform: scale(1.035);
}

.work-card::after {
    position: absolute;
    inset: 30% 0 0;
    background: linear-gradient(transparent, rgba(2, 28, 17, 0.88));
    content: "";
}

.work-card figcaption {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    color: #fff;
}

.work-card figcaption span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.work-card figcaption strong {
    margin-top: 3px;
    display: block;
    font-size: 1.5rem;
}

.company-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(50px, 8vw, 100px);
}

.company-panel {
    border-radius: var(--radius-lg);
    padding: clamp(34px, 5vw, 58px);
    color: #fff;
    position: relative;
    overflow: hidden;
    background: var(--green-dark);
    box-shadow: var(--shadow);
}

.company-panel::after {
    width: 220px;
    height: 220px;
    border: 50px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    position: absolute;
    right: -70px;
    bottom: -90px;
    content: "";
}

.company-panel .eyebrow {
    color: #c9e8d8;
}

.company-panel h2 {
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.company-panel p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.78);
}

.company-panel .button {
    margin-top: 10px;
    border-color: var(--red);
    background: var(--red);
}

.commitments {
    display: grid;
    gap: 16px;
}

.commitment {
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px 56px;
    position: relative;
}

.commitment::before {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background: var(--green);
    content: "✓";
    font-weight: 900;
}

.commitment h3 {
    margin-bottom: 6px;
    font-size: 1.16rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    gap: 32px;
}

.contact-details,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 44px);
    background: #fff;
    box-shadow: 0 18px 44px rgba(10, 31, 21, 0.07);
}

.contact-details {
    color: #fff;
    border-color: var(--green-dark);
    background: var(--green-dark);
}

.contact-details .eyebrow {
    color: #c9e8d8;
}

.contact-details h2,
.contact-form h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.contact-details > p {
    color: rgba(255, 255, 255, 0.74);
}

.contact-list {
    margin: 32px 0 0;
    padding: 0;
    display: grid;
    gap: 19px;
    list-style: none;
}

.contact-list li {
    padding-left: 18px;
    border-left: 3px solid var(--red);
    display: grid;
    gap: 2px;
}

.contact-list span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
    font-weight: 780;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-list a,
.contact-list address,
.contact-list strong {
    color: #fff;
    font-style: normal;
    font-weight: 760;
    text-decoration: none;
}

.contact-form > p {
    color: var(--muted);
}

.form-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

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

.form-field label,
.consent-label {
    color: #333a37;
    font-size: 0.9rem;
    font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #cdd4cf;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--green);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(7, 93, 56, 0.11);
}

.consent-label {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 550;
}

.consent-label input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--green);
}

.field-honeypot {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip-path: inset(50%);
}

.form-status {
    grid-column: 1 / -1;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 13px 15px;
}

.form-status.success {
    color: var(--green-dark);
    border-color: rgba(7, 93, 56, 0.22);
    background: var(--green-soft);
}

.form-status.error {
    color: #89151a;
    border-color: rgba(201, 30, 36, 0.22);
    background: #fff0f0;
}

.form-status ul {
    margin: 0;
    padding-left: 18px;
}

.contact-form .button {
    justify-self: start;
}

.legal-hero {
    padding: 76px 0 54px;
    background: var(--soft);
}

.legal-hero p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
}

.legal-content {
    width: min(860px, calc(100% - 40px));
    margin: 0 auto;
    padding: 68px 0 96px;
}

.legal-content section + section {
    margin-top: 38px;
    padding-top: 38px;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin-bottom: 16px;
    font-size: 1.65rem;
}

.legal-content p,
.legal-content li {
    color: #555c59;
}

.legal-content address {
    font-style: normal;
}

.site-footer {
    color: #fff;
    background: #151a17;
}

.footer-grid {
    padding-top: 68px;
    padding-bottom: 54px;
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 1fr;
    gap: 50px;
}

.footer-grid > div:not(.footer-brand) {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-brand img {
    width: 190px;
    height: auto;
}

.footer-brand p {
    max-width: 390px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid h2 {
    margin-bottom: 11px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-grid a,
.footer-grid address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    text-decoration: none;
}

.footer-grid a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom {
    min-height: 82px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    text-align: right;
}

.footer-bottom div {
    display: flex;
    gap: 16px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
}

.mobile-call {
    display: none;
}

:focus-visible {
    outline: 3px solid rgba(201, 30, 36, 0.38);
    outline-offset: 3px;
}

@media (max-width: 1050px) {
    .header-inner {
        grid-template-columns: 160px 1fr auto;
        gap: 18px;
    }

    .header-phone {
        display: none;
    }

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

    .service-card {
        min-height: 285px;
    }
}

@media (max-width: 840px) {
    html {
        scroll-padding-top: 84px;
    }

    .site-header,
    .site-header.is-scrolled {
        min-height: 78px;
    }

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

    .site-brand {
        width: 138px;
        height: 70px;
        justify-items: start;
    }

    .site-brand img {
        width: 100%;
        height: auto;
    }

    .menu-toggle {
        display: grid;
    }

    .site-nav {
        padding: 18px 20px 24px;
        border-bottom: 1px solid var(--line);
        display: none;
        align-items: stretch;
        position: fixed;
        top: 78px;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 24px 40px rgba(10, 31, 21, 0.14);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 12px 4px;
    }

    .site-nav .nav-cta {
        margin-top: 4px;
        text-align: center;
    }

    .hero-grid,
    .company-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(2.9rem, 11vw, 4.8rem);
    }

    .hero-gallery {
        width: min(620px, 100%);
        min-height: 500px;
        margin-inline: auto;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 0;
    }

    .trust-item {
        padding: 16px 20px;
    }

    .trust-item:nth-child(3) {
        border-left: 0;
    }

    .company-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 22px 0;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom div {
        justify-content: center;
    }

    .footer-bottom p:last-child {
        text-align: center;
    }
}

@media (max-width: 620px) {
    .site-shell,
    .legal-content {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        padding-top: 48px;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-gallery {
        min-height: 420px;
    }

    .hero-photo {
        border-width: 5px;
    }

    .hero-photo figcaption {
        padding: 6px 8px;
        font-size: 0.68rem;
    }

    .trust-grid,
    .services-grid,
    .works-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3) {
        padding: 15px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

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

    .service-card {
        min-height: 0;
    }

    .work-card {
        min-height: 310px;
    }

    .company-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-details,
    .contact-form,
    .company-panel {
        border-radius: 20px;
        padding: 28px 22px;
    }

    .form-field.full,
    .consent-label,
    .form-status {
        grid-column: auto;
    }

    .contact-form .button {
        width: 100%;
    }

    .mobile-call {
        min-width: 96px;
        height: 48px;
        border-radius: 999px;
        padding: 0 19px;
        display: grid;
        place-items: center;
        position: fixed;
        right: 15px;
        bottom: 15px;
        z-index: 45;
        color: #fff;
        background: var(--red);
        box-shadow: 0 12px 30px rgba(85, 10, 13, 0.3);
        font-weight: 850;
        text-decoration: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
