:root {
    --ink: #15222e;
    --muted: #637083;
    --page: #f5f7fa;
    --panel: #ffffff;
    --line: #d8dee8;
    --accent: #2f8f67;
    --accent-dark: #176348;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--page);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--accent-dark); text-decoration: none; }
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 32px;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
}
.brand { font-weight: 800; color: var(--ink); font-size: 20px; }
nav { display: flex; gap: 16px; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 700; }
.hero {
    min-height: calc(100vh - 74px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: center;
    padding: 54px 8vw;
}
.hero h1 {
    max-width: 760px;
    margin: 8px 0 14px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    letter-spacing: 0;
}
.hero p { max-width: 680px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.eyebrow { margin: 0; color: var(--accent-dark); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 0; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}
.contact-strip {
    display: grid;
    gap: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}
.contact-strip div { display: grid; gap: 3px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.contact-strip div:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-strip strong { font-size: 12px; color: var(--muted); text-transform: uppercase; }
.contact-strip span { word-break: break-word; }

@media (max-width: 800px) {
    .site-header { padding: 16px 20px; align-items: flex-start; flex-direction: column; }
    .hero { grid-template-columns: 1fr; padding: 34px 20px; }
    .hero h1 { font-size: 42px; }
}

