:root {
    --wl-green: #297F3C;
    --wl-accent: #CC5E3B;
    --wl-black: #000000;
    --wl-sand: #D6CEC3;
    --wl-white: #FFFFFF;
    --wl-success: #30D63B;
    --wl-warning: #F1EA30;
    --wl-error: #E12222;
    --wl-info: #A4A0FF;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--wl-black);
    background:
        radial-gradient(circle at top left, rgba(41, 127, 60, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f0e9 100%);
}

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

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

.shell {
    padding-left: clamp(0rem, 2vw, 1rem);
    padding-right: clamp(0rem, 2vw, 1rem);
}

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #1F1F1F;
    backdrop-filter: blur(12px);
    color: var(--wl-white);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.2rem;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 100%;
    height: 2px;
    background: var(--wl-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: #161616;
    color: var(--wl-white);
}

.site-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.site-footer-title {
    margin: 0 0 0.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer-links {
    display: flex;
    gap: 1.25rem;
    font-weight: 500;
}

.hero,
.statement,
.contact-page,
.error-page {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.hero {
    padding-top: clamp(5rem, 10vw, 8rem);
}

.hero-grid,
.statement-grid,
.contact-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.hero-grid {
    grid-template-columns: 1fr;
    max-width: 58rem;
}

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

.eyebrow {
    margin: 0 0 1rem;
    color: var(--wl-green);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    max-width: 14ch;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: 1.35rem;
}

p,
li {
    line-height: 1.75;
}

.hero-subheader {
    margin-top: 1.25rem;
    max-width: 38rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.hero-line {
    display: block;
}

.lead {
    max-width: 62ch;
    font-size: 1.06rem;
}

.hero-detail {
    max-width: 60ch;
    color: rgba(0, 0, 0, 0.8);
}

.hero-actions {
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover {
    transform: translateY(-2px) scale(1.01);
}

.button-primary {
    background: var(--wl-green);
    color: var(--wl-white);
    box-shadow: 0 18px 36px rgba(41, 127, 60, 0.18);
}

.button-primary:hover {
    background: #236c33;
    box-shadow: 0 24px 44px rgba(41, 127, 60, 0.24);
}

.contact-card,
.statement-grid > div {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.philosophy-section {
    background: linear-gradient(180deg, #e3ddd4 0%, #d9d0c4 100%);
}

.philosophy-tile {
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.philosophy-title-simple {
    color: var(--wl-green);
}

.philosophy-title-reliable {
    color: var(--wl-accent);
}

.field {
    display: block;
    margin-bottom: 1.25rem;
}

.field span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-note {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.required-indicator {
    color: var(--wl-accent);
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 1rem;
    background: var(--wl-white);
    color: var(--wl-black);
    font: inherit;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(41, 127, 60, 0.25);
    border-color: var(--wl-green);
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notice,
.validation-summary {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-weight: 500;
}

.notice-success {
    background: rgba(48, 214, 59, 0.12);
    border: 1px solid rgba(48, 214, 59, 0.3);
}

.notice-error,
.validation-summary {
    background: rgba(225, 34, 34, 0.08);
    border: 1px solid rgba(225, 34, 34, 0.22);
}

.validation-message {
    display: block;
    margin-top: 0.5rem;
    color: var(--wl-error);
    font-size: 0.92rem;
}

@media (max-width: 860px) {
    .hero-grid,
    .statement-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: none;
    }

    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .site-footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .hero-line {
        display: inline;
    }
}
