@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Teko";
  src: url("../fonts/teko-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Teko";
  src: url("../fonts/teko-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --mineral: #f3efe9;
  --paper: #f8f5f0;
  --white: #fff;
  --ink: #151718;
  --graphite: #51524f;
  --muted: #777570;
  --line: #c9c3bc;
  --red: #ed3d2d;
  --red-text: #c9362b;
  --dark: #101313;
  --content: 1440px;
  --frame-gutter: clamp(20px, 3.8vw, 56px);
  --frame-start: max(var(--frame-gutter), calc((100vw - var(--content)) / 2));
  color: var(--ink);
  background: var(--mineral);
  font-family: "Inter", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--mineral);
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.terrandon-site {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--mineral);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.terrandon-site,
body.terrandon-site button,
body.terrandon-site input,
body.terrandon-site textarea,
body.terrandon-site select {
  font-family: "Inter", Arial, sans-serif;
}

body.terrandon-site button,
body.terrandon-site input,
body.terrandon-site textarea,
body.terrandon-site select {
  border-radius: 0;
}

body.terrandon-site button,
body.terrandon-site a {
  -webkit-tap-highlight-color: transparent;
}

body.terrandon-site a {
  color: inherit;
  text-decoration: none;
}

body.terrandon-site img {
  display: block;
  max-width: 100%;
}

body.terrandon-site h1,
body.terrandon-site h2,
body.terrandon-site h3,
body.terrandon-site p,
body.terrandon-site dl,
body.terrandon-site dd {
  margin-top: 0;
}

body.terrandon-site h1,
body.terrandon-site h2,
body.terrandon-site h3 {
  text-wrap: balance;
}

.site-shell {
  min-width: 0;
  overflow: clip;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--dark);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
}

.site-header--solid {
  position: relative;
  background: var(--mineral);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: calc(100% - (2 * var(--frame-gutter)));
  max-width: var(--content);
  min-height: 92px;
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(26px, 3vw, 50px);
}

.brand {
  width: clamp(196px, 17.6vw, 252px);
  padding-right: clamp(22px, 2.8vw, 38px);
  border-right: 1px solid rgba(21, 23, 24, 0.32);
}

.brand img {
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(0.34);
}

.desktop-navigation {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.desktop-navigation a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-navigation a:hover::after,
.desktop-navigation a:focus-visible::after,
.desktop-navigation a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-quote {
  min-height: 40px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 600;
  transition: background 160ms ease;
}

.header-quote:hover,
.header-quote:focus-visible {
  background: var(--red);
}

.language-control {
  position: relative;
}

.language-trigger,
.mobile-menu-trigger {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.language-trigger {
  min-width: 50px;
  min-height: 40px;
  padding: 9px 4px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 2px solid var(--red);
  font-size: 12px;
  font-weight: 600;
}

.site-header--home .language-trigger {
  color: var(--white);
}

.language-trigger span:last-child {
  transition: transform 160ms ease;
}

.language-trigger[aria-expanded="true"] span:last-child {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 7px;
  background: var(--white);
  border: 1px solid #d4cec7;
  box-shadow: 0 18px 44px rgba(19, 20, 20, 0.16);
}

.language-menu[hidden] {
  display: none;
}

.language-menu a {
  min-height: 44px;
  padding: 8px 10px 8px 13px;
  border-left: 2px solid transparent;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a.is-active {
  background: #f5f1eb;
  border-left-color: var(--red);
}

.language-menu a span {
  font-size: 13px;
  font-weight: 600;
}

.language-menu a small {
  color: #74736f;
  font-size: 11px;
}

.mobile-menu-trigger,
.mobile-navigation {
  display: none;
}

.button {
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button--primary {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white) !important;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.button--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink) !important;
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
}

.button--text {
  min-height: auto;
  padding: 7px 0 5px;
  border-bottom-color: var(--ink);
}

.button--text:hover,
.button--text:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
  border-bottom-color: var(--red);
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--red-text) !important;
  font-size: 13px;
  font-weight: 600;
}

.section-label {
  margin-bottom: 16px;
  color: var(--red-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 56px;
  height: 1px;
  margin-left: 16px;
  display: inline-block;
  vertical-align: middle;
  background: currentColor;
}

.hero {
  min-height: 610px;
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0 0 0 32%;
  z-index: -1;
  overflow: hidden;
  background: var(--mineral);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 239, 233, 0.84) 0%, rgba(243, 239, 233, 0) 34%);
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero__copy {
  width: min(58%, 1180px);
  padding: 124px 0 58px var(--frame-start);
}

.hero h1,
.page-hero h1,
.factory-preview h2,
.visual-caption h2,
.section-intro h2,
.partners-section h2,
.resources-section h2,
.quote-section h2,
.section-heading h2,
.content-section > div > h2,
.product-detail-card h2,
.application-detail-card h2,
.partner-audiences h2,
.closing-cta h2,
.notice-section h2,
.calculator-prompt h2,
.application-chapter h2,
.application-scenario h3,
.surface-card h3,
.thickness-section h2,
.material-comparison-section h2,
.price-calculator h2,
.factory-evidence-section h2,
.factory-evidence-card h3,
.dealer-relationship h2,
.partner-model h2 {
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 540px;
  margin-bottom: 70px;
  font-size: clamp(62px, 5.25vw, 76px);
  line-height: 0.92;
  transform: scaleY(1.34);
  transform-origin: left top;
}

.hero h1 span {
  display: block;
}

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

.hero__description {
  max-width: 318px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.product-band {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 240, 0.96);
}

.product-band__item {
  min-width: 0;
  padding: 22px clamp(24px, 3vw, 46px);
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.product-band__item:last-child {
  border-right: 0;
}

.product-band__item > span:last-child {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
}

.product-band__index,
.card-index {
  color: var(--red-text);
  font-size: 11px;
  font-weight: 600;
}

.factory-preview {
  min-height: 244px;
  padding: 24px var(--frame-start);
  display: grid;
  grid-template-columns: minmax(270px, 27%) 1fr;
  gap: 34px;
  background: var(--paper);
}

.factory-preview__copy {
  padding: 8px 0;
}

.factory-preview h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 2.8vw, 42px);
  line-height: 0.98;
}

.factory-preview__copy > p:not(.section-label) {
  max-width: 360px;
  margin-bottom: 15px;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.55;
}

.factory-gallery {
  min-height: 196px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
}

.factory-gallery img {
  width: 100%;
  height: 196px;
  object-fit: cover;
  border-right: 1px solid var(--paper);
}

.factory-gallery img:last-child {
  border-right: 0;
}

.product-system-visual {
  height: 440px;
  position: relative;
  overflow: hidden;
  background: #d8d5d0;
}

.product-system-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.visual-caption {
  position: absolute;
  left: var(--frame-start);
  bottom: 34px;
  max-width: 440px;
  padding: 22px 26px;
  background: rgba(16, 19, 19, 0.91);
  color: var(--white);
}

.visual-caption h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 3.5vw, 50px);
  line-height: 0.98;
}

.section-space,
.content-section {
  padding: clamp(74px, 8vw, 116px) var(--frame-start);
}

.section-intro,
.resources-section__heading,
.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-intro h2,
.partners-section h2,
.resources-section h2,
.quote-section h2,
.section-heading h2,
.closing-cta h2,
.notice-section h2 {
  margin-bottom: 20px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.96;
}

.section-intro > p:not(.section-label),
.partners-section__intro > p:not(.section-label),
.quote-section__intro > p:not(.section-label),
.section-heading > p:not(.section-label) {
  max-width: 680px;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.65;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.application-card {
  min-width: 0;
  background: var(--paper);
}

.application-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.application-card > div {
  min-height: 142px;
  padding: 21px 22px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: start;
  gap: 8px 14px;
}

.application-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.application-card p {
  grid-column: 2;
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.55;
}

.partners-section,
.content-section--dark,
.closing-cta--dark {
  background: var(--dark);
  color: var(--white);
}

.partners-section__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}

.partners-section__intro .section-label,
.partners-section__intro h2 {
  grid-column: 1;
}

.partners-section__intro .section-label {
  margin-bottom: -48px;
  color: var(--red);
}

.partners-section__intro > p:not(.section-label) {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #b9b9b3;
}

.partner-paths {
  margin: 54px 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #454644;
  border-bottom: 1px solid #454644;
}

.partner-paths article {
  padding: 34px 34px 40px 0;
}

.partner-paths article + article {
  padding-left: 34px;
  border-left: 1px solid #454644;
}

.partner-paths h3 {
  margin: 18px 0 10px;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 36px;
  font-weight: 500;
}

.partner-paths p {
  max-width: 500px;
  margin-bottom: 0;
  color: #b9b9b3;
  line-height: 1.6;
}

.resources-section,
.content-section--paper {
  background: var(--paper);
}

.fact-grid {
  margin: 50px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  min-height: 150px;
  padding: 34px 24px 30px 0;
  border-right: 1px solid var(--line);
}

.fact + .fact {
  padding-left: 24px;
}

.fact:last-child {
  border-right: 0;
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  margin-bottom: 18px;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.fact span {
  color: var(--graphite);
  font-size: 13px;
}

.resources-note {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.6;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 8vw, 120px);
  background: var(--mineral);
}

.direct-contact {
  margin-top: 38px;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.direct-contact > span {
  margin-bottom: 4px;
  color: var(--graphite);
  font-size: 12px;
}

.direct-contact a {
  font-size: 14px;
  font-weight: 600;
}

.direct-contact a:hover,
.direct-contact a:focus-visible {
  color: var(--red);
}

.project-form {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid #d7d0c9;
  color: var(--ink);
}

.project-form label,
.project-form label > span {
  display: block;
}

.project-form label {
  margin-bottom: 22px;
}

.project-form label > span {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.project-form input,
.project-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bdb7b0;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  outline: none;
}

.project-form input {
  height: 48px;
}

.project-form textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.5;
}

.project-form input:focus,
.project-form textarea:focus {
  border-color: var(--ink);
  box-shadow: inset 3px 0 0 var(--red);
}

.project-form .button {
  width: 100%;
}

.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-privacy {
  margin: -2px 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.form-message {
  margin: 18px 0 0;
  padding: 13px 14px;
  background: #f4f0ea;
  font-size: 13px;
  line-height: 1.5;
}

.form-message--success {
  border-left: 3px solid #31824b;
}

.form-message--error {
  border-left: 3px solid var(--red);
}

.page-hero {
  min-height: 460px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(680px, 0.92fr) minmax(420px, 1.08fr);
  overflow: hidden;
  background: var(--mineral);
  border-bottom: 1px solid var(--line);
}

.page-hero__copy {
  align-self: center;
  padding: clamp(64px, 6vw, 88px) clamp(32px, 4vw, 64px) clamp(64px, 6vw, 88px) var(--frame-start);
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(60px, 6vw, 88px);
  line-height: 0.92;
}

.page-hero__copy > p:not(.section-label) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.65;
}

.page-hero__media {
  position: relative;
  overflow: hidden;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--mineral) 0%, rgba(243, 239, 233, 0) 32%);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.content-section {
  width: 100%;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-detail-card {
  min-width: 0;
  padding: clamp(28px, 3.4vw, 48px);
  background: var(--paper);
}

.product-detail-card h2,
.application-detail-card h2,
.partner-audiences h2 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 3.4vw, 52px);
  line-height: 0.98;
}

.product-detail-card > p,
.application-detail-card p,
.partner-audiences p,
.factory-process-grid p,
.facilities-section p {
  color: var(--graphite);
  line-height: 1.65;
}

.product-detail-card dl {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.product-detail-card dl > div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-card dt {
  margin-bottom: 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-detail-card dd {
  font-size: 13px;
  line-height: 1.5;
}

.step-grid,
.support-grid,
.process-line {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  counter-reset: steps;
}

.step-grid li,
.support-grid li,
.process-line li {
  min-height: 142px;
  padding: 50px 26px 28px;
  position: relative;
  border-right: 1px solid var(--line);
  counter-increment: steps;
  font-size: 14px;
  line-height: 1.5;
}

.step-grid li::before,
.process-line li::before {
  content: "0" counter(steps);
  position: absolute;
  top: 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
}

.step-grid li:last-child,
.support-grid li:last-child,
.process-line li:last-child {
  border-right: 0;
}

.spec-section .button,
.faq-section .button {
  margin-top: 34px;
}

.application-detail-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.application-detail-card {
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  background: var(--paper);
}

.application-detail-card:nth-child(even) img {
  order: 2;
}

.application-detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-detail-card > div {
  align-self: center;
  padding: clamp(34px, 5vw, 74px);
}

.application-detail-card small {
  display: block;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 11px;
  line-height: 1.6;
}

.content-section--dark .section-heading > p:not(.section-label),
.content-section--dark p,
.closing-cta--dark p {
  color: #b9b9b3;
}

.content-section--dark .process-line {
  border-color: #454644;
}

.content-section--dark .process-line li {
  border-color: #454644;
}

.notice-section,
.closing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.notice-section h2,
.closing-cta h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(40px, 4.4vw, 64px);
}

.partner-audiences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: #393b3a;
}

.partner-audiences article {
  padding: clamp(60px, 7vw, 100px) clamp(30px, 5vw, 74px);
  background: var(--dark);
}

.partner-audiences ul,
.facilities-section ol,
.checklist {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.partner-audiences li,
.facilities-section li,
.checklist li {
  padding: 15px 0;
  border-top: 1px solid #454644;
  font-size: 13px;
  line-height: 1.5;
}

.support-grid li {
  padding-top: 34px;
  font-weight: 600;
}

.factory-wide-gallery {
  height: min(54vw, 660px);
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  background: var(--paper);
  overflow: hidden;
}

.factory-wide-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factory-process-grid article {
  min-height: 210px;
  padding: 32px 26px;
  border-right: 1px solid var(--line);
}

.factory-process-grid article:last-child {
  border-right: 0;
}

.factory-process-grid h3 {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 14px;
}

.factory-process-grid p {
  font-size: 13px;
}

.facilities-section,
.resource-columns,
.quote-page-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 8vw, 120px);
}

.facilities-section > div {
  max-width: 680px;
}

.facilities-section h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.96;
}

.facilities-section ol {
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.facilities-section li {
  padding: 24px 0;
  border-color: var(--line);
  font-weight: 600;
}

.resource-specs .fact-grid {
  margin-top: 0;
}

.resource-columns article + article {
  padding-left: clamp(28px, 4vw, 58px);
  border-left: 1px solid var(--line);
}

.checklist li {
  border-color: var(--line);
}

.checklist li:first-child {
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 44px 24px 0;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.faq-list summary::marker {
  color: var(--red);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 26px;
  color: var(--graphite);
  line-height: 1.65;
}

.quote-page-layout__intro {
  max-width: 600px;
}

.site-footer {
  padding: 48px clamp(30px, 5.2vw, 76px) 30px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 56px;
  background: var(--dark);
  color: var(--white);
}

.site-footer__brand img {
  width: 190px;
  height: auto;
  margin-bottom: 18px;
  filter: grayscale(1) brightness(6);
}

.site-footer__brand p {
  max-width: 430px;
  margin-bottom: 0;
  color: #aaa9a5;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.site-footer__contact strong {
  margin-bottom: 4px;
  color: var(--red);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--red);
}

.site-footer__legal {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid #3b3c3b;
  color: #858581;
  font-size: 11px;
}

.fallback-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 30px;
}

body.terrandon-site :focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.factory-gallery--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper);
}

.factory-gallery figure {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.factory-gallery figure img {
  border-right: 0;
}

.factory-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 7px 9px;
  background: rgba(16, 19, 19, 0.82);
  color: var(--white);
  font-size: 10px;
  line-height: 1.35;
}

.calculator-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.calculator-prompt > div {
  max-width: 780px;
}

.calculator-prompt h2 {
  margin-bottom: 16px;
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 0.94;
}

.calculator-prompt p:not(.section-label) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--graphite);
  line-height: 1.65;
}

.application-grid--six {
  grid-template-columns: repeat(3, 1fr);
}

.application-grid--six .application-card > div {
  min-height: 188px;
}

.application-chapter-nav {
  padding-inline: var(--frame-start);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark);
  color: var(--white);
}

.application-chapter-nav a {
  min-height: 92px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid #3b3d3c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.application-chapter-nav a:last-child {
  border-right: 0;
}

.application-chapter-nav a:hover,
.application-chapter-nav a:focus-visible {
  background: #232625;
}

.application-chapter-nav span {
  color: var(--red);
  font-size: 11px;
}

.application-chapter {
  scroll-margin-top: 28px;
  padding: clamp(72px, 8vw, 118px) var(--frame-start);
  border-bottom: 1px solid var(--line);
}

.application-chapter:nth-of-type(even) {
  background: var(--paper);
}

.application-chapter__header {
  margin-bottom: clamp(42px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  background: var(--dark);
  color: var(--white);
}

.application-chapter__copy {
  align-self: center;
  padding: clamp(36px, 5vw, 72px);
}

.application-chapter__copy h2 {
  margin-bottom: 20px;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 0.92;
}

.application-chapter__copy > p:not(.section-label) {
  margin-bottom: 0;
  color: #c5c5c0;
  line-height: 1.65;
}

.application-chapter__header > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.application-scenario-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.application-scenario {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  background: var(--mineral);
}

.application-scenario:nth-child(even) .scenario-gallery {
  order: 2;
}

.scenario-gallery {
  min-height: 480px;
  display: grid;
  gap: 1px;
  background: var(--line);
  overflow: hidden;
}

.scenario-gallery--2 {
  grid-template-columns: repeat(2, 1fr);
}

.scenario-gallery--3 {
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, 1fr);
}

.scenario-gallery--3 img:first-child {
  grid-row: 1 / -1;
}

.scenario-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.application-scenario__content {
  align-self: center;
  padding: clamp(36px, 5vw, 72px);
}

.application-scenario h3 {
  margin: 15px 0 18px;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 0.94;
}

.application-scenario__summary {
  color: var(--graphite);
  line-height: 1.68;
}

.application-scenario__product {
  margin-top: 26px;
  padding: 17px 18px;
  display: grid;
  gap: 7px;
  border-left: 3px solid var(--red);
  background: var(--paper);
  font-size: 13px;
  line-height: 1.5;
}

.application-scenario__product strong,
.application-scenario__details h4,
.surface-card__notes h4 {
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.application-scenario__details,
.surface-card__notes {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.application-scenario__details h4,
.surface-card__notes h4 {
  margin: 0 0 11px;
}

.application-scenario__details ul,
.surface-card__notes ul,
.selection-factor-list,
.partner-model__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-scenario__details li,
.surface-card__notes li,
.selection-factor-list li,
.partner-model__copy li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.5;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
}

.section-heading--split > div {
  max-width: 850px;
}

.section-heading--split > div > p {
  max-width: 700px;
  color: var(--graphite);
  line-height: 1.65;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.surface-card {
  min-width: 0;
  background: var(--paper);
}

.surface-card > img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.surface-card__body {
  padding: clamp(26px, 3.2vw, 42px);
}

.surface-card h3 {
  margin-bottom: 16px;
  font-size: clamp(38px, 3.4vw, 52px);
  line-height: 0.95;
}

.surface-card__body > p {
  color: var(--graphite);
  line-height: 1.62;
}

.surface-card__notes {
  grid-template-columns: 1fr;
  gap: 20px;
}

.thickness-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.thickness-section h2,
.material-comparison-section h2,
.price-calculator h2,
.dealer-relationship h2 {
  margin-bottom: 20px;
  font-size: clamp(50px, 5vw, 76px);
  line-height: 0.94;
}

.thickness-section__copy > p:not(.section-label),
.material-comparison__intro p:not(.section-label) {
  color: var(--graphite);
  line-height: 1.65;
}

.thickness-options {
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.thickness-options span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: var(--mineral);
  font-size: 11px;
  font-weight: 600;
}

.selection-factor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
}

.thickness-gallery {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1px;
  background: var(--line);
}

.thickness-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-comparison__intro {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.material-comparison__intro img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--paper);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
}

.comparison-table thead th {
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
}

.comparison-table tbody th {
  width: 18%;
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
}

.comparison-table tr > *:last-child {
  border-right: 0;
}

.price-calculator {
  scroll-margin-top: 28px;
  padding: clamp(76px, 8vw, 118px) var(--frame-start);
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.08fr) minmax(300px, 0.7fr);
  gap: clamp(34px, 5vw, 74px);
  background: var(--dark);
  color: var(--white);
}

.price-calculator__intro > p:not(.section-label) {
  color: #c5c5c0;
  line-height: 1.65;
}

.price-calculator__disclaimer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #414342;
  font-size: 11px;
}

.calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.calculator-fields label {
  display: grid;
  gap: 8px;
}

.calculator-fields label > span {
  color: #c5c5c0;
  font-size: 11px;
  font-weight: 600;
}

.calculator-fields input,
.calculator-fields select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #555756;
  background: #1c1f1e;
  color: var(--white);
  font-size: 14px;
}

.calculator-fields input:disabled {
  opacity: 0.45;
}

.calculator-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.price-calculator .button--primary {
  background: var(--red);
  border-color: var(--red);
}

.price-calculator .button--primary:hover,
.price-calculator .button--primary:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink) !important;
}

.price-calculator .button--text {
  color: var(--white);
  border-bottom-color: var(--white);
}

.calculator-validation {
  margin: 16px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
  background: #272a29;
  font-size: 12px;
  line-height: 1.5;
}

.calculator-results {
  align-self: stretch;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: #202322;
  border: 1px solid #454746;
}

.calculator-results dl {
  margin-bottom: 28px;
}

.calculator-results dl > div {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #414342;
}

.calculator-results dt {
  color: #b5b6b2;
  font-size: 11px;
  line-height: 1.4;
}

.calculator-results dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.calculator-results__total dd {
  color: var(--red);
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 30px;
}

.calculator-results .button {
  margin-top: auto;
  text-align: center;
}

.calculator-results .button[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.factory-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.factory-evidence-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  background: var(--paper);
}

.factory-evidence-card:nth-child(4n + 3) img,
.factory-evidence-card:nth-child(4n + 4) img {
  order: 2;
}

.factory-evidence-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.factory-evidence-card > div {
  align-self: center;
  padding: clamp(28px, 3.5vw, 48px);
}

.factory-evidence-card h3 {
  margin: 14px 0 13px;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 0.96;
}

.factory-evidence-card p {
  margin-bottom: 0;
  color: var(--graphite);
  line-height: 1.6;
}

.dealer-relationship {
  padding-top: clamp(68px, 7vw, 96px);
  padding-bottom: clamp(68px, 7vw, 96px);
}

.dealer-relationship h2 {
  max-width: 900px;
}

.dealer-relationship__flow {
  margin: 36px 0 0;
  padding: 24px 28px;
  border: 1px solid #454746;
  color: var(--white) !important;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.partner-models {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.partner-model {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  background: var(--paper);
}

.partner-model:nth-child(even) .partner-model__gallery {
  order: 2;
}

.partner-model__gallery {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1px;
  background: var(--line);
}

.partner-model__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-model__copy {
  align-self: center;
  padding: clamp(38px, 6vw, 82px);
}

.partner-model h2 {
  margin: 16px 0 18px;
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 0.94;
}

.partner-model__copy > p {
  color: var(--graphite);
  line-height: 1.65;
}

.partner-model__copy ul {
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .site-header__inner {
    gap: 22px;
  }

  .brand {
    width: 174px;
    padding-right: 22px;
  }

  .desktop-navigation {
    gap: 20px;
  }

  .header-quote {
    display: none;
  }

  .hero h1 {
    font-size: 68px;
  }

  .page-hero {
    grid-template-columns: minmax(520px, 0.95fr) minmax(360px, 1.05fr);
  }

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

  .surface-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  }

  .surface-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .price-calculator {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  }

  .price-calculator__intro {
    grid-column: 1 / -1;
    max-width: 820px;
  }

  .factory-evidence-card {
    grid-template-columns: 1fr;
  }

  .factory-evidence-card:nth-child(4n + 3) img,
  .factory-evidence-card:nth-child(4n + 4) img {
    order: initial;
  }

  .factory-evidence-card img {
    min-height: 280px;
    max-height: 360px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header,
  .site-header--solid {
    position: absolute;
    background: rgba(243, 239, 233, 0.97);
    border-bottom: 1px solid rgba(201, 195, 188, 0.78);
  }

  .site-header__inner {
    width: 100%;
    max-width: none;
    min-height: 74px;
    padding: 14px 20px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand {
    width: 166px;
    padding-right: 0;
    border-right: 0;
  }

  .desktop-navigation {
    display: none;
  }

  .site-header--home .language-trigger {
    color: var(--ink);
  }

  .mobile-menu-trigger {
    min-height: 42px;
    padding: 8px 5px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-navigation {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    padding: 8px 20px 24px;
    background: var(--mineral);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(19, 20, 20, 0.13);
  }

  .mobile-navigation:not([hidden]) {
    display: flex;
    flex-direction: column;
  }

  .mobile-navigation a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-navigation a.is-active {
    color: var(--red);
  }

  .mobile-navigation__quote {
    margin-top: 16px;
    padding: 14px 16px !important;
    background: var(--dark);
    color: var(--white) !important;
    text-align: center;
  }

  .hero,
  .page-hero {
    padding-top: 74px;
  }

  .hero__media {
    position: relative;
    inset: auto;
    z-index: auto;
    height: min(64vw, 500px);
  }

  .hero__media::after {
    display: none;
  }

  .hero__copy {
    width: 100%;
    padding: 40px 28px 54px;
  }

  .hero h1 {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: clamp(58px, 10vw, 82px);
    transform: none;
  }

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

  .product-band__item {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-band__item:last-child {
    border-bottom: 0;
  }

  .factory-preview {
    grid-template-columns: 1fr;
    padding-block: 44px 24px;
  }

  .factory-gallery {
    height: 260px;
  }

  .factory-gallery img {
    height: 260px;
  }

  .application-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .application-card {
    display: grid;
    grid-template-columns: 44% 56%;
  }

  .application-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .partners-section__intro {
    display: block;
  }

  .partners-section__intro .section-label {
    margin-bottom: 16px;
  }

  .partner-paths {
    grid-template-columns: 1fr;
  }

  .partner-paths article + article {
    padding-left: 0;
    border-top: 1px solid #454644;
    border-left: 0;
  }

  .fact-grid,
  .factory-process-grid,
  .step-grid,
  .support-grid,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(2),
  .factory-process-grid article:nth-child(2),
  .step-grid li:nth-child(2),
  .support-grid li:nth-child(2),
  .process-line li:nth-child(2) {
    border-right: 0;
  }

  .quote-section,
  .page-hero,
  .facilities-section,
  .resource-columns,
  .quote-page-layout {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero__copy {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .page-hero__media {
    height: 390px;
  }

  .application-detail-card {
    grid-template-columns: 42% 58%;
  }

  .partner-audiences {
    grid-template-columns: 1fr;
  }

  .notice-section,
  .closing-cta {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .factory-wide-gallery {
    height: 520px;
    min-height: 0;
  }

  .resource-columns article + article {
    padding: 50px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .factory-gallery--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .calculator-prompt {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .calculator-prompt .button {
    justify-self: start;
  }

  .application-grid--six {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-chapter-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-chapter__header,
  .application-scenario,
  .thickness-section,
  .material-comparison__intro,
  .partner-model {
    grid-template-columns: 1fr;
  }

  .application-chapter__header > img {
    min-height: 360px;
  }

  .application-scenario:nth-child(even) .scenario-gallery,
  .partner-model:nth-child(even) .partner-model__gallery {
    order: initial;
  }

  .scenario-gallery,
  .partner-model__gallery {
    min-height: 420px;
  }

  .thickness-gallery {
    min-height: 470px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .surface-card {
    grid-template-columns: 40% 60%;
  }

  .price-calculator {
    grid-template-columns: 1fr;
  }

  .price-calculator__intro {
    grid-column: auto;
  }

  .factory-evidence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 7px;
  }

  .language-menu {
    right: -58px;
  }

  .hero__media {
    height: 72vw;
    min-height: 250px;
  }

  .hero__copy {
    padding: 34px 20px 44px;
  }

  .hero h1 {
    font-size: clamp(50px, 15.6vw, 68px);
  }

  .hero__description {
    max-width: none;
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button--text {
    align-self: flex-start;
  }

  .product-band__item {
    padding: 18px 20px;
  }

  .factory-preview {
    padding-inline: 20px;
  }

  .factory-gallery {
    grid-template-columns: 1fr;
    height: 280px;
  }

  .factory-gallery img {
    height: 280px;
  }

  .factory-gallery img:nth-child(2) {
    display: none;
  }

  .factory-gallery--three {
    grid-template-columns: 1fr;
  }

  .factory-gallery--three figure:nth-child(n + 2) {
    display: none;
  }

  .product-system-visual {
    height: 510px;
  }

  .product-system-visual > img {
    object-position: 57% center;
  }

  .visual-caption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .section-space,
  .content-section {
    padding: 68px 20px;
  }

  .section-intro h2,
  .partners-section h2,
  .resources-section h2,
  .quote-section h2,
  .section-heading h2,
  .page-hero h1 {
    font-size: 50px;
  }

  .application-card {
    display: block;
  }

  .application-card img {
    aspect-ratio: 1.35;
  }

  .fact-grid,
  .factory-process-grid,
  .step-grid,
  .support-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact + .fact,
  .factory-process-grid article,
  .step-grid li,
  .support-grid li,
  .process-line li {
    min-height: 112px;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-grid li,
  .process-line li {
    padding-top: 50px;
  }

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

  .project-form {
    padding: 24px 18px;
  }

  .page-hero__copy {
    padding: 50px 20px 54px;
  }

  .page-hero__media {
    height: 280px;
  }

  .application-detail-card,
  .application-detail-card:nth-child(even) {
    display: block;
  }

  .application-detail-card:nth-child(even) img {
    order: initial;
  }

  .application-detail-card img {
    height: 260px;
  }

  .application-detail-card > div,
  .product-detail-card {
    padding: 32px 24px;
  }

  .factory-wide-gallery {
    height: 520px;
    grid-template-columns: 1fr;
  }

  .factory-wide-gallery img:nth-child(2) {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .site-footer__brand,
  .site-footer__legal {
    grid-column: auto;
  }

  .application-grid--six,
  .application-chapter-nav {
    grid-template-columns: 1fr;
  }

  .application-chapter-nav a {
    min-height: 68px;
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid #3b3d3c;
  }

  .application-chapter,
  .price-calculator {
    padding: 68px 20px;
  }

  .application-chapter__header > img {
    min-height: 0;
    height: 280px;
  }

  .application-chapter__copy,
  .application-scenario__content,
  .partner-model__copy {
    padding: 32px 24px;
  }

  .scenario-gallery,
  .partner-model__gallery,
  .thickness-gallery {
    min-height: 0;
    height: 340px;
  }

  .scenario-gallery--2,
  .scenario-gallery--3,
  .partner-model__gallery,
  .thickness-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .scenario-gallery--2 img:nth-child(n + 2),
  .scenario-gallery--3 img:nth-child(n + 2),
  .partner-model__gallery img:nth-child(n + 2),
  .thickness-gallery img:nth-child(n + 2) {
    display: none;
  }

  .scenario-gallery--3 img:first-child {
    grid-row: auto;
  }

  .application-scenario__details,
  .selection-factor-list,
  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .surface-card {
    display: block;
  }

  .surface-card > img {
    height: auto;
    aspect-ratio: 1.35;
  }

  .material-comparison__intro img {
    min-height: 280px;
  }

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

  .calculator-actions .button--text {
    align-self: flex-start;
  }

  .factory-evidence-card img {
    min-height: 0;
    height: 280px;
  }

  .dealer-relationship__flow {
    padding: 18px;
    font-size: 16px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.button--secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.site-footer__privacy {
  display: flex;
  grid-column: 1 / -1;
  gap: 18px;
  align-items: center;
  font-size: 12px;
}

.site-footer__privacy button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.site-footer__privacy button:hover,
.site-footer__privacy button:focus-visible {
  color: var(--red);
}

.privacy-hero {
  padding: 110px clamp(30px, 8vw, 140px) 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
  max-width: 920px;
  margin: 12px 0 18px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
}

.privacy-hero > p:not(.section-label) {
  max-width: 760px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.65;
}

.privacy-hero small {
  color: var(--gray);
}

.privacy-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 78px 30px 110px;
}

.privacy-content article {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 48px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-content h2 {
  margin: 0;
  font-size: 24px;
}

.privacy-content p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.75;
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid #3b3c3b;
  background: #171918;
  color: var(--white);
  box-shadow: 0 18px 60px rgb(0 0 0 / 28%);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner__copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.consent-banner__copy p {
  max-width: 760px;
  margin: 0 0 8px;
  color: #c8c8c4;
  font-size: 13px;
  line-height: 1.6;
}

.consent-banner__copy a {
  color: var(--white);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
}

.consent-banner .button {
  min-height: 44px;
  white-space: nowrap;
}

.consent-banner .button--secondary {
  border-color: #676966;
  color: var(--white);
}

@media (max-width: 760px) {
  .privacy-hero {
    padding: 72px 20px 52px;
  }

  .privacy-hero h1 {
    font-size: 50px;
  }

  .privacy-content {
    padding: 44px 20px 80px;
  }

  .privacy-content article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .consent-banner__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
}
