 /* Hepburn storefront.
 * Compact rules, grouped by page region. Tokens first so later
 * modules can stay palette-agnostic.
 */
:root {
  --onyx: #000000;
  --white: #ffffff;
  --concrete: #a6a8a8;
  --silver: #c4c4c4;
  --burgundy: #5a1e25;
  --text-muted: var(--concrete);
  --line: var(--concrete);
  --sans: Arial, Helvetica, sans-serif;
  --ease-cut: cubic-bezier(.2, 0, .2, 1);
  --time-pointer: 180ms;
  --time-reveal: 280ms;
  --time-wipe: 420ms;
  --time-load: 640ms;
}

/* --- Reset / type ----------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; background: var(--onyx); }
body { margin: 0; overflow-x: hidden; color: var(--onyx); background: var(--white); font-family: var(--sans); font-size: 15px; line-height: 1.55; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; letter-spacing: 0; cursor: pointer; }
img { max-width: 100%; }
h1, h2, h3, p, figure, dl, dd { margin-top: 0; }
h1, h2, h3 { font-family: var(--sans); font-weight: 700; letter-spacing: 0; text-transform: uppercase; overflow-wrap: break-word; text-wrap: wrap; }
h1, h2 { line-height: .96; }
h2 { margin-bottom: 0; font-size: 68px; }
h3 { margin-bottom: 9px; font-size: 20px; line-height: 1.08; }
:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 4px; }

/* --- Header / brand --------------------------------------------- */
.site-header { position: fixed; z-index: 20; inset: 0 0 auto; display: flex; width: 100%; min-height: 92px; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 5vw; overflow: visible; color: var(--white); background: var(--onyx); border-bottom: 1px solid rgba(255,255,255,.28); flex-wrap: nowrap; }
.brand { display: inline-flex; min-width: 0; flex: 0 1 auto; align-items: center; gap: 13px; }
.brand-mark { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; }
.brand-mark img, .hero-mark img, .brand-panel-mark img, .footer-mark img { display: block; width: 100%; height: 100%; object-fit: contain; filter: invert(1); }
.brand-copy { display: grid; gap: 5px; line-height: 1; }
.brand-copy strong { font: 700 18px/1 var(--sans); }
.brand-copy small { color: var(--concrete); font-size: 9px; text-transform: uppercase; }
.desktop-nav { display: flex; flex-wrap: nowrap; align-items: center; gap: 28px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
 .desktop-nav a, .header-cta { transition: color var(--time-pointer) var(--ease-cut); }
 .desktop-nav a:hover, .desktop-nav a:focus-visible, .header-cta:hover, .header-cta:focus-visible { color: var(--burgundy); }
 .header-cta { min-height: 36px; border-bottom: 1px solid var(--white); padding: 9px 0 5px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.header-tools { display: flex; flex-wrap: nowrap; align-items: center; gap: 18px; margin-left: auto; flex: 0 0 auto; }
.language-switcher { position: relative; flex: 0 0 auto; }
.language-switcher-toggle { display: inline-flex; min-height: 32px; align-items: center; gap: 8px; border: 0; padding: 6px 0; color: var(--white); background: transparent; font-size: 9px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.language-switcher-toggle::after { display: block; width: 6px; height: 6px; flex: 0 0 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-1px); content: ""; }
.language-switcher.is-open .language-switcher-toggle::after { transform: rotate(-135deg) translateY(-1px); }
.language-switcher-toggle:hover,
.language-switcher-toggle:focus-visible { color: var(--burgundy); }
.language-switcher-menu { position: absolute; z-index: 30; top: calc(100% + 8px); right: 0; display: grid; min-width: 148px; padding: 6px 0; border: 1px solid rgba(255,255,255,.28); background: var(--onyx); }
.language-switcher-menu[hidden] { display: none; }
.language-switcher-menu a { display: flex; min-height: 36px; align-items: center; padding: 8px 14px; color: var(--concrete); font-size: 9px; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.language-switcher-menu a:hover,
.language-switcher-menu a:focus-visible { color: var(--white); background: rgba(255,255,255,.06); }
.language-switcher-menu a[aria-current="page"] { color: var(--white); }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; width: 52px; height: 44px; place-items: center; border: 1px solid var(--concrete); padding: 0; color: var(--white); background: transparent; font-size: 10px; font-weight: 700; text-transform: uppercase; }
 .mobile-nav { display: none; }
 .mobile-nav[hidden] { display: none !important; }

/* --- Hero carousel ---------------------------------------------- */
.hero { position: relative; min-height: 760px; overflow: hidden; color: var(--white); background: var(--onyx); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
 .hero-slide { display: flex; align-items: center; opacity: 0; visibility: hidden; pointer-events: none; transition: none; }
 .hero-slide.is-active { z-index: 1; opacity: 1; visibility: visible; pointer-events: auto; }
.hero-slide-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.12); }
.hero-slide-image-sewing { object-position: center 48%; }
.hero-slide-image-studio { object-position: center 45%; }
.hero-overlay { position: absolute; z-index: 1; inset: 0; background: rgba(0,0,0,.72); }
.hero-overlay-strong { background: rgba(0,0,0,.82); }
.hero-content { position: relative; z-index: 2; width: min(1120px, 90vw); margin: 132px auto 86px; }
.hero-location { margin-bottom: 24px; color: var(--concrete); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.hero-mark { width: 80px; height: 70px; margin-bottom: 30px; }
h1 { max-width: 860px; margin-bottom: 28px; font-size: 104px; overflow-wrap: normal; }
.hero-slide-title { max-width: 880px; margin-bottom: 28px; font-size: 90px; }
.hero-intro { max-width: 560px; margin-bottom: 36px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
 /* Primary CTA fill uses data-label so the hover wipe can overlay copy. */
.button, .text-link { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; text-transform: uppercase; white-space: nowrap; max-width: 100%; }
 .button { position: relative; isolation: isolate; overflow: hidden; gap: 13px; border: 1px solid var(--white); padding: 13px 19px; background: transparent; color: inherit; transition: border-color var(--time-pointer) linear, color var(--time-pointer) linear; }
 .button::before { position: absolute; inset: 0 auto 0 0; z-index: 1; width: 0; background: var(--burgundy); content: ""; pointer-events: none; transition: width var(--time-pointer) linear; }
 .button::after { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; overflow: hidden; clip-path: inset(0 100% 0 0); color: var(--white); content: attr(data-label); pointer-events: none; transition: clip-path var(--time-pointer) linear; }
 .button:hover, .button:focus-visible { border-color: var(--burgundy); }
 .button:hover::before, .button:focus-visible::before { width: 100%; }
 .button:hover::after, .button:focus-visible::after { clip-path: inset(0 0 0 0); }
 .button:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 2px; }
 .button-light { color: var(--onyx); background: var(--white); }
 .text-link { gap: 10px; border-bottom: 1px solid currentColor; padding-bottom: 4px; transition: color var(--time-pointer) var(--ease-cut); }
 .text-link:hover, .text-link:focus-visible { color: var(--burgundy); }
 /* Controls sit on the image; keep hit targets >= 44px. */
.hero-carousel-controls { position: absolute; z-index: 3; right: 5vw; bottom: 64px; display: flex; align-items: center; gap: 9px; }
 .carousel-arrow, .carousel-pause { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.55); padding: 0; color: var(--white); background: transparent; transition: border-color var(--time-pointer) linear, background var(--time-pointer) linear; }
 .carousel-arrow:hover, .carousel-arrow:focus-visible, .carousel-pause:hover, .carousel-pause:focus-visible { border-color: var(--burgundy); background: var(--burgundy); }
 .carousel-arrow svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: square; stroke-width: 1.8; }
 .carousel-dots { display: flex; align-items: center; gap: 2px; padding: 0 5px; }
 .carousel-dots button { position: relative; width: 24px; height: 44px; border: 0; padding: 0; background: transparent; }
 .carousel-dots button::after { position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border: 1px solid var(--white); background: transparent; content: ""; transform: translate(-50%, -50%); transition: background var(--time-pointer) linear, border-color var(--time-pointer) linear; }
 .carousel-dots button[aria-current="true"]::after { background: var(--burgundy); border-color: var(--burgundy); }
.carousel-pause svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: square; stroke-width: 1.8; }
.carousel-pause .play-icon { display: none; fill: currentColor; stroke: none; }
.carousel-pause.is-paused .pause-icon { display: none; }
.carousel-pause.is-paused .play-icon { display: block; }
.hero-footnote { position: absolute; z-index: 3; right: 5vw; bottom: 26px; left: 5vw; display: flex; justify-content: space-between; color: var(--concrete); font-size: 9px; font-weight: 700; text-transform: uppercase; }
 .js-motion:not(.is-constructed) .hero-construct { position: absolute; z-index: 4; inset: 0; background-color: var(--onyx); background-image: url("assets/vi-grid.svg"); background-size: 60px 60px; clip-path: inset(0 0 0 0); pointer-events: none; }
 .hero.is-wiping::after { position: absolute; z-index: 2; inset: 0; background: var(--onyx); content: ""; animation: hero-wipe var(--time-wipe) linear forwards; pointer-events: none; }
 @keyframes hero-wipe {
   0% { clip-path: inset(0 100% 0 0); }
   45% { clip-path: inset(0 0 0 0); }
   100% { clip-path: inset(0 0 0 100%); }
 }
/* --- Shared section chrome -------------------------------------- */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }

.signal-band, .company-section, .profile-section, .products-section, .factory-section, .contact-section { background-color: var(--white); background-image: url("assets/vi-grid.svg"); }
.signal-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.signal-item { display: flex; gap: 20px; min-width: 0; padding: 26px 5vw; border-right: 1px solid var(--line); }
.signal-item:last-child { border-right: 0; }
.signal-number, .strength-grid article > span, .odm-grid article > span, .process-steps li > span, .material-list article > span { flex: 0 0 auto; color: var(--burgundy); font-size: 10px; font-weight: 700; }
.signal-item strong { display: block; margin-bottom: 3px; font: 700 16px/1.1 var(--sans); text-transform: uppercase; }
.signal-item p { margin-bottom: 0; color: var(--text-muted); font-size: 11px; }

.section-shell { width: min(1180px, 90vw); margin: 0 auto; }
.section-index { color: var(--burgundy); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.section-index-light { color: var(--silver); }
.lead-copy { color: var(--onyx); font: 700 20px/1.35 var(--sans); text-transform: uppercase; }
.section-heading { display: grid; grid-template-columns: minmax(0,.95fr) minmax(260px,.55fr); gap: 90px; align-items: end; padding-bottom: 48px; }
.section-heading > div { container-type: inline-size; min-width: 0; }
.section-heading h2 { margin-top: 22px; }
.section-heading > p { max-width: 430px; margin-bottom: 4px; color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* --- Company ---------------------------------------------------- */
.company-section { padding-top: 130px; padding-bottom: 130px; }
.company-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr); gap: 64px; margin-top: 42px; }
.company-grid h2 { margin-bottom: 34px; }
.company-grid > div { container-type: inline-size; min-width: 0; }
.company-grid .lead-copy { color: var(--burgundy); }
.fact-list { margin-bottom: 0; border-top: 1px solid var(--onyx); }
.fact-list > div { display: grid; grid-template-columns: 125px 1fr; gap: 25px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.fact-list dt { color: var(--burgundy); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.fact-list dd { margin: 0; font-size: 13px; }
.fact-list a, .contact-copy a { overflow-wrap: anywhere; border-bottom: 1px solid currentColor; }

/* --- Brand panel ------------------------------------------------ */
.brand-section { padding-top: 0; padding-bottom: 130px; }
.brand-panel { display: grid; grid-template-columns: minmax(220px,.72fr) minmax(0,1fr); gap: 80px; align-items: center; min-height: 470px; padding: 72px; color: var(--white); background: var(--onyx); }
.brand-panel-mark { width: min(330px,100%); aspect-ratio: 1 / .82; }
.brand-panel h2 { margin: 26px 0 12px; font-size: 88px; }
.brand-panel h2 + p { color: var(--silver); font-size: 15px; font-weight: 700; text-transform: uppercase; }
.brand-note { max-width: 540px; margin: 38px 0 0; color: var(--concrete); font-size: 13px; }

/* --- Profile / strengths ---------------------------------------- */
.profile-section, .strength-section, .products-section, .factory-section, .materials-section, .contact-section { padding-top: 125px; padding-bottom: 125px; }
.profile-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .7fr); gap: 64px; margin-top: 42px; }
.profile-layout > :first-child { container-type: inline-size; min-width: 0; }
.profile-layout h2 { max-width: 700px; }
.profile-layout > div > p:not(.lead-copy), .factory-grid > div > p:not(.lead-copy) { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

.strength-section { background: var(--white); }
.strength-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--onyx); border-bottom: 1px solid var(--onyx); }
 .strength-grid article { min-height: 260px; padding: 28px 28px 34px; border-right: 1px solid var(--line); outline: 1px solid transparent; outline-offset: -1px; transition: outline-color var(--time-pointer) linear; }
 .strength-grid article:hover, .strength-grid article:focus-within { outline-color: var(--burgundy); }
.strength-grid article:first-child { padding-left: 0; }
.strength-grid article:last-child { border-right: 0; padding-right: 0; }
.strength-grid h3, .odm-grid h3 { margin-top: 68px; }
.strength-grid p, .odm-grid p, .market-grid p { margin-bottom: 0; color: var(--text-muted); font-size: 13px; }

/* --- Dark bands: metrics, ODM, process, markets ----------------- */
.data-section, .odm-section, .process-section, /* --- Markets / contact ------------------------------------------ */
.markets-section { color: var(--white); background: var(--onyx); }
.data-section .section-shell { padding-top: 100px; padding-bottom: 100px; }
.metric-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 38px; border-top: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); }
.metric-grid > div { display: grid; align-content: center; min-height: 240px; padding: 28px; border-right: 1px solid var(--concrete); }
.metric-grid > div:first-child { padding-left: 0; }
.metric-grid > div:last-child { border-right: 0; }
.metric-grid > div:nth-child(3n) { border-right: 0; }
.metric-grid > div:nth-child(-n+3) { border-bottom: 1px solid var(--concrete); }
.metric-grid strong { color: var(--white); font-size: 92px; line-height: .9; }
.metric-grid span { margin-top: 23px; color: var(--silver); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.data-note { max-width: 710px; margin: 30px 0 0; color: var(--concrete); font-size: 11px; }

/* --- Products --------------------------------------------------- */
.product-list { border-top: 1px solid var(--onyx); }
.product-category { border-bottom: 1px solid var(--line); }
.product-category:last-child { border-bottom-color: var(--onyx); }
.product-category summary { display: block; padding: 22px 0; cursor: pointer; list-style: none; }
.product-category summary::-webkit-details-marker { display: none; }
.product-category summary::marker { display: none; content: ""; }
.product-category-row { display: grid; grid-template-columns: 70px minmax(0,.65fr) minmax(0,.8fr) 44px; gap: 20px; align-items: center; min-height: 60px; }
.product-category summary:hover .product-category-title { color: var(--burgundy); }
.product-category summary:focus-visible { outline-offset: 6px; }
.product-category-index { color: var(--burgundy); font-size: 10px; font-weight: 700; }
.product-category-title { min-width: 0; font-size: 27px; line-height: 1.08; text-transform: uppercase; overflow-wrap: break-word; transition: color var(--time-pointer) linear; }
.product-category-row small { min-width: 0; color: var(--text-muted); font-size: 11px; font-weight: 700; line-height: 1.55; text-transform: uppercase; overflow-wrap: break-word; }
.product-category-toggle { position: relative; width: 44px; height: 44px; justify-self: end; }
.product-category-toggle::before, .product-category-toggle::after { position: absolute; top: 50%; left: 50%; width: 16px; height: 1px; background: var(--burgundy); content: ""; transform: translate(-50%,-50%); transition: transform var(--time-pointer) linear; }
.product-category-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.product-category[open] .product-category-toggle::after { transform: translate(-50%,-50%) rotate(90deg) scaleX(0); }
.product-category-body { padding: 4px 0 46px 90px; }
.product-image-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; border: 1px solid var(--line); background: transparent; }
.product-image-slot { min-width: 0; margin: 0; background: var(--white); }
.product-image-frame { display: grid; aspect-ratio: 4 / 5; place-items: center; overflow: hidden; background-color: var(--white); background-image: url("assets/vi-grid.svg"); background-size: 60px 60px; }
.product-image-frame span { color: var(--text-muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.product-image-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-image-slot figcaption { min-height: 82px; padding: 17px 18px 19px; border-top: 1px solid var(--line); }
.product-image-slot figcaption span, .product-image-slot figcaption strong { display: block; }
.product-image-slot figcaption span { margin-bottom: 7px; color: var(--burgundy); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.product-image-slot figcaption strong { font-size: 14px; line-height: 1.25; text-transform: uppercase; }

.product-catalog { margin-top: 92px; }
.product-catalog-heading { display: grid; grid-template-columns: minmax(0,1fr); gap: 18px; padding-bottom: 34px; }
.product-catalog-heading h3 { max-width: 720px; margin: 0; font-size: 38px; }
.product-record { border-top: 1px solid var(--line); }
.product-record:last-child { border-bottom: 1px solid var(--onyx); }
.product-record:first-of-type { border-top-color: var(--onyx); }
.product-record summary { display: block; padding: 15px 0; cursor: pointer; list-style: none; }
.product-record summary::-webkit-details-marker { display: none; }
.product-record summary::marker { display: none; content: ""; }
.product-record-row { display: grid; grid-template-columns: 100px minmax(0,.75fr) minmax(0,1fr) 32px; gap: 20px; align-items: center; min-height: 48px; }
.product-record-row::after { grid-column: 4; color: var(--burgundy); content: "+"; font-size: 28px; font-weight: 400; line-height: 1; text-align: right; }
.product-record[open] .product-record-row::after { content: "\2212"; }
.product-record-row > span { color: var(--burgundy); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.product-record-row strong { min-width: 0; font-size: 17px; line-height: 1.2; text-transform: uppercase; overflow-wrap: break-word; }
.product-record-row small { min-width: 0; color: var(--text-muted); font-size: 11px; font-weight: 700; line-height: 1.45; text-transform: uppercase; overflow-wrap: break-word; }
.product-record-body { padding: 6px 0 46px 120px; }
.product-record-body > p { max-width: 780px; margin-bottom: 30px; font-size: 14px; line-height: 1.7; }
.product-specs { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-bottom: 0; border-top: 1px solid var(--onyx); border-left: 1px solid var(--line); }
.product-specs > div { min-width: 0; min-height: 96px; padding: 17px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-specs dt, .commercial-terms dt { margin-bottom: 7px; color: var(--burgundy); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.product-specs dd { margin: 0; overflow-wrap: anywhere; font-size: 12px; line-height: 1.45; }
.product-notes { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-notes p { min-width: 0; margin: 0; padding: 20px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--onyx); color: var(--text-muted); font-size: 12px; line-height: 1.55; }
.product-notes p:last-child { border-right: 0; }
.product-notes strong { display: block; margin-bottom: 7px; color: var(--onyx); font-size: 9px; text-transform: uppercase; }

/* --- ODM grid --------------------------------------------------- */
.odm-section { padding-top: 115px; padding-bottom: 115px; }
.odm-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--concrete); border-left: 1px solid var(--concrete); }
 .odm-grid article { min-height: 250px; padding: 27px; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); outline: 1px solid transparent; outline-offset: -1px; transition: outline-color var(--time-pointer) linear; }
 .odm-grid article:hover, .odm-grid article:focus-within { outline-color: var(--burgundy); }
.service-programmes { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 70px; border-top: 1px solid var(--concrete); border-left: 1px solid var(--concrete); }
.service-programmes article { min-width: 0; min-height: 260px; padding: 30px; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); }
.service-eyebrow { color: var(--silver); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.service-programmes h3 { max-width: 460px; margin-top: 62px; font-size: 24px; }
.service-programmes p { max-width: 500px; margin-bottom: 0; color: var(--concrete); font-size: 13px; line-height: 1.65; }
.commercial-terms { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 34px 0 0; border-top: 1px solid var(--concrete); border-left: 1px solid var(--concrete); }
.commercial-terms > div { min-width: 0; min-height: 124px; padding: 21px; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); }
.commercial-terms dt { color: var(--silver); }
.commercial-terms dd { margin: 0; overflow-wrap: anywhere; font-size: 13px; line-height: 1.5; }
.service-notes { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-right: 1px solid var(--concrete); border-left: 1px solid var(--concrete); }
.service-notes p { min-width: 0; margin: 0; padding: 23px 21px; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); color: var(--concrete); font-size: 12px; line-height: 1.6; }
.service-notes p:last-child { border-right: 0; }
.service-notes strong { display: block; margin-bottom: 7px; color: var(--white); font-size: 9px; text-transform: uppercase; }

/* --- Process ---------------------------------------------------- */
.process-section { padding-top: 115px; padding-bottom: 120px; border-top: 1px solid var(--concrete); }
.process-layout { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(320px,.7fr); gap: 48px; align-items: start; }
.process-figure { display: grid; align-content: space-between; min-width: 0; min-height: 0; margin: 0; background: var(--white); }
.process-visual { display: block; width: 100%; min-width: 0; }
.process-figure img { display: block; width: 100%; height: auto; aspect-ratio: 30 / 13; object-fit: contain; }
.process-figure figcaption, .material-grid figcaption { padding: 13px 17px; color: var(--onyx); font-size: 9px; text-transform: uppercase; }
.process-steps { margin: 0; padding: 0; border-top: 1px solid var(--concrete); list-style: none; }
.process-steps li { display: grid; grid-template-columns: 36px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--concrete); }
.process-steps strong { display: block; font-size: 15px; text-transform: uppercase; }
.process-steps p { margin: 4px 0 0; color: var(--concrete); font-size: 12px; }

/* --- Factory / materials ---------------------------------------- */
.factory-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.factory-image { margin: 0; background: var(--onyx); }
.factory-image img { display: block; width: 100%; aspect-ratio: 1.18 / 1; object-fit: cover; filter: grayscale(1) contrast(1.08); }
.factory-image p { margin: 0; padding: 13px 17px; color: var(--white); font-size: 9px; text-transform: uppercase; }
.factory-grid > * { min-width: 0; }
.factory-grid > div { container-type: inline-size; }
.factory-grid h2 { margin: 23px 0 30px; font-size: clamp(28px, 8.8cqi, 68px); }

.materials-section { background: var(--white); }
.material-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(340px,.72fr); gap: 80px; align-items: start; }
.material-grid figure { margin-bottom: 0; background: var(--silver); }
.material-grid figure img { display: block; width: 100%; aspect-ratio: 1.32 / 1; object-fit: cover; filter: grayscale(1) contrast(1.08); }
.material-list { border-top: 1px solid var(--onyx); }
.material-list article { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.material-list p { margin: 0; color: var(--text-muted); font-size: 12px; }

.markets-section { padding-top: 115px; padding-bottom: 115px; }
.market-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); }
 .market-grid article { min-height: 260px; padding: 28px; border-right: 1px solid var(--concrete); outline: 1px solid transparent; outline-offset: -1px; transition: outline-color var(--time-pointer) linear; }
 .market-grid article:hover, .market-grid article:focus-within { outline-color: var(--burgundy); }
.market-grid article:first-child { padding-left: 0; }
.market-grid article:last-child { border-right: 0; padding-right: 0; }
.market-grid article > span { color: var(--burgundy); font-size: 34px; font-weight: 700; }
.market-grid h3 { margin-top: 64px; }
.compliance-panel { margin-top: 70px; border-top: 1px solid var(--concrete); }
.compliance-heading { display: grid; gap: 18px; padding: 34px 0; }
.compliance-heading h3 { max-width: 720px; margin: 0; font-size: 30px; }
.compliance-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--concrete); border-left: 1px solid var(--concrete); }
.compliance-grid article { min-width: 0; min-height: 154px; padding: 22px; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); }
.compliance-grid span { color: var(--burgundy); font-size: 10px; font-weight: 700; }
.compliance-grid p { margin: 28px 0 0; color: var(--silver); font-size: 12px; line-height: 1.55; }
.compliance-note { max-width: 820px; margin: 24px 0 0; color: var(--concrete); font-size: 11px; line-height: 1.6; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr); gap: 64px; margin-top: 30px; }
.contact-layout > div:first-child { container-type: inline-size; min-width: 0; }
.contact-layout h2 { margin-bottom: 27px; }
.contact-copy { border-top: 1px solid var(--onyx); }
.contact-copy p { margin: 0; padding: 19px 0; border-bottom: 1px solid var(--line); color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.contact-copy strong { display: block; margin-bottom: 6px; color: var(--burgundy); font-size: 10px; text-transform: uppercase; }
.contact-copy a { color: var(--onyx); font-size: 16px; font-weight: 700; }

html[lang="de"] .company-grid h2 {
  font-size: clamp(28px, 7.2cqi, 56px);
}
html[lang="de"] .profile-layout h2,
html[lang="de"] .section-heading h2,
html[lang="de"] .contact-layout h2,
html[lang="pl"] .company-grid h2,
html[lang="pl"] .profile-layout h2,
html[lang="pl"] .section-heading h2,
html[lang="pl"] .contact-layout h2 {
  font-size: clamp(28px, 8.8cqi, 68px);
}
html[lang="pl"] .factory-grid h2 {
  font-size: clamp(26px, 7cqi, 40px);
}
html[lang="de"] .fact-list > div,
html[lang="pl"] .fact-list > div {
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}
html[lang="de"] .fact-list dt,
html[lang="de"] .fact-list dd,
html[lang="pl"] .fact-list dt,
html[lang="pl"] .fact-list dd {
  min-width: 0;
  overflow-wrap: break-word;
}

/* --- Footer ----------------------------------------------------- */
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 5vw; color: var(--white); background: var(--onyx); border-top: 1px solid rgba(255,255,255,.28); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.site-footer p { margin: 0; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font: 700 15px/1 var(--sans); }
.footer-brand > span:last-child { color: var(--concrete); font: 700 9px/1 var(--sans); }
.footer-mark { display: inline-block; width: 24px; height: 22px; }

/* Fixed control. Invisible + non-interactive until .is-visible. */
.back-to-top {
  position: fixed;
  z-index: 20;
  right: max(5vw, env(safe-area-inset-right, 0px));
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--onyx);
  color: var(--white);
  background: var(--onyx);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--time-pointer) var(--ease-cut), transform var(--time-pointer) var(--ease-cut), visibility var(--time-pointer) var(--ease-cut), background var(--time-pointer) linear, border-color var(--time-pointer) linear;
}
.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--burgundy);
  background: var(--burgundy);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

/* --- Breakpoints ------------------------------------------------ */
@media (max-width: 1320px) {
  .site-header { gap: 16px; }
  .desktop-nav { gap: 16px; }
  .header-tools { gap: 12px; }
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 14px; }
  h1 { font-size: 82px; }
  .hero-slide-title, .brand-panel h2 { font-size: 72px; }
  h2 { font-size: 56px; }
  .factory-grid h2 { font-size: clamp(28px, 8.8cqi, 56px); }
  html[lang="de"] .company-grid h2 { font-size: clamp(28px, 7.2cqi, 56px); }
  html[lang="de"] .profile-layout h2,
  html[lang="de"] .section-heading h2,
  html[lang="de"] .contact-layout h2,
  html[lang="pl"] .company-grid h2,
  html[lang="pl"] .profile-layout h2,
  html[lang="pl"] .section-heading h2,
  html[lang="pl"] .contact-layout h2 { font-size: clamp(28px, 8.8cqi, 56px); }
  html[lang="pl"] .factory-grid h2 { font-size: clamp(26px, 7cqi, 40px); }
  .company-grid,
  .profile-layout,
  .section-heading,
  .factory-grid,
  .material-grid,
  .contact-layout { gap: 40px; }
  .factory-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .company-grid { grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr); }
  .profile-layout { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .7fr); }
  .contact-layout { grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr); }
  .section-heading { grid-template-columns: minmax(0, 1.15fr) minmax(240px, .55fr); }
  .product-category-row { grid-template-columns: 48px minmax(0,1fr) 44px; gap: 12px; min-height: 0; }
  .product-category-index { grid-column: 1; grid-row: 1; }
  .product-category-title { grid-column: 2; grid-row: 1; font-size: 24px; }
  .product-category-row small { grid-column: 1 / 3; grid-row: 2; }
  .product-category-toggle { grid-column: 3; grid-row: 1 / span 2; }
  .product-record-row { grid-template-columns: 88px minmax(0,1fr) 28px; gap: 12px; min-height: 0; }
  .product-record-row::after { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
  .product-record-row small { grid-column: 1 / 3; grid-row: 2; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .header-tools { margin-left: 0; }
  .header-tools .language-switcher { display: none !important; }
  .mobile-nav { position: fixed; z-index: 19; top: 92px; right: 0; left: 0; display: grid; max-height: calc(100dvh - 92px); padding: 20px 5vw 26px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; color: var(--white); background: var(--onyx); border-bottom: 1px solid var(--concrete); clip-path: inset(0 0 100% 0); }
  .mobile-nav.is-animating { display: grid; }
  .mobile-nav.is-open { clip-path: none; transition: clip-path 220ms var(--ease-cut); }
  .mobile-nav.is-animating:not(.is-open) { clip-path: inset(0 0 100% 0); transition: clip-path 160ms var(--ease-cut); }
  .mobile-nav > a { min-height: 45px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.24); font-size: 11px; font-weight: 700; text-transform: uppercase; clip-path: inset(0 0 100% 0); }
  .mobile-nav.is-open > a { clip-path: inset(0 0 0 0); transition: clip-path 160ms var(--ease-cut); }
  .mobile-nav.is-open > a:nth-child(1) { transition-delay: 40ms; }
  .mobile-nav.is-open > a:nth-child(2) { transition-delay: 80ms; }
  .mobile-nav.is-open > a:nth-child(3) { transition-delay: 120ms; }
  .mobile-nav.is-open > a:nth-child(4) { transition-delay: 160ms; }
  .mobile-nav.is-open > a:nth-child(5) { transition-delay: 200ms; }
  .mobile-nav.is-open > a:nth-child(6) { transition-delay: 240ms; }
  .mobile-nav.is-open > a:nth-child(7) { transition-delay: 280ms; }
  .mobile-nav.is-open .language-switcher { transition-delay: 320ms; }
  .mobile-nav .language-switcher { display: grid; justify-items: stretch; width: 100%; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.24); }
  .mobile-nav .language-switcher-toggle { min-height: 45px; width: 100%; justify-content: space-between; font-size: 11px; }
  .mobile-nav .language-switcher-menu { position: static; z-index: auto; min-width: 0; width: 100%; margin-top: 0; padding: 0; border: 0; background: transparent; }
  .mobile-nav .language-switcher-menu a { min-height: 45px; padding: 13px 0 13px 18px; border-bottom: 1px solid rgba(255,255,255,.24); clip-path: none; font-size: 11px; }
  .mobile-nav-cta { overflow-wrap: anywhere; color: var(--burgundy); }
  .company-grid, .profile-layout, .section-heading, .factory-grid, .material-grid, .contact-layout { gap: 55px; }
  .brand-panel { gap: 48px; padding: 58px; }
  .metric-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .metric-grid > div:nth-child(3n) { border-right: 1px solid var(--concrete); }
  .metric-grid > div:nth-child(2n) { border-right: 0; }
  .metric-grid > div:nth-child(-n+4) { border-bottom: 1px solid var(--concrete); }
  .metric-grid strong { font-size: 72px; }
  .odm-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-specs { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .commercial-terms { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .market-grid { grid-template-columns: repeat(2,minmax(0,1fr)); border-left: 1px solid var(--concrete); }
  .market-grid article, .market-grid article:first-child, .market-grid article:last-child { min-height: 230px; padding: 28px; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); }
  .market-grid article:nth-child(2n), .market-grid article:last-child { border-right: 0; }
  .market-grid article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 78px; }
  body { font-size: 14px; }
  .site-header { min-height: 78px; padding: 16px 6vw; }
  .brand { min-width: 0; gap: 10px; }
  .brand-mark { width: 36px; height: 36px; flex-basis: 36px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; }
  .mobile-nav { top: 78px; max-height: calc(100dvh - 78px); padding-right: 6vw; padding-left: 6vw; }
  .hero { min-height: 700px; }
  .hero-content { width: 88vw; margin-top: 104px; margin-bottom: 112px; }
  .hero-location { max-width: 250px; margin-bottom: 18px; }
  .hero-mark { width: 62px; height: 54px; margin-bottom: 22px; }
  h1, .hero-slide-title { font-size: 48px; line-height: .98; }
  h1 { margin-bottom: 22px; }
  h2, .brand-panel h2 { font-size: 38px; line-height: 1; }
  .factory-grid h2 { font-size: 38px; }
  html[lang="de"] .company-grid h2,
  html[lang="de"] .profile-layout h2,
  html[lang="de"] .section-heading h2,
  html[lang="de"] .contact-layout h2,
  html[lang="pl"] .company-grid h2,
  html[lang="pl"] .profile-layout h2,
  html[lang="pl"] .section-heading h2,
  html[lang="pl"] .contact-layout h2 { font-size: 38px; }
  h3 { font-size: 18px; }
  .hero-intro { max-width: 84vw; margin-bottom: 24px; font-size: 14px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; gap: 13px; }
  .button, .text-link { min-height: 44px; font-size: 9px; white-space: normal; text-align: center; }
  .button { padding: 11px 13px; }
  .hero-carousel-controls { right: auto; bottom: 54px; left: 6vw; }
  .carousel-dots { display: none; }
  .hero-footnote { right: 6vw; bottom: 18px; left: 6vw; }
  .hero-footnote span:last-child { display: none; }
  .signal-band { grid-template-columns: 1fr; }
  .signal-item { padding: 22px 6vw; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal-item:last-child { border-bottom: 0; }
  .section-shell { width: auto; margin-right: 6vw; margin-left: 6vw; }
  .company-section, .profile-section, .strength-section, .products-section, .factory-section, .materials-section, .contact-section, .odm-section, .process-section, .markets-section { padding-top: 82px; padding-bottom: 82px; }
  .company-grid, .profile-layout, .section-heading, .factory-grid, .material-grid, .contact-layout { display: block; }
  .company-grid, .profile-layout, .contact-layout { margin-top: 30px; }
  .company-grid h2, .profile-layout h2, .contact-layout h2 { margin-bottom: 30px; }
  .fact-list, .contact-copy { margin-top: 40px; }
  .fact-list > div { grid-template-columns: 105px 1fr; gap: 15px; }
  html[lang="de"] .fact-list > div,
  html[lang="pl"] .fact-list > div { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .brand-section { width: auto; margin: 0; padding: 0; }
  .brand-panel { display: block; min-height: 0; padding: 75px 6vw; }
  .brand-panel-mark { width: 170px; margin-bottom: 52px; }
  .brand-panel h2 { margin-top: 22px; }
  .brand-note { margin-top: 30px; }
  .section-heading { padding-bottom: 34px; }
  .section-heading > p { margin-top: 23px; }
  .strength-grid, .metric-grid, .odm-grid, .market-grid { grid-template-columns: 1fr; }
  .metric-grid > div:nth-child(3n), .metric-grid > div:nth-child(2n) { border-right: 0; }
  .strength-grid article, .strength-grid article:first-child, .strength-grid article:last-child { min-height: 0; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .strength-grid article:last-child { border-bottom: 0; }
  .strength-grid h3, .odm-grid h3 { margin-top: 34px; }
  .data-section .section-shell { padding-top: 82px; padding-bottom: 82px; }
  .metric-grid > div, .metric-grid > div:first-child, .metric-grid > div:last-child { min-height: 170px; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--concrete); }
  .metric-grid > div:last-child { border-bottom: 0; }
  .metric-grid strong { font-size: 68px; }
  .product-category summary { padding: 20px 0; }
  .product-category-row { grid-template-columns: 42px minmax(0,1fr) 44px; gap: 10px; min-height: 0; }
  .product-category-index { grid-column: 1; grid-row: 1; }
  .product-category-title { grid-column: 2; grid-row: 1; min-width: 0; font-size: 21px; overflow-wrap: anywhere; }
  .product-category-row small { grid-column: 1 / 3; grid-row: 2; overflow-wrap: anywhere; }
  .product-category-toggle { grid-column: 3; grid-row: 1 / span 2; }
  .product-category-body { padding: 4px 0 34px 52px; }
  .product-image-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-catalog { margin-top: 66px; }
  .product-catalog-heading, .compliance-heading { display: block; }
  .product-catalog-heading h3, .compliance-heading h3 { margin-top: 18px; font-size: 27px; }
  .product-record summary { padding: 15px 0; }
  .product-record-row { grid-template-columns: 78px minmax(0,1fr) 28px; gap: 10px; min-height: 0; }
  .product-record-row::after { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
  .product-record-row strong { min-width: 0; font-size: 15px; overflow-wrap: anywhere; }
  .product-record-row small { grid-column: 1 / 3; grid-row: 2; overflow-wrap: anywhere; }
  .product-record-body { padding: 6px 0 40px; }
  .product-record-body > p { margin-bottom: 24px; }
  .product-specs { grid-template-columns: 1fr; border-left: 0; }
  .product-specs > div { min-height: 0; padding: 15px 0; border-right: 0; }
  .product-notes { grid-template-columns: 1fr; border-right: 0; border-left: 0; }
  .product-notes p { padding: 18px 0; border-right: 0; }
  .odm-grid { border-left: 0; }
  .odm-grid article { min-height: 0; padding: 25px 0; border-right: 0; }
  .service-programmes, .commercial-terms, .service-notes, .compliance-grid { grid-template-columns: 1fr; border-left: 0; }
  .service-programmes { margin-top: 52px; }
  .service-programmes article { min-height: 0; padding: 25px 0; border-right: 0; }
  .service-programmes h3 { margin-top: 34px; font-size: 21px; }
  .commercial-terms { margin-top: 28px; }
  .commercial-terms > div { min-height: 0; padding: 17px 0; border-right: 0; }
  .service-notes { border-right: 0; }
  .service-notes p { padding: 19px 0; border-right: 0; }
  .process-layout { display: block; }
  .process-figure { margin-bottom: 38px; }
  .process-figure img { aspect-ratio: auto; object-fit: contain; }
  .factory-image, .material-grid figure { margin-bottom: 42px; }
  .factory-grid h2 { margin-top: 22px; }
  .market-grid { border-left: 0; }
  .market-grid article, .market-grid article:first-child, .market-grid article:last-child { min-height: 200px; padding: 25px 0; border-right: 0; }
  .market-grid article:last-child { grid-column: auto; }
  .market-grid h3 { margin-top: 34px; }
  .compliance-panel { margin-top: 52px; }
  .compliance-heading { padding: 30px 0; }
  .compliance-grid article { min-height: 0; padding: 21px 0; border-right: 0; }
  .compliance-grid p { margin-top: 18px; }
  .contact-copy a { font-size: 14px; }
  .site-footer { display: grid; justify-items: start; gap: 14px; padding: 28px 6vw; }
  .back-to-top { right: max(6vw, env(safe-area-inset-right, 0px)); bottom: max(20px, env(safe-area-inset-bottom, 0px)); width: 44px; height: 44px; }
}

@media (max-width: 380px) {
  h1, .hero-slide-title { font-size: 43px; }
  .brand-copy small { display: none; }
  .hero-actions { display: grid; justify-items: start; }
}

 /* Honor OS reduced-motion: drop wipes, clip reveals, smooth scroll. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-construct { display: none; }
  .hero.is-wiping::after { animation: none; }
  .js-motion main > section.is-pending h2,
  .js-motion main > section.is-pending .lead-copy,
  .js-motion main > section.is-pending .section-heading > p,
  .js-motion main > section.is-pending .hero-intro { clip-path: none; }
  .js-motion main > section.is-pending .fact-list::before,
  .js-motion main > section.is-pending .product-list::before,
  .js-motion main > section.is-pending .contact-copy::before,
  .js-motion main > section.is-pending .material-list::before,
  .js-motion main > section.is-pending .process-steps::before { transform: scaleX(1); }
}

 /* JS-only motion. html.js-motion is stamped in <head> before paint. */
.js-motion .hero-construct { position: absolute; z-index: 4; inset: 0; background-color: var(--onyx); background-image: url("assets/vi-grid.svg"); background-size: 60px 60px; pointer-events: none; clip-path: inset(0 0 0 0); transition: clip-path var(--time-load) var(--ease-cut) 80ms; }
 .js-motion.is-constructed .hero-construct { clip-path: inset(0 0 100% 0); }
 .js-motion:not(.is-constructed) .hero-content > * { clip-path: inset(0 0 100% 0); }
 .js-motion.is-constructed .hero-content > * { clip-path: inset(0 0 0 0); transition: clip-path var(--time-reveal) var(--ease-cut); }
 .js-motion.is-constructed .hero-location { transition-delay: 160ms; }
 .js-motion.is-constructed .hero-mark { transition-delay: 220ms; }
 .js-motion.is-constructed h1, .js-motion.is-constructed .hero-slide-title { transition-delay: 280ms; }
 .js-motion.is-constructed .hero-intro { transition-delay: 360ms; }
 .js-motion.is-constructed .hero-actions { transition-delay: 420ms; }
 .js-motion main > section.is-pending h2,
 .js-motion main > section.is-pending .lead-copy,
 .js-motion main > section.is-pending .section-heading > p { clip-path: inset(0 0 100% 0); }
 .js-motion main > section.is-revealed h2,
 .js-motion main > section.is-revealed .lead-copy,
 .js-motion main > section.is-revealed .section-heading > p { clip-path: inset(0 0 0 0); transition: clip-path var(--time-reveal) var(--ease-cut); }
 .js-motion main > section.is-revealed .lead-copy { transition-delay: 70ms; }
 .js-motion main > section.is-revealed .section-heading > p { transition-delay: 90ms; }
 .js-motion main > section.is-pending .fact-list,
 .js-motion main > section.is-pending .product-list,
 .js-motion main > section.is-pending .contact-copy,
 .js-motion main > section.is-pending .material-list,
 .js-motion main > section.is-pending .process-steps,
 .js-motion main > section.is-revealed .fact-list,
 .js-motion main > section.is-revealed .product-list,
 .js-motion main > section.is-revealed .contact-copy,
 .js-motion main > section.is-revealed .material-list,
 .js-motion main > section.is-revealed .process-steps { position: relative; }
 .js-motion main > section.is-pending .fact-list::before,
 .js-motion main > section.is-pending .product-list::before,
 .js-motion main > section.is-pending .contact-copy::before,
 .js-motion main > section.is-pending .material-list::before,
 .js-motion main > section.is-pending .process-steps::before,
 .js-motion main > section.is-revealed .fact-list::before,
 .js-motion main > section.is-revealed .product-list::before,
 .js-motion main > section.is-revealed .contact-copy::before,
 .js-motion main > section.is-revealed .material-list::before,
 .js-motion main > section.is-revealed .process-steps::before { position: absolute; top: 0; right: 0; left: 0; height: 1px; background: var(--onyx); content: ""; transform: scaleX(0); transform-origin: left; }
 .js-motion main > section.is-pending .process-steps::before,
 .js-motion main > section.is-revealed .process-steps::before { background: var(--concrete); }
 .js-motion main > section.is-revealed .fact-list::before,
 .js-motion main > section.is-revealed .product-list::before,
 .js-motion main > section.is-revealed .contact-copy::before,
 .js-motion main > section.is-revealed .material-list::before,
 .js-motion main > section.is-revealed .process-steps::before { transform: scaleX(1); transition: transform 280ms linear 120ms; }
