:root {
  --yellow: #fff313;
  --black: #000000;
  --carbon: #333333;
  --gunmetal: #4b4b4b;
  --aluminum: #afafaf;
  --white: #eeeeee;
  --paper: #f5f5f1;
  --focus: #75a7ff;
  --header-height: 58px;
  --content: 1320px;
  --radius-control: 6px;
  --radius-card: 9px;
  --radius-image: 16px;
  --space-section: 120px;
  --ease: cubic-bezier(.2,.75,.25,1);
  --z-header: 50;
  --z-nav: 60;
  --z-dialog: 90;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:80px;overflow-x:clip}
body{margin:0;overflow-x:clip;background:var(--black);color:var(--black);font-family:Inter,"Neue Haas Grotesk","Helvetica Neue",Arial,sans-serif;font-size:16px;line-height:1.38;font-weight:400;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
body.nav-open{overflow:hidden}
img,video{display:block;max-width:100%}
a{color:inherit}
button,input,select,textarea{font:inherit}
button{color:inherit}
::selection{background:var(--yellow);color:var(--black)}
:focus-visible{outline:3px solid var(--focus);outline-offset:3px}
.skip-link{position:fixed;z-index:999;left:16px;top:-100px;padding:10px 14px;background:var(--yellow);color:var(--black);border-radius:var(--radius-control)}
.skip-link:focus{top:16px}
.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}
.content-shell{width:min(calc(100% - 48px),var(--content));margin-inline:auto}

/* Header */
.site-header{position:fixed;z-index:var(--z-header);top:0;left:0;right:0;padding:8px 10px;background:transparent;transition:background .2s var(--ease)}
.site-header[data-scrolled="true"]{background:var(--black)}
.header-shell{display:flex;align-items:center;gap:8px;width:100%}
.brand{display:flex;align-items:center;flex:0 0 auto;height:42px;padding:8px 12px;background:var(--black);border-radius:var(--radius-control);text-decoration:none}
.brand img{width:150px;height:auto}
.primary-nav{display:grid;grid-template-columns:repeat(6,minmax(92px,1fr)) auto;align-items:stretch;gap:4px;flex:1}
.nav-cell,.nav-contact{display:flex;align-items:center;justify-content:flex-start;min-height:42px;padding:0 14px;border-radius:var(--radius-control);text-decoration:none;font-size:14px;font-weight:400;line-height:1;background:rgba(51,51,51,.88);color:var(--white);transition:background .18s var(--ease),color .18s var(--ease)}
.nav-cell:hover,.nav-cell:focus-visible,.nav-cell[aria-current="page"]{background:var(--gunmetal)}
.nav-contact{justify-content:center;background:var(--yellow);color:var(--black);white-space:nowrap}
.nav-contact:hover,.nav-contact:focus-visible{background:var(--white)}
.menu-button{display:none;margin-left:auto;width:42px;height:42px;padding:10px;border:0;border-radius:var(--radius-control);background:var(--yellow);cursor:pointer}
.menu-button span:not(.sr-only){display:block;width:100%;height:1px;margin:5px 0;background:var(--black);transition:transform .2s var(--ease),opacity .15s var(--ease)}
.menu-button[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-button[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-button[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* Typography and controls */
h1,h2,h3,p{margin-top:0}
h1,h2,h3{font-weight:300;text-wrap:balance}
h1{font-size:clamp(56px,7vw,104px);line-height:.98;letter-spacing:-.04em}
h2{font-size:clamp(36px,4.2vw,64px);line-height:1.05;letter-spacing:-.04em}
h3{font-size:24px;line-height:1.17;letter-spacing:-.02em}
p{text-wrap:pretty}
.eyebrow{margin:0 0 18px;font-size:10px;line-height:1.2;letter-spacing:.16em;text-transform:uppercase;font-weight:400}
.button{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 16px;border:1px solid var(--yellow);border-radius:var(--radius-control);background:var(--yellow);color:var(--black);font-size:14px;font-weight:400;text-decoration:none;cursor:pointer;transition:background .18s var(--ease),color .18s var(--ease),border-color .18s var(--ease)}
.button:hover,.button:focus-visible{background:var(--white);border-color:var(--white)}
.button-secondary{background:var(--carbon);border-color:var(--carbon);color:var(--white)}
.button-secondary:hover,.button-secondary:focus-visible{background:var(--gunmetal);border-color:var(--gunmetal)}
.hero-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:26px}
.text-link{display:inline-flex;align-items:center;gap:8px;border-bottom:1px solid currentColor;padding-bottom:3px;font-size:14px;text-decoration:none}
.text-link:hover,.text-link:focus-visible{border-bottom-color:transparent}
.text-link.inverse{color:var(--white)}

/* Hero */
.page-hero{position:relative;min-height:100svh;overflow:hidden;background-color:var(--black);color:var(--white)}
.hero-background{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.page-hero .hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.48)}
.hero-layout{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,430px);grid-template-rows:1fr auto;gap:40px;width:min(calc(100% - 48px),calc(var(--content) + 80px));min-height:100svh;margin-inline:auto;padding:132px 0 34px}
.hero-title{align-self:center;max-width:900px}
.hero-title .eyebrow{color:var(--yellow)}
.hero-title h1{margin:0;max-width:12ch;color:var(--white)}
.hero-foot{align-self:end;max-width:460px;padding-bottom:4px}
.hero-foot>p{margin:0;color:var(--white);font-size:14px;line-height:1.38}
.hero-discovery{position:relative;align-self:end;justify-self:end;display:grid;grid-template-columns:1fr 92px;grid-template-rows:auto auto 1fr;gap:5px 16px;width:min(100%,430px);min-height:126px;padding:18px 16px;border:1px solid var(--gunmetal);border-radius:var(--radius-card);background:rgba(0,0,0,.78);color:var(--white);text-decoration:none}
.hero-discovery:hover,.hero-discovery:focus-visible{border-color:var(--yellow)}
.hero-discovery img{grid-column:2;grid-row:1/4;align-self:center;width:92px;height:92px;object-fit:contain;border-radius:var(--radius-control);background:var(--white)}
.discovery-kicker{grid-column:1;color:var(--yellow);font-size:10px;letter-spacing:.12em;text-transform:uppercase}
.discovery-title{grid-column:1;font-size:18px;font-weight:300;letter-spacing:-.02em}
.discovery-copy{grid-column:1;align-self:end;color:var(--aluminum);font-size:12px;line-height:1.35}
.sub-hero{min-height:78svh}
.sub-hero .hero-layout{min-height:78svh}
.product-hero .hero-discovery img{object-fit:contain;padding:5px}

/* Full-width section system */
.statement-section{display:grid;min-height:76svh;background:var(--yellow);color:var(--black)}
.statement-inner{align-self:center;width:min(calc(100% - 48px),var(--content));margin-inline:auto;padding:var(--space-section) 0}
.statement-mark{margin-bottom:34px;font-size:10px;letter-spacing:.16em;text-transform:uppercase}
.statement-inner h2{max-width:16ch;margin-bottom:28px;font-size:clamp(44px,6.6vw,92px);line-height:1.01}
.statement-inner>p:not(.statement-mark){max-width:560px;margin-bottom:28px;font-size:16px}
.statement-link{display:inline-flex;border-bottom:1px solid var(--black);padding-bottom:3px;font-size:14px;text-decoration:none}
.light-section,.dark-section{padding:var(--space-section) 0}
.light-section{background:var(--white);color:var(--black)}
.dark-section{background:var(--black);color:var(--white)}
.inquiry-section{background:var(--yellow);color:var(--black)}
.inquiry-inner{width:min(calc(100% - 48px),var(--content));margin-inline:auto;padding:var(--space-section) 0}
.inquiry-inner h2{max-width:14ch;margin-bottom:24px}
.inquiry-inner>p:not(.eyebrow){max-width:540px;margin-bottom:28px}
.inquiry-section .button-secondary{background:var(--black);border-color:var(--black);color:var(--white)}
.inquiry-section .button-secondary:hover{background:var(--carbon);border-color:var(--carbon)}
.section-intro{max-width:760px;margin-bottom:64px}
.section-intro>p:last-child:not(.eyebrow){max-width:520px;margin-top:22px}
.dark-section .section-intro .eyebrow{color:var(--yellow)}
.dark-section .section-intro>p:last-child{color:var(--aluminum)}
.section-top{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:64px}
.section-top .section-intro{margin-bottom:0}
.editorial-head{display:grid;grid-template-columns:minmax(0,.7fr) minmax(0,1fr);gap:60px}

/* Capability/editorial structures */
.capability-lines{margin-top:20px;border-top:1px solid var(--gunmetal)}
.capability-line{display:grid;grid-template-columns:56px minmax(200px,.8fr) minmax(280px,1fr) 24px;align-items:start;gap:24px;padding:28px 0;border-bottom:1px solid var(--gunmetal);text-decoration:none}
.capability-line span{font-size:12px}
.capability-line h3{margin:0}
.capability-line p{margin:2px 0 0;color:var(--gunmetal);font-size:14px}
.capability-line i{font-style:normal;font-size:18px}
.capability-line:hover h3,.capability-line:focus-visible h3{color:var(--gunmetal)}
.wide-image{margin:64px 0 0}
.wide-image img{width:100%;height:clamp(360px,55vw,720px);object-fit:cover;border-radius:var(--radius-image)}
.wide-image figcaption{margin-top:10px;font-size:12px;color:var(--gunmetal)}
.dark-section .wide-image figcaption{color:var(--aluminum)}
.editorial-list{display:grid;gap:120px}
.editorial-row{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);align-items:center;gap:64px}
.editorial-row:nth-child(even){grid-template-columns:minmax(300px,.85fr) minmax(0,1.15fr)}
.editorial-row:nth-child(even) .editorial-image{order:2}
.editorial-image img{width:100%;height:clamp(340px,44vw,620px);object-fit:cover;border-radius:var(--radius-image)}
.editorial-copy .index{display:block;margin-bottom:28px;font-size:12px}
.editorial-copy h3{font-size:clamp(32px,4vw,56px);line-height:1.03;letter-spacing:-.04em}
.editorial-copy p{max-width:470px;color:var(--gunmetal)}
.process-layout{display:grid;grid-template-columns:minmax(250px,.65fr) minmax(0,1.35fr);gap:80px}
.process-list{border-top:1px solid var(--gunmetal)}
.process-line{display:grid;grid-template-columns:64px 1fr;gap:24px;padding:30px 0;border-bottom:1px solid var(--gunmetal)}
.process-line>span{font-size:12px}
.process-line h3{margin-bottom:10px}
.process-line p{max-width:680px;margin:0;color:var(--gunmetal)}

/* Story/image systems */
.story-grid{display:grid;grid-template-columns:minmax(280px,.7fr) minmax(0,1.3fr);align-items:start;gap:72px}
.story-copy{position:sticky;top:100px}
.story-copy .eyebrow{color:var(--yellow)}
.light-section .story-copy .eyebrow{color:var(--black)}
.story-copy p:not(.eyebrow){max-width:480px;color:inherit}
.dark-section .story-copy p:not(.eyebrow){color:var(--aluminum)}
.story-images{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.story-images figure{margin:0}
.story-images figure:first-child{margin-top:100px}
.story-images img{width:100%;height:clamp(340px,46vw,700px);object-fit:cover;border-radius:var(--radius-image)}
.image-triptych{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:16px}
.image-triptych figure{margin:0}
.image-triptych img{width:100%;height:560px;object-fit:cover;border-radius:var(--radius-image)}
.image-triptych figure:nth-child(2) img,.image-triptych figure:nth-child(3) img{height:420px}
.image-triptych figure:nth-child(3){align-self:end}
.media-pair{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.media-pair>a{text-decoration:none}
.media-pair img{width:100%;height:520px;object-fit:cover;border-radius:var(--radius-image)}
.media-pair h3{margin:22px 0 8px}
.media-pair p{max-width:480px;color:var(--gunmetal)}

/* Products */
.product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:70px 16px}
.product-grid-featured{grid-template-columns:repeat(2,minmax(0,1fr))}
.product-grid-related{grid-template-columns:repeat(3,minmax(0,1fr))}
.product-card[data-hidden="true"]{display:none}
.product-image{display:grid;place-items:center;overflow:hidden;aspect-ratio:1.35;background:var(--white);border-radius:var(--radius-image);text-decoration:none}
.product-image img{width:82%;height:82%;object-fit:contain;transition:transform .35s var(--ease)}
.product-card:hover .product-image img{transform:scale(1.025)}
.product-meta{display:grid;grid-template-columns:1fr auto;align-items:end;gap:4px 20px;padding-top:18px}
.product-meta>p{grid-column:1/3;margin:0 0 8px;font-size:10px;letter-spacing:.12em;text-transform:uppercase}
.product-meta h2,.product-meta h3{grid-column:1;margin:0;font-size:24px}
.product-meta>span{grid-column:1;color:var(--gunmetal);font-size:14px}
.dark-section .product-meta>span,.dark-section .product-meta>p{color:var(--aluminum)}
.product-meta .text-link{grid-column:2;grid-row:2/4;align-self:end}
.dark-section .product-image{background:var(--white)}
.product-toolbar{display:grid;grid-template-columns:auto 1fr minmax(230px,330px);align-items:end;gap:24px;margin-bottom:72px;padding-bottom:28px;border-bottom:1px solid var(--gunmetal)}
.result-count{display:flex;align-items:baseline;gap:8px}
.result-count strong{font-size:36px;font-weight:300;letter-spacing:-.04em}
.result-count span{font-size:12px}
.filter-group{display:flex;flex-wrap:wrap;gap:4px}
.filter-button{min-height:38px;padding:0 13px;border:1px solid var(--gunmetal);border-radius:var(--radius-control);background:transparent;color:var(--black);font-size:13px;cursor:pointer}
.filter-button[aria-pressed="true"],.filter-button:hover{background:var(--black);color:var(--white)}
.search-label{display:grid;gap:7px;font-size:12px}
.search-label input{width:100%;height:42px;border:1px solid var(--gunmetal);border-radius:var(--radius-control);background:transparent;padding:0 12px;color:var(--black)}
.empty-state{display:none;grid-column:1/-1;padding:80px 0;border-top:1px solid var(--gunmetal)}
.empty-state[data-visible="true"]{display:block}
.product-detail{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);align-items:start;gap:72px}
.product-detail-image{position:sticky;top:90px;display:grid;place-items:center;min-height:620px;background:#fff;border-radius:var(--radius-image)}
.product-detail-image img{width:86%;height:86%;max-height:650px;object-fit:contain}
.product-detail-copy h2{margin-bottom:16px}
.product-lead{max-width:520px;margin-bottom:44px;color:var(--gunmetal);font-size:18px}
.spec-wrap{margin-bottom:30px;border-top:1px solid var(--gunmetal)}
.spec-table{width:100%;border-collapse:collapse}
.spec-table caption{padding:18px 0;text-align:left;font-size:12px;text-transform:uppercase;letter-spacing:.12em}
.spec-table th,.spec-table td{padding:16px 0;border-top:1px solid #c8c8c5;text-align:left;vertical-align:top;font-size:14px;font-weight:400}
.spec-table th{width:42%;color:var(--gunmetal)}

/* Entity/contact/form */
.entity-list{border-top:1px solid var(--gunmetal)}
.entity-list article{display:grid;grid-template-columns:140px minmax(260px,.8fr) minmax(280px,1fr);gap:32px;padding:36px 0;border-bottom:1px solid var(--gunmetal)}
.entity-list span{color:var(--yellow);font-size:12px}
.entity-list h3{margin:0}
.entity-list p{margin:0;color:var(--aluminum)}
.entity-list a{color:var(--white)}
.contact-layout{display:grid;grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr);gap:90px}
.contact-channels h2{margin-bottom:48px}
.contact-line{display:grid;grid-template-columns:120px 1fr;gap:20px;padding:22px 0;border-top:1px solid var(--gunmetal)}
.contact-line:last-child{border-bottom:1px solid var(--gunmetal)}
.contact-line>span{font-size:12px}
.contact-line a{text-decoration:none}
.contact-line p{margin:8px 0 0;color:var(--gunmetal);font-size:14px}
.form{display:grid;gap:24px;padding:36px;background:var(--black);color:var(--white);border-radius:var(--radius-card)}
.form h2{font-size:clamp(36px,4vw,56px)}
.form .eyebrow{color:var(--yellow)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:grid;gap:8px}
.field label{font-size:12px}
.field input,.field select,.field textarea{width:100%;border:1px solid var(--gunmetal);border-radius:var(--radius-control);background:var(--carbon);color:var(--white);padding:12px}
.field input,.field select{height:46px}
.field textarea{min-height:170px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--yellow);outline:none}
.form-note{margin:0;color:var(--aluminum);font-size:12px}
.form .button{justify-self:start}

/* Gallery, video, documents */
.gallery-grid{columns:3;column-gap:16px}
.gallery-card{display:block;width:100%;margin:0 0 16px;padding:0;border:0;background:transparent;cursor:zoom-in;break-inside:avoid}
.gallery-card img{width:100%;border-radius:var(--radius-image)}
.video-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px 16px}
.video-card video{width:100%;aspect-ratio:16/9;border-radius:var(--radius-image);background:var(--carbon)}
.video-card footer{display:flex;justify-content:space-between;gap:20px;padding-top:16px;color:var(--aluminum);font-size:12px}
.video-card footer strong{font-weight:400;color:var(--white)}
.document-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.document-card{padding:18px;border:1px solid #c8c8c5;border-radius:var(--radius-card);background:#fff;cursor:zoom-in}
.document-card img{width:100%;height:440px;object-fit:contain}
.media-dialog{width:min(94vw,1180px);max-width:none;border:0;padding:0;background:transparent}
.media-dialog::backdrop{background:rgba(0,0,0,.92)}
.dialog-inner{position:relative;display:grid;place-items:center;min-height:80vh}
.dialog-inner img{max-width:92vw;max-height:88vh;object-fit:contain;border-radius:var(--radius-image)}
.dialog-close{position:fixed;top:20px;right:20px;width:42px;height:42px;border:0;border-radius:var(--radius-control);background:var(--yellow);color:var(--black);font-size:26px;cursor:pointer}

/* Footer */
.site-footer{background:var(--black);color:var(--white);border-top:1px solid var(--gunmetal)}
.footer-main{display:grid;grid-template-columns:minmax(300px,1.2fr) minmax(500px,.8fr);gap:80px;width:min(calc(100% - 48px),var(--content));margin-inline:auto;padding:100px 0 80px}
.footer-logo{width:190px;margin-bottom:36px}
.footer-statement h2{max-width:720px;font-size:clamp(38px,5vw,72px)}
.footer-columns{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.footer-columns>div{display:flex;flex-direction:column;align-items:flex-start;gap:12px}
.footer-label{margin-bottom:12px;color:var(--yellow);font-size:10px;letter-spacing:.14em;text-transform:uppercase}
.footer-columns a{color:var(--white);font-size:14px;text-decoration:none}
.footer-columns p:not(.footer-label){color:var(--aluminum);font-size:12px}
.footer-bottom{display:flex;justify-content:space-between;gap:30px;padding:18px 24px;border-top:1px solid var(--gunmetal);color:var(--aluminum);font-size:10px;letter-spacing:.12em;text-transform:uppercase}
.error-page{min-height:100svh}
.error-page h1{font-size:clamp(56px,8vw,110px);font-weight:300}

/* Reveal: opacity only */
.js [data-reveal]{opacity:0;transition:opacity .55s var(--ease)}
.js [data-reveal].is-visible{opacity:1}

@media (max-width:1160px){
  .site-header{padding:8px}
  .brand{height:46px}
  .menu-button{display:block}
  .primary-nav{position:fixed;z-index:var(--z-nav);inset:0;display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;gap:4px;padding:84px 16px 24px;background:var(--black);visibility:hidden;opacity:0;pointer-events:none;transition:opacity .2s var(--ease),visibility .2s var(--ease)}
  .primary-nav[data-open="true"]{visibility:visible;opacity:1;pointer-events:auto}
  .nav-cell,.nav-contact{flex:0 0 auto;justify-content:flex-start;min-height:58px;padding:0 18px;font-size:24px;font-weight:300;letter-spacing:-.02em}
  .nav-contact{margin-top:16px;background:var(--yellow);color:var(--black)}
  .menu-button{position:relative;z-index:calc(var(--z-nav) + 1)}
  .brand{position:relative;z-index:calc(var(--z-nav) + 1)}
  .header-shell{justify-content:space-between}
  .hero-layout{grid-template-columns:1fr;grid-template-rows:1fr auto auto;gap:24px}
  .hero-discovery{justify-self:stretch;width:100%}
  .editorial-head,.process-layout,.story-grid,.product-detail,.contact-layout,.footer-main{grid-template-columns:1fr}
  .story-copy,.product-detail-image{position:static}
  .product-detail-image{min-height:520px}
  .footer-main{gap:60px}
  .capability-line{grid-template-columns:48px minmax(180px,.65fr) minmax(250px,1fr) 20px}
}

@media (max-width:820px){
  :root{--space-section:80px}
  .content-shell,.statement-inner,.inquiry-inner,.footer-main{width:min(calc(100% - 32px),var(--content))}
  .hero-layout{width:min(calc(100% - 32px),calc(var(--content) + 80px));padding:110px 0 22px}
  .page-hero,.hero-layout{min-height:860px}
  .sub-hero,.sub-hero .hero-layout{min-height:760px}
  .hero-title h1{font-size:clamp(52px,13vw,86px)}
  .statement-section{min-height:auto}
  .statement-inner h2{font-size:clamp(42px,10vw,70px)}
  .capability-line{grid-template-columns:40px 1fr 22px;gap:16px}
  .capability-line p{grid-column:2/4}
  .capability-line i{grid-column:3;grid-row:1}
  .editorial-list{gap:80px}
  .editorial-row,.editorial-row:nth-child(even){grid-template-columns:1fr;gap:30px}
  .editorial-row:nth-child(even) .editorial-image{order:0}
  .story-images{grid-template-columns:1fr}
  .story-images figure:first-child{margin-top:0}
  .image-triptych{grid-template-columns:1fr}
  .image-triptych img,.image-triptych figure:nth-child(2) img,.image-triptych figure:nth-child(3) img{height:420px}
  .media-pair,.product-grid,.product-grid-featured,.product-grid-related,.video-grid{grid-template-columns:1fr}
  .media-pair img{height:420px}
  .product-toolbar{grid-template-columns:1fr;align-items:start}
  .product-detail-image{min-height:420px}
  .entity-list article{grid-template-columns:1fr;gap:16px}
  .form-row{grid-template-columns:1fr}
  .gallery-grid{columns:2}
  .document-grid{grid-template-columns:1fr 1fr}
  .footer-columns{grid-template-columns:1fr 1fr}
}

@media (max-width:520px){
  .brand img{width:126px}
  .hero-layout{padding-top:96px}
  .page-hero,.hero-layout{min-height:800px}
  .sub-hero,.sub-hero .hero-layout{min-height:720px}
  .hero-title h1{font-size:clamp(48px,14vw,70px)}
  .hero-discovery{grid-template-columns:1fr 72px;min-height:112px;padding:14px}
  .hero-discovery img{width:72px;height:72px}
  .hero-foot>p{font-size:13px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .button{width:100%}
  .statement-inner h2{font-size:clamp(40px,12vw,60px)}
  .capability-line{grid-template-columns:34px 1fr 18px;padding:22px 0}
  .process-line{grid-template-columns:38px 1fr;gap:14px}
  .wide-image img{height:360px}
  .story-images img,.media-pair img{height:360px}
  .product-image{aspect-ratio:1.12}
  .product-meta{grid-template-columns:1fr}
  .product-meta>p,.product-meta h2,.product-meta h3,.product-meta>span,.product-meta .text-link{grid-column:1;grid-row:auto}
  .product-meta .text-link{margin-top:12px;justify-self:start}
  .contact-line{grid-template-columns:1fr;gap:8px}
  .form{padding:24px 18px}
  .gallery-grid{columns:1}
  .document-grid{grid-template-columns:1fr}
  .document-card img{height:380px}
  .footer-columns{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
  .js [data-reveal]{opacity:1}
}
