:root {
    --paper: #f6f3ec;
    --paper-2: #ece7dc;
    --ink: #111411;
    --muted: #5f665f;
    --soft: #858b82;
    --line: #d6cec0;
    --teal: #09645f;
    --teal-dark: #073f3d;
    --clay: #a85d2b;
    --clay-soft: #ead4bc;
    --night: #121c1b;
    --night-2: #1d2b2a;
    --max: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(17, 20, 17, 0.045) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.75;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-family: "Space Grotesk", Inter, sans-serif;
    letter-spacing: 0;
    line-height: 1;
}

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

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

::selection {
    background: #cfe5df;
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid rgba(9, 100, 95, 0.35);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 18px;
    top: -50px;
    z-index: 1000;
    background: var(--ink);
    color: #fff;
    padding: 10px 14px;
}

.skip-link:focus {
    top: 18px;
}

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(214, 206, 192, 0.85);
    background: rgba(246, 243, 236, 0.92);
    backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.brand img {
    width: 168px;
}

.brand-line {
    color: var(--soft);
    font-size: 13px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

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

.nav-action,
.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--teal);
    background: var(--teal);
    color: #fff;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 800;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-action:hover,
.button:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-1px);
}

.button.secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.button.secondary:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: transparent;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.mobile-panel {
    display: none;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.mobile-panel.active {
    display: block;
}

.mobile-panel .wrap {
    display: grid;
    gap: 1px;
    padding: 12px 0 18px;
}

.mobile-panel a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
    color: var(--ink);
    font-weight: 800;
}

.hero {
    padding: 72px 0 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: start;
}

.kicker {
    margin-bottom: 18px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 920px;
    font-size: clamp(54px, 8.5vw, 118px);
}

.hero h1 span {
    color: var(--teal);
}

.hero-copy {
    display: grid;
    gap: 26px;
}

.lead {
    max-width: 690px;
    color: #333933;
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.35;
}

.plain {
    max-width: 650px;
    color: var(--muted);
}

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

.system-shot {
    margin-top: 18px;
    background: var(--night);
    color: #dbe4df;
    padding: 18px;
}

.system-shot video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--night-2);
}

.system-caption {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 14px;
    color: #aebdb7;
    font-size: 13px;
}

.system-caption strong {
    display: block;
    color: #fff;
}

.section {
    padding: 84px 0;
    border-top: 1px solid var(--line);
}

.section.dark {
    border-top: 0;
    background: var(--night);
    color: #b9c6c0;
}

.section.dark h2,
.section.dark h3 {
    color: #fffaf1;
}

.section.alt {
    background: var(--paper-2);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(24px, 5vw, 74px);
    align-items: end;
    margin-bottom: 46px;
}

.section h2 {
    font-size: clamp(38px, 5.6vw, 76px);
}

.section-head p {
    max-width: 620px;
    font-size: 18px;
}

.offer-list,
.work-list,
.process-list,
.principle-list {
    border-top: 1px solid var(--line);
}

.section.dark .offer-list,
.section.dark .process-list {
    border-color: rgba(255, 255, 255, 0.14);
}

.offer-row,
.work-row,
.process-row,
.principle-row {
    display: grid;
    grid-template-columns: 92px minmax(220px, 0.42fr) minmax(0, 0.58fr);
    gap: 28px;
    align-items: start;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}

.section.dark .offer-row,
.section.dark .process-row {
    border-color: rgba(255, 255, 255, 0.14);
}

.num {
    color: var(--teal);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 28px;
}

.section.dark .num {
    color: #7ee3d4;
}

.offer-row h3,
.work-row h3,
.process-row h3,
.principle-row h3 {
    font-size: clamp(24px, 3vw, 34px);
}

.offer-row p,
.work-row p,
.process-row p,
.principle-row p {
    max-width: 700px;
}

.micro-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.micro-list span {
    border: 1px solid rgba(9, 100, 95, 0.22);
    background: rgba(9, 100, 95, 0.06);
    color: var(--teal-dark);
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 800;
}

.section.dark .micro-list span {
    border-color: rgba(126, 227, 212, 0.22);
    background: rgba(126, 227, 212, 0.08);
    color: #b8fff4;
}

.statement {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: clamp(28px, 7vw, 90px);
    align-items: start;
}

.statement blockquote {
    margin: 0;
    color: var(--ink);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(32px, 4.6vw, 62px);
    line-height: 1.06;
}

.statement-copy {
    display: grid;
    gap: 20px;
}

.cta {
    padding: 78px 0 96px;
    border-top: 1px solid var(--line);
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
    gap: 44px;
    align-items: end;
}

.cta h2 {
    color: var(--ink);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1;
}

.cta-actions {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.phone-link,
.email-link {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.phone-link:hover,
.email-link:hover {
    color: var(--teal);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 26px 0 38px;
    color: var(--soft);
    font-size: 13px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.footer-grid a:hover {
    color: var(--teal);
}

@media (max-width: 900px) {
    .brand-line,
    .nav-links {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero-grid,
    .section-head,
    .statement,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 48px;
    }

    .system-shot {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .wrap {
        width: min(100% - 28px, var(--max));
    }

    .nav-inner {
        min-height: 62px;
    }

    .brand img {
        width: 142px;
    }

    .hero {
        padding: 36px 0 46px;
    }

    .hero h1 {
        font-size: clamp(43px, 13.5vw, 58px);
    }

    .lead {
        font-size: 20px;
    }

    .button,
    .nav-action {
        width: 100%;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .section-head {
        margin-bottom: 28px;
    }

    .offer-row,
    .work-row,
    .process-row,
    .principle-row {
        grid-template-columns: 54px 1fr;
        gap: 16px;
        padding: 24px 0;
    }

    .offer-row p,
    .work-row p,
    .process-row p,
    .principle-row p,
    .micro-list {
        grid-column: 2;
    }

    .offer-row > div:last-child {
        grid-column: 2;
    }

    .system-caption {
        display: grid;
    }

    .cta {
        padding: 58px 0 70px;
    }

    .footer-grid {
        display: grid;
    }
}
