/* =========================================================
   GoodEarth / GoodRock — editorial / technical spec-sheet system
   ========================================================= */
:root {
    --ink: #17140f;          /* near-black */
    --ink-soft: #5c574c;     /* muted body */
    --paper: #f4f1e8;        /* warm paper */
    --paper-2: #eae5d7;      /* panel */
    --white: #fbfaf5;
    --accent: #cf5f16;       /* burnt orange */
    --accent-dark: #a94a0d;
    --green: #33513b;        /* secondary accent */
    --line: #cfc8b6;         /* visible hairline for the ruled look */
    --line-soft: #ded8c8;
    --line-dark: rgba(244, 241, 232, .18);

    --wrap: 1220px;
    --pad: clamp(18px, 4.5vw, 52px);
    --header-h: 74px;
    --ease: cubic-bezier(.22, .7, .28, 1);

    --font-body: "Inter", system-ui, sans-serif;
    --font-display: "Space Grotesk", "Inter", sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--paper); background: var(--ink); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.section-pad { padding: clamp(64px, 8vw, 118px) 0; }

.skip-link {
    position: fixed; z-index: 9999; top: 12px; left: 12px;
    padding: 10px 16px; color: var(--paper); background: var(--ink);
    font-family: var(--font-mono); font-size: 13px; transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

/* ---------- Mono utilities ---------- */
.mono-tag {
    display: inline-block; margin-bottom: 24px;
    font-family: var(--font-mono); font-size: 12px; font-weight: 500;
    letter-spacing: .04em; text-transform: uppercase; color: var(--accent-dark);
}
.mono-tag.light { color: #d9b58a; }

/* Running head: a ruled label bar spanning the column */
.run-head {
    display: flex; justify-content: space-between; gap: 16px;
    padding-bottom: 14px; border-bottom: 1px solid var(--ink);
    font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.run-head--light { border-color: var(--line-dark); color: rgba(244, 241, 232, .82); }
.run-head span:last-child { color: var(--ink-soft); }
.run-head--light span:last-child { color: rgba(244, 241, 232, .55); }

/* ---------- Section header ---------- */
.sec-head { margin-bottom: clamp(40px, 5vw, 62px); }
.sec-meta {
    display: flex; align-items: center; gap: 16px;
    padding-bottom: 16px; margin-bottom: 26px; border-bottom: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
}
.sec-index { color: var(--accent-dark); font-weight: 600; }
.sec-label { color: var(--ink-soft); }
.sec-head--light .sec-meta { border-color: var(--line-dark); }
.sec-head--light .sec-label { color: rgba(244, 241, 232, .6); }

/* ---------- Headlines ---------- */
.display {
    margin: 0; max-width: 18ch;
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(32px, 4.6vw, 60px); line-height: 1.02; letter-spacing: -.02em;
    color: var(--ink);
}
.display em { font-style: normal; color: var(--accent); }
.display.light { color: var(--white); }
.display.light em { color: #e0b483; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink); }

/* ---------- Buttons ---------- */
.button {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px; border: 1px solid transparent;
    font-family: var(--font-mono); font-size: 13px; font-weight: 500;
    letter-spacing: .02em; text-transform: uppercase; cursor: pointer; white-space: nowrap;
    transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.button b { font-weight: 500; transition: transform .25s var(--ease); }
.button:hover b { transform: translateX(4px); }
.button-primary { color: var(--paper); background: var(--ink); }
.button-primary:hover { background: var(--accent); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-outline:hover { color: var(--paper); background: var(--ink); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover { background: var(--white); color: var(--accent-dark); }

.text-link {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 8px;
    font-family: var(--font-mono); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .03em; color: var(--accent-dark);
    border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(5px); }

/* ---------- Tick list (indexed a/b/c) ---------- */
.ticks { margin: 26px 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.ticks li {
    display: flex; align-items: baseline; gap: 16px;
    padding: 13px 0; border-bottom: 1px solid var(--line);
    font-size: 15px;
}
.ticks li span {
    font-family: var(--font-mono); font-size: 11px; color: var(--accent-dark);
    text-transform: uppercase;
}

/* ---------- Framed figures (registration marks) ---------- */
.framed { position: relative; margin: 0; }
.framed img { width: 100%; display: block; }
.framed::before, .framed::after {
    position: absolute; z-index: 2; top: 9px; width: 11px; height: 11px; content: "";
    border-color: var(--paper); border-style: solid; opacity: .95; pointer-events: none;
}
.framed::before { left: 9px; border-width: 1px 0 0 1px; }
.framed::after { right: 9px; border-width: 1px 1px 0 0; }
.framed figcaption {
    display: flex; gap: 14px; padding: 12px 2px 0;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
    text-transform: uppercase; color: var(--ink-soft);
}
.framed figcaption span:first-child { color: var(--accent-dark); }
.framed--light figcaption { color: rgba(244, 241, 232, .6); }
.framed--light figcaption span:first-child { color: #d9b58a; }
.framed--light::before, .framed--light::after { border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
    position: fixed; z-index: 1000; top: 0; left: 0; width: 100%;
    background: rgba(244, 241, 232, .88); backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: transform .4s var(--ease), background .3s ease, border-color .3s ease;
}
.site-header.scrolled { border-color: var(--ink); }
.site-header.is-hidden { transform: translateY(-100%); }
.header-shell {
    display: flex; align-items: center; gap: 22px;
    max-width: 1360px; margin: 0 auto; min-height: var(--header-h); padding: 0 var(--pad);
}
.brand { display: inline-flex; width: 146px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }

.desktop-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-item { position: static; }
.nav-link {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 15px; color: var(--ink);
    font-family: var(--font-mono); font-size: 13px; font-weight: 500;
    letter-spacing: .02em; text-transform: uppercase;
    transition: color .2s ease, background .2s ease;
}
.has-mega > .nav-link::after {
    content: "+"; font-size: 13px; color: var(--accent-dark);
    transition: transform .25s var(--ease);
}
.has-mega:hover > .nav-link::after,
.has-mega.mega-open > .nav-link::after { transform: rotate(45deg); }
.nav-link:hover { color: var(--accent-dark); }
.nav-link.is-active { color: var(--paper); background: var(--ink); }

.header-cta {
    display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto;
    margin-left: 8px; padding: 10px 18px; color: var(--paper); background: var(--ink);
    font-family: var(--font-mono); font-size: 13px; font-weight: 500;
    letter-spacing: .02em; text-transform: uppercase;
    transition: background .22s var(--ease);
}
.header-cta b { transition: transform .25s var(--ease); }
.header-cta:hover { background: var(--accent); }
.header-cta:hover b { transform: translateX(4px); }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-left: auto; padding: 0;
    border: 1px solid var(--ink); background: transparent; cursor: pointer;
}
.menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mega menu ---------- */
.mega-menu {
    position: absolute; left: 0; top: 100%; width: 100%;
    background: var(--white); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .28s var(--ease);
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.mega-open .mega-menu { opacity: 1; visibility: visible; transform: none; }
.mega-inner {
    display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 0;
    max-width: 1360px; margin: 0 auto; padding: 0;
}
.mega-inner-products { grid-template-columns: 2fr 1.15fr; }
.mega-col, .mega-products-wrap { padding: 34px var(--pad); border-right: 1px solid var(--line); }
.mega-label {
    display: block; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase; color: var(--accent-dark);
}
.mega-col a { display: block; padding: 11px 0; }
.mega-col strong { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 500; }
.mega-col small { display: block; margin-top: 2px; color: var(--ink-soft); font-size: 13px; }
.mega-col a:hover strong { color: var(--accent-dark); }

.mega-products { display: grid; grid-template-columns: 1fr 1fr; }
.mega-products a {
    display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px;
    padding: 14px 12px; border: 1px solid transparent; transition: background .18s ease;
}
.mega-products a:hover { background: var(--paper); }
.mega-sym {
    display: grid; place-items: center; width: 42px; height: 42px;
    border: 1px solid var(--line); font-family: var(--font-mono); font-size: 15px; color: var(--accent-dark);
}
.mega-prod-body strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 500; }
.mega-prod-body small { display: block; color: var(--ink-soft); font-size: 12px; }
.mega-idx { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); }
.mega-products a:hover .mega-sym { border-color: var(--accent); color: var(--accent); }

.mega-feature {
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 100%; padding: 26px; overflow: hidden; color: var(--white);
}
.mega-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mega-feature::after { position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(15, 18, 12, .86)); content: ""; }
.mega-feature:hover img { transform: scale(1.05); }
.mega-feature-tag, .mega-feature-title { position: relative; z-index: 1; }
.mega-feature-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #d9b58a; margin-bottom: 10px; }
.mega-feature-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; line-height: 1.25; }
.mega-feature-title b { font-weight: 500; }

/* ---------- Mobile panel ---------- */
.mobile-panel { display: none; }

/* ---------- Hero ---------- */
.hero { padding-top: calc(var(--header-h) + clamp(30px, 5vw, 56px)); padding-bottom: clamp(40px, 6vw, 70px); }
.hero .run-head { margin-bottom: clamp(34px, 5vw, 58px); }
.hero-grid { display: grid; grid-template-columns: 1.55fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: end; }
.hero-main .mono-tag { color: var(--accent-dark); }
.hero-title {
    margin: 0; max-width: 15ch;
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(44px, 7vw, 96px); line-height: .98; letter-spacing: -.03em;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(30px, 4vw, 46px); }

.hero-specs { border-top: 1px solid var(--ink); }
.spec-row {
    display: grid; grid-template-columns: 1fr auto auto; align-items: baseline; gap: 10px;
    padding: 15px 0; border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
}
.spec-row span { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.spec-row b { font-size: 21px; font-weight: 500; color: var(--ink); }
.spec-row i { font-size: 11px; font-style: normal; text-transform: uppercase; color: var(--ink-soft); }

.hero-figure { margin-top: clamp(40px, 6vw, 72px); }
.hero-figure img { height: clamp(280px, 38vw, 460px); object-fit: cover; }

/* ---------- Intro ---------- */
.intro { border-top: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.intro-copy .lead { margin-top: 0; }
.intro-copy p { color: var(--ink-soft); }
.intro-copy .lead { color: var(--ink); }
.intro-media img { height: clamp(320px, 34vw, 440px); object-fit: cover; }

/* ---------- Products: spec cards ---------- */
.products { border-top: 1px solid var(--line); background: var(--paper-2); }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.spec-card {
    display: flex; flex-direction: column; min-height: 260px; padding: 24px;
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white);
    transition: background .25s var(--ease), color .25s var(--ease);
}
.spec-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: auto; }
.spec-sym {
    display: grid; place-items: center; width: 52px; height: 52px;
    border: 1px solid var(--ink); font-family: var(--font-mono); font-size: 20px; color: var(--ink);
}
.spec-idx { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
.spec-card h3 { margin: 26px 0 10px; font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 2vw, 25px); line-height: 1.1; }
.spec-tag { margin: 0; color: var(--ink-soft); font-size: 13px; }
.spec-card-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft);
}
.spec-arw { font-size: 18px; color: var(--ink); transition: transform .25s var(--ease); }
.spec-card:hover { background: var(--ink); color: var(--paper); }
.spec-card:hover .spec-sym { border-color: var(--paper); color: var(--paper); }
.spec-card:hover .spec-idx, .spec-card:hover .spec-tag, .spec-card:hover .spec-card-foot { color: rgba(244, 241, 232, .66); }
.spec-card:hover .spec-card-foot { border-color: var(--line-dark); }
.spec-card:hover .spec-arw { color: var(--accent); transform: translate(4px, -4px); }
.spec-card--cta {
    flex-direction: row; align-items: center; justify-content: space-between; min-height: 0;
    background: var(--ink); color: var(--paper);
}
.spec-card--cta .spec-idx { color: #d9b58a; }
.spec-card--cta .spec-cta-text { font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); font-weight: 500; }
.spec-card--cta .spec-arw { color: var(--accent); }
.spec-card--cta:hover { background: var(--accent); color: var(--white); }
.spec-card--cta:hover .spec-idx, .spec-card--cta:hover .spec-arw { color: var(--white); }

/* ---------- Metrics (inverted data panel) ---------- */
.metrics { padding: clamp(56px, 7vw, 96px) 0; background: var(--ink); color: var(--paper); }
.metrics .run-head { margin-bottom: 8px; }
.metric-table { border-top: 1px solid var(--line-dark); }
.metric-row {
    display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 20px;
    padding: clamp(20px, 3vw, 34px) 0; border-bottom: 1px solid var(--line-dark);
}
.metric-idx { font-family: var(--font-mono); font-size: 12px; color: #d9b58a; }
.metric-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: rgba(244, 241, 232, .72); }
.metric-row strong { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6vw, 76px); line-height: 1; color: var(--white); }

/* ---------- Facility ---------- */
.facility { border-top: 1px solid var(--line); }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.facility-media img { height: clamp(340px, 40vw, 520px); object-fit: cover; }
.facility-copy .lead { margin-top: 0; }
.facility-copy .button { margin-top: 4px; }

/* ---------- Industries ---------- */
.industries { border-top: 1px solid var(--line); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.industry-card { position: relative; margin: 0; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.industry-idx { font-family: var(--font-mono); font-size: 11px; color: var(--accent-dark); }
.industry-image { margin: 16px 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.industry-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.industry-card:hover .industry-image img { transform: scale(1.05); }
.industry-card h3 {
    display: flex; align-items: center; justify-content: space-between; margin: 0;
    font-family: var(--font-display); font-size: 17px; font-weight: 500;
}
.industry-card h3 b { color: var(--accent); transition: transform .25s var(--ease); }
.industry-card:hover h3 b { transform: translate(4px, -4px); }

/* ---------- Callout (dark editorial band) ---------- */
.callout { border-top: 1px solid var(--line); background: var(--green); color: var(--white); }
.callout-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.callout-copy > p { max-width: 46ch; margin: 22px 0 30px; color: rgba(244, 241, 232, .8); }
.callout-copy .display { margin-top: 6px; }
.callout-media img { height: clamp(300px, 34vw, 440px); object-fit: cover; }

/* ---------- Interior hero ---------- */
.interior-hero { padding-top: calc(var(--header-h) + clamp(34px, 5vw, 60px)); padding-bottom: clamp(44px, 6vw, 80px); }
.interior-hero .run-head { margin-bottom: clamp(34px, 5vw, 56px); }
.interior-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.interior-copy .display { font-size: clamp(40px, 5.6vw, 78px); max-width: 14ch; }
.interior-copy > p { max-width: 44ch; margin-top: 24px; color: var(--ink-soft); font-size: clamp(17px, 1.3vw, 20px); }
.interior-visual img { height: clamp(320px, 38vw, 480px); object-fit: cover; }
body[data-page="global"] .interior-visual img { object-fit: contain; padding: 6%; background: var(--white); }

/* ---------- Portfolio ---------- */
.portfolio { border-top: 1px solid var(--line); }
.portfolio-list { display: grid; gap: clamp(24px, 3vw, 40px); }
.portfolio-card { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(24px, 3vw, 48px); align-items: center; padding-top: clamp(24px, 3vw, 40px); border-top: 1px solid var(--line); }
.portfolio-card:first-child { border-top: 0; padding-top: 0; }
.portfolio-card:nth-child(even) .portfolio-media { order: 2; }
.portfolio-media { position: relative; }
.portfolio-media img { height: clamp(280px, 30vw, 380px); object-fit: cover; }
.portfolio-sym {
    position: absolute; z-index: 3; top: 8px; right: 8px;
    display: grid; place-items: center; width: 48px; height: 48px;
    background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: 18px;
}
.portfolio-head { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.portfolio-num { color: var(--accent-dark); }
.portfolio-form { color: var(--ink-soft); }
.portfolio-copy h3 { margin: 0 0 14px; font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3vw, 40px); line-height: 1.04; }
.portfolio-copy > p { margin: 0 0 10px; color: var(--ink-soft); max-width: 46ch; }
.portfolio-copy .spec-tag { margin-bottom: 22px; color: var(--green); font-weight: 500; }

/* ---------- Story / values ---------- */
.story { border-top: 1px solid var(--line); }
.large-copy { max-width: 54ch; margin: 0 0 clamp(44px, 6vw, 74px); font-size: clamp(18px, 1.7vw, 24px); line-height: 1.5; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-grid article { padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid span { font-family: var(--font-mono); font-size: 12px; color: var(--accent-dark); }
.value-grid h3 { margin: 20px 0 12px; font-family: var(--font-display); font-weight: 500; font-size: 23px; }
.value-grid p { margin: 0; color: var(--ink-soft); }

/* ---------- Facilities mosaic ---------- */
.facility-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 32px); align-items: start; }
.facility-mosaic img { height: clamp(280px, 32vw, 420px); object-fit: cover; }
.facility-mosaic figure:nth-child(2) { margin-top: clamp(24px, 4vw, 56px); }

/* ---------- Global ---------- */
.global-section { border-top: 1px solid var(--line); }
.map-wrap { padding: clamp(24px, 4vw, 52px); margin-bottom: 34px; background: var(--white); }
.map-wrap img { width: 100%; }
.location-strip { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.location-strip span { display: flex; align-items: center; gap: 10px; padding: 18px 16px; border-right: 1px solid var(--line); font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: .02em; }
.location-strip span:last-child { border-right: 0; }
.location-strip i { font-style: normal; font-size: 10px; color: var(--accent-dark); }

/* ---------- Commitments ---------- */
.commitments { border-top: 1px solid var(--line); }
.commitment-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.commitment-grid article { padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.commitment-grid article:nth-child(2) { background: var(--ink); color: var(--paper); }
.commitment-grid article:nth-child(2) p { color: rgba(244, 241, 232, .72); }
.commitment-grid article:nth-child(2) span { color: #d9b58a; }
.commitment-grid span { font-family: var(--font-mono); font-size: 12px; color: var(--accent-dark); }
.commitment-grid h3 { margin: 20px 0 12px; font-family: var(--font-display); font-weight: 500; font-size: 24px; }
.commitment-grid p { margin: 0; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-layout { border-top: 1px solid var(--line); }
.contact-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.contact-aside .sec-head { margin-bottom: 34px; }
.contact-details { display: grid; gap: 20px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-details p { margin: 0 0 4px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.contact-details a, .contact-details span { font-size: 18px; }
.contact-details a { color: var(--accent-dark); }
.contact-form { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--ink); background: var(--white); }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 8px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--paper);
    outline: 0; transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; }
.contact-form small { display: block; margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
.form-notice { margin-bottom: 22px; padding: 14px 16px; font-family: var(--font-mono); font-size: 13px; }
.form-notice.success { color: #2f5a37; background: rgba(51, 81, 59, .12); border: 1px solid rgba(51, 81, 59, .3); }
.form-notice.error { color: #8a3316; background: rgba(207, 95, 22, .12); border: 1px solid rgba(207, 95, 22, .35); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--ink); padding: clamp(56px, 7vw, 96px) 0 26px; color: var(--paper); background: var(--ink); }
.footer-top { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-end; justify-content: space-between; padding-bottom: clamp(40px, 5vw, 66px); border-bottom: 1px solid var(--line-dark); }
.footer-top .display { margin-top: 8px; }
.footer-middle { display: grid; grid-template-columns: 1fr 2fr; gap: 46px; padding: clamp(40px, 5vw, 64px) 0; }
.footer-brand { width: 158px; padding: 11px; background: var(--paper); align-self: start; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links div > span { margin-bottom: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: rgba(244, 241, 232, .5); }
.footer-links a { color: rgba(244, 241, 232, .8); transition: color .2s ease; }
.footer-links a:hover { color: #e0b483; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 11px; letter-spacing: .03em; text-transform: uppercase; color: rgba(244, 241, 232, .5); }
.footer-bottom a:hover { color: #e0b483; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .7s var(--ease); }
.js .reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
    :root { --header-h: 64px; }
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: flex; }

    .mobile-panel {
        position: fixed; z-index: 990; inset: 0; display: flex; flex-direction: column;
        padding: calc(var(--header-h) + 24px) var(--pad) 36px;
        background: var(--paper); color: var(--ink);
        opacity: 0; visibility: hidden; transform: translateY(-10px);
        transition: opacity .3s ease, visibility .3s ease, transform .35s var(--ease);
    }
    .mobile-panel.is-open { opacity: 1; visibility: visible; transform: none; }
    .mobile-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); padding-bottom: 14px; border-bottom: 1px solid var(--ink); }
    .mobile-panel nav { display: flex; flex-direction: column; margin-top: 4px; }
    .mobile-panel nav a { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 6vw, 38px); }
    .mobile-panel nav span { font-family: var(--font-mono); font-size: 12px; color: var(--accent-dark); }
    .mobile-cta { margin-top: 28px; align-self: flex-start; }

    .hero-grid, .intro-grid, .facility-grid, .interior-grid, .callout-inner, .contact-inner { grid-template-columns: 1fr; }
    .hero-title { max-width: 100%; }
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid, .value-grid, .commitment-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-card { grid-template-columns: 1fr; }
    .portfolio-card:nth-child(even) .portfolio-media { order: 0; }
    .facility-mosaic { grid-template-columns: 1fr; }
    .facility-mosaic figure:nth-child(2) { margin-top: 0; }
    .location-strip { grid-template-columns: repeat(2, 1fr); }
    .location-strip span:nth-child(odd) { border-right: 1px solid var(--line); }
    .footer-middle { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
    .hero-title { font-size: clamp(40px, 12vw, 60px); }
    .spec-grid { grid-template-columns: 1fr; }
    .industry-grid, .value-grid, .commitment-grid { grid-template-columns: 1fr; }
    .location-strip { grid-template-columns: 1fr; }
    .location-strip span { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .spec-card--cta { flex-direction: column; align-items: flex-start; gap: 14px; }
}

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

/* =========================================================
   Editorial recovery pass
   Keeps the expanded content, removes the spec-sheet aesthetic.
   ========================================================= */
:root {
    --ink: #1b2018;
    --ink-soft: #5f675b;
    --paper: #f7f4ec;
    --paper-2: #ece8dc;
    --white: #fff;
    --accent: #ef7f1a;
    --accent-dark: #c95d0d;
    --green: #29351f;
    --lime: #dadc48;
    --line: rgba(27, 32, 24, .16);
    --line-soft: rgba(27, 32, 24, .1);
    --line-dark: rgba(255, 255, 255, .17);
    --wrap: 1440px;
    --header-h: 74px;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Manrope", "DM Sans", sans-serif;
    --font-mono: "DM Sans", system-ui, sans-serif;
}

body { background: #fbfaf6; font-size: 16px; line-height: 1.55; }
.wrap { max-width: var(--wrap); }
.section-pad { padding: clamp(95px, 11vw, 165px) 0; }
.mono-tag {
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
}
.display {
    max-width: 16ch;
    font-weight: 400;
    font-size: clamp(45px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -.055em;
}
.display em {
    color: var(--accent);
    font-family: Georgia, serif;
    font-weight: 400;
}
.lead { font-size: clamp(18px, 1.6vw, 23px); }

/* Floating, layered navigation */
.site-header {
    top: 14px;
    right: 14px;
    left: 14px;
    width: auto;
    border: 1px solid rgba(27, 32, 24, .12);
    border-radius: 15px;
    background: rgba(251, 250, 246, .95);
    box-shadow: 0 14px 42px rgba(18, 24, 16, .1);
    backdrop-filter: blur(18px);
}
.site-header.scrolled {
    border-color: rgba(27, 32, 24, .14);
    background: rgba(251, 250, 246, .97);
}
.site-header.is-hidden { transform: none; }
.header-shell {
    display: grid;
    grid-template-columns: 205px 1fr auto;
    gap: 18px;
    min-height: 72px;
    padding: 0 9px 0 16px;
}
.brand {
    width: 172px;
    padding: 7px 11px;
    border: 1px solid rgba(27, 32, 24, .08);
    border-radius: 10px;
    background: var(--white);
}
.desktop-nav {
    position: static;
    justify-self: center;
    gap: 0;
    margin: 0;
    padding: 4px;
    border: 1px solid rgba(27, 32, 24, .08);
    border-radius: 99px;
    background: #f0eee6;
}
.nav-link {
    min-height: 40px;
    padding: 0 clamp(13px, 1.35vw, 21px);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .035em;
    text-transform: none;
}
.nav-link:hover { color: var(--ink); background: rgba(255, 255, 255, .85); }
.nav-link.is-active { color: var(--white); background: var(--ink); }
.has-mega > .nav-link::after { content: "↘"; font-size: 10px; color: currentColor; }
.header-cta {
    min-height: 52px;
    margin: 0;
    padding: 0 7px 0 23px;
    border-radius: 99px;
    color: var(--white);
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(239, 127, 26, .2);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
}
.header-cta b {
    display: grid;
    width: 39px;
    height: 39px;
    margin-left: 7px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--lime);
    place-items: center;
}
.header-cta:hover { background: var(--accent); }
.header-cta:hover b { transform: rotate(-35deg); }
body[data-page="home"] .site-header:not(.scrolled) {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(18, 24, 16, .68);
    box-shadow: 0 14px 45px rgba(0, 0, 0, .2);
}
body[data-page="home"] .site-header:not(.scrolled) .desktop-nav {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
}
body[data-page="home"] .site-header:not(.scrolled) .nav-link { color: rgba(255, 255, 255, .9); }
body[data-page="home"] .site-header:not(.scrolled) .nav-link:hover { color: var(--white); background: rgba(255, 255, 255, .12); }

/* Clean, contained mega menu */
.mega-menu {
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}
.mega-inner { max-width: none; min-height: 350px; }
.mega-col, .mega-products-wrap {
    padding: 38px clamp(30px, 4vw, 58px);
    border-color: rgba(255, 255, 255, .13);
}
.mega-label { border-color: rgba(255, 255, 255, .14); color: var(--accent); }
.mega-col strong { font-size: 18px; font-weight: 500; }
.mega-col small, .mega-prod-body small { color: rgba(255, 255, 255, .48); }
.mega-col a:hover strong { color: var(--lime); }
.mega-products a:hover { background: rgba(255, 255, 255, .07); }
.mega-sym { border-color: rgba(255, 255, 255, .2); color: var(--lime); }
.mega-prod-body strong { font-size: 15px; font-weight: 500; }
.mega-idx { color: rgba(255, 255, 255, .35); }
.mega-feature { height: 350px; min-height: 0; }

/* Full-bleed opening: image first, message second */
body[data-page="home"] .hero {
    position: relative;
    min-height: max(760px, 100svh);
    padding: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}
body[data-page="home"] .hero::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 17, 9, .91) 0%, rgba(11, 17, 9, .72) 33%, rgba(11, 17, 9, .2) 70%, rgba(11, 17, 9, .06)),
        linear-gradient(180deg, rgba(8, 12, 7, .18), transparent 38%, rgba(8, 12, 7, .7));
    content: "";
    pointer-events: none;
}
body[data-page="home"] .hero > .wrap {
    position: relative;
    display: flex;
    min-height: max(760px, 100svh);
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 56px;
}
.hero .run-head {
    position: relative;
    z-index: 3;
    width: min(680px, 58vw);
    margin: 0 0 clamp(38px, 6vh, 68px);
    border-color: rgba(255, 255, 255, .48);
    color: var(--white);
    font-size: 10px;
}
.hero .run-head span:last-child { color: rgba(255, 255, 255, .65); }
.hero-grid {
    position: relative;
    z-index: 3;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, .58fr);
    gap: clamp(50px, 8vw, 130px);
    align-items: end;
}
.hero-main .mono-tag { color: var(--orange, #ef7f1a); }
.hero-title {
    max-width: 11ch;
    color: var(--white);
    font-weight: 400;
    font-size: clamp(68px, 8.4vw, 132px);
    line-height: .88;
    letter-spacing: -.07em;
}
.hero-title em {
    color: var(--accent);
    font-family: Georgia, serif;
    font-weight: 400;
}
.hero-actions { gap: 18px; margin-top: 48px; }
.hero-actions .button {
    min-height: 54px;
    padding: 0 25px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
}
.hero-actions .button-primary { color: var(--white); background: var(--accent); }
.hero-actions .button-outline { border-color: rgba(255, 255, 255, .6); color: var(--white); }
.hero-actions .button-outline:hover { color: var(--ink); background: var(--white); }
.hero-specs {
    padding: 13px 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: rgba(14, 20, 12, .72);
    backdrop-filter: blur(14px);
}
.spec-row { border-color: rgba(255, 255, 255, .16); }
.spec-row:last-child { border-bottom: 0; }
.spec-row span, .spec-row i { color: rgba(255, 255, 255, .5); }
.spec-row b { color: var(--lime); font-weight: 500; }
.hero-figure {
    position: absolute;
    z-index: 0;
    inset: 0;
    margin: 0;
}
.hero-figure img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    transform: translateY(-5%);
    animation: imageSettle 1.5s var(--ease) both;
}
.hero-figure figcaption, .hero-figure::before, .hero-figure::after { display: none; }

/* Editorial section headings */
.sec-head {
    display: grid;
    grid-template-columns: minmax(150px, .8fr) minmax(0, 3fr);
    gap: clamp(38px, 6vw, 95px);
    align-items: start;
    margin-bottom: clamp(62px, 8vw, 105px);
}
.sec-meta {
    align-items: center;
    gap: 14px;
    margin: 7px 0 0;
    padding: 0;
    border: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .11em;
}
.sec-index {
    display: grid;
    min-width: 42px;
    height: 24px;
    border: 1px solid currentColor;
    border-radius: 99px;
    color: var(--accent-dark);
    place-items: center;
}
.sec-label { color: var(--ink-soft); }

/* Opening editorial story */
.intro { border: 0; background: #fbfaf6; }
.intro-grid {
    grid-template-columns: minmax(340px, .72fr) minmax(0, 1.35fr);
    gap: 0;
    align-items: stretch;
}
.intro-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(45px, 6vw, 82px);
    color: var(--ink);
    background: var(--accent);
}
.intro-copy p, .intro-copy .lead { color: var(--ink); }
.intro-copy .lead { font-family: var(--font-display); font-size: clamp(23px, 2.25vw, 34px); line-height: 1.25; letter-spacing: -.035em; }
.intro-copy .ticks { border-color: rgba(27, 32, 24, .3); }
.intro-copy .ticks li { border-color: rgba(27, 32, 24, .3); }
.intro-copy .ticks li span { color: var(--ink); }
.intro-copy .text-link { align-self: flex-start; color: var(--ink); }
.intro-media { min-height: 590px; }
.intro-media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.framed::before, .framed::after { display: none; }
.framed figcaption {
    position: absolute;
    right: 22px;
    bottom: 18px;
    left: 22px;
    z-index: 2;
    justify-content: space-between;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .52);
    color: rgba(255, 255, 255, .75);
}
.framed figcaption span:first-child { color: var(--lime); }

/* Product cards become a confident dark portfolio */
.products { border: 0; color: var(--white); background: var(--ink); }
.products .display { color: var(--white); }
.products .sec-label { color: rgba(255, 255, 255, .55); }
.products .sec-index { color: var(--lime); }
.spec-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 0;
    background: rgba(255, 255, 255, .18);
}
.spec-card {
    min-height: 290px;
    border: 0;
    color: var(--white);
    background: var(--ink);
}
.spec-sym { border-color: rgba(255, 255, 255, .3); color: var(--lime); }
.spec-card .spec-idx, .spec-card .spec-tag, .spec-card .spec-card-foot { color: rgba(255, 255, 255, .5); }
.spec-card .spec-card-foot { border-color: rgba(255, 255, 255, .16); }
.spec-card .spec-arw { color: var(--white); }
.spec-card:hover { color: var(--ink); background: var(--lime); }
.spec-card:hover .spec-sym { border-color: var(--ink); color: var(--ink); }
.spec-card:hover .spec-idx,
.spec-card:hover .spec-tag,
.spec-card:hover .spec-card-foot { color: rgba(27, 32, 24, .62); }
.spec-card:hover .spec-card-foot { border-color: rgba(27, 32, 24, .2); }
.spec-card:hover .spec-arw { color: var(--ink); }
.spec-card--cta { color: var(--white); background: var(--accent); }
.spec-card--cta .spec-idx, .spec-card--cta .spec-arw { color: var(--white); }

/* Numbers read at a glance, not like rows in a document */
.metrics { padding: clamp(80px, 10vw, 130px) 0; }
.metrics .run-head { margin-bottom: 50px; }
.metric-table { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-dark); }
.metric-row {
    display: flex;
    min-height: 235px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 28px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
}
.metric-row:last-child { border-right: 0; }
.metric-label { font-size: 10px; line-height: 1.45; }
.metric-row strong { order: -1; color: var(--lime); font-size: clamp(52px, 6vw, 86px); font-weight: 400; letter-spacing: -.07em; }

/* Manufacturing split panel */
.facility { border: 0; background: #fbfaf6; }
.facility > .wrap { max-width: 1120px; }
.facility .sec-head { grid-template-columns: 175px minmax(0, 1fr); }
.facility .display { max-width: 13ch; font-size: clamp(44px, 5.3vw, 74px); }
.facility-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 0;
    height: 620px;
    align-items: stretch;
}
.facility-media { min-height: 0; height: 620px; }
.facility-media img { width: 100%; height: 100%; object-fit: cover; }
.facility-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(45px, 6vw, 82px);
    background: var(--accent);
}
.facility-copy .lead { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.28; letter-spacing: -.03em; }
.facility-copy .ticks { border-color: rgba(27, 32, 24, .3); }
.facility-copy .ticks li { border-color: rgba(27, 32, 24, .3); }
.facility-copy .ticks li span { color: var(--ink); }
.facility-copy .button-primary { align-self: flex-start; border-radius: 99px; color: var(--white); }

/* Image-led applications */
.industries { border: 0; background: var(--paper); }
.industry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    border: 0;
}
.industry-card { padding: 0; border: 0; }
.industry-idx { display: inline-block; margin-bottom: 10px; }
.industry-image { height: clamp(300px, 31vw, 455px); margin: 0; aspect-ratio: auto; }
.industry-card h3 {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
}
.callout { border: 0; background: var(--green); }
.callout > .wrap { max-width: 1120px; }
.callout-inner { grid-template-columns: .92fr 1.08fr; }
.callout-copy .display { max-width: 10.5ch; font-size: clamp(44px, 5.1vw, 72px); }
.callout-media { min-height: 0; height: 560px; }
.callout-media img { width: 100%; height: 100%; object-fit: cover; }

/* Interior pages inherit the cleaner language */
.interior-hero { padding-top: 160px; background: var(--paper); }
.interior-hero .run-head { border-color: var(--line); font-size: 10px; }
.interior-grid { grid-template-columns: 1fr 1fr; }
.interior-copy .display { font-size: clamp(50px, 6vw, 88px); }
.interior-visual img { height: clamp(420px, 46vw, 650px); }
.story, .portfolio, .global-section, .commitments, .contact-layout { border: 0; }

/* Footer */
.site-footer { border: 0; padding-top: clamp(85px, 10vw, 145px); }
.footer-top .display { max-width: 13ch; }
.footer-brand { border-radius: 10px; }

@keyframes imageSettle {
    from { opacity: .6; transform: translateY(-5%) scale(1.05); }
    to { opacity: 1; transform: translateY(-5%) scale(1); }
}

@media (max-width: 1000px) {
    .site-header { top: 10px; right: 10px; left: 10px; }
    .header-shell { grid-template-columns: 1fr auto; min-height: 64px; padding-left: 10px; }
    .brand { width: 158px; }
    .menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: var(--accent);
    }
    .menu-toggle span { background: var(--white); }
    .mobile-panel {
        padding-top: 100px;
        color: var(--white);
        background: var(--ink);
    }
    .mobile-label { border-color: rgba(255, 255, 255, .2); color: var(--accent); }
    .mobile-panel nav a { border-color: rgba(255, 255, 255, .13); }
    .mobile-panel nav span { color: var(--lime); }
    .mobile-cta { color: var(--white); background: var(--accent); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-specs { display: none; }
    .hero-title { max-width: 12ch; }
    .hero .run-head { width: min(620px, 80vw); }
    .sec-head { grid-template-columns: 1fr; gap: 35px; }
    .sec-meta { justify-content: flex-start; }
    .intro-grid, .facility-grid { grid-template-columns: 1fr; }
    .facility-grid { height: auto; }
    .intro-media { min-height: 520px; }
    .facility-media { height: 520px; min-height: 0; }
    .metric-table { grid-template-columns: repeat(2, 1fr); }
    .metric-row:nth-child(2) { border-right: 0; }
    .metric-row:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .site-header { top: 8px; right: 8px; left: 8px; border-radius: 13px; }
    .header-shell { min-height: 60px; padding: 0 7px 0 9px; }
    .brand { width: 146px; }
    body[data-page="home"] .hero { min-height: 900px; }
    body[data-page="home"] .hero > .wrap {
        min-height: 900px;
        justify-content: flex-start;
        padding-top: 145px;
        padding-bottom: 70px;
    }
    body[data-page="home"] .hero::after {
        background:
            linear-gradient(90deg, rgba(11, 17, 9, .8), rgba(11, 17, 9, .2)),
            linear-gradient(180deg, rgba(8, 12, 7, .25), rgba(8, 12, 7, .15) 35%, rgba(8, 12, 7, .9) 86%);
    }
    .hero-figure img { object-position: 64% center; }
    .hero .run-head {
        width: 100%;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 55px;
    }
    .hero-title { font-size: clamp(53px, 15vw, 72px); line-height: .92; }
    .hero-actions { flex-direction: column; align-items: flex-start; margin-top: 52px; }
    .hero-actions .button { width: fit-content; }
    .section-pad { padding-block: 90px; }
    .display { font-size: clamp(42px, 13vw, 64px); }
    .intro-media { min-height: 360px; }
    .facility-media { height: 360px; min-height: 0; }
    .intro-copy, .facility-copy { padding: 48px 28px; }
    .spec-grid { grid-template-columns: 1fr; }
    .metric-table { grid-template-columns: 1fr 1fr; }
    .metric-row { min-height: 190px; padding: 20px; }
    .metric-row strong { font-size: 52px; }
    .industry-grid { grid-template-columns: 1fr; }
    .industry-image { height: 460px; }
    .callout-inner { grid-template-columns: 1fr; }
    .callout-media { height: 380px; min-height: 0; }
    .interior-hero { padding-top: 130px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-figure img { transform: none !important; }
}

/* =========================================================
   2026 concept — Precision shaped by nature
   The homepage is intentionally independent from the legacy
   editorial/spec-sheet composition above.
   ========================================================= */
:root {
    --nova-ink: #172019;
    --nova-ink-2: #213027;
    --nova-paper: #f4f1e8;
    --nova-paper-bright: #fbfaf5;
    --nova-orange: #e76f20;
    --nova-orange-deep: #ba4d11;
    --nova-lime: #d3df6c;
    --nova-sage: #b9c3a3;
    --nova-line: rgba(23, 32, 25, .16);
    --nova-line-light: rgba(255, 255, 255, .16);
    --nova-radius: 22px;
    --nova-ease: cubic-bezier(.2, .75, .25, 1);
}

body {
    font-family: "DM Sans", system-ui, sans-serif;
}

body[data-page="home"] {
    color: var(--nova-ink);
    background: var(--nova-paper);
}

body[data-page="home"] main {
    overflow: clip;
}

.nova-shell {
    width: min(100%, 1380px);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 58px);
}

.nova-micro,
.nova-section-id,
.nova-kicker,
.nova-spec-label {
    font-family: "DM Mono", ui-monospace, monospace;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nova-section-head {
    display: grid;
    grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
    gap: clamp(35px, 7vw, 115px);
    align-items: start;
    margin-bottom: clamp(58px, 7vw, 98px);
}

.nova-section-head > div {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, .55fr);
    gap: clamp(35px, 7vw, 100px);
    align-items: end;
}

.nova-section-id {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-top: 13px;
    color: rgba(23, 32, 25, .58);
    border-top: 1px solid currentColor;
}

.nova-section-head h2 {
    max-width: 12ch;
    margin: 0;
    font-family: "Syne", sans-serif;
    font-size: clamp(46px, 5.5vw, 80px);
    font-weight: 600;
    line-height: .97;
    letter-spacing: -.055em;
}

.nova-section-head h2 em {
    color: var(--nova-orange);
    font-style: normal;
}

.nova-section-head p {
    max-width: 39ch;
    margin: 0 0 7px;
    color: rgba(23, 32, 25, .66);
    font-size: 16px;
    line-height: 1.65;
}

.nova-section-head-light {
    color: var(--nova-paper-bright);
}

.nova-section-head-light .nova-section-id,
.nova-section-head-light p {
    color: rgba(255, 255, 255, .58);
}

.nova-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 8px 0 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition: color .25s ease, background .25s ease, transform .25s var(--nova-ease);
}

.nova-button > span {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    place-items: center;
    transition: transform .3s var(--nova-ease);
}

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

.nova-button:hover > span {
    transform: rotate(35deg);
}

.nova-button-dark {
    color: #fff;
    background: var(--nova-ink);
}

.nova-button-dark > span {
    color: var(--nova-ink);
    background: var(--nova-lime);
}

.nova-button-orange {
    color: #fff;
    background: var(--nova-orange);
}

.nova-button-orange > span {
    color: var(--nova-ink);
    background: var(--nova-lime);
}

.nova-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 600;
}

.nova-text-link span {
    transition: transform .25s var(--nova-ease);
}

.nova-text-link:hover span {
    transform: translateX(5px);
}

.nova-text-link-light {
    color: var(--nova-paper-bright);
}

/* Architectural navigation */
.site-header,
.site-header.scrolled,
body[data-page="home"] .site-header:not(.scrolled) {
    top: 14px;
    right: auto;
    left: 50%;
    width: min(calc(100% - 28px), 1280px);
    overflow: visible;
    border: 0;
    border-radius: 19px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: translateX(-50%);
}

.site-header.is-hidden,
body[data-page="home"] .site-header.is-hidden {
    transform: translateX(-50%);
}

.header-shell {
    display: grid;
    grid-template-columns: 185px minmax(0, 1fr) auto;
    gap: 16px;
    min-height: 70px;
    padding: 6px 7px 6px 17px;
    border: 1px solid rgba(23, 32, 25, .12);
    border-radius: 19px;
    background: rgba(251, 250, 245, .95);
    box-shadow: 0 18px 55px rgba(23, 32, 25, .11);
    backdrop-filter: blur(20px);
}

.site-header.scrolled .header-shell {
    background: rgba(251, 250, 245, .985);
    box-shadow: 0 12px 38px rgba(23, 32, 25, .14);
}

.brand {
    width: 154px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.desktop-nav,
body[data-page="home"] .site-header:not(.scrolled) .desktop-nav {
    position: static;
    justify-self: center;
    gap: 2px;
    margin: 0;
    padding: 4px;
    border: 1px solid rgba(23, 32, 25, .08);
    border-radius: 13px;
    background: #eeebe3;
}

.nav-link,
body[data-page="home"] .site-header:not(.scrolled) .nav-link {
    min-height: 40px;
    padding: 0 clamp(12px, 1.45vw, 20px);
    border-radius: 9px;
    color: var(--nova-ink);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.nav-link:hover,
body[data-page="home"] .site-header:not(.scrolled) .nav-link:hover {
    color: var(--nova-ink);
    background: #fff;
}

.nav-link.is-active,
body[data-page="home"] .site-header:not(.scrolled) .nav-link.is-active {
    color: #fff;
    background: var(--nova-ink);
}

.has-mega > .nav-link::after {
    content: "+";
    font-family: "DM Mono", monospace;
    font-size: 12px;
}

.header-cta {
    min-height: 56px;
    margin: 0;
    padding: 0 7px 0 22px;
    border-radius: 13px;
    color: #fff;
    background: var(--nova-orange);
    box-shadow: none;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.header-cta b {
    display: grid;
    width: 41px;
    height: 41px;
    margin-left: 4px;
    border-radius: 10px;
    color: var(--nova-ink);
    background: var(--nova-lime);
    place-items: center;
}

.header-cta:hover {
    background: var(--nova-orange-deep);
}

.mega-menu {
    position: fixed;
    top: calc(100% - 1px);
    right: auto;
    left: 50%;
    width: min(1120px, calc(100vw - 48px));
    padding-top: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
    transform: translate(-50%, 12px);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.mega-open .mega-menu {
    transform: translate(-50%, 0);
}

.mega-inner {
    min-height: 380px;
    max-width: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    background: var(--nova-ink);
    box-shadow: 0 34px 90px rgba(10, 15, 11, .3);
}

.mega-col,
.mega-products-wrap {
    padding: 42px clamp(28px, 4vw, 58px);
    border-color: rgba(255, 255, 255, .12);
}

.mega-label {
    border-color: rgba(255, 255, 255, .15);
    color: var(--nova-lime);
    font-family: "DM Mono", monospace;
}

.mega-col strong,
.mega-prod-body strong {
    font-family: "Syne", sans-serif;
}

.mega-col a:hover strong {
    color: var(--nova-orange);
}

.mega-products a {
    border-radius: 10px;
}

.mega-products a:hover {
    background: rgba(255, 255, 255, .08);
}

.mega-sym {
    border-radius: 50%;
    border-color: rgba(255, 255, 255, .22);
    color: var(--nova-lime);
}

.mega-feature {
    height: 380px;
}

/* Hero — message and process occupy equal visual authority */
.nova-hero {
    position: relative;
    min-height: 100svh;
    padding-top: 116px;
    color: var(--nova-ink);
    background:
        radial-gradient(circle at 8% 22%, rgba(231, 111, 32, .11), transparent 27%),
        linear-gradient(90deg, rgba(23, 32, 25, .045) 1px, transparent 1px),
        var(--nova-paper);
    background-size: auto, 11.11% 100%, auto;
}

.nova-hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 1px);
    width: 1px;
    background: rgba(23, 32, 25, .08);
    content: "";
}

.nova-hero-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: calc(100svh - 235px);
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, .78fr);
    gap: clamp(34px, 5vw, 78px);
    align-items: stretch;
}

.nova-hero-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(30px, 6vh, 70px) 0 clamp(45px, 7vh, 82px);
}

.nova-kicker {
    display: flex;
    gap: 24px;
    color: rgba(23, 32, 25, .55);
}

.nova-kicker span:first-child {
    color: var(--nova-orange-deep);
}

.nova-hero-title {
    max-width: 9.6ch;
    margin: auto 0;
    padding: 40px 0;
    font-family: "Syne", sans-serif;
    font-size: clamp(65px, 7.5vw, 118px);
    font-weight: 600;
    line-height: .84;
    letter-spacing: -.075em;
}

.nova-line {
    display: block;
    overflow: hidden;
}

.nova-line > span {
    display: block;
    transform: translateY(112%);
    animation: novaLineIn .9s var(--nova-ease) forwards;
}

.nova-line:nth-child(2) > span {
    animation-delay: .08s;
}

.nova-line:nth-child(3) > span {
    animation-delay: .16s;
}

.nova-line-accent {
    color: var(--nova-orange);
}

.nova-hero-intro {
    display: grid;
    grid-template-columns: minmax(250px, 420px) auto;
    gap: 35px;
    align-items: end;
}

.nova-hero-intro > p {
    margin: 0;
    color: rgba(23, 32, 25, .72);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
}

.nova-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
}

.nova-hero-visual {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--nova-radius);
    background: var(--nova-ink);
    contain: paint;
}

.nova-hero-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.045);
    animation: novaImageSettle 1.5s var(--nova-ease) forwards;
}

.nova-image-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 10, .05), transparent 42%, rgba(10, 14, 10, .66)),
        linear-gradient(100deg, rgba(231, 111, 32, .16), transparent 45%);
}

.nova-hero-visual figcaption {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .42);
    color: rgba(255, 255, 255, .7);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nova-spec-float {
    position: absolute;
    top: clamp(20px, 3vw, 36px);
    right: clamp(20px, 3vw, 36px);
    width: min(245px, calc(100% - 40px));
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    color: #fff;
    background: rgba(23, 32, 25, .72);
    backdrop-filter: blur(15px);
}

.nova-spec-label {
    display: block;
    margin-bottom: 22px;
    color: var(--nova-lime);
}

.nova-spec-float > strong {
    display: block;
    margin-bottom: 18px;
    font-family: "Syne", sans-serif;
    font-size: 68px;
    font-weight: 600;
    line-height: .8;
    letter-spacing: -.08em;
}

.nova-spec-float dl {
    margin: 0;
}

.nova-spec-float dl div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 10px;
}

.nova-spec-float dt {
    color: rgba(255, 255, 255, .48);
}

.nova-spec-float dd {
    margin: 0;
}

.nova-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, .7fr)) minmax(260px, 1.2fr);
    min-height: 118px;
    margin-top: 18px;
    border-top: 1px solid var(--nova-line);
    border-bottom: 1px solid var(--nova-line);
}

.nova-proof-row > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 20px clamp(16px, 2vw, 28px);
    border-right: 1px solid var(--nova-line);
}

.nova-proof-row > div:first-child {
    padding-left: 0;
}

.nova-proof-row > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.nova-proof-row strong {
    font-family: "Syne", sans-serif;
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 600;
    letter-spacing: -.06em;
}

.nova-proof-row span {
    max-width: 13ch;
    color: rgba(23, 32, 25, .58);
    font-size: 11px;
    line-height: 1.4;
}

.nova-proof-row .nova-proof-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    padding-left: clamp(25px, 4vw, 58px);
}

.nova-proof-note span {
    max-width: none;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nova-proof-note b {
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

/* Interactive material console */
.material-lab {
    padding: clamp(120px, 12vw, 185px) 0;
    color: #fff;
    background: var(--nova-ink);
}

.material-console {
    display: grid;
    grid-template-columns: minmax(230px, .28fr) minmax(0, 1fr);
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--nova-line-light);
    border-radius: var(--nova-radius);
}

.material-selector {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    border-right: 1px solid var(--nova-line-light);
}

.material-tab {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 18px 20px;
    border: 0;
    border-bottom: 1px solid var(--nova-line-light);
    color: rgba(255, 255, 255, .48);
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: color .25s ease, background .25s ease;
}

.material-tab:last-child {
    border-bottom: 0;
}

.material-tab > span {
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.material-tab strong {
    font-size: 13px;
    font-weight: 500;
}

.material-tab i {
    font-style: normal;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s ease, transform .25s ease;
}

.material-tab:hover,
.material-tab.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.material-tab.is-active {
    box-shadow: inset 3px 0 0 var(--nova-orange);
}

.material-tab.is-active i {
    opacity: 1;
    transform: none;
}

.material-stage {
    display: grid;
    grid-template-columns: minmax(230px, .7fr) minmax(280px, 1.05fr) minmax(210px, .62fr);
    min-width: 0;
}

.material-symbol-wrap {
    position: relative;
    display: grid;
    overflow: hidden;
    border-right: 1px solid var(--nova-line-light);
    place-items: center;
}

.material-number {
    position: absolute;
    top: 24px;
    left: 24px;
    color: rgba(255, 255, 255, .42);
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.material-symbol {
    position: relative;
    z-index: 2;
    font-family: "Syne", sans-serif;
    font-size: clamp(100px, 13vw, 180px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.1em;
}

.material-orbit {
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    border: 1px solid rgba(211, 223, 108, .35);
    border-radius: 50%;
    animation: novaOrbit 12s linear infinite;
}

.material-orbit::before,
.material-orbit::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.material-orbit::before {
    top: -6px;
    left: 48%;
    width: 11px;
    height: 11px;
    background: var(--nova-lime);
}

.material-orbit::after {
    inset: 17%;
    border: 1px dashed rgba(255, 255, 255, .16);
}

.material-detail {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4.5vw, 65px);
}

.material-detail .nova-micro {
    margin-bottom: 22px;
    color: var(--nova-lime);
}

.material-detail h3 {
    margin: 0 0 25px;
    font-family: "Syne", sans-serif;
    font-size: clamp(32px, 3.4vw, 51px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.045em;
}

.material-detail > p {
    max-width: 43ch;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.65;
}

.material-detail dl {
    margin: 0 0 34px;
}

.material-detail dl > div {
    padding: 13px 0;
    border-top: 1px solid var(--nova-line-light);
}

.material-detail dt {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .38);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.material-detail dd {
    margin: 0;
    font-size: 12px;
}

.material-detail > a {
    display: inline-flex;
    align-self: flex-start;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--nova-lime);
    color: var(--nova-lime);
    font-size: 12px;
    font-weight: 600;
}

.material-image {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #29332b;
}

.material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .22s ease, transform .7s var(--nova-ease);
}

.material-image.is-changing img,
.material-stage.is-changing .material-image img {
    opacity: .2;
    transform: scale(1.08);
}

.material-image > span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding-top: 9px;
    border-top: 1px solid rgba(255, 255, 255, .4);
    color: rgba(255, 255, 255, .68);
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* A perfectly horizontal process rail */
.process-story {
    padding: clamp(120px, 12vw, 180px) 0;
    background: var(--nova-paper-bright);
}

.process-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 0 clamp(75px, 9vw, 125px);
    padding: 0;
    list-style: none;
}

.process-rail::before {
    position: absolute;
    z-index: 0;
    top: 27px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--nova-orange);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s var(--nova-ease);
}

.process-rail.in-view::before {
    transform: scaleX(1);
}

.process-rail li {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.process-rail li::before {
    display: block;
    width: 13px;
    height: 13px;
    margin: 21px 0 27px;
    border: 4px solid var(--nova-paper-bright);
    border-radius: 50%;
    outline: 2px solid var(--nova-orange);
    background: var(--nova-orange);
    content: "";
}

.process-rail span {
    color: rgba(23, 32, 25, .45);
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.process-rail strong,
.process-rail small {
    display: block;
}

.process-rail strong {
    margin-bottom: 5px;
    font-family: "Syne", sans-serif;
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 600;
}

.process-rail small {
    color: rgba(23, 32, 25, .52);
    font-size: 11px;
}

.process-window {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
    min-height: 490px;
    overflow: hidden;
    border-radius: var(--nova-radius);
    background: var(--nova-ink);
}

.process-image {
    position: relative;
    min-height: 490px;
    margin: 0;
    overflow: hidden;
}

.process-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 15, 11, .72));
    content: "";
}

.process-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-image figcaption {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    padding-top: 11px;
    border-top: 1px solid rgba(255, 255, 255, .45);
    color: rgba(255, 255, 255, .7);
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.process-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 4vw, 52px);
    color: #fff;
}

.process-copy .nova-micro {
    margin-bottom: 18px;
    color: var(--nova-lime);
}

.process-copy h3 {
    margin: 0 0 18px;
    font-family: "Syne", sans-serif;
    font-size: clamp(28px, 2.8vw, 39px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.process-copy > p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 26px;
    border: 0;
}

.process-tags span {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid var(--nova-line-light);
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
}

.process-copy .nova-button {
    align-self: flex-start;
}

/* Global proof — compact, not another oversized statement section */
.global-signal {
    color: #fff;
    background: var(--nova-orange);
}

.global-signal-grid {
    display: grid;
    min-height: 500px;
    grid-template-columns: minmax(300px, .9fr) minmax(390px, 1.3fr) minmax(210px, .55fr);
    align-items: stretch;
}

.global-signal-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(60px, 7vw, 92px) clamp(30px, 4vw, 58px) clamp(60px, 7vw, 92px) 0;
}

.global-signal-copy .nova-section-id {
    align-self: flex-start;
    color: rgba(255, 255, 255, .7);
}

.global-signal-copy h2 {
    max-width: 10ch;
    margin: 30px 0;
    font-family: "Syne", sans-serif;
    font-size: clamp(43px, 5vw, 68px);
    font-weight: 600;
    line-height: .96;
    letter-spacing: -.055em;
}

.global-signal-copy .nova-text-link {
    align-self: flex-start;
}

.global-map-field {
    position: relative;
    display: grid;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, .23);
    border-left: 1px solid rgba(255, 255, 255, .23);
    place-items: center;
}

.global-map-field img {
    width: 88%;
    opacity: .78;
    filter: grayscale(1) brightness(0) invert(1);
}

.map-pulse {
    position: absolute;
    width: 11px;
    height: 11px;
    border: 2px solid var(--nova-ink);
    border-radius: 50%;
    background: var(--nova-lime);
    box-shadow: 0 0 0 0 rgba(211, 223, 108, .6);
    animation: novaPulse 2.6s ease-out infinite;
}

.map-pulse-one {
    top: 38%;
    left: 27%;
}

.map-pulse-two {
    top: 52%;
    left: 55%;
    animation-delay: .8s;
}

.map-pulse-three {
    top: 64%;
    left: 76%;
    animation-delay: 1.5s;
}

.global-stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(50px, 5vw, 72px) 0 clamp(60px, 7vw, 92px) clamp(30px, 4vw, 58px);
}

.global-stat strong {
    font-family: "Syne", sans-serif;
    font-size: clamp(70px, 8vw, 112px);
    font-weight: 600;
    line-height: .85;
    letter-spacing: -.08em;
}

.global-stat span {
    max-width: 15ch;
    margin-top: 20px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
}

/* Application mosaic */
.application-field {
    padding: clamp(120px, 12vw, 180px) 0;
    background: var(--nova-paper);
}

.application-grid {
    display: grid;
    min-height: 820px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1.1fr .9fr;
    gap: 14px;
}

.application-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    background: var(--nova-ink);
}

.application-card-1 {
    grid-column: span 5;
}

.application-card-2 {
    grid-column: span 3;
}

.application-card-3 {
    grid-column: span 4;
}

.application-card-4 {
    grid-column: span 3;
}

.application-card-5 {
    grid-column: span 5;
}

.application-card-6 {
    grid-column: span 4;
}

.application-card img,
.application-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.application-card img {
    object-fit: cover;
    transition: transform .8s var(--nova-ease), filter .5s ease;
}

.application-shade {
    background: linear-gradient(180deg, rgba(10, 15, 11, .04), rgba(10, 15, 11, .78));
}

.application-card > span,
.application-card h3,
.application-card b {
    position: absolute;
    z-index: 2;
}

.application-card > span {
    top: 20px;
    left: 20px;
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.application-card h3 {
    right: 60px;
    bottom: 19px;
    left: 20px;
    margin: 0;
    font-family: "Syne", sans-serif;
    font-size: clamp(20px, 2.3vw, 32px);
    font-weight: 600;
    line-height: 1.05;
}

.application-card b {
    right: 20px;
    bottom: 17px;
    display: grid;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--nova-ink);
    background: var(--nova-lime);
    font-weight: 400;
    place-items: center;
    transform: translateY(55px);
    transition: transform .35s var(--nova-ease);
}

.application-card:hover img {
    filter: saturate(1.12);
    transform: scale(1.055);
}

.application-card:hover b {
    transform: none;
}

/* Resource story built as a system diagram, not an image band */
.resource-loop {
    padding: clamp(110px, 11vw, 165px) 0;
    color: var(--nova-ink);
    background: var(--nova-sage);
}

.resource-loop-grid {
    display: grid;
    grid-template-columns: minmax(410px, .95fr) minmax(360px, .75fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: center;
}

.loop-visual {
    position: relative;
    display: grid;
    width: min(100%, 620px);
    aspect-ratio: 1;
    place-items: center;
}

.loop-ring {
    position: absolute;
    border-radius: 50%;
}

.loop-ring-one {
    inset: 5%;
    border: 1px solid rgba(23, 32, 25, .38);
    animation: novaOrbit 24s linear infinite;
}

.loop-ring-one::before,
.loop-ring-one::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.loop-ring-one::before {
    top: 8%;
    left: 10%;
    width: 33px;
    height: 33px;
    background: var(--nova-orange);
}

.loop-ring-one::after {
    right: 4%;
    bottom: 22%;
    width: 16px;
    height: 16px;
    background: var(--nova-lime);
}

.loop-ring-two {
    inset: 19%;
    border: 1px dashed rgba(23, 32, 25, .42);
    animation: novaOrbit 18s linear infinite reverse;
}

.loop-core {
    display: grid;
    width: 42%;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #fff;
    background: var(--nova-ink);
    font-family: "Syne", sans-serif;
    font-size: clamp(21px, 3vw, 38px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.045em;
    text-align: center;
    place-items: center;
}

.loop-label {
    position: absolute;
    padding: 8px 13px;
    border: 1px solid rgba(23, 32, 25, .25);
    border-radius: 999px;
    background: rgba(244, 241, 232, .6);
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.loop-label-a {
    top: 3%;
    left: 48%;
}

.loop-label-b {
    right: 0;
    bottom: 32%;
}

.loop-label-c {
    bottom: 12%;
    left: 4%;
}

.resource-copy .nova-section-id {
    align-self: flex-start;
    margin-bottom: clamp(45px, 6vw, 75px);
}

.resource-copy h2 {
    margin: 0 0 30px;
    font-family: "Syne", sans-serif;
    font-size: clamp(58px, 7vw, 96px);
    font-weight: 600;
    line-height: .86;
    letter-spacing: -.07em;
}

.resource-copy h2 em {
    color: var(--nova-orange-deep);
    font-style: normal;
}

.resource-copy > p {
    max-width: 47ch;
    margin: 0 0 35px;
    font-size: 16px;
    line-height: 1.65;
}

.resource-copy ul {
    margin: 0 0 38px;
    padding: 0;
    border-top: 1px solid rgba(23, 32, 25, .25);
    list-style: none;
}

.resource-copy li {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(23, 32, 25, .25);
    font-size: 12px;
}

.resource-copy li span {
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

/* Closing invitation */
.nova-closing {
    padding: clamp(90px, 10vw, 145px) 0;
    color: #fff;
    background: var(--nova-ink);
}

.nova-closing .nova-micro {
    color: var(--nova-lime);
}

.nova-closing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: end;
    margin-top: 35px;
    padding-top: 45px;
    border-top: 1px solid var(--nova-line-light);
}

.nova-closing h2 {
    max-width: 12ch;
    margin: 0;
    font-family: "Syne", sans-serif;
    font-size: clamp(58px, 7.4vw, 108px);
    font-weight: 600;
    line-height: .88;
    letter-spacing: -.07em;
}

.nova-closing-row > a {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 600;
}

.nova-closing-row > a b {
    display: grid;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    color: var(--nova-ink);
    background: var(--nova-orange);
    font-size: 24px;
    font-weight: 400;
    place-items: center;
    transition: transform .35s var(--nova-ease), background .25s ease;
}

.nova-closing-row > a:hover b {
    background: var(--nova-lime);
    transform: rotate(35deg);
}

body[data-page="home"] .site-footer {
    padding-top: 0;
    border: 0;
    background: #101711;
}

body[data-page="home"] .footer-top {
    display: none;
}

body[data-page="home"] .footer-middle {
    padding: clamp(58px, 7vw, 90px) 0;
    border-top: 1px solid var(--nova-line-light);
}

body[data-page="home"] .footer-brand {
    border-radius: 12px;
}

body[data-page="home"] .footer-links div > span,
body[data-page="home"] .footer-bottom {
    font-family: "DM Mono", monospace;
}

body[data-page="home"] .footer-links a:hover,
body[data-page="home"] .footer-bottom a:hover {
    color: var(--nova-lime);
}

/* Motion */
.js .nova-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s var(--nova-ease), transform .8s var(--nova-ease);
}

.js .nova-reveal.in-view {
    opacity: 1;
    transform: none;
}

@keyframes novaLineIn {
    to { transform: translateY(0); }
}

@keyframes novaImageSettle {
    from { opacity: 0; transform: scale(1.12); }
    to { opacity: 1; transform: scale(1.045); }
}

@keyframes novaOrbit {
    to { transform: rotate(360deg); }
}

@keyframes novaPulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 223, 108, .6); }
    70%, 100% { box-shadow: 0 0 0 20px rgba(211, 223, 108, 0); }
}

@media (max-width: 1120px) {
    .nova-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .72fr);
    }

    .nova-hero-intro {
        grid-template-columns: 1fr;
    }

    .nova-actions {
        justify-content: flex-start;
    }

    .material-stage {
        grid-template-columns: minmax(205px, .65fr) minmax(280px, 1fr);
    }

    .material-image {
        display: none;
    }

    .global-signal-grid {
        grid-template-columns: minmax(280px, .85fr) minmax(360px, 1.2fr);
    }

    .global-stat {
        display: none;
    }
}

@media (max-width: 1000px) {
    .site-header,
    .site-header.scrolled,
    body[data-page="home"] .site-header:not(.scrolled) {
        top: 10px;
        right: auto;
        left: 50%;
        width: calc(100% - 20px);
        transform: translateX(-50%);
    }

    .header-shell {
        grid-template-columns: 1fr auto;
        min-height: 64px;
        padding: 6px 7px 6px 15px;
    }

    .brand {
        width: 151px;
    }

    .menu-toggle {
        display: flex;
        width: 50px;
        height: 50px;
        margin: 0;
        border: 0;
        border-radius: 12px;
        background: var(--nova-orange);
    }

    .menu-toggle span {
        background: #fff;
    }

    .mobile-panel {
        padding: 100px 28px 35px;
        color: #fff;
        background: var(--nova-ink);
    }

    .mobile-label {
        color: var(--nova-lime);
    }

    .mobile-panel nav span {
        color: var(--nova-orange);
    }

    .mobile-cta {
        border-radius: 999px;
        background: var(--nova-orange);
    }

    .nova-hero {
        padding-top: 98px;
    }

    .nova-hero::before {
        display: none;
    }

    .nova-hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nova-hero-copy {
        min-height: 670px;
        padding: 45px 0 55px;
    }

    .nova-hero-title {
        max-width: 10ch;
        font-size: clamp(72px, 12vw, 108px);
    }

    .nova-hero-visual {
        min-height: 680px;
    }

    .nova-proof-row {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 20px;
    }

    .nova-proof-note {
        display: none !important;
    }

    .nova-section-head {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .nova-section-head .nova-section-id {
        width: 190px;
    }

    .material-console {
        grid-template-columns: 1fr;
    }

    .material-selector {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: auto;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid var(--nova-line-light);
    }

    .material-tab {
        min-width: 145px;
        grid-template-columns: 1fr;
        border-right: 1px solid var(--nova-line-light);
        border-bottom: 0;
    }

    .material-tab.is-active {
        box-shadow: inset 0 -3px 0 var(--nova-orange);
    }

    .material-tab i {
        display: none;
    }

    .process-window {
        grid-template-columns: 1fr;
    }

    .process-image {
        min-height: 420px;
    }

    .global-signal-grid {
        grid-template-columns: .8fr 1.2fr;
    }

    .application-grid {
        min-height: 1120px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .application-card {
        grid-column: auto;
    }

    .resource-loop-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .loop-visual {
        width: min(82vw, 620px);
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .nova-shell {
        padding-inline: 18px;
    }

    .nova-section-head {
        margin-bottom: 52px;
    }

    .nova-section-head > div {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nova-section-head h2 {
        font-size: clamp(44px, 13.2vw, 65px);
    }

    .nova-section-head p {
        max-width: 34ch;
    }

    .nova-hero-copy {
        min-height: 640px;
        padding: 30px 0 42px;
    }

    .nova-kicker {
        justify-content: space-between;
        gap: 12px;
        font-size: 8px;
    }

    .nova-hero-title {
        padding-block: 42px;
        font-size: clamp(58px, 17.2vw, 78px);
        line-height: .88;
    }

    .nova-hero-intro > p {
        max-width: 32ch;
        font-size: 16px;
    }

    .nova-actions {
        flex-wrap: wrap;
        gap: 22px;
    }

    .nova-hero-visual {
        min-height: 560px;
        border-radius: 17px;
    }

    .nova-spec-float {
        width: 205px;
        padding: 16px;
    }

    .nova-spec-float > strong {
        font-size: 54px;
    }

    .nova-proof-row {
        grid-template-columns: 1fr;
        padding: 10px 0;
    }

    .nova-proof-row > div,
    .nova-proof-row > div:first-child {
        grid-template-columns: 82px 1fr;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--nova-line);
    }

    .nova-proof-row > div:nth-child(3) {
        border-bottom: 0;
    }

    .nova-proof-row strong {
        font-size: 38px;
    }

    .nova-proof-row span {
        max-width: none;
    }

    .material-lab,
    .process-story,
    .application-field {
        padding: 105px 0;
    }

    .material-console {
        min-height: 0;
        border-radius: 17px;
    }

    .material-stage {
        grid-template-columns: 1fr;
    }

    .material-symbol-wrap {
        min-height: 310px;
        border-right: 0;
        border-bottom: 1px solid var(--nova-line-light);
    }

    .material-symbol {
        font-size: 132px;
    }

    .material-detail {
        padding: 38px 24px 42px;
    }

    .process-rail {
        grid-template-columns: repeat(5, minmax(105px, 1fr));
        margin-right: -18px;
        padding-right: 18px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .process-rail::-webkit-scrollbar {
        display: none;
    }

    .process-rail::before {
        right: 18px;
        min-width: 525px;
    }

    .process-window {
        min-height: 0;
        border-radius: 17px;
    }

    .process-image {
        min-height: 330px;
    }

    .process-copy {
        padding: 36px 24px 42px;
    }

    .global-signal-grid {
        grid-template-columns: 1fr;
    }

    .global-signal-copy {
        min-height: 430px;
        padding: 70px 0 58px;
    }

    .global-map-field {
        min-height: 360px;
        margin-inline: -18px;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .application-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .application-card {
        min-height: 420px;
    }

    .resource-loop {
        padding: 95px 0 110px;
    }

    .resource-loop-grid {
        gap: 50px;
    }

    .loop-visual {
        width: 100%;
    }

    .loop-label {
        font-size: 7px;
    }

    .resource-copy h2 {
        font-size: clamp(56px, 17vw, 76px);
    }

    .nova-closing-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .nova-closing h2 {
        font-size: clamp(56px, 16vw, 76px);
    }

    .nova-closing-row > a {
        justify-content: space-between;
    }

    .nova-closing-row > a b {
        width: 66px;
        height: 66px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nova-line > span {
        transform: none;
        animation: none;
    }

    .nova-hero-visual > img {
        animation: none;
        transform: none;
    }

    .material-orbit,
    .loop-ring,
    .map-pulse {
        animation: none;
    }

    .js .nova-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
