:root {
    --green: #32c99a;
    --green-dark: #159b75;
    --green-soft: #daf8ee;
    --ink: #090b0b;
    --ink-soft: #242928;
    --paper: #f5f4f0;
    --white: #fff;
    --grey: #747a78;
    --line: rgba(9, 11, 11, .14);
    --container: min(1180px, calc(100% - 40px));
    --radius: 24px;
    --shadow: 0 24px 80px rgba(5, 16, 13, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    padding: 16px 0;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, padding .25s ease, border-color .25s ease;
}
.site-header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, .94);
    border-color: var(--line);
    backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand-crop { position: relative; display: block; width: 160px; height: 52px; overflow: hidden; }
.brand-crop img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 318px;
    max-width: none;
    transform: translate(-50%, -50%);
}
.primary-navigation { display: flex; align-items: center; gap: 30px; }
.primary-navigation a { color: var(--white); font-size: .88rem; font-weight: 650; text-decoration: none; }
.scrolled .primary-navigation a { color: var(--ink); }
.primary-navigation a:not(.nav-cta) { position: relative; }
.primary-navigation a:not(.nav-cta)::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}
.primary-navigation a:hover::after, .primary-navigation a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.primary-navigation .nav-cta {
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 999px;
}
.scrolled .primary-navigation .nav-cta { border-color: var(--ink); }
.primary-navigation .nav-cta:hover { background: var(--green); border-color: var(--green); color: var(--ink); }
.menu-toggle { display: none; }

.hero {
    position: relative;
    display: grid;
    min-height: min(880px, 100svh);
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}
.hero-media, .hero-wash { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-wash {
    background:
        linear-gradient(90deg, rgba(4, 8, 7, .98) 0%, rgba(4, 8, 7, .88) 38%, rgba(4, 8, 7, .24) 76%, rgba(4, 8, 7, .48) 100%),
        linear-gradient(0deg, rgba(4, 8, 7, .65), transparent 45%);
}
.hero::after {
    position: absolute;
    content: "";
    width: 360px;
    height: 360px;
    top: -120px;
    right: -90px;
    border: 1px solid rgba(50, 201, 154, .45);
    border-radius: 48% 52% 52% 48%;
    transform: rotate(24deg);
}
.hero-content { position: relative; z-index: 2; align-self: end; padding: 150px 0 52px; }
.eyebrow, .kicker {
    margin: 0 0 18px;
    color: var(--green-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.eyebrow { color: var(--green); }
.hero h1 {
    max-width: 790px;
    margin: 0;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(3.5rem, 7.7vw, 7.6rem);
    font-stretch: condensed;
    letter-spacing: -.055em;
    line-height: .86;
    text-transform: uppercase;
}
.hero h1 span { color: var(--green); }
.hero-copy { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.7vw, 1.24rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: var(--ink); }
.button-primary:hover { background: #5bdbb3; }
.text-link { color: var(--white); font-weight: 750; text-underline-offset: 6px; }
.text-link span { color: var(--green); font-size: 1.2em; }
.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 850px;
    margin: 72px 0 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.2);
    list-style: none;
}
.hero-proof li { display: grid; gap: 2px; padding: 18px 24px 0 0; }
.hero-proof strong { font-size: .92rem; }
.hero-proof span { color: rgba(255,255,255,.58); font-size: .8rem; }
.hero-stamp { position: absolute; z-index: 2; right: 4.2vw; bottom: 48px; font-size: .78rem; font-weight: 800; line-height: .96; text-align: right; }
.hero-stamp span { color: var(--green); }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
h2 {
    margin: 0;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(2.75rem, 5.3vw, 5.2rem);
    letter-spacing: -.045em;
    line-height: .96;
    text-transform: uppercase;
}
.intro-copy { max-width: 680px; padding-top: 4px; color: var(--ink-soft); font-size: 1.03rem; }
.intro-copy p { margin: 0 0 20px; }
.intro-copy .lead { color: var(--ink); font-size: 1.32rem; line-height: 1.5; }
.purpose-panel {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 490px;
    margin-top: 80px;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.purpose-image img { width: 100%; height: 100%; object-fit: cover; }
.purpose-copy { display: grid; padding: 48px; }
.purpose-block + .purpose-block { padding-top: 30px; border-top: 1px solid var(--line); }
.purpose-block span { color: var(--green-dark); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.purpose-block p { margin: 14px 0 0; font-size: 1.2rem; font-weight: 650; line-height: 1.45; }

.services { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.services::before {
    position: absolute;
    content: "";
    width: 620px;
    height: 620px;
    right: -250px;
    top: -270px;
    border: 1px solid rgba(50,201,154,.25);
    border-radius: 42% 58% 67% 33%;
    transform: rotate(26deg);
}
.kicker-light { color: var(--green); }
.services-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; }
.services-heading > p { margin: 0 0 4px; color: rgba(255,255,255,.62); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 66px; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    padding: 32px;
    border-right: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    transition: background .25s ease, transform .25s ease;
}
.service-card:hover { z-index: 2; background: #151a18; transform: translateY(-5px); }
.service-number { color: var(--green); font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.service-card h3 { max-width: 260px; margin: auto 0 14px; font-size: 1.55rem; line-height: 1.15; }
.service-card p { min-height: 78px; margin: 0 0 26px; color: rgba(255,255,255,.62); font-size: .9rem; }
.service-tag { font-size: .72rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.service-card-accent { background: var(--green); color: var(--ink); }
.service-card-accent .service-number, .service-card-accent p { color: rgba(9,11,11,.72); }
.service-card-accent:hover { background: #54d8b0; }

.delivery { background: var(--white); }
.delivery-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.delivery-intro { position: sticky; top: 110px; align-self: start; }
.delivery-intro > p:not(.kicker) { margin: 28px 0 0; color: var(--grey); }
.delivery-line { position: relative; height: 2px; margin-top: 50px; background: var(--line); }
.delivery-line span { position: absolute; width: 42%; height: 2px; background: var(--green); }
.layers { display: grid; gap: 22px; }
.layer-card { padding: 46px; background: var(--green-soft); border-radius: var(--radius); }
.layer-card-dark { background: var(--ink); color: var(--white); }
.layer-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--green-dark); font-size: .72rem; font-style: normal; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.layer-card-dark .layer-meta { color: var(--green); }
.layer-card h3 { margin: 80px 0 18px; font-size: clamp(2rem, 3.4vw, 3.3rem); line-height: 1; }
.layer-card p { margin: 0; color: rgba(9,11,11,.7); }
.layer-card-dark p { color: rgba(255,255,255,.68); }
.layer-card .layer-note { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(9,11,11,.15); color: var(--ink); font-weight: 750; }
.layer-card-dark .layer-note { border-color: rgba(255,255,255,.16); color: var(--white); }

.tiers { background: var(--paper); }
.tier-heading { display: grid; grid-template-columns: 1fr .85fr; column-gap: 80px; align-items: end; }
.tier-heading .kicker { grid-column: 1 / -1; }
.tier-heading > p:last-child { margin: 0; color: var(--grey); }
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 66px; }
.tier-card { padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.tier-card-featured { background: var(--ink); color: var(--white); }
.tier-topline { display: flex; align-items: center; justify-content: space-between; color: var(--green-dark); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.tier-card-featured .tier-topline { color: var(--green); }
.tier-topline em { font-style: normal; }
.tier-card h3 { margin: 70px 0 12px; font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 1; }
.tier-summary { max-width: 540px; margin: 0; color: var(--grey); font-size: 1.06rem; }
.tier-card-featured .tier-summary { color: rgba(255,255,255,.62); }
.tier-summary strong { color: var(--green-dark); font-size: 1.4em; }
.tier-card-featured .tier-summary strong { color: var(--green); }
.tier-card ul { display: grid; gap: 0; margin: 36px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.tier-card li { position: relative; padding: 14px 0 14px 28px; border-bottom: 1px solid var(--line); font-size: .9rem; }
.tier-card-featured li { border-color: rgba(255,255,255,.14); }
.tier-card li::before { position: absolute; content: "✓"; left: 0; color: var(--green-dark); font-weight: 900; }
.tier-card-featured li::before { color: var(--green); }
.best-for { margin: 0; font-size: .92rem; }
.best-for span { display: block; margin-bottom: 6px; color: var(--green-dark); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.tier-card-featured .best-for span { color: var(--green); }
.mix-note { display: grid; grid-template-columns: 180px 1fr; gap: 30px; margin-top: 24px; padding: 28px 36px; background: var(--green); border-radius: 18px; }
.mix-note span { font-weight: 900; text-transform: uppercase; }
.mix-note p { margin: 0; }

.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.why-heading { position: sticky; top: 110px; align-self: start; }
.why-list { border-top: 1px solid var(--line); }
.why-list article { display: grid; grid-template-columns: 55px .85fr 1.15fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.why-list span { color: var(--green-dark); font-size: .72rem; font-weight: 850; }
.why-list h3 { margin: 0; font-size: 1.05rem; line-height: 1.35; }
.why-list p { margin: 0; color: var(--grey); font-size: .9rem; }

.contact { position: relative; overflow: hidden; padding: 110px 0; background: var(--ink); color: var(--white); }
.contact::before, .contact::after { position: absolute; content: ""; border: 1px solid rgba(50,201,154,.32); border-radius: 46% 54% 37% 63%; }
.contact::before { width: 420px; height: 420px; right: -160px; top: -200px; transform: rotate(35deg); }
.contact::after { width: 180px; height: 180px; right: 90px; top: -60px; transform: rotate(-18deg); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 110px; }
.contact-copy h2 { max-width: 770px; }
.contact-copy > p:not(.kicker) { max-width: 610px; margin: 28px 0 34px; color: rgba(255,255,255,.62); }
.contact-details { display: grid; align-content: end; gap: 30px; margin: 0; font-style: normal; }
.contact-details div { display: grid; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-details span { margin-bottom: 9px; color: var(--green); font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.contact-details a { width: fit-content; color: var(--white); font-weight: 700; text-underline-offset: 4px; }
.contact-details p { margin: 0; color: rgba(255,255,255,.64); }

.site-footer { padding: 55px 0 28px; background: #020303; color: var(--white); }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.14); }
.brand-footer .brand-crop { width: 165px; }
.footer-top > p { margin: 0; font-size: 1.35rem; font-weight: 850; }
.footer-top > p span { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; color: rgba(255,255,255,.48); font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(255,255,255,.7); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .section { padding: 88px 0; }
    .menu-toggle {
        position: relative;
        z-index: 22;
        display: grid;
        gap: 5px;
        width: 44px;
        height: 44px;
        place-content: center;
        padding: 0;
        border: 1px solid rgba(255,255,255,.55);
        border-radius: 50%;
        background: transparent;
    }
    .scrolled .menu-toggle { border-color: var(--ink); }
    .menu-toggle span:not(.sr-only) { width: 18px; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
    .scrolled .menu-toggle span:not(.sr-only) { background: var(--ink); }
    .menu-open .menu-toggle { border-color: rgba(255,255,255,.5); }
    .menu-open .menu-toggle span:not(.sr-only) { background: var(--white); }
    .menu-open .menu-toggle span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
    .menu-open .menu-toggle span:nth-child(3) { opacity: 0; }
    .menu-open .menu-toggle span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
    .primary-navigation {
        position: fixed;
        inset: 0;
        z-index: 21;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 15px;
        padding: 100px max(28px, calc((100vw - 900px) / 2));
        background: var(--ink);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, visibility .2s ease;
    }
    .primary-navigation.is-open { opacity: 1; visibility: visible; }
    .primary-navigation a, .scrolled .primary-navigation a { color: var(--white); font-size: clamp(1.8rem, 6vw, 3rem); }
    .primary-navigation .nav-cta, .scrolled .primary-navigation .nav-cta { margin-top: 15px; border-color: var(--green); font-size: 1.1rem; }
    .intro-grid, .services-heading, .delivery-grid, .tier-heading, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
    .purpose-panel { grid-template-columns: 1fr; }
    .purpose-image { min-height: 380px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .delivery-intro, .why-heading { position: static; }
    .tier-heading .kicker { grid-column: auto; }
    .why-grid, .contact-grid { gap: 66px; }
}

@media (max-width: 680px) {
    :root { --container: min(100% - 28px, 1180px); --radius: 18px; }
    .section { padding: 72px 0; }
    .site-header { padding: 8px 0; }
    .brand-crop { width: 142px; height: 50px; }
    .brand-crop img { width: 286px; }
    .hero { min-height: 880px; }
    .hero-media img { object-position: 66% center; }
    .hero-wash { background: linear-gradient(90deg, rgba(4,8,7,.97), rgba(4,8,7,.72)), linear-gradient(0deg, rgba(4,8,7,.86), transparent); }
    .hero-content { padding: 132px 0 42px; }
    .hero h1 { font-size: clamp(3.35rem, 18vw, 5.2rem); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .hero-proof { grid-template-columns: 1fr; gap: 0; margin-top: 46px; }
    .hero-proof li { grid-template-columns: 1fr 1fr; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .hero-proof span { text-align: right; }
    .hero-stamp { display: none; }
    .intro-grid { gap: 32px; }
    .intro-copy .lead { font-size: 1.15rem; }
    .purpose-panel { margin-top: 52px; }
    .purpose-image { min-height: 280px; }
    .purpose-copy { padding: 30px 24px; }
    .purpose-block p { font-size: 1.03rem; }
    .service-grid { grid-template-columns: 1fr; margin-top: 45px; }
    .service-card { min-height: 310px; padding: 26px; }
    .layer-card { padding: 30px 24px; }
    .layer-card h3 { margin-top: 55px; }
    .tier-grid { grid-template-columns: 1fr; margin-top: 45px; }
    .tier-card { padding: 30px 24px; }
    .tier-card h3 { margin-top: 50px; }
    .mix-note { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
    .why-list article { grid-template-columns: 38px 1fr; gap: 18px; }
    .why-list p { grid-column: 2; }
    .contact { padding: 80px 0; }
    .contact-grid { gap: 58px; }
    .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-top { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}
