:root {
  --green: #0f3a31;
  --green-2: #1f5146;
  --ink: #1d2421;
  --paper: #f3f1eb;
  --white: #ffffff;
  --orange: #c3763e;
  --clay: #a44132;
  --sage: #9aaa98;
  --sand: #d8c5a6;
  --grey: #68716d;
  --line: #d4d6d1;
  --soft: #e6e9e3;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { color: inherit; }
img { display: block; width: 100%; }
figure { margin: 0; }

.container { width: min(1320px, calc(100% - 10vw)); margin: 0 auto; }
.section { padding: 118px 0; }
.section-tight { padding: 76px 0; }
.band-dark { background: var(--green); color: var(--white); }
.band-soft { background: var(--soft); }
.band-white { background: var(--white); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-size: clamp(48px, 6.1vw, 86px);
  line-height: .99;
  font-weight: 650;
}
.section-title {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.04;
  font-weight: 620;
}
.section-intro {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 46px;
}
.section-intro p {
  max-width: 500px;
  margin: 0;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.7;
}
.band-dark .section-intro p { color: rgba(255,255,255,.66); }
.text-link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 750;
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.button:hover { background: var(--green-2); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: #f0f1ed; }
.button-outline { background: transparent; border-color: rgba(255,255,255,.72); color: var(--white); }
.button-outline:hover { background: rgba(255,255,255,.1); }
.button-copper { background: var(--orange); }
.button-copper:hover { background: #a85f31; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.site-header.solid,
body:not(.hero-over) .site-header {
  background: rgba(15,58,49,.98);
  border-color: rgba(255,255,255,.12);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 158px; height: auto; }
.footer-brand .brand img { width: 184px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 600; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .button { min-height: 38px; padding: 0 16px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  position: fixed;
  z-index: 49;
  inset: var(--header-h) 0 0;
  padding: 38px 5vw;
  background: var(--green);
  color: var(--white);
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 22px; }

.hero {
  position: relative;
  min-height: min(740px, 92vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(9,22,18,.43); }
.hero-content { position: relative; z-index: 2; padding-bottom: 56px; max-width: 870px; }
.hero-content p { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; }
.inner-hero { min-height: 570px; }
.inner-hero .hero-content { padding-bottom: 62px; }
.inner-hero .display { font-size: clamp(46px, 5.5vw, 74px); }

.proof-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  padding-top: 42px;
  padding-bottom: 42px;
  background: var(--green);
  color: var(--white);
}
.proof-strip h2 { margin: 0; font-size: 26px; line-height: 1.16; }
.proof-item { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2); }
.proof-item b { display: block; margin-bottom: 7px; font-size: 15px; }
.proof-item span { color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.45; }

.system-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.system-card,
.product-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--white);
  border-radius: 4px;
}
.system-card img { height: 460px; padding: 18px; object-fit: contain; }
.system-card footer,
.product-card footer { min-height: 92px; padding: 18px; border-top: 1px solid #ecece8; }
.system-card b,
.product-card b { display: block; margin-bottom: 7px; font-size: 17px; }
.system-card span,
.product-card span { color: var(--grey); font-size: 10px; }
.number-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  border-radius: 2px;
  font-size: 10px;
  font-style: normal;
}

.factory-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: 65px; align-items: center; }
.factory-feature-image { height: 700px; overflow: hidden; }
.factory-feature-image img { height: 100%; object-fit: cover; }
.factory-media-grid {
  height: 700px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.factory-media-grid figure { position: relative; min-width: 0; overflow: hidden; background: #cfd2ce; }
.factory-media-grid .factory-media-main { grid-row: 1 / 3; }
.factory-media-grid img { height: 100%; object-fit: cover; }
.factory-feature h2 { margin: 0 0 22px; font-size: clamp(40px, 4vw, 56px); line-height: 1.04; font-weight: 620; }
.factory-feature p { color: var(--grey); line-height: 1.72; }
.process-list { margin-top: 34px; border-top: 1px solid #bcc3bc; }
.process-row { display: grid; grid-template-columns: 44px 1fr; gap: 10px; padding: 18px 0; border-bottom: 1px solid #bcc3bc; }
.process-row span { color: var(--orange); font-size: 11px; font-weight: 750; }
.process-row b { font-size: 16px; }

.project-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 620px 460px; gap: 12px; }
.project-card { position: relative; overflow: hidden; background: #ddd; }
.project-card:first-child { grid-row: 1 / 3; }
.project-card img { height: 100%; object-fit: cover; }
.project-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 70px 26px 24px;
  background: linear-gradient(transparent, rgba(14,20,17,.75));
  color: var(--white);
}
.project-caption small { color: #ecad7c; font-size: 10px; font-weight: 750; text-transform: uppercase; }
.project-caption h3 { margin: 8px 0 0; font-size: 26px; line-height: 1.12; }
.concept-label { position: absolute; top: 16px; left: 16px; padding: 8px 10px; background: rgba(255,255,255,.92); color: var(--ink); border-radius: 3px; font-size: 9px; font-weight: 750; text-transform: uppercase; }

.finish-feature { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.finish-feature h2 { margin: 0 0 22px; font-size: clamp(40px, 4vw, 56px); line-height: 1.04; font-weight: 620; }
.finish-feature p { color: var(--grey); line-height: 1.7; }
.finish-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.finish-images img { height: 580px; object-fit: cover; }
.finish-images img:first-child { object-position: left top; }
.finish-images img:last-child { object-position: right top; }

.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.support-item { min-height: 275px; padding: 24px 10px 0 0; border-top: 1px solid rgba(255,255,255,.3); }
.support-item span { display: block; margin-bottom: 64px; color: #e3a876; font-size: 11px; font-weight: 750; }
.support-item h3 { margin: 0 0 12px; font-size: 21px; line-height: 1.2; }
.support-item p { color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.6; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.resource-card { min-height: 280px; padding: 28px; border-top: 3px solid var(--orange); background: var(--white); border-radius: 4px; }
.resource-card small { color: var(--clay); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.resource-card h3 { margin: 45px 0 14px; font-size: 24px; line-height: 1.2; }
.resource-card p { margin: 0 0 28px; color: var(--grey); font-size: 13px; line-height: 1.65; }

.cta-band { padding: 100px 0; background: var(--orange); color: var(--white); }
.cta-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.cta-row h2 { margin: 0; font-size: clamp(44px, 4.5vw, 64px); line-height: 1.01; font-weight: 620; }
.cta-action { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.72); font-size: 13px; }

.site-footer { padding: 78px 0 30px; background: #151b18; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 55px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.65; }
.footer-column h3 { margin: 2px 0 20px; color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; }
.footer-column a { display: block; margin: 0 0 12px; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 65px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.42); font-size: 10px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 30px; }
.filter-button { min-height: 39px; padding: 0 15px; border: 1px solid var(--line); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
.filter-button:first-child { border-radius: 4px 0 0 4px; }
.filter-button:last-child { border-radius: 0 4px 4px 0; }
.filter-button.active { border-color: var(--green); background: var(--green); color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product-card { cursor: pointer; }
.product-card:hover img { transform: scale(1.025); }
.product-card img { height: 380px; padding: 16px; object-fit: contain; transition: transform .25s ease; }
.product-card button { position: absolute; inset: 0; width: 100%; border: 0; background: transparent; cursor: pointer; color: transparent; }

.product-dialog { position: fixed; inset: 0; width: min(960px, calc(100vw - 32px)); max-width: none; max-height: calc(100vh - 32px); margin: auto; padding: 0; overflow: auto; border: 0; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.product-dialog::backdrop { background: rgba(12,19,16,.72); }
.dialog-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; height: min(680px, calc(100vh - 32px)); }
.dialog-image { background: var(--paper); }
.dialog-image img { width: 100%; height: 100%; max-height: 680px; padding: 30px; object-fit: contain; }
.dialog-copy { position: relative; padding: 54px 42px 38px; }
.dialog-copy h2 { margin: 0 0 10px; font-size: 36px; }
.dialog-copy p { color: var(--grey); line-height: 1.7; }
.dialog-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); font-size: 22px; cursor: pointer; }
.spec-list { margin: 26px 0; border-top: 1px solid var(--line); }
.spec-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.spec-row span { color: var(--grey); }

.comparison { width: 100%; border-collapse: collapse; background: var(--white); }
.comparison th, .comparison td { padding: 18px 15px; border-bottom: 1px solid var(--line); text-align: left; font-size: 12px; vertical-align: top; }
.comparison th { color: var(--white); background: var(--green); }
.comparison td:first-child { font-weight: 750; }

.application-list { display: grid; gap: 14px; }
.application-story { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 650px; background: var(--white); }
.application-story:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
.application-story:nth-child(even) .application-image { order: 2; }
.application-image { min-height: 650px; overflow: hidden; }
.application-image img { height: 100%; object-fit: cover; }
.application-copy { display: flex; flex-direction: column; justify-content: center; padding: 55px; }
.application-copy h2 { margin: 0 0 20px; font-size: 43px; line-height: 1.05; }
.application-copy p { color: var(--grey); line-height: 1.7; }
.application-facts { margin-top: 30px; border-top: 1px solid var(--line); }
.application-facts div { display: flex; justify-content: space-between; gap: 24px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.application-facts span { color: var(--grey); }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.capability-item { min-height: 300px; padding: 28px; background: var(--white); border-top: 3px solid var(--orange); }
.capability-item span { color: var(--orange); font-size: 11px; font-weight: 750; }
.capability-item h3 { margin: 65px 0 15px; font-size: 24px; }
.capability-item p { color: var(--grey); font-size: 13px; line-height: 1.65; }
.quality-list { border-top: 1px solid var(--line); }
.quality-row { display: grid; grid-template-columns: 60px 1fr 1fr; gap: 25px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.quality-row span { color: var(--orange); font-size: 11px; font-weight: 750; }
.quality-row b { font-size: 17px; }
.quality-row p { margin: 0; color: var(--grey); font-size: 12px; line-height: 1.6; }

.manufacturing-hero .hero-media { object-position: center 54%; }
.process-section { overflow: hidden; }
.process-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.process-visual {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 4px;
}
.process-visual-wide,
.process-visual:last-child { grid-column: 1 / -1; }
.process-visual figure { position: relative; height: 370px; overflow: hidden; background: #d8dad6; }
.process-visual-wide figure,
.process-visual:last-child figure { height: 540px; }
.process-visual img { height: 100%; object-fit: cover; }
.process-reference {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border-radius: 3px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.process-caption { display: grid; grid-template-columns: 118px 1fr 1fr; gap: 24px; padding: 23px 24px 25px; align-items: start; }
.process-caption > span,
.system-process > div > span { color: var(--orange); font-size: 10px; font-weight: 750; }
.process-caption h3 { margin: 0; font-size: 22px; line-height: 1.15; }
.process-caption p { margin: 0; color: var(--grey); font-size: 12px; line-height: 1.65; }

.system-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.system-process { min-width: 0; overflow: hidden; border-radius: 4px; background: #18483e; }
.system-process figure { position: relative; height: 300px; overflow: hidden; }
.system-process img { height: 100%; object-fit: cover; transition: transform .3s ease; }
.system-process:hover img { transform: scale(1.02); }
.system-process > div { padding: 24px; }
.system-process h3 { margin: 12px 0 10px; font-size: 23px; line-height: 1.15; }
.system-process p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.6; }

.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.download-item { display: grid; grid-template-columns: 170px 1fr; min-height: 250px; background: var(--white); }
.download-item img { height: 100%; object-fit: cover; }
.download-copy { padding: 28px; }
.download-copy h3 { margin: 6px 0 12px; font-size: 24px; }
.download-copy p { color: var(--grey); font-size: 13px; line-height: 1.6; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 22px 0; cursor: pointer; font-size: 17px; font-weight: 650; }
.faq p { max-width: 850px; margin: 0 0 24px; color: var(--grey); font-size: 13px; line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-grid h2 { margin: 0; font-size: clamp(42px, 4.3vw, 60px); line-height: 1.04; }
.about-copy p { margin: 0 0 22px; color: var(--grey); font-size: 15px; line-height: 1.75; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.principle { min-height: 300px; padding: 28px; background: var(--white); border-top: 3px solid var(--orange); }
.principle h3 { margin: 80px 0 15px; font-size: 24px; }
.principle p { color: var(--grey); font-size: 13px; line-height: 1.65; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.contact-aside h2 { margin: 0 0 22px; font-size: 42px; line-height: 1.05; }
.contact-aside p { color: var(--grey); line-height: 1.7; }
.contact-detail { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-detail span { display: block; margin-bottom: 8px; color: var(--orange); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.contact-detail b { font-size: 14px; }
.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid #c8cbc6;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 145px; resize: vertical; }
.check-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 16px; padding: 16px; border: 1px solid #c8cbc6; background: var(--white); }
.check-group label { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 500; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; }
.form-note { color: var(--grey); font-size: 11px; line-height: 1.5; }
.form-status { display: none; grid-column: 1 / -1; padding: 18px; border-left: 3px solid var(--orange); background: #e5ebe6; font-size: 13px; line-height: 1.6; }
.form-status.visible { display: block; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav, .header-actions .button { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-item { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px; }
  .system-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .factory-feature, .finish-feature, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .factory-feature-image { height: 590px; }
  .factory-media-grid { height: 620px; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid, .capability-grid, .principles { grid-template-columns: 1fr 1fr; }
  .system-process-grid { grid-template-columns: 1fr 1fr; }
  .system-process:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-column:last-child { display: none; }
  .application-story, .application-story:nth-child(even) { grid-template-columns: 1fr 1fr; }
  .download-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .container { width: min(100% - 36px, 1320px); }
  .section { padding: 76px 0; }
  .section-tight { padding: 54px 0; }
  .brand img { width: 144px; }
  .hero { min-height: 650px; }
  .inner-hero { min-height: 520px; }
  .hero-content { padding-bottom: 42px; }
  .hero-content p { font-size: 15px; }
  .hero-actions { flex-wrap: wrap; }
  .section-intro, .cta-row { grid-template-columns: 1fr; gap: 24px; }
  .section-intro { margin-bottom: 34px; }
  .proof-strip { grid-template-columns: 1fr; gap: 20px; }
  .system-grid, .product-grid, .support-grid, .resource-grid, .capability-grid, .principles { grid-template-columns: 1fr; }
  .system-card img { height: 410px; }
  .factory-feature-image { height: 520px; }
  .factory-media-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 420px 220px; }
  .factory-media-grid .factory-media-main { grid-column: 1 / -1; grid-row: auto; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 520px); }
  .project-card:first-child { grid-row: auto; }
  .finish-images { grid-template-columns: 1fr; }
  .finish-images img { height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { display: block; }
  .footer-bottom { flex-direction: column; gap: 9px; }
  .dialog-grid { grid-template-columns: 1fr; }
  .product-dialog { max-height: calc(100vh - 20px); }
  .dialog-grid { height: auto; }
  .dialog-image img { height: 390px; }
  .dialog-copy { padding: 42px 24px 28px; }
  .comparison-wrap { overflow-x: auto; }
  .comparison { min-width: 760px; }
  .application-story, .application-story:nth-child(even) { grid-template-columns: 1fr; }
  .application-story:nth-child(even) .application-image { order: 0; }
  .application-image { min-height: 500px; }
  .application-copy { padding: 34px 22px; }
  .quality-row { grid-template-columns: 40px 1fr; }
  .quality-row p { grid-column: 2; }
  .process-gallery { grid-template-columns: 1fr; }
  .process-visual-wide,
  .process-visual:last-child { grid-column: auto; }
  .process-visual figure,
  .process-visual-wide figure,
  .process-visual:last-child figure { height: 300px; }
  .process-caption { grid-template-columns: 1fr; gap: 9px; }
  .system-process-grid { grid-template-columns: 1fr; }
  .system-process:last-child { grid-column: auto; }
  .system-process figure { height: 280px; }
  .download-item { grid-template-columns: 120px 1fr; }
  .contact-layout { gap: 35px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .field.full, .form-actions, .form-status { grid-column: 1; }
  .check-group { grid-template-columns: 1fr; }
  .form-actions { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* LANDO final website system */
:root {
  --header-h: 76px;
  --paper: #f4f2ec;
  --soft: #e8ebe5;
  --green: #0f3a31;
  --green-2: #24584b;
  --orange: #bd713c;
  --ink: #18211e;
  --grey: #66706b;
  --line: #d3d7d2;
}

body { overflow-x: hidden; }
body:not(.hero-over) { padding-top: var(--header-h); }
::selection { background: #d8b08f; color: var(--ink); }
:focus-visible { outline: 3px solid rgba(189,113,60,.55); outline-offset: 3px; }
.display { font-size: 76px; letter-spacing: 0; }
.section-title { font-size: 54px; letter-spacing: 0; }
.eyebrow-light { color: #f0b17d; }
.section-tight-top { padding-top: 72px; }
.section-no-top { padding-top: 0; }
.lead-copy { font-size: 18px !important; line-height: 1.72 !important; }

.site-header,
.site-header.solid,
body:not(.hero-over) .site-header {
  color: var(--ink);
  background: rgba(250,250,247,.95);
  border-color: rgba(15,58,49,.13);
  box-shadow: 0 1px 0 rgba(15,58,49,.04);
  backdrop-filter: blur(18px) saturate(150%);
}
.brand img { width: 150px; max-height: 54px; }
.desktop-nav a { color: #27302d; }
.header-contact { font-size: 11px; font-weight: 750; color: var(--green); }
.menu-toggle { position: relative; display: none; border-color: rgba(15,58,49,.28); color: var(--green); }
.menu-toggle span { position: absolute; left: 10px; width: 20px; height: 1px; background: currentColor; transition: transform .2s ease, top .2s ease; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle.open span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle.open span:last-child { top: 20px; transform: rotate(-45deg); }
.mobile-nav { overflow-y: auto; background: #f8f8f4; color: var(--ink); }
.mobile-nav a { border-color: var(--line); }
.mobile-nav .mobile-subnav { padding-left: 18px; color: var(--grey); font-size: 15px; }
.mobile-quote { width: 100%; margin-top: 24px; }

.hero { min-height: 680px; }
.home-hero { min-height: min(760px, calc(100svh - 24px)); }
.hero::after { background: linear-gradient(90deg, rgba(8,20,16,.72) 0%, rgba(8,20,16,.42) 49%, rgba(8,20,16,.16) 100%); }
.hero-content { padding-bottom: 64px; }
.hero-content .eyebrow { color: #efb17e; }
.hero-content p { color: rgba(255,255,255,.86); }
.hero-next { position: absolute; z-index: 3; right: 5vw; bottom: 29px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.7); color: var(--white); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.inner-hero { min-height: 560px; }
.inner-hero .display { font-size: 64px; }
.category-hero .hero-media { object-position: center 45%; }

.breadcrumb { display: flex; gap: 9px; align-items: center; min-height: 54px; padding-top: 8px; border-bottom: 1px solid var(--line); color: var(--grey); font-size: 11px; }
.breadcrumb a:hover { color: var(--green); }

.system-grid-five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.system-card { display: flex; flex-direction: column; }
.system-card > a { display: block; flex: 1; }
.system-card img { height: 380px; }
.system-card > button,
.project-inquiry {
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-top: 1px solid #e6e8e3;
  background: var(--white);
  color: var(--green);
  font-size: 10px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}
.system-card > button:hover,
.project-inquiry:hover { background: #f0f3ef; }
.project-card { display: flex; flex-direction: column; }
.project-card > a { position: relative; flex: 1; min-height: 0; overflow: hidden; }
.project-card > a img { height: 100%; object-fit: cover; }
.project-inquiry { position: relative; z-index: 4; }

.button-link { display: inline-block; padding: 0 0 5px; border: 0; border-bottom: 1px solid currentColor; border-radius: 0; background: transparent; color: inherit; cursor: pointer; }
.button-link:hover { background: transparent; color: var(--orange); }
.inline-actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 25px; }
.center-action { display: flex; justify-content: center; margin-top: 42px; }

.buyer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.buyer-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.buyer-card { display: flex; min-height: 310px; flex-direction: column; padding: 25px; border-top: 3px solid var(--orange); background: var(--white); }
.buyer-card > span { color: var(--orange); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.buyer-card h3 { margin: 48px 0 14px; font-size: 24px; line-height: 1.18; }
.buyer-card p { margin: 0 0 24px; color: var(--grey); font-size: 12px; line-height: 1.65; }
.buyer-card button { margin-top: auto; padding: 13px 0 5px; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--green); font-size: 10px; font-weight: 750; text-align: left; cursor: pointer; }

.category-index { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.category-index-item { min-height: 240px; padding: 25px; background: var(--white); }
.category-index-item > span { color: var(--orange); font-size: 10px; font-weight: 750; }
.category-index-item h3 { margin: 60px 0 12px; font-size: 21px; line-height: 1.2; }
.category-index-item p { margin: 0; color: var(--grey); font-size: 12px; line-height: 1.6; }
.category-index-item:hover { background: #eef1ec; }

.product-grid { align-items: stretch; }
.product-card { display: flex; min-height: 540px; flex-direction: column; cursor: default; }
.product-visual { position: static !important; inset: auto !important; width: 100% !important; height: 368px; padding: 0 !important; border: 0 !important; background: #fafaf7 !important; color: inherit !important; cursor: zoom-in !important; }
.product-visual img { width: 100%; height: 100%; padding: 14px; object-fit: contain; }
.product-card:hover .product-visual img { transform: scale(1.018); }
.product-card-copy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 17px 18px 14px; border-top: 1px solid #eceeea; }
.product-card-copy .product-category { margin-bottom: 10px; color: var(--orange); font-size: 9px; font-weight: 750; text-transform: uppercase; }
.product-title-button { position: static !important; inset: auto !important; width: auto !important; padding: 0 !important; border: 0 !important; background: transparent !important; color: var(--ink) !important; font-size: 17px; font-weight: 720; line-height: 1.25; text-align: left; cursor: pointer !important; }
.product-title-button:hover { color: var(--orange) !important; }
.product-card-copy > span:last-child { margin-top: 7px; color: var(--grey); font-size: 10px; line-height: 1.4; }
.product-card-actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #e3e5e1; }
.product-card-actions button { position: static !important; inset: auto !important; width: 100% !important; min-height: 42px; padding: 0 11px !important; border: 0 !important; background: transparent !important; color: var(--green) !important; font-size: 9px; font-weight: 750; cursor: pointer !important; }
.product-card-actions button + button { border-left: 1px solid #e3e5e1 !important; background: #edf1ec !important; }
.product-card-actions button:hover { background: #e8ece7 !important; }
.product-card[hidden] { display: none; }
.noscript-note { padding: 18px; border-left: 3px solid var(--orange); background: var(--white); color: var(--grey); font-size: 13px; }

.product-dialog { background: var(--white); }
.dialog-disclaimer { margin-top: 20px; font-size: 10px; line-height: 1.5; }

.category-overview { display: grid; grid-template-columns: .92fr 1.08fr; gap: 78px; align-items: center; }
.category-overview h2,
.split-feature h2,
.risk-panel h2 { margin: 0 0 22px; font-size: 48px; line-height: 1.06; font-weight: 620; }
.category-overview p,
.split-feature p,
.risk-panel p { color: var(--grey); line-height: 1.72; }
.reference-panel { position: relative; overflow: hidden; background: #e2e4df; }
.reference-panel img { width: 100%; min-height: 480px; object-fit: cover; }
.reference-panel figcaption { padding: 12px 14px; background: var(--white); color: var(--grey); font-size: 10px; line-height: 1.5; }
.specification-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.specification-card { min-height: 260px; padding: 25px; border-top: 3px solid var(--orange); background: var(--white); }
.specification-card span { color: var(--orange); font-size: 10px; font-weight: 750; }
.specification-card h3 { margin: 55px 0 14px; font-size: 22px; }
.specification-card p { margin: 0; color: var(--grey); font-size: 12px; line-height: 1.65; }
.split-feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.category-route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.route-card { overflow: hidden; background: var(--white); }
.route-card img { height: 350px; object-fit: cover; }
.route-card > div { padding: 24px; }
.route-card span { color: var(--orange); font-size: 10px; font-weight: 750; }
.route-card h3 { margin: 12px 0; font-size: 23px; }
.route-card p { color: var(--grey); font-size: 12px; line-height: 1.65; }
.route-card button,
.system-process button { padding: 10px 0 4px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--green); font-size: 10px; font-weight: 750; cursor: pointer; }
.system-process button { color: #f0b17d; }

.risk-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 48px; border-left: 5px solid var(--clay); background: var(--white); }
.check-list { margin: 25px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 25px; border-top: 1px solid var(--line); font-size: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.guide-cta { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.guide-cta h2 { margin: 0 0 14px; font-size: 50px; line-height: 1.04; font-weight: 620; }
.guide-cta p { margin: 0; color: rgba(255,255,255,.65); line-height: 1.7; }
.guide-cta .button { justify-self: end; }

.disclosure { display: grid; grid-template-columns: 170px 1fr; gap: 30px; padding: 24px; border-left: 3px solid var(--orange); background: #e9ece7; }
.disclosure b { font-size: 13px; }
.disclosure p { margin: 0; color: var(--grey); font-size: 12px; line-height: 1.65; }
.factory-feature-image { position: relative; }

.download-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.download-grid-three .download-item { grid-template-columns: 1fr; }
.download-grid-three .download-item img { height: 260px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.guide-card { overflow: hidden; background: var(--white); }
.guide-card img { height: 290px; object-fit: cover; }
.guide-card > div { padding: 25px; }
.guide-card span { color: var(--orange); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.guide-card h3 { margin: 22px 0 12px; font-size: 25px; line-height: 1.18; }
.guide-card p { color: var(--grey); font-size: 12px; line-height: 1.65; }
.rfq-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.rfq-item { display: flex; min-height: 110px; flex-direction: column; justify-content: space-between; padding: 18px; background: var(--white); }
.rfq-item span { color: var(--orange); font-size: 9px; font-weight: 750; }
.rfq-item b { font-size: 14px; line-height: 1.35; }

.principles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-band { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 45px; background: var(--white); }
.contact-band h2 { margin: 0; font-size: 46px; line-height: 1.06; }
.contact-band p { color: var(--grey); line-height: 1.65; }
.contact-band a { display: block; margin-top: 12px; color: var(--green); font-weight: 700; }
.field-help { display: block; margin-top: 7px; color: var(--grey); font-size: 10px; line-height: 1.45; }
.consent-field { display: flex; gap: 10px; align-items: flex-start; color: var(--grey); font-size: 11px; line-height: 1.5; }
.consent-field input { margin-top: 2px; }
.consent-field a { text-decoration: underline; }
.form-status.success { border-color: #2e765f; background: #e2eee8; }
.form-status.error { border-color: var(--clay); background: #f4e6e3; }
.honey-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.article-main { padding-bottom: 0; }
.article-header { max-width: 1040px; padding-top: 90px; padding-bottom: 46px; }
.article-header h1 { max-width: 900px; margin: 0; font-size: 68px; line-height: 1.02; font-weight: 630; }
.article-deck { max-width: 790px; margin: 25px 0 0; color: var(--grey); font-size: 18px; line-height: 1.7; }
.article-meta { display: flex; gap: 24px; margin-top: 25px; color: var(--grey); font-size: 10px; text-transform: uppercase; }
.article-hero { max-width: 1320px; }
.article-hero img { height: 620px; object-fit: cover; }
.article-hero figcaption { padding: 11px 0; color: var(--grey); font-size: 10px; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: 80px; justify-content: center; padding-top: 72px; padding-bottom: 110px; }
.article-toc { position: sticky; top: calc(var(--header-h) + 25px); align-self: start; display: flex; flex-direction: column; padding: 20px; border-top: 3px solid var(--orange); background: var(--white); }
.article-toc b { margin-bottom: 15px; font-size: 11px; text-transform: uppercase; }
.article-toc a { padding: 10px 0; border-top: 1px solid var(--line); color: var(--grey); font-size: 11px; }
.article-toc button { margin-top: 12px; min-height: 40px; border: 0; background: var(--green); color: var(--white); font-size: 10px; font-weight: 750; cursor: pointer; }
.article-body section { scroll-margin-top: calc(var(--header-h) + 30px); margin-bottom: 64px; }
.article-body { min-width: 0; }
.article-body .comparison-wrap { width: 100%; max-width: 100%; overflow-x: auto; }
.article-body h2 { margin: 0 0 22px; font-size: 39px; line-height: 1.1; }
.article-body h3 { margin: 32px 0 10px; font-size: 21px; }
.article-body p,
.article-body li { color: #4f5954; font-size: 15px; line-height: 1.78; }
.article-body li { margin-bottom: 9px; }
.article-callout { margin: 30px 0; padding: 25px; border-left: 4px solid var(--orange); background: var(--white); }
.article-callout.warning { border-color: var(--clay); }
.article-callout p { margin-bottom: 0; }
.article-image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 34px 0; }
.article-image-pair img { height: 330px; object-fit: cover; }
.article-image-pair figcaption { padding-top: 8px; color: var(--grey); font-size: 10px; }
.article-cta { margin-top: 45px; padding: 34px; background: var(--green); color: var(--white); }
.article-cta h3 { margin-top: 0; font-size: 27px; }
.article-cta p { color: rgba(255,255,255,.7); }

.legal-main { padding-bottom: 90px; }
.legal-copy { max-width: 850px; padding-top: 80px; }
.legal-copy h1 { margin: 0 0 12px; font-size: 62px; line-height: 1.04; }
.legal-updated { color: var(--grey); font-size: 11px; }
.legal-copy h2 { margin: 42px 0 12px; font-size: 23px; }
.legal-copy p { color: #525c57; font-size: 14px; line-height: 1.78; }
.legal-copy a { color: var(--green); text-decoration: underline; }
.message-page { min-height: 70vh; display: grid; place-items: center; padding: 100px 18px; }
.message-panel { width: min(680px, 100%); padding: 55px; background: var(--white); text-align: center; }
.message-panel img { width: 90px; margin: 0 auto 30px; }
.message-panel h1 { margin: 0; font-size: 64px; }
.message-panel p { color: var(--grey); line-height: 1.7; }
.message-panel .hero-actions { justify-content: center; }

.cta-action { border: 0; border-bottom: 1px solid rgba(255,255,255,.72); background: transparent; color: var(--white); text-align: left; cursor: pointer; }
.eyebrow-light { color: #f0b17d; }
.footer-contact-row { display: flex; flex-direction: column; gap: 7px; margin-top: 18px; font-size: 11px; }
.footer-column button { display: block; margin: 0 0 12px; padding: 0; border: 0; background: transparent; color: var(--white); font-size: 12px; text-align: left; cursor: pointer; }
.footer-address { margin-top: 40px; color: rgba(255,255,255,.5); font-size: 10px; }
.brand-footer { padding: 8px 10px; background: #f7f7f3; }

.lead-dialog { width: min(1120px, calc(100vw - 32px)); max-width: none; max-height: calc(100svh - 32px); margin: auto; padding: 0; overflow: auto; border: 0; border-radius: 6px; background: var(--white); box-shadow: 0 30px 90px rgba(0,0,0,.32); }
.lead-dialog::backdrop { background: rgba(9,18,15,.7); backdrop-filter: blur(4px); }
.lead-dialog-layout { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 650px; }
.lead-dialog-aside { display: flex; flex-direction: column; padding: 48px 38px; background: var(--green); color: var(--white); }
.lead-dialog-aside img { width: 70px; margin-bottom: 60px; padding: 8px; background: #f8f8f4; }
.lead-dialog-aside h2 { margin: 0 0 18px; font-size: 38px; line-height: 1.06; }
.lead-dialog-aside p { color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.65; }
.lead-dialog-aside ul { padding-left: 18px; color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.9; }
.lead-dialog-aside > a { margin-top: auto; color: #f0b17d; font-size: 11px; font-weight: 750; }
.lead-dialog-form-wrap { position: relative; padding: 48px 44px 36px; }
.lead-dialog-close { z-index: 2; }
.lead-context { margin: 0 0 24px; color: var(--orange); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 12px; }
.lead-form .full { grid-column: 1 / -1; }
.lead-form .form-actions { grid-column: 1 / -1; }
.lead-form .form-status { grid-column: 1 / -1; }
.lead-float { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: flex; flex-direction: column; min-width: 170px; padding: 12px 16px; border: 0; border-left: 4px solid var(--orange); border-radius: 3px; background: var(--green); color: var(--white); box-shadow: 0 12px 35px rgba(0,0,0,.2); opacity: 0; transform: translateY(18px); pointer-events: none; text-align: left; cursor: pointer; transition: opacity .2s ease, transform .2s ease; }
.lead-float.visible { opacity: 1; transform: none; pointer-events: auto; }
.lead-float span { color: rgba(255,255,255,.62); font-size: 9px; }
.lead-float b { margin-top: 3px; font-size: 12px; }

@media (max-width: 1180px) {
  .display { font-size: 68px; }
  .section-title { font-size: 49px; }
  .system-grid-five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .system-grid-five .system-card:nth-child(n+4) { grid-column: span 1; }
  .buyer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-index { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .download-grid-three { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .header-actions .button { display: none; }
  .menu-toggle { display: grid; }
  .category-overview,
  .split-feature,
  .risk-panel { grid-template-columns: 1fr; gap: 42px; }
  .specification-grid { grid-template-columns: 1fr 1fr; }
  .category-route-grid,
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .principles { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 45px; }
  .guide-cta { grid-template-columns: 1fr; gap: 30px; }
  .guide-cta .button { justify-self: start; }
  .lead-dialog-layout { grid-template-columns: .62fr 1.38fr; }
  .lead-dialog-aside { padding: 36px 26px; }
  .lead-dialog-form-wrap { padding: 42px 32px 30px; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  body:not(.hero-over) { padding-top: var(--header-h); }
  .display { font-size: 47px; }
  .section-title { font-size: 39px; }
  .inner-hero .display { font-size: 45px; }
  .category-overview h2,
  .split-feature h2,
  .risk-panel h2 { font-size: 38px; }
  .header-contact { display: none; }
  .brand img { width: 133px; }
  .hero { min-height: 620px; }
  .home-hero { min-height: calc(100svh - 20px); }
  .inner-hero { min-height: 535px; }
  .hero::after { background: rgba(8,20,16,.52); }
  .hero-next { display: none; }
  .proof-strip { padding-top: 34px; padding-bottom: 34px; }
  .system-grid-five,
  .buyer-grid,
  .buyer-grid-three,
  .category-index,
  .specification-grid,
  .category-route-grid,
  .guide-grid,
  .download-grid-three,
  .principles,
  .rfq-grid { grid-template-columns: 1fr; }
  .system-card img { height: 390px; }
  .product-card { min-height: 520px; }
  .product-visual { height: 360px; }
  .reference-panel img { min-height: 380px; }
  .risk-panel { padding: 26px 22px; }
  .guide-cta h2 { font-size: 39px; }
  .disclosure { grid-template-columns: 1fr; gap: 10px; }
  .application-image { min-height: 440px; }
  .application-copy h2 { font-size: 36px; }
  .contact-band { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  .contact-band h2 { font-size: 37px; }
  .article-header { padding-top: 66px; }
  .article-header h1 { font-size: 48px; }
  .article-deck { font-size: 16px; }
  .article-hero img { height: 430px; }
  .article-layout { grid-template-columns: 1fr; gap: 42px; padding-top: 45px; }
  .article-toc { position: static; }
  .article-body h2 { font-size: 34px; }
  .article-image-pair { grid-template-columns: 1fr; }
  .article-image-pair img { height: 290px; }
  .article-cta { padding: 25px 22px; }
  .legal-copy { padding-top: 60px; }
  .legal-copy h1 { font-size: 48px; }
  .message-panel { padding: 42px 22px; }
  .message-panel h1 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .lead-dialog { width: 100%; max-height: 94svh; margin: auto 0 0; border-radius: 6px 6px 0 0; }
  .lead-dialog-layout { display: block; }
  .lead-dialog-aside { min-height: auto; padding: 28px 24px; }
  .lead-dialog-aside img,
  .lead-dialog-aside ul { display: none; }
  .lead-dialog-aside h2 { font-size: 29px; }
  .lead-dialog-aside > a { margin-top: 12px; }
  .lead-dialog-form-wrap { padding: 34px 22px 28px; }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form .full,
  .lead-form .form-actions,
  .lead-form .form-status { grid-column: 1; }
  .lead-float { right: 14px; bottom: 14px; min-width: 150px; }
}
