:root {
  --carbon: #151515;
  --carbon-soft: #20201f;
  --ink: #242421;
  --muted: #6e6c64;
  --sand: #d7be91;
  --sand-light: #eadcc2;
  --signal: #f26a21;
  --signal-dark: #c94708;
  --off-white: #f4f1ea;
  --paper: #fffdf8;
  --line: rgba(21, 21, 21, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(80px, 10vw, 152px);
  --shadow: 0 28px 70px rgba(18, 18, 17, 0.14);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.2rem, 10vw, 9.6rem);
}

h2 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--carbon);
  background: var(--signal);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--carbon);
  background: var(--signal);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section);
}

.section--compact {
  padding-block: clamp(64px, 7vw, 104px);
}

.section--dark {
  color: var(--off-white);
  background: var(--carbon);
}

.section--sand {
  background: var(--sand);
}

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

.section--signal {
  color: var(--carbon);
  background: var(--signal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--signal-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--sand);
}

.eyebrow--dark {
  color: var(--carbon);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 88px);
}

.section-head h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.section-head p {
  max-width: 540px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section--dark .section-head p {
  color: rgba(244, 241, 234, 0.66);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.section--dark .lead {
  color: rgba(244, 241, 234, 0.72);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--off-white);
  background: var(--carbon);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu a:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.button--signal {
  color: var(--carbon);
  background: var(--signal);
}

.button--signal:hover {
  color: var(--carbon);
  background: #ff7d34;
}

.button--outline {
  border-color: rgba(244, 241, 234, 0.45);
  color: var(--off-white);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--off-white);
  background: rgba(244, 241, 234, 0.08);
}

.button--light {
  color: var(--carbon);
  background: var(--off-white);
}

.button--small {
  min-height: 43px;
  padding: 12px 17px;
  font-size: 0.7rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--light {
  color: var(--off-white);
}

.text-link--muted {
  color: var(--muted);
}

/* Shared header */
.utility-bar {
  color: var(--carbon);
  background: var(--sand);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.utility-bar__divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--signal-dark);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--off-white);
  background: rgba(21, 21, 21, 0.985);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-header__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--off-white);
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 7px 6px;
  align-items: end;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--signal);
  transform: skewX(-8deg);
}

.brand__mark i {
  display: block;
  background: var(--carbon);
}

.brand__mark i:nth-child(1) {
  height: 42%;
}

.brand__mark i:nth-child(2) {
  height: 82%;
}

.brand__mark i:nth-child(3) {
  height: 60%;
}

.brand__text {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand__text span {
  color: var(--signal);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding-block: 29px;
  color: rgba(244, 241, 234, 0.76);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--off-white);
}

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

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-light);
  background: transparent;
  align-items: center;
  justify-content: center;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 19px;
  height: 2px;
  background: var(--off-white);
  transition: transform 180ms ease;
}

.menu-toggle span:nth-of-type(2) {
  transform: translateY(-4px);
}

.menu-toggle span:nth-of-type(3) {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: 114px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  color: var(--off-white);
  background: var(--carbon);
}

.mobile-menu__nav {
  display: grid;
  width: min(calc(100% - 40px), 680px);
  margin: 0 auto;
  padding: 36px 0 80px;
}

.mobile-menu__nav a {
  padding: 19px 4px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu__nav a.is-active {
  color: var(--signal);
}

/* Shared footer */
.site-footer {
  color: rgba(244, 241, 234, 0.74);
  background: var(--carbon);
}

.footer-cta {
  color: var(--carbon);
  background: var(--signal);
}

.footer-cta__inner {
  display: flex;
  min-height: 270px;
  padding-block: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.7vw, 7.3rem);
}

.footer-grid {
  display: grid;
  padding-block: 76px 66px;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(150px, 0.7fr));
  gap: 48px;
}

.brand--footer {
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 440px;
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.footer-note {
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 13px;
  color: var(--off-white);
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.footer-column a {
  font-size: 0.9rem;
}

.footer-column a:not(.text-link):hover {
  color: var(--signal);
}

.footer-column--contact p {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-column--contact .text-link {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  border-top: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--off-white);
}

.footer-link-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--off-white);
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  color: var(--off-white);
  background: var(--carbon);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.cookie-banner p {
  max-width: 610px;
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.83rem;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

/* Hero systems */
.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 114px));
  overflow: hidden;
  color: var(--off-white);
  background: var(--carbon);
}

.hero__media {
  position: absolute;
  inset: 0 0 0 48%;
}

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

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--carbon) 0%, rgba(21, 21, 21, 0.28) 38%, rgba(21, 21, 21, 0.08) 100%),
    linear-gradient(0deg, rgba(21, 21, 21, 0.78) 0%, transparent 48%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(820px, calc(100vh - 114px));
  padding-block: clamp(56px, 6vw, 86px) 46px;
  align-items: center;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 28px;
}

@media (min-width: 821px) {
  .hero h1 {
    font-size: clamp(4.2rem, 6.7vw, 6.2rem);
  }
}

.hero h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--sand);
}

.hero__intro {
  max-width: 630px;
  margin-bottom: 36px;
  color: rgba(244, 241, 234, 0.75);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero__index {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__index::before {
  width: 70px;
  height: 1px;
  content: "";
  background: rgba(244, 241, 234, 0.42);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 10vw, 150px);
  color: var(--off-white);
  background: var(--carbon);
}

.page-hero--image {
  min-height: 650px;
}

.page-hero__media {
  position: absolute;
  inset: 0 0 0 52%;
}

.page-hero__media img {
  height: 100%;
  object-fit: cover;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--carbon), rgba(21, 21, 21, 0.08));
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 1050px;
  margin-bottom: 30px;
  font-size: clamp(4.2rem, 9vw, 8.5rem);
}

.page-hero .lead {
  max-width: 680px;
}

.page-hero__meta {
  display: flex;
  margin-top: 46px;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-chip {
  padding: 10px 13px;
  border: 1px solid var(--line-light);
  color: rgba(244, 241, 234, 0.76);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 10px;
  color: rgba(244, 241, 234, 0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--off-white);
}

/* Brand / metric bands */
.proof-band {
  color: var(--carbon);
  background: var(--sand);
}

.proof-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 160px;
  padding: 38px 28px;
  border-right: 1px solid rgba(21, 21, 21, 0.18);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.proof-item span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Cards and editorial grids */
.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--off-white);
  background: var(--carbon-soft);
}

.category-card:nth-child(1),
.category-card:nth-child(4) {
  grid-column: span 7;
}

.category-card:nth-child(2),
.category-card:nth-child(3) {
  grid-column: span 5;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(10, 10, 9, 0.9) 0%, rgba(10, 10, 9, 0.07) 68%);
}

.category-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 32px;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.category-card h3 {
  max-width: 470px;
  margin-bottom: 5px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.category-card p {
  margin-bottom: 0;
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.88rem;
}

.category-card__number {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(244, 241, 234, 0.5);
  border-radius: 50%;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 800;
}

.category-card:hover img {
  transform: scale(1.04);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.product-card[hidden] {
  display: none;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
  background: #e9e6df;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  color: var(--off-white);
  background: rgba(21, 21, 21, 0.9);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 25px;
}

.product-card__body h3 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.product-card__body > p {
  min-height: 52px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card__specs {
  display: grid;
  margin-bottom: 24px;
  padding-block: 15px;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-card__specs span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__specs strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-bar {
  display: flex;
  margin-bottom: 38px;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 43px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--carbon);
  color: var(--off-white);
  background: var(--carbon);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.feature-card {
  min-height: 310px;
  padding: clamp(30px, 4vw, 54px);
  background: var(--off-white);
}

.feature-card__number {
  display: block;
  margin-bottom: 60px;
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--muted);
}

.editorial-split {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.editorial-split__media,
.editorial-split__copy {
  min-width: 0;
}

.editorial-split__media {
  min-height: 650px;
}

.editorial-split__media img {
  height: 100%;
  object-fit: cover;
}

.editorial-split__copy {
  display: flex;
  padding: clamp(50px, 5.5vw, 90px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  color: var(--off-white);
  background: var(--carbon);
}

.editorial-split__copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  hyphens: auto;
  overflow-wrap: break-word;
}

.editorial-split__copy p {
  max-width: 620px;
  color: rgba(244, 241, 234, 0.67);
  font-size: 1.06rem;
}

.editorial-split__copy .button {
  margin-top: 20px;
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 110px 320px 110px;
}

.image-stack__a {
  z-index: 1;
  grid-column: 1 / 9;
  grid-row: 1 / 3;
}

.image-stack__b {
  z-index: 2;
  border: 12px solid var(--off-white);
  grid-column: 7 / 13;
  grid-row: 2 / 4;
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-column-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 9vw, 140px);
}

.two-column-copy h2 {
  position: sticky;
  top: 140px;
  margin-bottom: 0;
}

.copy-flow > * + * {
  margin-top: 34px;
}

.copy-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.copy-block h3 {
  margin-bottom: 14px;
}

.copy-block p,
.copy-block li {
  color: var(--muted);
}

.copy-block ul {
  padding-left: 20px;
}

/* Specs / product detail */
.product-hero {
  padding-block: clamp(54px, 7vw, 104px);
  color: var(--off-white);
  background: var(--carbon);
}

.product-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(50px, 8vw, 120px);
}

.product-hero__media {
  position: relative;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background: #e8e3d8;
}

.product-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__media::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  content: "PROTOTYPE IMAGE";
  color: var(--carbon);
  background: var(--sand);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.product-hero__copy h1 {
  margin-bottom: 28px;
  font-size: clamp(4.1rem, 7vw, 7.4rem);
}

.product-hero__copy .lead {
  margin-bottom: 30px;
}

.inline-specs {
  display: grid;
  margin-block: 34px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
}

.inline-spec {
  padding: 18px;
  background: var(--carbon);
}

.inline-spec span {
  display: block;
  margin-bottom: 4px;
  color: rgba(244, 241, 234, 0.5);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inline-spec strong {
  color: var(--off-white);
  font-size: 0.9rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--carbon);
}

.spec-table tr {
  border-bottom: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  padding: 18px 12px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--muted);
}

.notice {
  padding: 22px 24px;
  border-left: 4px solid var(--signal);
  background: rgba(242, 106, 33, 0.1);
  color: #5f3a26;
  font-size: 0.9rem;
}

/* Process / timeline */
.process-list {
  counter-reset: process;
}

.process-item {
  display: grid;
  min-height: 210px;
  padding-block: 42px;
  border-top: 1px solid var(--line);
  align-items: start;
  counter-increment: process;
  grid-template-columns: 110px minmax(220px, 0.75fr) minmax(260px, 1fr);
  gap: 34px;
}

.process-item::before {
  color: var(--signal-dark);
  content: "0" counter(process);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
}

.process-item h3 {
  margin-bottom: 0;
}

.process-item p {
  color: var(--muted);
}

.process-item:last-child {
  border-bottom: 1px solid var(--line);
}

/* Applications and articles */
.application-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.application-card,
.article-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--off-white);
  background: var(--carbon-soft);
}

.application-card img,
.article-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 600ms var(--ease), opacity 250ms ease;
}

.application-card::after,
.article-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(9, 9, 8, 0.95) 0%, rgba(9, 9, 8, 0.04) 72%);
}

.application-card__content,
.article-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 4vw, 48px);
}

.application-card h3,
.article-card h3 {
  max-width: 650px;
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.application-card p,
.article-card p {
  max-width: 560px;
  color: rgba(244, 241, 234, 0.72);
}

.application-card:hover img,
.article-card:hover img {
  opacity: 0.88;
  transform: scale(1.035);
}

.article-card {
  min-height: 560px;
}

.article-card__meta {
  display: flex;
  margin-bottom: 16px;
  gap: 18px;
  color: var(--sand);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: clamp(50px, 8vw, 120px);
  justify-content: center;
}

.article-toc {
  position: sticky;
  top: 130px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding-block: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.article-toc a:hover {
  color: var(--signal-dark);
}

.prose {
  font-size: 1.05rem;
}

.prose h2 {
  margin: 70px 0 24px;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
}

.prose h3 {
  margin: 44px 0 18px;
  font-size: 2rem;
}

.prose p,
.prose li {
  color: #4c4b46;
}

.prose blockquote {
  margin-block: 44px;
  padding: 28px 32px;
  border-left: 5px solid var(--signal);
  background: var(--sand-light);
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.prose img {
  margin-block: 46px;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-button {
  display: grid;
  width: 100%;
  padding: 28px 0;
  border: 0;
  align-items: center;
  cursor: pointer;
  grid-template-columns: 1fr 36px;
  gap: 22px;
  text-align: left;
  background: transparent;
}

.faq-button span:first-child {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.faq-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-panel {
  max-width: 820px;
  padding: 0 68px 30px 0;
  color: var(--muted);
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
}

.form-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.form-intro ul {
  padding-left: 20px;
  color: var(--muted);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.14);
}

.checkbox-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkbox-field input {
  margin-top: 4px;
}

.form-message {
  padding: 18px;
  border: 1px solid #7a9e78;
  grid-column: 1 / -1;
  color: #315b34;
  background: #edf6eb;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #ddd8cd;
}

.gallery-grid figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 3;
}

.gallery-grid figure:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(3) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(5) {
  grid-column: span 6;
  grid-row: span 2;
}

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

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: clamp(48px, 8vw, 120px);
}

.legal-nav,
.legal-content {
  min-width: 0;
}

.legal-content {
  overflow-wrap: anywhere;
}

.legal-nav {
  position: sticky;
  top: 130px;
  align-self: start;
}

.legal-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content section {
  padding-bottom: 74px;
}

.legal-content h2 {
  margin-bottom: 28px;
}

.legal-content h3 {
  margin: 36px 0 14px;
  font-size: 1.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

/* Reusable callouts */
.marquee {
  overflow: hidden;
  padding-block: 25px;
  color: var(--carbon);
  background: var(--signal);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee 24s linear infinite;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.marquee__track span::after {
  margin-left: 34px;
  content: "✦";
  font-size: 0.55em;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.stat-list {
  display: grid;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.stat-list__item {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}

.stat-list__item:nth-child(even) {
  border-right: 0;
}

.stat-list__item:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.stat-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.9;
}

.stat-list span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.icon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.icon-list__item {
  padding: 24px;
  border: 1px solid var(--line);
}

.icon-list__item span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border: 1px solid var(--signal);
  place-items: center;
  color: var(--signal-dark);
  font-family: var(--display);
  font-weight: 900;
}

.icon-list__item h3 {
  font-size: 1.55rem;
}

.icon-list__item p {
  color: var(--muted);
  font-size: 0.88rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-column--contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 20px;
  }

  .utility-bar__inner span:nth-of-type(n + 3) {
    display: none;
  }

  .utility-bar__divider:nth-of-type(n + 2) {
    display: none;
  }

  .site-header__actions .button {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .cookie-banner {
    bottom: 14px;
    width: min(620px, calc(100% - 28px));
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .button {
    flex: 1 1 0;
  }

  .mobile-menu {
    top: 104px;
  }

  .section-head,
  .hero__grid,
  .product-hero__grid,
  .editorial-split,
  .two-column-copy,
  .form-layout,
  .article-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    gap: 24px;
  }

  .hero {
    min-height: 780px;
  }

  .hero__media {
    inset: 38% 0 0;
  }

  .hero__grid {
    min-height: 780px;
    padding-top: 75px;
    align-items: start;
  }

  .hero__index {
    display: none;
  }

  .page-hero--image {
    min-height: 720px;
  }

  .page-hero__media {
    inset: 45% 0 0 18%;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid rgba(21, 21, 21, 0.18);
  }

  .category-card:nth-child(n) {
    min-height: 440px;
    grid-column: span 12;
  }

  .feature-grid,
  .process-item {
    grid-template-columns: 1fr;
  }

  .feature-card__number {
    margin-bottom: 34px;
  }

  .editorial-split__media {
    min-height: 460px;
  }

  .editorial-split__copy {
    min-height: 560px;
  }

  .two-column-copy h2 {
    position: static;
  }

  .process-item {
    min-height: 0;
    gap: 12px;
  }

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

  .article-layout,
  .legal-layout {
    justify-content: stretch;
  }

  .editorial-split,
  .article-layout,
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-toc,
  .legal-nav {
    position: static;
  }

  .footer-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column--contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.6rem, 19vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .utility-bar__inner {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .utility-bar__inner span:nth-of-type(2) {
    display: none;
  }

  .utility-bar__divider {
    display: none;
  }

  .product-grid,
  .application-grid,
  .article-grid,
  .quote-form,
  .icon-list {
    grid-template-columns: 1fr;
  }

  .field--full,
  .checkbox-field {
    grid-column: auto;
  }

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

  .proof-band__grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.18);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .image-stack {
    display: block;
  }

  .image-stack img {
    aspect-ratio: 1 / 0.75;
  }

  .image-stack__b {
    margin: -36px 18px 0 45px;
    border: 8px solid var(--off-white);
  }

  .inline-specs,
  .stat-list {
    grid-template-columns: 1fr;
  }

  .stat-list__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-list__item:nth-child(n + 3) {
    border-top: 0;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-grid figure {
    margin-bottom: 12px;
    aspect-ratio: 1 / 0.72;
  }

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

  .footer-brand,
  .footer-column--contact {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 22px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}
