:root {
    --ink: #11130f;
    --ink-soft: #252922;
    --paper: #f4f1e9;
    --paper-strong: #ebe5d8;
    --white: #ffffff;
    --lime: #dfff62;
    --lime-dark: #b4d938;
    --orange: #ff6a32;
    --muted: #6f746b;
    --line: rgba(17, 19, 15, 0.14);
    --max: 1240px;
    --radius: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    background: var(--lime);
    left: 1rem;
    padding: .7rem 1rem;
    position: fixed;
    top: -100px;
    z-index: 10000;
}

.skip-link:focus {
    top: 1rem;
}

.shell {
    margin: 0 auto;
    max-width: var(--max);
    padding: 0 28px;
}

.eyebrow {
    align-items: center;
    display: flex;
    font-size: .73rem;
    font-weight: 800;
    gap: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow::before {
    background: currentColor;
    border-radius: 50%;
    content: "";
    height: 7px;
    width: 7px;
}

.site-header {
    background: rgba(244, 241, 233, .92);
    border-bottom: 1px solid var(--line);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
}

.nav-wrap {
    align-items: center;
    display: flex;
    height: 82px;
    justify-content: space-between;
}

.brand {
    align-items: center;
    display: flex;
    gap: .75rem;
    text-decoration: none;
}

.brand img {
    height: 48px;
    mix-blend-mode: multiply;
    object-fit: contain;
    width: 92px;
}

.brand-copy {
    line-height: 1.05;
}

.brand-copy strong {
    display: block;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.05rem;
    letter-spacing: .12em;
}

.brand-copy span {
    color: var(--muted);
    font-size: .58rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--ink);
    color: var(--white);
    padding: .8rem 1.1rem;
}

.nav-cta:hover {
    background: var(--orange);
}

.menu-button {
    background: transparent;
    border: 0;
    display: none;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero {
    background: var(--ink);
    color: var(--white);
    min-height: 760px;
    overflow: hidden;
    padding: 150px 0 64px;
    position: relative;
}

.hero::after {
    background: var(--lime);
    content: "";
    height: 220px;
    opacity: .96;
    position: absolute;
    right: -90px;
    top: 115px;
    transform: rotate(12deg);
    width: 220px;
}

.hero-grid {
    align-items: end;
    display: grid;
    gap: 58px;
    grid-template-columns: 1.08fr .92fr;
}

.hero h1 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(3.6rem, 7vw, 7rem);
    font-weight: 700;
    letter-spacing: -.065em;
    line-height: .91;
    margin: 1.5rem 0 2rem;
    max-width: 830px;
}

.hero h1 em {
    color: var(--lime);
    font-style: normal;
}

.hero-intro {
    color: #c9cdc4;
    font-size: 1.14rem;
    max-width: 680px;
}

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

.button {
    align-items: center;
    border: 1px solid transparent;
    display: inline-flex;
    font-size: .79rem;
    font-weight: 850;
    gap: .65rem;
    justify-content: center;
    letter-spacing: .07em;
    min-height: 52px;
    padding: .9rem 1.3rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

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

.button-lime {
    background: var(--lime);
    color: var(--ink);
}

.button-lime:hover {
    background: var(--white);
}

.button-ghost {
    border-color: rgba(255, 255, 255, .35);
    color: var(--white);
}

.button-ghost:hover {
    background: var(--white);
    color: var(--ink);
}

.button-dark {
    background: var(--ink);
    color: var(--white);
}

.button-dark:hover {
    background: var(--orange);
}

.hero-visual {
    margin-bottom: -112px;
    position: relative;
    z-index: 2;
}

.hero-visual img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}

.hero-note {
    background: var(--orange);
    bottom: 24px;
    color: var(--white);
    left: -26px;
    max-width: 270px;
    padding: 1.15rem 1.25rem;
    position: absolute;
}

.hero-note strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: .25rem;
}

.hero-note span {
    font-size: .8rem;
}

.trust-strip {
    border-bottom: 1px solid var(--line);
    padding: 90px 0 34px;
}

.trust-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    border-left: 1px solid var(--line);
    min-height: 95px;
    padding: .4rem 1.5rem;
}

.trust-item:last-child {
    border-right: 1px solid var(--line);
}

.trust-item strong {
    display: block;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.2rem;
    margin-bottom: .35rem;
}

.trust-item span {
    color: var(--muted);
    font-size: .84rem;
}

.section {
    padding: 110px 0;
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.section-head {
    align-items: end;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.15fr .85fr;
    margin-bottom: 54px;
}

.section-head h2 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    letter-spacing: -.055em;
    line-height: .98;
    margin-top: 1rem;
}

.section-head p {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 560px;
}

.section-dark .section-head p {
    color: #b9beb3;
}

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

.service-card {
    background: var(--white);
    display: grid;
    gap: 26px;
    grid-template-columns: .92fr 1.08fr;
    min-height: 400px;
    overflow: hidden;
}

.service-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.service-card-copy {
    align-self: center;
    padding: 2rem 2rem 2rem .25rem;
}

.service-number {
    color: var(--orange);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.service-card h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.8rem;
    letter-spacing: -.035em;
    line-height: 1.08;
    margin: .8rem 0 1rem;
}

.service-card p {
    color: var(--muted);
    font-size: .9rem;
}

.service-list {
    display: grid;
    gap: .35rem;
    list-style: none;
    margin-top: 1.25rem;
}

.service-list li {
    font-size: .8rem;
    font-weight: 700;
}

.service-list li::before {
    color: var(--orange);
    content: "+";
    margin-right: .5rem;
}

.process-grid {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.process-step {
    border-right: 1px solid rgba(255, 255, 255, .15);
    min-height: 250px;
    padding: 1.5rem 1.15rem;
}

.process-step:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.process-step b {
    color: var(--lime);
    font-size: .7rem;
    letter-spacing: .15em;
}

.process-step h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.15rem;
    line-height: 1.08;
    margin: 4.5rem 0 .85rem;
}

.process-step p {
    color: #aeb3a8;
    font-size: .79rem;
}

.operations {
    background: #e9e5da;
}

.operations-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.45fr .55fr;
}

.operation-card {
    background: var(--ink);
    color: var(--white);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
}

.operation-card video {
    background: #050505;
    height: 520px;
    object-fit: cover;
    width: 100%;
}

.operation-card-tall video {
    object-fit: contain;
}

.operation-card > div {
    padding: 1.5rem;
}

.operation-card span {
    color: var(--lime);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.operation-card h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.55rem;
    margin: .45rem 0 .35rem;
}

.operation-card p {
    color: #adb2a7;
    font-size: .82rem;
}

.facility-preview {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.4fr 1fr .7fr;
    margin-top: 16px;
}

.facility-preview img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.text-link {
    border-bottom: 1px solid var(--ink);
    display: inline-flex;
    font-size: .75rem;
    font-weight: 850;
    gap: .5rem;
    letter-spacing: .08em;
    margin-top: 28px;
    padding-bottom: 4px;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link:hover {
    color: var(--orange);
}

.proof-layout {
    align-items: stretch;
    display: grid;
    gap: 20px;
    grid-template-columns: 1.15fr .85fr;
}

.proof-image {
    min-height: 620px;
    object-fit: cover;
    width: 100%;
}

.proof-copy {
    background: var(--lime);
    padding: clamp(2rem, 5vw, 4.5rem);
}

.proof-copy h2 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 4.6rem);
    letter-spacing: -.055em;
    line-height: .96;
    margin: 1.2rem 0 2rem;
}

.proof-copy > p {
    max-width: 520px;
}

.proof-points {
    border-top: 1px solid rgba(17, 19, 15, .25);
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

.proof-points div {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: 32px 1fr;
}

.proof-points b {
    font-size: .75rem;
}

.proof-points strong {
    display: block;
    font-size: .98rem;
    margin-bottom: .1rem;
}

.proof-points span {
    font-size: .78rem;
}

.product-feature {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-feature + .product-feature {
    margin-top: 16px;
}

.product-feature img,
.product-feature > video {
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    width: 100%;
}

.product-feature img {
    padding: 2rem;
    object-fit: contain;
}

.product-feature > video {
    background: #050505;
}

.product-feature-reverse > img {
    order: 2;
}

.product-feature-reverse .product-content {
    order: 1;
}

.product-content {
    align-self: center;
    padding: clamp(2.5rem, 6vw, 6rem);
}

.product-content h2 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    letter-spacing: -.055em;
    line-height: .95;
    margin: 1rem 0 1.5rem;
}

.product-content p {
    color: var(--muted);
    margin-bottom: 1.8rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
}

.product-tags span {
    border: 1px solid var(--line);
    font-size: .7rem;
    font-weight: 800;
    padding: .5rem .65rem;
    text-transform: uppercase;
}

.inquiry {
    background: var(--paper-strong);
}

.inquiry-grid {
    display: grid;
    gap: 70px;
    grid-template-columns: .78fr 1.22fr;
}

.inquiry-copy h2 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(3rem, 5vw, 5.4rem);
    letter-spacing: -.06em;
    line-height: .94;
    margin: 1rem 0 1.8rem;
}

.inquiry-copy p {
    color: var(--muted);
    max-width: 450px;
}

.inquiry-contact {
    border-top: 1px solid var(--line);
    margin-top: 2.3rem;
    padding-top: 1.4rem;
}

.inquiry-contact span {
    color: var(--muted);
    display: block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.inquiry-contact a {
    font-size: 1.05rem;
    font-weight: 750;
}

.inquiry-form {
    background: var(--white);
    padding: clamp(1.5rem, 4vw, 3.3rem);
}

.form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    margin-bottom: .45rem;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    background: #f7f5ef;
    border: 1px solid transparent;
    border-bottom-color: var(--line);
    border-radius: 0;
    color: var(--ink);
    min-height: 50px;
    outline: none;
    padding: .8rem .9rem;
    width: 100%;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange);
}

.form-foot {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 22px;
}

.form-foot p {
    color: var(--muted);
    font-size: .72rem;
    max-width: 330px;
}

.site-footer {
    background: var(--ink);
    color: var(--white);
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    gap: 60px;
    grid-template-columns: 1.35fr .65fr .65fr;
}

.footer-brand h2 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: -.055em;
    line-height: .95;
    max-width: 670px;
}

.footer-col strong {
    color: var(--lime);
    display: block;
    font-size: .7rem;
    letter-spacing: .12em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-col a,
.footer-col span {
    color: #b7bcb2;
    display: block;
    font-size: .85rem;
    margin-bottom: .55rem;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: #8f948b;
    display: flex;
    font-size: .72rem;
    justify-content: space-between;
    margin-top: 70px;
    padding-top: 22px;
}

@media (max-width: 1050px) {
    .nav-links {
        gap: 1.1rem;
    }

    .hero-grid,
    .section-head,
    .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin: 10px 0 -120px;
        max-width: 720px;
    }

    .hero-visual img {
        aspect-ratio: 16 / 10;
    }

    .trust-strip {
        padding-top: 150px;
    }

    .service-grid,
    .proof-layout,
    .product-feature {
        grid-template-columns: 1fr;
    }

    .operations-grid {
        grid-template-columns: 1fr .7fr;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(3) {
        border-right: 0;
    }

    .proof-image {
        min-height: 460px;
    }

    .product-feature img,
    .product-feature > video {
        min-height: 420px;
    }

    .product-feature-reverse > img,
    .product-feature-reverse .product-content {
        order: initial;
    }
}

@media (max-width: 760px) {
    .shell {
        padding: 0 18px;
    }

    .nav-wrap {
        height: 70px;
    }

    .brand img {
        height: 38px;
        width: 72px;
    }

    .brand-copy span {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        align-items: stretch;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 1rem 18px 1.4rem;
        position: absolute;
        right: 0;
        top: 70px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: .75rem 0;
    }

    .nav-cta {
        margin-top: .4rem;
        padding-left: 1rem !important;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 54px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .hero-note {
        bottom: 12px;
        left: 12px;
    }

    .trust-grid,
    .service-grid,
    .process-grid,
    .operations-grid,
    .facility-preview,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:last-child {
        border-bottom: 1px solid var(--line);
        border-left: 0;
        border-right: 0;
        min-height: auto;
        padding: 1rem 0;
    }

    .section {
        padding: 78px 0;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card img {
        aspect-ratio: 16 / 10;
    }

    .service-card-copy {
        padding: .25rem 1.5rem 2rem;
    }

    .process-step,
    .process-step:first-child,
    .process-step:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        border-left: 1px solid rgba(255, 255, 255, .15);
        border-right: 1px solid rgba(255, 255, 255, .15);
        min-height: auto;
    }

    .process-step h3 {
        margin-top: 2rem;
    }

    .operation-card video {
        height: auto;
        max-height: 560px;
    }

    .facility-preview img {
        height: 220px;
    }

    .product-feature img,
    .product-feature > video {
        min-height: 330px;
    }

    .product-feature img {
        padding: 1rem;
    }

    .field-full {
        grid-column: auto;
    }

    .form-foot,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
