:root {
    --ink: #102235;
    --ink-2: #26394a;
    --navy: #071b2b;
    --navy-soft: #0d2b42;
    --steel: #657887;
    --line: #dfe5e8;
    --paper: #ffffff;
    --mist: #f3f6f7;
    --yellow: #ffb703;
    --yellow-dark: #e99d00;
    --red: #cf2d2d;
    --green: #18865b;
    --radius: 4px;
    --shadow: 0 18px 50px rgba(9, 29, 44, .12);
    --container: min(1280px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; padding: 10px 16px; background: #fff; color: #111; }
.skip-link:focus { top: 12px; }

/* Header */
.topbar { background: var(--navy); color: #dce7ed; font-size: 12px; letter-spacing: .02em; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: #4bd294; border-radius: 50%; box-shadow: 0 0 0 4px rgba(75,210,148,.12); }
.topbar__links { display: flex; gap: 10px; align-items: center; }
.topbar a:hover { color: var(--yellow); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(7,27,43,.08); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(7,27,43,.1); }
.header__inner { min-height: 84px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand__mark { width: 43px; height: 43px; fill: var(--red); transform: rotate(-4deg); }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { color: var(--ink); font-size: 18px; letter-spacing: -.02em; }
.brand small { margin-top: 6px; color: var(--steel); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.primary-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.primary-nav a { position: relative; color: var(--ink-2); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .035em; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--yellow); transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.header-call { display: flex; align-items: center; gap: 10px; min-width: 175px; padding: 11px 14px; background: var(--yellow); border-radius: 3px; transition: background .2s ease, transform .2s ease; }
.header-call:hover { background: #ffc126; transform: translateY(-1px); }
.header-call svg { width: 23px; fill: var(--navy); }
.header-call span { display: flex; flex-direction: column; line-height: 1.15; }
.header-call small { font-size: 10px; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.header-call span { font-weight: 900; }
.menu-toggle { display: none; }

/* Shared */
.section { padding: 108px 0; }
.eyebrow { margin: 0 0 18px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .17em; }
.eyebrow span { display: inline-block; width: 34px; height: 2px; margin: 0 10px 3px 0; background: currentColor; }
.eyebrow--light { color: var(--yellow); }
.section-heading { margin-bottom: 44px; }
.section-heading h2 { max-width: 760px; margin: 0; color: var(--ink); font-size: clamp(36px, 4vw, 58px); line-height: 1.07; letter-spacing: -.045em; }
.section-heading > p, .section-heading--split > p { max-width: 510px; margin: 0; color: #63727e; }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.section-heading--center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-heading--center > p:last-child { margin-top: 16px; }
.section-heading--light h2 { color: #fff; }
.section-heading--light > p { color: #adbdc8; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 18px; min-height: 52px; padding: 0 25px; border: 0; border-radius: 3px; font-size: 13px; font-weight: 900; letter-spacing: .045em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--navy); background: var(--yellow); box-shadow: 0 10px 30px rgba(255,183,3,.2); }
.button--primary:hover { background: #ffc42e; }
.button--ghost { color: #fff; border: 1px solid rgba(255,255,255,.65); background: rgba(255,255,255,.05); }
.button--ghost:hover { background: #fff; color: var(--ink); }
.button--dark { color: #fff; background: var(--navy); }
.button--full { width: 100%; }
.text-link { color: var(--ink); font-size: 13px; font-weight: 800; border-bottom: 1px solid currentColor; }
.outline-link { padding: 10px 0; color: var(--ink); font-size: 13px; font-weight: 900; border-bottom: 2px solid var(--yellow); }

/* Hero */
.hero { position: relative; min-height: 690px; overflow: hidden; background: var(--navy); color: #fff; }
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; transform: scale(1.015); }
.hero__shade { background: linear-gradient(90deg, rgba(6,22,35,.96) 0%, rgba(6,22,35,.88) 41%, rgba(6,22,35,.55) 66%, rgba(6,22,35,.32) 100%), linear-gradient(0deg, rgba(6,22,35,.42), transparent 48%); }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.hero__content { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: center; gap: 80px; padding-top: 52px; padding-bottom: 68px; }
.hero__copy { max-width: 790px; }
.hero h1 { margin: 0; font-size: clamp(48px, 5.2vw, 76px); line-height: .99; letter-spacing: -.055em; text-wrap: balance; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero__lead { max-width: 670px; margin: 25px 0 28px; color: #d3dce1; font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 28px; margin: 28px 0 0; padding: 0; list-style: none; color: #edf3f6; font-size: 13px; font-weight: 700; }
.hero__ticks li::before { content: "✓"; display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 7px; color: var(--navy); background: var(--yellow); border-radius: 50%; font-size: 11px; font-weight: 1000; }
.hero-card { align-self: end; margin-bottom: 36px; padding: 27px; color: var(--ink); background: rgba(255,255,255,.96); border-top: 5px solid var(--yellow); box-shadow: 0 22px 70px rgba(0,0,0,.27); }
.hero-card__top { display: flex; gap: 12px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.hero-card__icon { display: grid; place-items: center; width: 45px; height: 45px; background: var(--red); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 900; }
.hero-card__top div { display: flex; flex-direction: column; line-height: 1.35; }
.hero-card__top small { color: #74828c; }
.hero-card__top strong { font-size: 14px; }
.hero-card h2 { margin: 22px 0 8px; font-size: 25px; line-height: 1.17; letter-spacing: -.035em; }
.hero-card > p { margin: 0 0 18px; color: #667781; font-size: 14px; }
.hero-card__phone { display: flex; flex-direction: column; padding: 15px 18px; margin-bottom: 17px; background: var(--mist); border-left: 3px solid var(--yellow); line-height: 1.25; }
.hero-card__phone small { color: #6b7a85; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.hero-card__phone strong { margin-top: 4px; font-size: 23px; letter-spacing: .03em; }
.hero__scroll { position: absolute; z-index: 3; left: 50%; bottom: 21px; width: 28px; height: 44px; border: 1px solid rgba(255,255,255,.5); border-radius: 17px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; transform: translateX(-50%); background: var(--yellow); border-radius: 3px; animation: scroll-dot 1.8s infinite; }
@keyframes scroll-dot { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,16px); } }

/* Trust */
.trust-strip { position: relative; z-index: 5; background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 15px; min-height: 106px; padding: 20px 26px; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item > span { color: var(--yellow-dark); font-size: 13px; font-weight: 900; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { color: var(--ink); font-size: 14px; }
.trust-item small { color: #768691; font-size: 12px; }

/* Products */
.section--products { background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card__image { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #e7ecef; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card__image img { transform: scale(1.045); }
.product-card__tag { position: absolute; left: 0; top: 18px; padding: 7px 11px; color: #fff; background: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-card__number { position: absolute; right: 13px; bottom: 7px; color: rgba(255,255,255,.86); font-size: 42px; font-weight: 900; line-height: 1; text-shadow: 0 2px 15px rgba(0,0,0,.24); }
.product-card__body { padding: 25px; }
.product-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 22px; letter-spacing: -.025em; }
.product-card h3 a:hover { color: var(--red); }
.product-card__body > p { min-height: 76px; margin: 0; color: #63737e; font-size: 14px; }
.product-card__spec { margin-top: 17px; padding: 10px 12px; color: #405361; background: var(--mist); font-size: 12px; font-weight: 750; border-left: 3px solid var(--yellow); }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 17px; border-top: 1px solid var(--line); }
.product-card__footer strong { color: var(--red); font-size: 14px; }
.product-card__footer a { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.product-card__footer a:hover { color: var(--red); }

/* Factory */
.factory { overflow: hidden; background: var(--mist); }
.factory__grid { display: grid; grid-template-columns: 44% 1fr; gap: 8%; align-items: center; }
.factory__visual { position: relative; min-height: 650px; }
.factory__visual::before { content: ""; position: absolute; left: -28px; top: -28px; width: 52%; height: 64%; border: 8px solid var(--yellow); }
.factory__visual img { position: absolute; inset: 0 12% 0 0; width: 88%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.factory__stamp { position: absolute; top: 48px; right: 0; display: flex; align-items: center; gap: 11px; padding: 21px 23px; color: #fff; background: var(--red); box-shadow: var(--shadow); }
.factory__stamp strong { font-size: 38px; line-height: 1; }
.factory__stamp span { font-size: 11px; font-weight: 800; text-transform: uppercase; line-height: 1.35; }
.factory__caption { position: absolute; right: 6%; bottom: 24px; padding: 10px 16px; color: var(--navy); background: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.factory__copy h2 { margin: 0; font-size: clamp(38px, 4.3vw, 60px); line-height: 1.06; letter-spacing: -.05em; }
.factory__lead { margin: 24px 0 27px; color: #586b78; font-size: 17px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; margin-bottom: 30px; }
.check-grid > div { display: flex; gap: 12px; align-items: flex-start; }
.check-grid span { display: grid; place-items: center; flex: 0 0 27px; width: 27px; height: 27px; margin-top: 2px; background: var(--yellow); color: var(--navy); border-radius: 50%; font-weight: 950; }
.check-grid p { display: flex; flex-direction: column; margin: 0; color: #667681; font-size: 12px; }
.check-grid strong { color: var(--ink); font-size: 14px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); margin: 3px 0 31px; border-block: 1px solid #cad3d8; }
.stats-row div { display: flex; flex-direction: column; padding: 22px 18px; border-right: 1px solid #cad3d8; }
.stats-row div:first-child { padding-left: 0; }
.stats-row div:last-child { border-right: 0; }
.stats-row strong { color: var(--red); font-size: 30px; line-height: 1; }
.stats-row span { margin-top: 8px; color: #697985; font-size: 11px; font-weight: 800; text-transform: uppercase; }

/* Projects */
.section--dark { position: relative; overflow: hidden; background: var(--navy); }
.section--dark::before { content: "PALLET"; position: absolute; right: -32px; top: 20px; color: rgba(255,255,255,.028); font-size: 190px; font-weight: 1000; letter-spacing: -.08em; }
.project-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 390px; gap: 12px; }
.project { position: relative; overflow: hidden; margin: 0; background: #172f42; }
.project--wide { grid-column: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .5s ease, opacity .35s ease; }
.project:hover img { transform: scale(1.04); opacity: 1; }
.project::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,16,26,.92)); }
.project figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: flex; align-items: end; gap: 13px; color: #fff; }
.project figcaption > span { color: var(--yellow); font-size: 11px; font-weight: 900; }
.project figcaption div { display: flex; flex-direction: column; }
.project figcaption strong { font-size: 18px; }
.project figcaption small { color: #c4d0d7; }

/* Process */
.process { background: #fff; }
.process__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 58px 0 0; padding: 0; list-style: none; counter-reset: process; }
.process__grid::before { content: ""; position: absolute; top: 34px; left: 10%; right: 10%; height: 1px; background: #cbd5da; }
.process__grid li { position: relative; padding: 0 28px; text-align: center; }
.process__grid li > span { position: relative; z-index: 2; display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 24px; color: var(--navy); background: #fff; border: 2px solid var(--yellow); border-radius: 50%; font-size: 13px; font-weight: 900; box-shadow: 0 0 0 9px #fff; }
.process__grid li:nth-child(2n) > span { color: #fff; background: var(--navy); border-color: var(--navy); }
.process__grid h3 { margin: 0 0 8px; font-size: 18px; }
.process__grid p { margin: 0; color: #697985; font-size: 14px; }

/* Insights */
.insights { background: var(--mist); }
.insight-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 22px; }
.insight-card { overflow: hidden; background: #fff; border: 1px solid var(--line); }
.insight-card__image { display: block; overflow: hidden; }
.insight-card img { width: 100%; height: 240px; object-fit: cover; }
.insight-card__image img { transition: transform .4s ease; }
.insight-card:hover .insight-card__image img { transform: scale(1.035); }
.insight-card > div { padding: 23px; }
.insight-card small { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.insight-card h3 { margin: 10px 0 9px; font-size: 21px; line-height: 1.28; letter-spacing: -.02em; }
.insight-card p { margin: 0 0 15px; color: #687985; font-size: 14px; }
.insight-card a { font-size: 12px; font-weight: 900; text-transform: uppercase; border-bottom: 1px solid var(--yellow); }
.insight-card--featured { display: grid; grid-template-columns: 48% 1fr; }
.insight-card--featured .insight-card__image,
.insight-card--featured img { height: 100%; }
.insight-card--featured > div { display: flex; flex-direction: column; justify-content: center; padding: 32px; }
.insight-card--featured h3 { font-size: 28px; }

/* Quote */
.quote-section { position: relative; overflow: hidden; padding: 106px 0; background: #0b263b; color: #fff; }
.quote-section__texture { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,.17) 48% 50%, transparent 50% 100%); background-size: 38px 38px; }
.quote-section::after { content: ""; position: absolute; right: -180px; top: -260px; width: 620px; height: 620px; border: 100px solid rgba(255,183,3,.06); border-radius: 50%; }
.quote-section__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.1fr; gap: 9%; align-items: center; }
.quote-copy h2 { margin: 0; max-width: 580px; font-size: clamp(42px, 5vw, 68px); line-height: 1; letter-spacing: -.05em; }
.quote-copy > p { max-width: 560px; margin: 24px 0; color: #bdcbd4; font-size: 17px; }
.quote-copy ul { margin: 0 0 31px; padding: 0; list-style: none; }
.quote-copy li { margin: 9px 0; color: #e0e8ec; }
.quote-copy li::before { content: "✓"; margin-right: 10px; color: var(--yellow); font-weight: 900; }
.quote-copy__phone { display: flex; flex-direction: column; }
.quote-copy__phone small { color: #9cafbc; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.quote-copy__phone a { color: var(--yellow); font-size: 30px; font-weight: 900; }
.quote-form-wrap { padding: 34px; color: var(--ink); background: #fff; box-shadow: 0 24px 75px rgba(0,0,0,.28); }
.quote-form__heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.quote-form__heading span { font-size: 19px; font-weight: 900; }
.quote-form__heading small { color: #82909a; font-size: 10px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: block; margin-bottom: 15px; color: #4c5e6b; font-size: 12px; font-weight: 800; }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; margin-top: 6px; padding: 13px 14px; color: var(--ink); background: #f5f7f8; border: 1px solid #dbe2e6; border-radius: 2px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--yellow-dark); box-shadow: 0 0 0 3px rgba(255,183,3,.15); }
.quote-form textarea { resize: vertical; }
.form-consent { margin: 11px 0 0; color: #85939c; font-size: 10px; text-align: center; }
.form-notice { margin-bottom: 15px; padding: 12px 14px; font-size: 13px; font-weight: 700; }
.form-notice--success { color: #0b6542; background: #e1f7ed; }
.form-notice--error { color: #9d2323; background: #fee9e9; }

/* Footer */
.site-footer { color: #c1ced6; background: #051521; }
.footer__grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1.4fr; gap: 58px; padding-top: 75px; padding-bottom: 55px; }
.brand--light strong { color: #fff; }
.brand--light small { color: #9eafba; }
.footer__brand > p { max-width: 360px; margin: 22px 0 0; color: #8fa2ae; font-size: 14px; }
.site-footer h2 { margin: 7px 0 19px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 9px 0; color: #98aab5; font-size: 13px; }
.site-footer a:hover { color: var(--yellow); }
.contact-list li:first-child { line-height: 1.5; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom p { margin: 0; color: #718793; font-size: 11px; }
.floating-actions { position: fixed; z-index: 900; right: 20px; bottom: 22px; display: flex; flex-direction: column; gap: 10px; }
.floating-action { position: relative; display: grid; place-items: center; width: 54px; height: 54px; color: #fff; border-radius: 50%; box-shadow: 0 10px 25px rgba(0,0,0,.22); }
.floating-action svg { width: 24px; fill: currentColor; }
.floating-action > span { position: absolute; right: 62px; padding: 6px 10px; color: #fff; background: var(--navy); border-radius: 3px; font-size: 11px; font-weight: 800; white-space: nowrap; opacity: 0; pointer-events: none; transform: translateX(5px); transition: opacity .2s ease, transform .2s ease; }
.floating-action:hover > span { opacity: 1; transform: none; }
.floating-action--phone { background: #22ad67; }
.floating-action--zalo { background: #0878e8; font-size: 12px; }

/* Interior */
.inner-hero { padding: 95px 0 70px; color: #fff; background: linear-gradient(135deg, var(--navy), #123a56); }
.inner-hero h1 { max-width: 920px; margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1.05; letter-spacing: -.05em; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.entry-card { overflow: hidden; border: 1px solid var(--line); }
.entry-card img { aspect-ratio: 16/10; object-fit: cover; }
.entry-card > div { padding: 24px; }
.entry-card h2 { margin: 8px 0; font-size: 22px; line-height: 1.25; }
.entry-card p { color: #677984; }
.prose { max-width: 860px; }
.prose h2, .prose h3 { line-height: 1.2; scroll-margin-top: 120px; }
.prose h2 { margin: 2.4em 0 .65em; font-size: clamp(28px, 3.3vw, 42px); letter-spacing: -.035em; }
.prose h3 { margin: 1.8em 0 .55em; font-size: 23px; }
.prose p, .prose li { color: #445968; }
.prose a { color: #ad2020; text-decoration: underline; text-underline-offset: 3px; }
.prose figure { margin: 38px 0; }
.prose figure img { width: 100%; border-radius: var(--radius); }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin: 7px 0; }
.wp-block-table { margin: 34px 0; overflow-x: auto; }
.wp-block-table table { width: 100%; border-collapse: collapse; min-width: 650px; }
.wp-block-table th, .wp-block-table td { padding: 13px 15px; text-align: left; border: 1px solid var(--line); vertical-align: top; }
.wp-block-table th { color: #fff; background: var(--navy-soft); }
.entry-hero-image { width: 100%; height: auto; margin-bottom: 30px; }
.section--soft { background: var(--mist); }
.term-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.term-chips a { padding: 8px 13px; color: var(--ink-2); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 800; }
.term-chips a:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.catalog-card { display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.catalog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.catalog-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mist); }
.catalog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.catalog-card:hover .catalog-card__media img { transform: scale(1.035); }
.catalog-card__body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.catalog-card__body h2 { margin: 0 0 10px; font-size: 21px; line-height: 1.27; }
.catalog-card__body p { margin: 0 0 18px; color: #637681; font-size: 14px; }
.catalog-card__body .text-link { margin-top: auto; align-self: flex-start; }
.archive-description { margin: 70px auto 0; padding-top: 50px; border-top: 1px solid var(--line); }
.product-hero { padding-block: 72px; }
.product-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 520px); align-items: center; gap: 70px; }
.product-hero__lead { max-width: 720px; margin: 22px 0; color: #cbd8df; font-size: 17px; }
.product-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.product-taxonomy { margin: 20px 0 0; color: #b9cad3; font-size: 13px; }
.product-taxonomy a { color: var(--yellow); }
.product-hero__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 8px solid rgba(255,255,255,.1); box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.product-prose { max-width: 940px; }
.quote-strip { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.quote-strip h2 { margin: 0; font-size: clamp(31px, 4vw, 50px); line-height: 1.08; letter-spacing: -.04em; }
.quote-strip p:last-child { margin-bottom: 0; }
.not-found { min-height: 65vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }
.not-found span { color: var(--yellow); font-size: 110px; font-weight: 1000; line-height: 1; }
.not-found h1 { margin: 10px 0; font-size: 44px; }

/* Motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__scroll span { animation: none; }
}

@media (max-width: 1120px) {
    :root { --container: min(100% - 36px, 1120px); }
    .header__inner { gap: 20px; }
    .primary-nav { gap: 18px; }
    .primary-nav a { font-size: 12px; }
    .header-call { min-width: auto; }
    .header-call span small { display: none; }
    .hero__content { grid-template-columns: 1fr 315px; gap: 40px; }
    .product-card__body > p { min-height: 98px; }
    .factory__grid { grid-template-columns: 42% 1fr; gap: 6%; }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .insight-grid { grid-template-columns: 1fr 1fr; }
    .insight-card--featured { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .topbar__links span, .topbar__links a:first-child { display: none; }
    .header__inner { min-height: 74px; }
    .menu-toggle { order: 3; display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; margin-left: auto; padding: 9px; color: var(--ink); background: transparent; border: 1px solid var(--line); }
    .menu-toggle > span:not(.sr-only) { width: 100%; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
    .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .primary-nav { position: fixed; inset: 110px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 30px max(24px, calc((100vw - 720px)/2)); background: #fff; transform: translateX(100%); transition: transform .25s ease; }
    .primary-nav.is-open { transform: none; }
    .primary-nav a { padding: 16px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
    .primary-nav a::after { display: none; }
    .header-call { margin-left: auto; }
    .hero, .hero__content { min-height: 760px; }
    .hero__content { grid-template-columns: 1fr; align-content: center; gap: 32px; padding-top: 65px; }
    .hero__copy { max-width: 760px; }
    .hero-card { align-self: auto; max-width: 460px; margin: 0; }
    .hero__scroll { display: none; }
    .trust-strip__grid { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2) { border-right: 1px solid var(--line); }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .factory__grid { grid-template-columns: 1fr; gap: 70px; }
    .factory__visual { min-height: 590px; max-width: 600px; }
    .process__grid { grid-template-columns: 1fr 1fr; row-gap: 46px; }
    .process__grid::before { display: none; }
    .quote-section__grid { grid-template-columns: 1fr; gap: 50px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .content-grid { grid-template-columns: 1fr 1fr; }
    .catalog-grid { grid-template-columns: 1fr 1fr; }
    .product-hero__grid { grid-template-columns: 1fr; gap: 38px; }
    .product-hero__image { max-width: 620px; }
}

@media (max-width: 640px) {
    :root { --container: calc(100% - 28px); }
    .section { padding: 76px 0; }
    .topbar { display: none; }
    .brand strong { font-size: 15px; }
    .brand small { font-size: 7px; }
    .brand__mark { width: 37px; height: 37px; }
    .header-call { display: none; }
    .primary-nav { inset: 74px 0 0; padding-inline: 22px; }
    .hero, .hero__content { min-height: auto; }
    .hero__content { padding-top: 75px; padding-bottom: 75px; }
    .hero__shade { background: linear-gradient(90deg, rgba(6,22,35,.97), rgba(6,22,35,.79)); }
    .hero h1 { font-size: 44px; }
    .hero__lead { font-size: 16px; }
    .hero__actions, .hero__ticks { flex-direction: column; align-items: stretch; }
    .hero__ticks { gap: 9px; }
    .button { width: 100%; }
    .hero-card { padding: 22px; }
    .trust-strip__grid { grid-template-columns: 1fr; }
    .trust-item, .trust-item:nth-child(2), .trust-item:last-child { border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
    .section-heading--split { display: block; }
    .section-heading--split > p, .section-heading--split > .outline-link { display: inline-block; margin-top: 20px; }
    .section-heading h2 { font-size: 38px; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card__body > p { min-height: auto; }
    .factory__visual { min-height: 490px; }
    .factory__visual img { inset-right: 0; width: 100%; }
    .factory__visual::before { left: -10px; top: -18px; }
    .factory__stamp { top: 24px; }
    .factory__copy h2 { font-size: 40px; }
    .check-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .stats-row div, .stats-row div:first-child { padding: 17px 0; border-right: 0; border-bottom: 1px solid #cad3d8; }
    .stats-row div:last-child { border-bottom: 0; }
    .project-grid { grid-template-columns: 1fr; grid-auto-rows: 340px; }
    .project--wide { grid-column: auto; }
    .process__grid { grid-template-columns: 1fr; gap: 36px; }
    .process__grid li { padding-inline: 10px; }
    .insight-grid { grid-template-columns: 1fr; }
    .insight-card--featured { display: block; grid-column: auto; }
    .insight-card--featured img { height: 250px; }
    .field-grid { grid-template-columns: 1fr; gap: 0; }
    .quote-form-wrap { padding: 22px 18px; }
    .quote-form__heading { align-items: flex-start; flex-direction: column; gap: 4px; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .footer__bottom { flex-direction: column; }
    .floating-actions { right: 12px; bottom: 14px; }
    .floating-action { width: 48px; height: 48px; }
    .content-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr; }
    .product-hero__actions, .quote-strip { align-items: stretch; flex-direction: column; }
}

/* The legacy WP Responsive Menu plugin is still active on the existing site.
   This theme ships its own accessible mobile navigation, so hide the duplicate. */
@media (max-width: 768px) {
    html:root { padding-top: 0 !important; }
    body #wprmenu_bar,
    body #mg-wprm-wrap,
    body .wprm-wrapper { display: none !important; }
}

.seo-longform {
    margin-top: clamp(48px, 7vw, 88px);
    padding-top: clamp(34px, 5vw, 64px);
    border-top: 1px solid #dce2e5;
}
.seo-longform h2 { margin-top: 2.1em; }
.seo-longform h3 { margin-top: 1.5em; }
.seo-longform > :first-child { margin-top: 0; }
.section--seo { background: #f7f9f9; }
