:root {
    --green-950: #071f10;
    --green-900: #0a3319;
    --green-800: #0f4a24;
    --green-700: #176231;
    --green-600: #1f7a3d;
    --green-500: #3a9d51;
    --green-100: #d0ebd4;
    --green-50: #ecf7ee;
    --cream: #f6f3ec;
    --cream-soft: #fbfaf6;
    --amber: #d98a2b;
    --ink: #0f2a18;
    --muted: #566051;
    --white: #fff;
    --line: rgba(15, 74, 36, .13);
    --shadow: 0 18px 48px rgba(8, 49, 24, .11);
    --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--muted);
    background: var(--cream-soft);
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--green-600); }

h1, h2, h3, h4 {
    margin-top: 0;
    color: var(--ink);
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.12;
    letter-spacing: -.025em;
}

h1 { font-size: clamp(2.45rem, 5.2vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
p { margin-top: 0; }

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--green-900);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(7, 31, 16, .95);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 142px; height: 58px; object-fit: contain; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-left: auto;
}

.site-nav a {
    color: rgba(255, 255, 255, .83);
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--white); }

.language-links {
    display: flex;
    gap: 7px;
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.16);
}

.language-links a {
    min-width: 34px;
    padding: 6px 7px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    text-align: center;
    font-size: .75rem;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    box-shadow: 0 12px 28px rgba(31,122,61,.25);
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta { min-height: 43px; padding: 10px 18px; }
.button:hover, .nav-cta:hover { color: var(--white); transform: translateY(-2px); }
.button-secondary { color: var(--green-900); background: var(--white); box-shadow: none; }
.button-outline { border-color: rgba(255,255,255,.4); background: transparent; box-shadow: none; }
.button-outline:hover { background: rgba(255,255,255,.1); }

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    color: var(--white);
    background: transparent;
    font-size: 1.25rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 15%, rgba(217,138,43,.18), transparent 28%),
        linear-gradient(135deg, var(--green-950), var(--green-700));
}

.page-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .55;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    align-items: center;
    gap: clamp(36px, 7vw, 88px);
    min-height: 660px;
    padding-block: 72px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 23px;
    color: rgba(255,255,255,.65);
    font-size: .82rem;
}

.breadcrumbs a { color: rgba(255,255,255,.78); text-decoration: none; }
.breadcrumbs span + span::before,
.breadcrumbs a + span::before { content: "/"; margin-right: 7px; opacity: .6; }

.eyebrow {
    display: inline-flex;
    margin-bottom: 19px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.08);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.page-hero h1 { max-width: 800px; margin-bottom: 24px; color: var(--white); }
.hero-lead { max-width: 720px; color: rgba(255,255,255,.82); font-size: 1.14rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }

.hero-photo {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(0,0,0,.31);
}

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

.hero-photo figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    color: var(--white);
    background: rgba(7,31,16,.8);
    backdrop-filter: blur(8px);
    font-size: .88rem;
}

.proof-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.proof-item { padding: 23px 25px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 4px; color: var(--ink); }
.proof-item span { font-size: .85rem; }

.section { padding-block: clamp(70px, 9vw, 112px); }
.section-white { background: var(--white); }
.section-dark { color: rgba(255,255,255,.78); background: var(--green-950); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 760px; margin-bottom: 45px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker { color: var(--green-600); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-head h2 { margin: 10px 0 16px; }
.section-head p { font-size: 1.06rem; }

.two-column { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 7vw, 82px); }
.content-photo { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.content-photo img { width: 100%; min-height: 470px; object-fit: cover; }

.check-list { display: grid; gap: 14px; margin: 27px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: var(--ink); }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--green-600); font-weight: 900; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card {
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(8,49,24,.055);
}

.info-card .icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--green-700);
    background: var(--green-50);
    font-size: 1.25rem;
}

.info-card h3 { margin-bottom: 12px; }
.info-card p:last-child { margin-bottom: 0; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-tile { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 25px rgba(8,49,24,.055); }
.product-tile img { width: 100%; height: 235px; object-fit: cover; }
.product-tile-content { padding: 25px; }
.product-tile h2, .product-tile h3 { margin-bottom: 10px; }
.product-tile a { font-weight: 800; text-decoration: none; }

.spec-table { width: 100%; overflow: hidden; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.spec-table th, .spec-table td { padding: 18px 21px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { width: 31%; color: var(--ink); background: var(--green-50); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.step { position: relative; padding: 29px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.step::before { display: block; margin-bottom: 18px; color: #8bc34a; counter-increment: steps; content: "0" counter(steps); font-weight: 900; }
.step p { margin-bottom: 0; color: rgba(255,255,255,.69); }

.faq-list { display: grid; gap: 13px; max-width: 900px; margin-inline: auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq-list summary { padding: 21px 24px; color: var(--ink); cursor: pointer; font-weight: 800; }
.faq-list details p { padding: 0 24px 22px; margin: 0; }

.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-weight: 700; text-decoration: none; }

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 30px;
    color: rgba(255,255,255,.78);
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    box-shadow: var(--shadow);
}

.cta-panel h2 { margin-bottom: 12px; color: var(--white); }
.cta-panel p { margin-bottom: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-full { grid-column: 1 / -1; }
.lead-form label { display: block; margin-bottom: 7px; color: var(--ink); font-weight: 750; }
.lead-form input, .lead-form select, .lead-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}
.lead-form textarea { min-height: 145px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; }
.consent input { width: auto; margin-top: 5px; }
.form-status { padding: 12px 14px; border-radius: 10px; background: var(--green-50); }

.site-footer { padding-top: 64px; color: rgba(255,255,255,.68); background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 48px; }
.site-footer h2, .site-footer h3 { color: var(--white); font-size: 1.16rem; }
.site-footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-brand { width: 150px; margin-bottom: 18px; }
.footer-bottom { padding: 21px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }
.legal-name { color: var(--white); font-weight: 750; }

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

@media (max-width: 1050px) {
    .nav-toggle { display: inline-grid; place-items: center; }
    .site-nav {
        position: absolute;
        top: 78px;
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 16px;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 18px;
        background: var(--green-950);
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav > a { padding: 11px 8px; }
    .language-links { padding: 13px 0 3px; border: 0; border-top: 1px solid rgba(255,255,255,.12); }
    .nav-cta { margin-top: 8px; }
    .hero-layout { grid-template-columns: 1fr 380px; gap: 35px; }
    .proof-strip { grid-template-columns: 1fr 1fr; }
    .proof-item:nth-child(2) { border-right: 0; }
    .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .card-grid, .product-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
    body { padding-bottom: 69px; }
    .shell { width: min(100% - 28px, 1180px); }
    .header-inner { min-height: 68px; }
    .brand img { width: 122px; height: 50px; }
    .site-nav { top: 68px; right: 14px; left: 14px; }
    .hero-layout { grid-template-columns: 1fr; min-height: 0; padding-block: 58px 72px; }
    .hero-photo { min-height: 350px; }
    .hero-photo img { height: 350px; }
    .proof-strip { margin-top: -20px; }
    .proof-item { padding: 18px; }
    .two-column, .card-grid, .product-grid, .steps, .footer-grid, .lead-form { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .content-photo img { min-height: 340px; }
    .spec-table th, .spec-table td { display: block; width: 100%; }
    .spec-table th { padding-bottom: 7px; border-bottom: 0; }
    .spec-table td { padding-top: 7px; }
    .cta-panel { grid-template-columns: 1fr; }
    .cta-actions, .cta-actions .button { width: 100%; }
    .footer-grid > :last-child { grid-column: auto; }
    .mobile-contact-bar {
        position: fixed;
        z-index: 1200;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 9px 12px;
        gap: 8px;
        border-top: 1px solid var(--line);
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(10px);
    }
    .mobile-contact-bar a { padding: 11px; border-radius: 999px; text-align: center; font-size: .86rem; font-weight: 800; text-decoration: none; }
    .mobile-contact-bar a:first-child { color: var(--green-700); background: var(--green-50); }
    .mobile-contact-bar a:last-child { color: var(--white); background: var(--amber); }
}

@media (max-width: 480px) {
    h1 { font-size: 2.25rem; }
    .proof-strip { grid-template-columns: 1fr; }
    .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .proof-item:nth-child(2) { border-right: 0; }
    .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .proof-item:last-child { border-bottom: 0; }
}

