:root {
    --ink-950: #071427;
    --ink-900: #0d223b;
    --ink-800: #183759;
    --ink-700: #255783;
    --brand-blue: #1e4f94;
    --brand-red: #c73443;
    --brand-green: #2e8a6d;
    --brand-amber: #f3a447;
    --surface: #f2f6fb;
    --surface-soft: #e7edf5;
    --white: #ffffff;
    --text: #13263b;
    --muted: #5b6d82;
    --line: #ccd6e2;
    --shadow-soft: 0 18px 36px rgba(7, 20, 39, 0.12);
    --shadow-strong: 0 28px 60px rgba(7, 20, 39, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height: 1.65;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(243, 164, 71, 0.65);
    outline-offset: 2px;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 6.5rem 0;
}

.eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
}

h1,
h2,
h3 {
    line-height: 1.16;
}

h1 {
    font-size: clamp(2.1rem, 4.8vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    letter-spacing: -0.015em;
    color: var(--ink-950);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
    color: var(--muted);
}

.section-header {
    max-width: 760px;
}

.section-header p {
    margin-top: 0.85rem;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(7, 20, 39, 0.72);
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(7, 20, 39, 0.92);
    box-shadow: 0 14px 28px rgba(5, 14, 26, 0.28);
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(145deg, var(--brand-red), var(--brand-blue));
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
}

.brand-tag {
    margin-top: 0.16rem;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav a {
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--brand-amber);
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    padding: 0.62rem 1.05rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover {
    border-color: var(--brand-amber);
    background: var(--brand-amber);
    color: var(--ink-950);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
}

.hero {
    position: relative;
    padding-top: 10.2rem;
    padding-bottom: 3.6rem;
    color: var(--white);
    background: linear-gradient(122deg, rgba(7, 20, 39, 0.96), rgba(13, 34, 59, 0.82) 52%, rgba(30, 79, 148, 0.67)),
                url("../images/modern-factory-exterior.png") center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -30% -32% -15%;
    height: 56%;
    background: radial-gradient(circle at center, rgba(243, 164, 71, 0.22), transparent 62%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    max-width: 650px;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-lead {
    margin-top: 1.2rem;
    font-size: 1.08rem;
    color: rgba(244, 248, 252, 0.9);
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.36rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    color: var(--ink-950);
    border: 1px solid var(--brand-amber);
    background: linear-gradient(120deg, #ffc067, var(--brand-amber));
}

.btn-ghost {
    color: #e9f2ff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-metrics {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-metrics div {
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 14px;
    padding: 0.92rem 0.95rem;
    background: rgba(255, 255, 255, 0.08);
}

.hero-metrics dt {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-metrics dd {
    margin-top: 0.36rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 251, 255, 0.84);
}

.hero-media {
    position: relative;
    min-height: 470px;
}

.hero-shot {
    position: absolute;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: var(--shadow-strong);
}

.hero-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shot-main {
    left: 0;
    bottom: 0;
    width: 68%;
    height: 358px;
}

.hero-shot-top {
    right: 0;
    top: 0;
    width: 54%;
    height: 210px;
}

.hero-shot-bottom {
    right: 2%;
    bottom: 28px;
    width: 50%;
    height: 178px;
}

.market-strip {
    position: relative;
    z-index: 1;
    margin-top: 2.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(7, 20, 39, 0.38);
}

.strip-track {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 1.55rem;
    flex-wrap: wrap;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(247, 251, 255, 0.8);
}

.strip-track span {
    position: relative;
    padding-right: 1.55rem;
}

.strip-track span::after {
    content: "";
    position: absolute;
    right: 0.58rem;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(247, 251, 255, 0.62);
}

.strip-track span:last-child {
    padding-right: 0;
}

.strip-track span:last-child::after {
    display: none;
}

.intro {
    background: linear-gradient(180deg, #f3f7fb 0%, #eef3f9 100%);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 2.8rem;
    align-items: start;
}

.intro-story p {
    margin-top: 1.1rem;
    max-width: 64ch;
}

.intro-aside {
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.intro-aside img {
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.fact-lines {
    padding: 1.65rem 1.7rem;
}

.fact-line {
    padding: 0.86rem 0;
}

.fact-line + .fact-line {
    border-top: 1px solid var(--line);
}

.fact-line strong {
    font-size: 0.96rem;
    color: var(--ink-900);
}

.fact-line p {
    margin-top: 0.4rem;
    font-size: 0.93rem;
}

.commitments {
    margin-top: 3.4rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
}

.commitments h3 {
    color: var(--ink-900);
}

.commitment-list {
    margin-top: 1.25rem;
    list-style: none;
}

.commitment-list li {
    display: grid;
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    gap: 1.4rem;
    padding: 1.15rem 0;
    border-bottom: 1px dashed var(--line);
}

.commitment-list strong {
    color: var(--ink-900);
    font-size: 0.98rem;
}

.platforms {
    background: radial-gradient(circle at 10% 0%, rgba(47, 138, 109, 0.16), transparent 36%),
                linear-gradient(180deg, #0b1e35 0%, #102742 100%);
}

.platforms .section-header h2 {
    color: #f5f9ff;
}

.platforms .section-header p {
    color: #b8c8dc;
}

.platform {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(8, 22, 41, 0.42);
    box-shadow: 0 24px 44px rgba(2, 8, 17, 0.28);
}

.platform-media img {
    width: 100%;
    min-height: 330px;
    height: 100%;
    object-fit: cover;
}

.platform-body {
    padding: 2rem 2.15rem;
}

.platform-kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--brand-amber);
}

.platform-body h3 {
    margin-top: 0.55rem;
    color: #f7fbff;
}

.platform-body p {
    margin-top: 0.8rem;
    color: #c4d4e8;
}

.platform-specs {
    margin-top: 1.3rem;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.platform-specs li {
    display: flex;
    justify-content: space-between;
    gap: 1.15rem;
    padding: 0.84rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.platform-specs span {
    color: #afc1d7;
}

.platform-specs strong {
    color: #f5f9ff;
    text-align: right;
}

.platform-reverse .platform-media {
    order: 2;
}

.process {
    background: linear-gradient(180deg, #f3f7fc 0%, #e7edf5 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    gap: 3rem;
    align-items: start;
}

.process-intro p {
    margin-top: 1rem;
}

.process-intro img {
    margin-top: 1.45rem;
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.process-steps {
    list-style: none;
    counter-reset: flow;
    position: relative;
    padding-left: 0;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: rgba(37, 87, 131, 0.28);
}

.process-steps li {
    counter-increment: flow;
    position: relative;
    padding: 0 0 1.75rem 4.25rem;
}

.process-steps li::before {
    content: counter(flow, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: -1px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--brand-blue);
    background: rgba(30, 79, 148, 0.12);
    border: 1px solid rgba(30, 79, 148, 0.3);
}

.process-steps h3 {
    color: var(--ink-900);
    font-size: 1.16rem;
}

.process-steps p {
    margin-top: 0.48rem;
    font-size: 0.95rem;
}

.stat-band {
    margin-top: 2.8rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.stat-band div {
    padding: 1.4rem 1.3rem;
    text-align: center;
}

.stat-band div + div {
    border-left: 1px solid var(--line);
}

.stat-band span {
    display: block;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--ink-900);
}

.stat-band p {
    margin-top: 0.3rem;
    font-size: 0.87rem;
}

.quality {
    background: #ffffff;
}

.quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 2.5rem;
    align-items: center;
}

.quality-content p {
    margin-top: 0.95rem;
}

.quality-list {
    margin-top: 1.3rem;
    list-style: none;
}

.quality-list li {
    position: relative;
    padding: 0.72rem 0 0.72rem 1.45rem;
    border-bottom: 1px dashed var(--line);
}

.quality-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.21rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand-green);
}

.quality-media {
    display: grid;
    gap: 1rem;
}

.quality-media figure {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.quality-media img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.portfolio {
    background: linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
}

.portfolio-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 0.95rem;
}

.tile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tile:hover img {
    transform: scale(1.04);
}

.tile::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(to top, rgba(7, 20, 39, 0.82), transparent);
}

.tile figcaption {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.78rem;
    z-index: 1;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f5f9ff;
}

.tile-wide {
    grid-column: span 2;
}

.tile-tall {
    grid-row: span 2;
}

.sustainability {
    background: linear-gradient(180deg, #f0f7f3 0%, #e6f0ea 100%);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    gap: 2.9rem;
    align-items: center;
}

.sustainability-grid figure {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.sustainability-grid figure img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.sustainability-content p {
    margin-top: 0.9rem;
}

.green-lines {
    margin-top: 1.35rem;
}

.green-lines > div {
    padding: 0.88rem 0 0.88rem 1.14rem;
    border-left: 3px solid rgba(46, 138, 109, 0.42);
}

.green-lines > div + div {
    margin-top: 0.7rem;
}

.green-lines strong {
    color: var(--ink-900);
    font-size: 0.96rem;
}

.green-lines p {
    margin-top: 0.33rem;
    font-size: 0.94rem;
}

.leadership {
    background: #ffffff;
}

.leadership-shell {
    display: grid;
    gap: 2rem;
}

.leadership-head {
    max-width: 760px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.4rem;
    align-items: start;
}

.leadership-photo {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.leadership-list article {
    padding: 1.03rem 0;
    border-bottom: 1px solid var(--line);
}

.leadership-list h3 {
    color: var(--ink-900);
    font-size: 1.18rem;
}

.leadership-list .role {
    margin-top: 0.34rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.leadership-list p {
    margin-top: 0.52rem;
    font-size: 0.95rem;
}

.culture-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.culture-strip img {
    width: 100%;
    height: 190px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.facility {
    color: #d7e4f4;
    background: radial-gradient(circle at 88% 3%, rgba(243, 164, 71, 0.2), transparent 34%),
                linear-gradient(180deg, #0d2139 0%, #09182b 100%);
}

.facility .eyebrow,
.facility .section-header h2 {
    color: #f5f9ff;
}

.facility .section-header p {
    color: #b3c5db;
}

.facility-grid {
    margin-top: 1.9rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-areas:
        "a a b c"
        "d e b f";
    gap: 0.95rem;
}

.facility-grid figure {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 38px rgba(1, 7, 14, 0.32);
}

.facility-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-a {
    grid-area: a;
    min-height: 290px;
}

.facility-b {
    grid-area: b;
    min-height: 520px;
}

.facility-c {
    grid-area: c;
    min-height: 250px;
}

.facility-d {
    grid-area: d;
    min-height: 220px;
}

.facility-e {
    grid-area: e;
    min-height: 220px;
}

.facility-f {
    grid-area: f;
    min-height: 220px;
}

.contact {
    position: relative;
    color: var(--white);
    background: linear-gradient(118deg, rgba(7, 20, 39, 0.93), rgba(13, 34, 59, 0.84)),
                url("../images/logistics-distribution-center.png") center / cover no-repeat;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 25%, rgba(243, 164, 71, 0.24), transparent 40%);
    pointer-events: none;
}

.contact-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.contact-panel h2,
.contact-panel h3 {
    color: var(--white);
}

.contact-panel .eyebrow {
    color: rgba(255, 255, 255, 0.84);
}

.contact-panel p {
    margin-top: 0.88rem;
    color: rgba(237, 245, 255, 0.87);
}

.contact-columns {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-columns > div {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
}

.contact-columns h3 {
    font-size: 1rem;
}

.contact-columns a {
    color: #ffd697;
}

.contact-form {
    border-radius: 22px;
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-strong);
    color: var(--text);
}

.contact-form h3 {
    color: var(--ink-900);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.form-group {
    margin-top: 0.9rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.34rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-900);
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.72rem 0.8rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: #fbfdff;
}

.form-group textarea {
    resize: vertical;
    min-height: 125px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(30, 79, 148, 0.65);
    box-shadow: 0 0 0 3px rgba(30, 79, 148, 0.15);
    outline: none;
}

.form-submit {
    margin-top: 1rem;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(120deg, var(--brand-blue), var(--ink-700));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 25px rgba(13, 34, 59, 0.3);
}

.site-footer {
    background: #061020;
    color: #93a9c2;
    padding: 1.9rem 0;
}

.footer-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-shell h3 {
    color: #f4f9ff;
    font-size: 1.14rem;
}

.footer-shell p {
    margin-top: 0.4rem;
    color: #93a9c2;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 0.9rem;
    }

    .hero-media {
        min-height: 430px;
    }

    .hero-shot-main {
        height: 320px;
    }

    .platform-body {
        padding: 1.7rem;
    }

    .facility-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-areas:
            "a a b"
            "c d b"
            "e f f";
    }
}

@media (max-width: 940px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 4vw;
        right: 4vw;
        padding: 1rem 1.1rem;
        border-radius: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        background: rgba(7, 20, 39, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 18px 40px rgba(3, 10, 18, 0.42);
    }

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

    .nav-cta {
        display: none;
    }

    .hero-grid,
    .intro-grid,
    .process-grid,
    .quality-grid,
    .sustainability-grid,
    .leadership-grid,
    .contact-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-media {
        min-height: 410px;
    }

    .platform {
        grid-template-columns: 1fr;
    }

    .platform-reverse .platform-media {
        order: 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 190px;
    }

    .tile-tall {
        grid-row: span 1;
    }

    .culture-strip {
        grid-template-columns: 1fr;
    }

    .culture-strip img {
        height: 220px;
    }

    .contact-columns {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 5.2rem 0;
    }

    .hero {
        padding-top: 8.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

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

    .hero-media {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        min-height: 0;
    }

    .hero-shot {
        position: relative;
        width: auto;
        height: 170px;
        inset: auto;
        border-radius: 14px;
    }

    .hero-shot-main {
        grid-column: 1 / -1;
        height: 220px;
    }

    .market-strip {
        margin-top: 1.45rem;
    }

    .strip-track {
        min-height: 42px;
        gap: 0.9rem;
    }

    .strip-track span {
        padding-right: 0;
        font-size: 0.62rem;
    }

    .strip-track span::after {
        display: none;
    }

    .commitment-list li {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .stat-band {
        grid-template-columns: 1fr;
    }

    .stat-band div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .portfolio-grid,
    .facility-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        grid-auto-rows: 220px;
    }

    .tile-wide,
    .tile-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .facility-grid figure {
        grid-area: auto;
        min-height: 0;
    }

    .sustainability-grid figure img,
    .leadership-photo img {
        min-height: 0;
        height: 300px;
    }

    .contact-form {
        padding: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
