:root {
  color-scheme: light;
  --night: #071513;
  --night-2: #0d2420;
  --forest: #163a32;
  --teal: #19756d;
  --teal-bright: #3bb6a5;
  --sage: #9bb59f;
  --paper: #f4f2e9;
  --paper-2: #ebe8dc;
  --white: #fffef8;
  --ink: #10211e;
  --muted: #5f6e69;
  --line: rgba(16, 33, 30, 0.16);
  --sun: #f4b844;
  --sun-hot: #ffd36a;
  --signal: #e77836;
  --danger: #a94436;
  --radius-sm: 0.55rem;
  --radius: 1.1rem;
  --radius-lg: 2rem;
  --shadow: 0 22px 60px rgba(3, 20, 16, 0.13);
  --measure: 72rem;
  --narrow: 49rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--night);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 33, 30, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 30, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--sun);
}

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

button,
.button {
  min-height: 2.8rem;
}

:focus-visible {
  outline: 3px solid var(--sun-hot);
  outline-offset: 4px;
}

::selection {
  color: var(--night);
  background: var(--sun-hot);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--night);
  background: var(--sun-hot);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(7, 21, 19, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  color: var(--sun);
}

.brand-name {
  display: grid;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-name strong {
  font-size: 1.02rem;
  letter-spacing: 0.16em;
}

.brand-name small {
  margin-top: 0.28rem;
  color: var(--sage);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: end;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a,
.nav-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.78rem;
  color: rgba(255, 255, 255, 0.86);
  border-radius: 0.55rem;
  font-size: 0.88rem;
  font-weight: 680;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.header-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.05rem;
  color: var(--night);
  background: var(--sun);
  border: 1px solid var(--sun);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover {
  color: var(--night);
  background: var(--sun-hot);
  border-color: var(--sun-hot);
  text-decoration: none;
  transform: translateY(-1px);
}

.button--outline {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button--dark {
  color: var(--white);
  background: var(--night);
  border-color: var(--night);
}

.button--small {
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.86rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.9rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  max-width: 17ch;
  margin-bottom: 1.3rem;
  font-size: clamp(2.7rem, 7.4vw, 6.7rem);
}

h2 {
  max-width: 20ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.05rem, 4.8vw, 4.1rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.1rem, 1.9vw, 1.38rem);
  line-height: 1.22;
}

.lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.lede--light {
  color: rgba(255, 255, 255, 0.75);
}

.hero {
  position: relative;
  min-height: min(900px, calc(100svh - 5rem));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(244, 184, 68, 0.19), transparent 22rem),
    linear-gradient(115deg, #061311 0%, #0c2822 54%, #102f29 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6.5rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}

.hero h1 em {
  color: var(--sun-hot);
  font-style: italic;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame--main {
  inset: 0 0 4.7rem 11%;
  border-radius: 12rem 12rem 1.5rem 1.5rem;
}

.hero-frame--detail {
  z-index: 2;
  right: 57%;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.75rem solid var(--night-2);
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -0.25rem;
  bottom: 1rem;
  width: min(18rem, 56%);
  padding: 1rem 1.1rem;
  color: var(--night);
  background: var(--sun-hot);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.45;
}

.solar-arc {
  position: absolute;
  z-index: 0;
  top: 3rem;
  right: -7rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(244, 184, 68, 0.42);
  border-radius: 50%;
}

.solar-arc::before {
  position: absolute;
  top: 14%;
  left: 9%;
  width: 1.05rem;
  height: 1.05rem;
  background: var(--sun-hot);
  border-radius: 50%;
  box-shadow: 0 0 2.5rem var(--sun);
  content: "";
}

.data-strip {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.data-point {
  min-height: 7rem;
  padding: 1.2rem 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.data-point:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.data-point strong {
  display: block;
  color: var(--sun-hot);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.data-point span {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.78rem;
  line-height: 1.4;
}

.section {
  padding-block: clamp(4.3rem, 9vw, 8rem);
}

.section--compact {
  padding-block: clamp(3rem, 6vw, 5rem);
}

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

.section--forest {
  color: var(--white);
  background:
    radial-gradient(circle at 0 0, rgba(59, 182, 165, 0.17), transparent 30rem),
    var(--forest);
}

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

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-intro > :last-child {
  justify-self: end;
}

.family-band {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.family-card {
  position: relative;
  min-height: 30rem;
  display: flex;
  grid-column: span 4;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  color: var(--white);
  background: var(--night-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  isolation: isolate;
}

.family-card:nth-child(4),
.family-card:nth-child(5) {
  min-height: 24rem;
  grid-column: span 6;
}

.family-card::after {
  position: absolute;
  z-index: -1;
  inset: 28% 0 0;
  background: linear-gradient(transparent, rgba(2, 13, 11, 0.93));
  content: "";
}

.family-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.family-card-body {
  padding: 1.4rem;
}

.family-card .kicker,
.product-card .kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sun-hot);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.family-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
}

.family-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.2rem, 7vw, 7rem);
}

.split--top {
  align-items: start;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media--wide img {
  aspect-ratio: 4 / 3;
}

.caption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.proof-steps {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.proof-steps li {
  position: relative;
  padding: 1.15rem 0 1.15rem 3.8rem;
  border-top: 1px solid var(--line);
  counter-increment: step;
}

.proof-steps li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--sun);
  border-radius: 50%;
  content: counter(step, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 900;
}

.proof-steps strong {
  display: block;
  margin-bottom: 0.2rem;
}

.proof-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.evidence-key {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.evidence-state {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.evidence-state::before {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  margin-right: 0.4rem;
  background: var(--muted);
  border-radius: 50%;
  content: "";
}

.evidence-state[data-state="document"]::before {
  background: var(--teal);
}

.evidence-state[data-state="factory"]::before {
  background: var(--sun);
}

.evidence-state[data-state="verify"]::before {
  background: var(--signal);
}

.evidence-state[data-state="unavailable"]::before {
  background: #8b8b8b;
}

.evidence-state strong {
  font-size: 0.8rem;
}

.evidence-state p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.page-hero::after {
  position: absolute;
  right: -7rem;
  bottom: -12rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(244, 184, 68, 0.35);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: 2rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 6.7vw, 5.8rem);
}

.breadcrumbs {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.35rem;
  content: "/";
}

.breadcrumbs a {
  color: inherit;
}

.page-note {
  padding: 1.15rem;
  color: var(--night);
  background: var(--sun-hot);
  border-radius: var(--radius);
  font-size: 0.87rem;
  line-height: 1.5;
}

.page-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.filter-shell {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label,
.field-label {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.78rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 33, 30, 0.32);
  border-radius: var(--radius-sm);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.product-card-media {
  position: relative;
  overflow: hidden;
  background: #efeee9;
  aspect-ratio: 4 / 3;
}

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

.product-card-media--text {
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 184, 68, 0.36), transparent 7rem),
    linear-gradient(135deg, var(--forest), var(--night));
}

.product-card-media--text::before {
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  content: "";
}

.product-card-media--text span {
  position: absolute;
  max-width: 80%;
  color: var(--sun-hot);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  text-align: center;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
}

.product-card-body p {
  color: var(--muted);
  font-size: 0.87rem;
}

.product-card-body .text-link {
  margin-top: auto;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  color: var(--forest);
  background: rgba(25, 117, 109, 0.1);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 760;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.result-status {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(16, 33, 30, 0.05);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  font-size: 0.9rem;
}

.document-table td:first-child {
  min-width: 13rem;
  font-weight: 760;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 780;
}

.status::before {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.callout {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sun);
  border-radius: var(--radius-sm);
}

.callout--warning {
  border-left-color: var(--signal);
}

.callout h3 {
  margin-bottom: 0.55rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-card {
  padding: 1.4rem;
  background: var(--paper);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
}

.stat-card small {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-card {
  min-height: 15rem;
  padding: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: process;
}

.process-card::before {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--teal);
  content: counter(process, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 2rem;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery figure {
  grid-column: span 4;
  margin: 0;
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-column: span 8;
}

.gallery img {
  width: 100%;
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  padding: 1rem 3rem 1rem 1rem;
  font-weight: 790;
  cursor: pointer;
}

.faq-list details > div {
  padding: 0 1rem 1.05rem;
  color: var(--muted);
}

.faq-list details p:last-child {
  margin-bottom: 0;
}

.rfq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.rfq-grid .field--full,
.rfq-grid fieldset,
.rfq-grid .form-actions,
.rfq-grid .form-status {
  grid-column: 1 / -1;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

legend {
  padding-inline: 0.35rem;
  font-weight: 780;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.choice {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  padding: 0.65rem;
  background: var(--paper);
  border-radius: 0.45rem;
  font-size: 0.87rem;
}

.choice input {
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius-lg);
}

.contact-panel a {
  color: var(--sun-hot);
}

.contact-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-item small {
  display: block;
  color: var(--sage);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.decision-list strong {
  display: block;
  margin-bottom: 0.35rem;
}

.decision-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
}

.quote-band::after {
  position: absolute;
  right: -6rem;
  bottom: -13rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
}

.quote-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding-block: clamp(3.3rem, 7vw, 5.5rem);
}

.quote-band h2 {
  max-width: 15ch;
  margin: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #04100e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2rem;
  padding-block: 4rem 3rem;
}

.footer-brand p {
  max-width: 33rem;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.footer-group h2 {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-group ul {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
}

.prose {
  width: min(100%, 48rem);
}

.prose h2,
.prose h3 {
  margin-top: 2.5rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 0.45rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.no-results {
  padding: 1.5rem;
  color: var(--muted);
  background: var(--paper-2);
  border-radius: var(--radius-sm);
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
  }

  .primary-nav {
    position: fixed;
    inset: 5rem 0 auto;
    width: 100%;
    display: none;
    justify-self: stretch;
    max-height: calc(100svh - 5rem);
    overflow-y: auto;
    padding: 1rem;
    background: var(--night);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .primary-nav[data-open="true"] {
    display: block;
  }

  .primary-nav ul {
    width: min(100%, var(--measure));
    display: grid;
    margin-inline: auto;
  }

  .primary-nav a {
    justify-content: start;
    padding-inline: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.75fr);
    gap: 2rem;
  }

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

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

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

  .footer-group:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .container,
  .container--narrow {
    width: min(calc(100% - 1.25rem), var(--measure));
  }

  .brand-name small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .page-hero-inner,
  .section-intro,
  .split,
  .quote-band-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 3.4rem;
  }

  .hero-visual {
    min-height: 27rem;
  }

  .hero-frame--main {
    inset: 0 0 4.7rem 7%;
  }

  .hero-note {
    right: 0;
    width: 62%;
  }

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

  .data-point:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .data-point:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .family-card,
  .family-card:nth-child(4),
  .family-card:nth-child(5) {
    min-height: 25rem;
    grid-column: 1 / -1;
  }

  .section-intro > :last-child {
    justify-self: start;
  }

  .evidence-key,
  .stat-grid,
  .filter-controls,
  .rfq-grid,
  .decision-list {
    grid-template-columns: 1fr;
  }

  .filter-controls .button {
    width: 100%;
  }

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

  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(4) {
    grid-column: 1 / -1;
  }

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

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

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

  .footer-group:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  input,
  select,
  textarea {
    font-size: 1rem;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: 23rem;
  }

  .hero-frame--detail {
    width: 48%;
    right: 48%;
  }

  .hero-note {
    width: 67%;
    font-size: 0.74rem;
  }

  .data-point {
    padding: 0.95rem;
  }

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

  .footer-group:last-child {
    grid-column: auto;
  }

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

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

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

@media print {
  .site-header,
  .site-footer,
  .quote-band,
  .hero-actions,
  .section-actions,
  .nav-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero,
  .section--dark,
  .section--forest {
    color: #000;
    background: #fff;
  }
}
