:root {
    --ink: #17211f;
    --ink-2: #253b36;
    --muted: #5b6c67;
    --paper: #f7f9f8;
    --panel: #ffffff;
    --line: #d9e3df;
    --green: #0f6b5c;
    --green-dark: #0a4c43;
    --teal: #16806f;
    --gold: #b48a38;
    --error: #9b2c2c;
    --success: #1d6b45;
    --shadow: 0 18px 50px rgba(23, 33, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--green);
}

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

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: #ffffff;
    background: var(--green-dark);
    border-radius: 6px;
}

.skip-link:focus {
    top: 1rem;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand,
.site-nav,
.language-switch,
.hero-actions,
.hero-points,
.contact-lines {
    display: flex;
    align-items: center;
}

.brand {
    gap: 0.85rem;
    min-width: 250px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ffffff;
    background: var(--green);
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    font-weight: 800;
}

.brand-name,
.brand-place {
    display: block;
}

.brand-name {
    font-weight: 800;
    line-height: 1.15;
}

.brand-place {
    color: var(--muted);
    font-size: 0.82rem;
}

.site-nav {
    justify-content: flex-end;
    gap: 1rem;
    color: var(--ink-2);
    font-size: 0.94rem;
    font-weight: 650;
}

.site-nav a {
    padding: 0.45rem 0.2rem;
}

.site-nav .nav-call {
    padding: 0.62rem 0.85rem;
    color: #ffffff;
    background: var(--green);
    border-radius: 6px;
}

.language-switch {
    flex: 0 0 auto;
    gap: 0.35rem;
}

.language-switch a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--green-dark);
    background: #edf5f2;
    border: 1px solid #c7ded7;
    border-radius: 6px;
    font-weight: 850;
    line-height: 1;
}

.language-switch a.active,
.language-switch a:hover {
    color: #ffffff;
    background: var(--green);
    border-color: var(--green);
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: var(--ink);
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 18, 16, 0.92) 0%, rgba(10, 18, 16, 0.78) 35%, rgba(10, 18, 16, 0.2) 72%, rgba(10, 18, 16, 0.1) 100%),
        linear-gradient(0deg, rgba(10, 18, 16, 0.36), rgba(10, 18, 16, 0.08));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0 5rem;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.section h2 {
    margin: 0;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 720px;
    font-size: 4.3rem;
}

.hero-copy {
    max-width: 620px;
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
}

.hero-actions {
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.76rem 1rem;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
    color: #ffffff;
    background: var(--green);
    border-color: var(--green);
}

.button-primary:hover {
    color: #ffffff;
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.button-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.38);
}

.button-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
}

.hero-points {
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.section {
    padding: 5.5rem 0;
}

.intro-section,
.process-section,
.contact-section {
    background: #ffffff;
}

.intro-grid,
.area-grid,
.faq-grid,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 3rem;
}

.intro-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.section h2 {
    font-size: 2.55rem;
}

.intro-copy p,
.section-heading p,
.area-grid p,
.contact-copy p,
.site-footer p,
.faq-list p,
.service-card p,
.process-grid p,
.prep-panel li {
    color: var(--muted);
}

.intro-copy p:first-child,
.area-grid p:first-of-type,
.contact-copy p:first-of-type {
    margin-top: 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading p {
    margin: 0.8rem 0 0;
    font-size: 1.04rem;
}

.service-grid,
.process-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card,
.review-card,
.process-grid article,
.prep-panel,
.contact-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(23, 33, 31, 0.05);
}

.service-card {
    min-height: 220px;
    padding: 1.35rem;
}

.service-card h3,
.process-grid h3,
.prep-panel h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.25;
}

.service-card p,
.process-grid p,
.review-card p {
    margin-bottom: 0;
}

.proof-section {
    background: #eef5f2;
}

.proof-grid {
    display: grid;
    gap: 1.2rem;
}

.proof-summary {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0.5rem 1.2rem;
    align-items: center;
}

.proof-summary img {
    grid-row: span 4;
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.proof-summary h2,
.proof-summary p {
    margin: 0;
}

.source-link {
    color: var(--green-dark);
    font-weight: 800;
}

.review-card {
    min-height: 150px;
    padding: 1rem;
}

.review-card strong {
    color: var(--gold);
    letter-spacing: 0.04em;
}

.review-card span {
    display: block;
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 750;
}

.media-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.media-strip img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.area-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.area-list span {
    padding: 0.55rem 0.78rem;
    color: var(--green-dark);
    background: #e8f3f0;
    border: 1px solid #c7ded7;
    border-radius: 999px;
    font-weight: 750;
}

.prep-panel {
    padding: 1.4rem;
}

.prep-panel ul {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
}

.prep-panel li + li {
    margin-top: 0.7rem;
}

.process-grid article {
    min-height: 230px;
    padding: 1.4rem;
}

.step-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: #ffffff;
    background: var(--teal);
    border-radius: 8px;
    font-weight: 850;
}

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

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-list details {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.faq-list summary {
    padding: 1rem 1.1rem;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.faq-list p {
    margin: 0;
    padding: 0 1.1rem 1.1rem;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 105px;
}

.contact-lines {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.5rem;
    font-weight: 800;
}

.contact-lines a {
    color: var(--green-dark);
}

.contact-form {
    padding: 1.3rem;
    box-shadow: var(--shadow);
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.38rem;
    color: var(--ink-2);
    font-size: 0.92rem;
    font-weight: 800;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.75rem 0.85rem;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid #cfd9d5;
    border-radius: 7px;
    outline: none;
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(15, 107, 92, 0.12);
}

.field-trap {
    position: absolute;
    left: -9999px;
}

.form-submit {
    width: 100%;
}

.form-note {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.form-alert {
    margin-bottom: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 7px;
    font-weight: 750;
}

.form-alert-success {
    color: var(--success);
    background: #e9f7ef;
    border: 1px solid #c6e6d4;
}

.form-alert-error {
    color: var(--error);
    background: #fff0f0;
    border: 1px solid #f1c6c6;
}

.site-footer {
    padding: 3rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
}

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

.footer-brand {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 850;
}

.site-footer h2 {
    margin: 0 0 0.65rem;
    color: #ffffff;
    font-size: 0.98rem;
}

.site-footer a {
    display: block;
    color: #ffffff;
    font-weight: 750;
}

.site-footer a + a {
    margin-top: 0.45rem;
}

.copyright {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .header-inner,
    .site-nav {
        align-items: flex-start;
    }

    .header-inner {
        flex-direction: column;
        padding: 1rem 0;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .language-switch {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .hero {
        min-height: 620px;
    }

    .hero h1 {
        max-width: 620px;
        font-size: 3.25rem;
    }

    .section h2 {
        font-size: 2.15rem;
    }

    .intro-grid,
    .area-grid,
    .faq-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .process-grid,
    .review-grid,
    .media-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-copy {
        position: static;
    }
}

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

    .brand {
        min-width: 0;
    }

    .site-nav {
        gap: 0.55rem 0.8rem;
        font-size: 0.9rem;
    }

    .site-nav .nav-call {
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: 650px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(10, 18, 16, 0.94) 0%, rgba(10, 18, 16, 0.82) 58%, rgba(10, 18, 16, 0.4) 100%),
            linear-gradient(0deg, rgba(10, 18, 16, 0.42), rgba(10, 18, 16, 0.08));
    }

    .hero-content {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero-copy {
        font-size: 1.02rem;
    }

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

    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: 1.85rem;
    }

    .service-grid,
    .process-grid,
    .review-grid,
    .media-strip,
    .two-column {
        grid-template-columns: 1fr;
    }

    .proof-summary {
        grid-template-columns: 1fr;
    }

    .proof-summary img {
        grid-row: auto;
    }

    .service-card,
    .process-grid article {
        min-height: auto;
    }

    .contact-form {
        padding: 1rem;
    }
}
