:root {
    --ink: #18211f;
    --muted-ink: #50615c;
    --line: #d7ded9;
    --paper: #ffffff;
    --soft: #f4f6f2;
    --field: #f9faf8;
    --green: #1f6b4f;
    --green-dark: #134331;
    --yellow: #f0c340;
    --rust: #a84925;
    --shadow: 0 18px 55px rgba(20, 35, 31, 0.12);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(215, 222, 217, 0.9);
    display: grid;
    gap: 18px;
    grid-template-columns: auto 1fr auto;
    left: 0;
    padding: 14px clamp(18px, 4vw, 54px);
    position: sticky;
    right: 0;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
}

.brand,
.language-switcher,
.nav {
    align-items: center;
    display: flex;
}

.brand {
    font-weight: 800;
    gap: 10px;
}

.brand-mark {
    align-items: center;
    background: var(--green);
    border-radius: 6px;
    color: white;
    display: inline-flex;
    font-size: 0.82rem;
    height: 34px;
    justify-content: center;
    width: 38px;
}

.nav {
    gap: clamp(12px, 3vw, 28px);
    justify-content: center;
    font-size: 0.95rem;
}

.nav a {
    color: var(--muted-ink);
    font-weight: 700;
}

.nav a:hover {
    color: var(--ink);
}

.nav-cta {
    background: var(--green);
    border-radius: 6px;
    color: white !important;
    padding: 10px 14px;
}

.language-switcher {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 3px;
}

.language-switcher a {
    border-radius: 5px;
    color: var(--muted-ink);
    font-size: 0.83rem;
    font-weight: 800;
    padding: 6px 9px;
}

.language-switcher .active {
    background: var(--paper);
    box-shadow: 0 1px 6px rgba(20, 35, 31, 0.12);
    color: var(--ink);
}

.hero {
    min-height: calc(100vh - 64px);
    overflow: hidden;
    position: relative;
}

.hero-media,
.hero-overlay {
    inset: 0;
    position: absolute;
}

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

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(13, 24, 21, 0.86) 0%, rgba(13, 24, 21, 0.66) 39%, rgba(13, 24, 21, 0.16) 78%),
        linear-gradient(0deg, rgba(13, 24, 21, 0.34), rgba(13, 24, 21, 0.02) 42%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
    justify-content: space-between;
    min-height: calc(100vh - 64px);
    padding: clamp(54px, 8vw, 112px) clamp(20px, 5vw, 72px) 34px;
    position: relative;
    z-index: 1;
}

.hero-copy {
    color: white;
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 14px;
    text-transform: uppercase;
}

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

.hero h1 {
    font-size: clamp(2.35rem, 6vw, 5.8rem);
    max-width: 720px;
}

.hero-subtitle {
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    font-weight: 700;
    margin-top: 24px;
    max-width: 640px;
}

.hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.88);
    max-width: 690px;
}

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

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 7px;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 850;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
    background: var(--yellow);
    color: #201904;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    color: white;
}

.hero-facts {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1180px;
}

.hero-facts span {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--yellow);
    border-radius: 7px;
    color: var(--ink);
    font-weight: 800;
    min-height: 62px;
    padding: 14px 16px;
}

.access-band {
    background: linear-gradient(90deg, var(--green-dark), #2e4d46);
    padding: 28px clamp(20px, 5vw, 72px);
}

.hero-access {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(13, 24, 21, 0.18);
    color: var(--ink);
    margin: 0 auto;
    max-width: 1160px;
    padding: 18px;
}

.hero-access p {
    color: var(--green-dark);
    font-size: 0.9rem;
    font-weight: 900;
    margin: 0 0 12px;
    text-transform: uppercase;
}

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

.access-item {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 7px;
    display: grid;
    gap: 12px;
    grid-template-columns: 48px 1fr;
    min-height: 78px;
    padding: 12px;
}

.access-icon {
    align-items: center;
    background: var(--green);
    border-radius: 7px;
    color: white;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.access-icon svg {
    fill: none;
    height: 26px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 26px;
}

.access-item strong {
    display: block;
    font-size: clamp(1.28rem, 2vw, 1.7rem);
    line-height: 1.05;
}

.section {
    padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

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

.section-grid {
    display: grid;
    gap: clamp(28px, 5vw, 70px);
    grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
    margin: 0 auto;
    max-width: 1160px;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section p {
    color: var(--muted-ink);
    font-size: 1.12rem;
    margin: 18px 0 0;
}

.use-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.use-list li {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 7px;
    font-weight: 750;
    padding: 16px 16px 16px 42px;
    position: relative;
}

.use-list li::before {
    background: var(--green);
    border-radius: 999px;
    content: "";
    height: 10px;
    left: 18px;
    position: absolute;
    top: 23px;
    width: 10px;
}

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

.option-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1160px;
}

.option-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(20, 35, 31, 0.06);
    min-height: 292px;
    padding: 24px;
}

.option-number {
    color: var(--rust);
    display: block;
    font-weight: 900;
    margin-bottom: 22px;
}

.option-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin: 0;
}

.option-note {
    border-top: 1px solid var(--line);
    font-weight: 750;
    padding-top: 16px;
}

.location {
    background: linear-gradient(90deg, var(--green-dark), #2e4d46);
    color: white;
}

.location-panel {
    margin: 0 auto;
    max-width: 980px;
}

.location .section-kicker,
.location p {
    color: rgba(255, 255, 255, 0.84);
}

.location h2 {
    max-width: 760px;
}

.caution {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--yellow);
    border-radius: 7px;
    color: white !important;
    font-weight: 800;
    margin-top: 28px !important;
    max-width: 840px;
    padding: 16px 18px;
}

.form-band {
    display: grid;
    gap: clamp(28px, 5vw, 62px);
    grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
}

.form-intro {
    max-width: 430px;
}

.required-note {
    color: var(--rust) !important;
    font-weight: 800;
}

.lead-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: clamp(20px, 4vw, 36px);
    position: relative;
}

fieldset {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 28px 0 0;
    padding: 24px 0 0;
}

fieldset:first-of-type {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

legend {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 18px;
    padding: 0;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field span,
.consent span {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 780;
}

input,
select,
textarea {
    background: var(--field);
    border: 1px solid #cbd5cf;
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
    min-height: 46px;
    padding: 11px 12px;
    width: 100%;
}

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

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31, 107, 79, 0.18);
    outline: 0;
}

[aria-invalid="true"] {
    border-color: var(--rust);
}

.field-error {
    color: var(--rust);
    font-weight: 800;
}

.consent {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

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

.submit-button {
    margin-top: 24px;
    width: 100%;
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.78;
}

.form-sending-overlay {
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    color: var(--green-dark);
    display: flex;
    flex-direction: column;
    font-size: 1.18rem;
    font-weight: 900;
    gap: 14px;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 180ms ease;
    z-index: 3;
}

.lead-form.is-sending .form-sending-overlay {
    opacity: 1;
    pointer-events: auto;
}

.sending-spinner {
    animation: spin 760ms linear infinite;
    border: 4px solid rgba(31, 107, 79, 0.18);
    border-top-color: var(--green);
    border-radius: 999px;
    height: 42px;
    width: 42px;
}

.lead-thank-you {
    align-self: start;
    background: var(--paper);
    border: 1px solid #b7dec5;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
    justify-items: start;
    padding: clamp(24px, 4vw, 40px);
}

.lead-thank-you h3 {
    color: var(--ink);
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    line-height: 1.12;
    margin: 0;
}

.lead-thank-you p {
    color: var(--muted-ink);
    font-size: 1.08rem;
    margin: 0;
}

.thank-you-mark {
    align-items: center;
    background: var(--green);
    border-radius: 999px;
    color: white;
    display: inline-flex;
    font-size: 1.3rem;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.form-message {
    border-radius: 7px;
    display: grid;
    gap: 4px;
    margin-bottom: 22px;
    padding: 14px 16px;
}

.form-message.success {
    background: #eaf6ef;
    border: 1px solid #b7dec5;
}

.form-message.error {
    background: #fff0eb;
    border: 1px solid #ebb8a4;
}

.form-message span {
    color: var(--muted-ink);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

summary {
    cursor: pointer;
    font-weight: 850;
}

details p {
    margin-top: 12px !important;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.88);
    display: grid;
    gap: 6px;
    padding: 28px clamp(20px, 5vw, 72px);
}

.site-footer p {
    margin: 0;
}

@media (max-width: 920px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: 760px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(13, 24, 21, 0.88) 0%, rgba(13, 24, 21, 0.7) 62%, rgba(13, 24, 21, 0.32) 100%),
            linear-gradient(0deg, rgba(13, 24, 21, 0.36), rgba(13, 24, 21, 0.04) 42%);
    }

    .section-grid,
    .form-band {
        grid-template-columns: 1fr;
    }

    .form-intro {
        max-width: 760px;
    }

    .option-grid,
    .hero-facts,
    .access-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 12px;
        grid-template-columns: auto 1fr;
        padding: 12px 16px;
    }

    .brand span:last-child {
        display: none;
    }

    .nav {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 0.88rem;
    }

    .language-switcher {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: max-content;
    }

    .nav-cta {
        padding: 8px 10px;
    }

    .hero-content {
        min-height: 760px;
        padding: 42px 18px 26px;
    }

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

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

    .use-list,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .lead-form {
        padding: 18px;
    }
}
