@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/archivo-black-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope Variable';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  color-scheme: light dark;
  --paper: #f1f2ec;
  --surface: #fbfbf7;
  --surface-strong: #e6e8e1;
  --ink: #151816;
  --muted: #646a65;
  --accent: #ef4b35;
  --accent-strong: #cf321f;
  --line: #c8ccc5;
  --focus: #1f6ed4;
  --on-dark: #fbfbf7;
  --page-gutter: clamp(1.25rem, 4vw, 4rem);
  --header-height: 4.5rem;
  --radius: 4px;
  --shadow: 0 18px 54px rgb(21 24 22 / 0.14);
  font-family: 'Manrope Variable', 'Manrope', sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #151816;
    --surface: #1d211e;
    --surface-strong: #292e2a;
    --ink: #f1f2ec;
    --muted: #aeb4ae;
    --line: #3e453f;
    --focus: #85b8ff;
    --shadow: 0 18px 54px rgb(0 0 0 / 0.32);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  line-height: 0.97;
}

h3 {
  line-height: 1.12;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section-space {
  padding-block: 8.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgb(21 24 22 / 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  font-size: 1rem;
  line-height: 1;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 2.25rem;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--accent);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
  position: absolute;
  content: '';
  width: 1.05rem;
  height: 0.35rem;
  border-radius: 1px;
  background: #fff;
}

.brand__mark::before {
  transform: translateY(-0.48rem);
}

.brand__mark::after {
  transform: translateY(0.48rem);
}

.brand__name {
  font-weight: 700;
}

.brand__name strong {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
  font-size: 0.86rem;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a,
.header-route {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.header-route:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-route {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-route svg {
  width: 1.1rem;
}

.action-link {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: max-content;
  max-width: 100%;
  padding: 0.7rem 1rem 0.7rem 1.2rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
  transform-origin: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.action-link:hover {
  background: var(--accent-strong);
}

.action-link__icon {
  width: 1.12rem;
  flex: 0 0 auto;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.action-link:hover .action-link__icon {
  transform: translate(2px, -2px);
}

.action-link--secondary {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.action-link--secondary:hover {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.action-link--quiet {
  padding-inline: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
}

.menu-button {
  display: none;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
}

.menu-icon {
  width: 1.35rem;
}

.menu-icon--close {
  display: none;
}

.menu-button[aria-expanded='true'] .menu-icon--open {
  display: none;
}

.menu-button[aria-expanded='true'] .menu-icon--close {
  display: block;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: -1;
  display: grid;
  gap: 2rem;
  padding: 2rem var(--page-gutter) 2.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  visibility: hidden;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
  gap: 0.1rem;
}

.mobile-menu nav a {
  padding-block: 0.45rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.mobile-menu p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.hero-stage {
  position: relative;
  isolation: isolate;
  height: calc(100dvh - var(--header-height));
  min-height: 37.5rem;
  max-height: none;
  overflow: hidden;
  background: #252a26;
  color: #fff;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  transform: scale(1.01);
  will-change: transform;
}

.hero-media img {
  backface-visibility: hidden;
  object-fit: cover;
  object-position: center 48%;
}

.hero-veil {
  z-index: -2;
  background: rgb(12 15 13 / 0.53);
}

.paint-pass {
  position: absolute;
  inset: auto auto 0 0;
  z-index: -1;
  width: clamp(0.55rem, 1.2vw, 1.25rem);
  height: 100%;
  background: var(--accent);
  transform-origin: bottom;
  will-change: transform;
}

.hero-content {
  position: relative;
  height: calc(100% - 4.5rem);
}

.hero-act {
  position: absolute;
  top: 50%;
  left: var(--page-gutter);
  width: min(64rem, calc(100% - (var(--page-gutter) * 2)));
  transform: translateY(-50%);
  will-change: opacity;
}

.hero-act--two,
.hero-act--three {
  display: none;
}

.hero-kicker,
.section-kicker {
  margin-bottom: 1.2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.4rem;
  font-size: 4.45rem;
}

.hero h1 span {
  white-space: nowrap;
}

.hero-copy {
  max-width: 35rem;
  margin-bottom: 1.7rem;
  font-size: 1.08rem;
  font-weight: 550;
}

.hero-actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .action-link--secondary,
.contact .action-link--secondary {
  color: #fff;
}

.hero-act--two p,
.hero-act--three > p {
  margin-bottom: 0.8rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-act--two h2,
.hero-act--three h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: 4.6rem;
}

.hero-progress {
  position: absolute;
  top: 10%;
  right: var(--page-gutter);
  width: 2px;
  height: 80%;
  overflow: hidden;
  background: rgb(255 255 255 / 0.25);
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.hero-fact-peek {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  min-height: 4.5rem;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 0.22);
  background: rgb(16 19 17 / 0.82);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  font-weight: 600;
}

.hero-fact-peek span {
  display: grid;
  min-height: 4.5rem;
  place-items: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgb(255 255 255 / 0.16);
  text-align: center;
}

.quick-facts {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.quick-facts__track {
  display: grid;
  min-height: 7.25rem;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  padding-inline: var(--page-gutter);
}

.quick-facts__track,
.products-rail {
  scrollbar-width: none;
}

.quick-facts__track::-webkit-scrollbar,
.products-rail::-webkit-scrollbar {
  display: none;
}

.quick-fact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem;
  border-left: 1px solid var(--line);
}

.quick-fact:last-child {
  border-right: 1px solid var(--line);
}

.quick-fact svg {
  width: 1.35rem;
  flex: 0 0 auto;
  color: var(--accent);
}

.quick-fact span {
  display: grid;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.quick-fact strong {
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 0.88rem;
}

.situations__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 9vw;
  align-items: start;
}

.situations__intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.section-lead {
  max-width: 33ch;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 750;
}

.situations h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: 3.65rem;
}

.situations__intro > p:not(.section-lead) {
  max-width: 44ch;
  margin-bottom: 2rem;
  color: var(--muted);
}

.situations__list {
  display: grid;
}

.situation-row {
  position: relative;
  display: grid;
  min-height: 13.5rem;
  grid-template-columns: 7rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

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

.situation-row__marker {
  color: color-mix(in srgb, var(--accent) 70%, var(--ink));
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.situation-row h3 {
  margin-bottom: 0.55rem;
  font-size: 1.75rem;
}

.situation-row p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
}

.situation-row > svg {
  width: 1.6rem;
  color: var(--accent);
}

.products {
  padding-top: 2rem;
  overflow: hidden;
}

.products__heading {
  display: grid;
  min-height: 28rem;
  align-content: center;
  justify-items: start;
  padding-block: 5rem;
}

.products__heading h2 {
  max-width: 15ch;
  margin-bottom: 2rem;
  font-size: 4.7rem;
}

.products-rail {
  position: relative;
  height: calc(100dvh - var(--header-height));
  min-height: 0;
  overflow: hidden;
  background: var(--surface-strong);
}

.products-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  min-height: 0;
  backface-visibility: hidden;
  will-change: transform;
}

.product-panel,
.products-end {
  position: relative;
  display: flex;
  width: min(46rem, 58vw);
  min-width: 36rem;
  flex: 0 0 auto;
  align-items: flex-end;
  overflow: hidden;
  border-right: 1px solid rgb(255 255 255 / 0.16);
}

.product-panel picture,
.product-panel img,
.product-panel__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-panel img {
  object-fit: cover;
}

.product-panel__shade {
  display: none;
  background: rgb(10 12 10 / 0.48);
}

.product-panel--photo-store .product-panel__shade,
.product-panel--photo-hero .product-panel__shade {
  display: block;
}

.product-panel--paper {
  background: var(--surface);
  color: var(--ink);
}

.product-panel--ink {
  background: #1c2420;
  color: #fff;
}

.product-panel--accent {
  background: var(--accent);
  color: #fff;
}

.product-panel--photo-store,
.product-panel--photo-hero {
  color: #fff;
}

.product-panel__content {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  min-height: 58%;
  grid-template-columns: 1fr auto;
  align-content: end;
  padding: 3.5rem;
}

.product-panel__index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-panel__content > svg {
  width: 2rem;
}

.product-panel__content > p {
  grid-column: 1 / -1;
  margin: 5.5rem 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-panel__content h3 {
  grid-column: 1 / -1;
  max-width: 12ch;
  margin-bottom: 1rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
}

.product-panel__content > span:last-child {
  grid-column: 1 / -1;
  max-width: 43ch;
  font-size: 0.92rem;
}

.products-end {
  width: min(42rem, 52vw);
  min-width: 34rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem;
  background: var(--surface-strong);
  color: var(--ink);
}

.products-end > p {
  color: var(--muted);
}

.products-end h3 {
  max-width: 11ch;
  margin-bottom: 2rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.3rem;
  font-weight: 400;
}

.service__grid {
  display: grid;
  grid-template-columns: minmax(0, 5.5fr) minmax(0, 6.5fr);
  gap: 7vw;
  align-items: center;
}

.service__media {
  position: relative;
  min-height: 41rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.service__media picture,
.service__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.service__media img {
  object-fit: cover;
}

.service__stamp {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  box-shadow: var(--shadow);
}

.service__stamp svg {
  width: 1rem;
  color: var(--accent);
}

.service__content h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: 4.15rem;
}

.service__intro {
  max-width: 48ch;
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-steps {
  margin-bottom: 2rem;
}

.service-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--line);
}

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

.service-step > svg {
  width: 1.45rem;
  color: var(--accent);
}

.service-step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
}

.service-step p {
  max-width: 49ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.color-lab {
  position: relative;
  isolation: isolate;
  min-height: 47rem;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
}

.color-lab__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 47rem;
  align-content: center;
  justify-items: start;
}

.color-lab h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: 4.6rem;
}

.color-lab__content > p:not(.section-kicker) {
  max-width: 48ch;
  margin-bottom: 2rem;
}

.color-lab .action-link--secondary {
  color: #fff;
}

.color-lab small {
  margin-top: 1rem;
  font-size: 0.72rem;
}

.color-lab__fan {
  position: absolute;
  right: 0;
  bottom: -10rem;
  z-index: 1;
  width: min(45rem, 50vw);
  height: 53rem;
  transform-origin: 75% 90%;
}

.color-lab__fan span {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 9.5rem;
  height: 42rem;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: var(--radius);
  background: var(--fan-color);
  box-shadow: 0 18px 40px rgb(21 24 22 / 0.14);
  transform: rotate(calc(var(--fan-i) * 10deg));
  transform-origin: 50% 94%;
}

.logistics__heading {
  display: grid;
  justify-items: start;
  margin-bottom: 4.5rem;
}

.logistics__heading h2 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  font-size: 4.35rem;
}

.logistics__heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.logistics-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 4rem;
}

.logistics-path::before {
  position: absolute;
  top: 2.25rem;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: '';
}

.logistics-path article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding-right: 2.5rem;
}

.logistics-path article > span {
  display: grid;
  width: 4.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--accent);
}

.logistics-path svg {
  width: 1.5rem;
}

.logistics-path h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.logistics-path p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.professional-callout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding: 3.5rem;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.professional-callout p {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.professional-callout h3 {
  max-width: 22ch;
  margin: 0;
  font-size: 2.15rem;
}

.trust {
  padding-top: 3rem;
}

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

.trust__image {
  grid-column: 1 / 8;
  grid-row: 1 / 4;
  min-height: 45rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.trust__image picture,
.trust__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.trust__image img {
  object-fit: cover;
}

.trust__statement {
  grid-column: 8 / 13;
  padding: 1.5rem 1.5rem 3rem;
}

.trust__statement h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: 3.7rem;
}

.trust__statement p {
  max-width: 42ch;
  color: var(--muted);
}

.trust-facts {
  display: grid;
  grid-column: 8 / 13;
  gap: 0;
}

.trust-facts div {
  display: grid;
  gap: 0.15rem;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--line);
}

.trust-facts strong {
  font-size: 0.95rem;
}

.trust-facts span {
  color: var(--muted);
  font-size: 0.84rem;
}

.faq {
  background: var(--surface);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 9vw;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.faq__intro h2 {
  max-width: 9ch;
  margin-bottom: 1.4rem;
  font-size: 4.15rem;
}

.faq__intro p {
  max-width: 35ch;
  margin-bottom: 2rem;
  color: var(--muted);
}

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

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

.faq-item summary {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.2rem;
  font-size: 1.08rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  display: grid;
  width: 2.3rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  transition: transform 220ms ease;
}

.faq-item__icon svg {
  width: 1rem;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item > p {
  max-width: 60ch;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.contact {
  position: relative;
  isolation: isolate;
  min-height: 51rem;
  overflow: hidden;
  color: #fff;
}

.contact__media,
.contact__media picture,
.contact__media img,
.contact__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.contact__media img {
  object-fit: cover;
}

.contact__shade {
  z-index: -1;
  background: rgb(12 15 13 / 0.72);
}

.contact__content {
  display: grid;
  min-height: 51rem;
  align-content: center;
  justify-items: start;
  padding-block: 6rem;
}

.contact h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: 4.8rem;
}

.contact__content > p:not(.section-kicker) {
  max-width: 48ch;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  width: min(100%, 65rem);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4.5rem;
  background: rgb(255 255 255 / 0.22);
}

.contact-details > div {
  display: grid;
  min-height: 8rem;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1.35rem;
  background: rgb(14 17 15 / 0.68);
}

.contact-details svg {
  width: 1.25rem;
  color: var(--accent);
}

.contact-details span {
  font-size: 0.8rem;
}

.contact-details strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.84rem;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 7vw;
  padding-block: 5.5rem;
}

.brand--footer .brand__name strong {
  color: var(--accent);
}

.footer-brand p {
  max-width: 32ch;
  margin: 1.5rem 0 0;
  color: color-mix(in srgb, var(--paper) 68%, transparent);
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-links h2 {
  margin-bottom: 0.6rem;
  font-family: 'Manrope Variable', sans-serif;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: color-mix(in srgb, var(--paper) 70%, transparent);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links svg {
  width: 1rem;
}

.footer-legal {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  color: color-mix(in srgb, var(--paper) 62%, transparent);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-legal svg {
  width: 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: none;
  width: 3.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #1c8f4d;
  color: #fff;
  box-shadow: 0 12px 28px rgb(21 24 22 / 0.25);
}

.floating-whatsapp svg {
  width: 1.65rem;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-route,
  .header-cta {
    display: none;
  }

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

  .menu-button {
    display: grid;
  }

  html:not(.js) .site-header {
    height: auto;
    min-height: var(--header-height);
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    padding-block: 0.75rem;
  }

  html:not(.js) .header-actions {
    display: none;
  }

  html:not(.js) .mobile-menu {
    position: static;
    z-index: auto;
    display: block;
    grid-column: 1 / -1;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    min-width: 0;
  }

  html:not(.js) .mobile-menu nav {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-block: 0.35rem;
    scrollbar-width: none;
    min-width: 0;
  }

  html:not(.js) .mobile-menu nav::-webkit-scrollbar {
    display: none;
  }

  html:not(.js) .mobile-menu nav a {
    flex: 0 0 auto;
    padding: 0;
    font-family: 'Manrope Variable', sans-serif;
    font-size: 0.78rem;
    font-weight: 750;
  }

  html:not(.js) .mobile-menu > .action-link,
  html:not(.js) .mobile-menu > p {
    display: none;
  }

  .situations h2,
  .trust__statement h2 {
    font-size: 3.15rem;
  }

  .service__content h2,
  .faq__intro h2 {
    font-size: 3.45rem;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 1023px) {
  .section-space {
    padding-block: 6.5rem;
  }

  .hero-stage {
    height: auto;
    min-height: calc(100dvh - 8rem);
    max-height: none;
  }

  .hero-fact-peek {
    display: none;
  }

  .hero-content {
    min-height: calc(100dvh - 8rem);
  }

  .hero-act {
    top: auto;
    bottom: 3.5rem;
    transform: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-progress {
    display: none;
  }

  .quick-facts__track {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(15rem, 1fr));
    scroll-snap-type: x mandatory;
  }

  .quick-fact {
    scroll-snap-align: start;
  }

  .situations__grid,
  .service__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .situations__intro,
  .faq__intro {
    position: static;
  }

  .products__heading h2 {
    font-size: 3.8rem;
  }

  .products-rail {
    height: auto;
    min-height: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
  }

  .products-track {
    height: 41rem;
    min-height: 41rem;
  }

  .product-panel,
  .products-end {
    width: 82vw;
    min-width: 31rem;
    scroll-snap-align: start;
  }

  .service__media {
    min-height: 34rem;
  }

  .service__media img {
    object-position: center 58%;
  }

  .color-lab__content {
    width: 58%;
    margin: 0;
  }

  .color-lab__fan {
    width: 55vw;
  }

  .logistics-path {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .logistics-path::before {
    top: 0;
    bottom: 0;
    left: 2.25rem;
    width: 1px;
    height: auto;
  }

  .trust__image {
    grid-column: 1 / 8;
    min-height: 36rem;
  }

  .trust__statement,
  .trust-facts {
    grid-column: 8 / 13;
  }

  .contact h2 {
    font-size: 4.1rem;
  }

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

@media (max-width: 767px) {
  :root {
    --page-gutter: 1.25rem;
    --header-height: 4.25rem;
  }

  .site-header {
    gap: 0.75rem;
  }

  .brand__name {
    font-size: 0.9rem;
  }

  .brand__mark {
    width: 2rem;
  }

  .hero-stage,
  .hero-content {
    min-height: calc(100dvh - 7.5rem);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-veil {
    background: rgb(12 15 13 / 0.61);
  }

  .hero-act {
    bottom: 2.25rem;
    left: var(--page-gutter);
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .hero-kicker {
    margin-bottom: 0.85rem;
    font-size: 0.66rem;
  }

  .hero h1 {
    margin-bottom: 1rem;
    font-size: 2.55rem;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-copy {
    max-width: 32ch;
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
  }

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

  .hero-actions .action-link {
    width: 100%;
  }

  .quick-facts__track {
    min-height: 5.75rem;
    grid-template-columns: repeat(4, minmax(13.5rem, 1fr));
  }

  .section-space {
    padding-block: 5.25rem;
  }

  .situations h2,
  .products__heading h2,
  .service__content h2,
  .logistics__heading h2,
  .faq__intro h2,
  .contact h2 {
    font-size: 2.85rem;
  }

  .situations__grid,
  .service__grid,
  .faq__grid {
    gap: 3rem;
  }

  .situation-row {
    min-height: 10.5rem;
    grid-template-columns: 1fr auto;
  }

  .situation-row__marker {
    display: none;
  }

  .situation-row h3 {
    font-size: 1.35rem;
  }

  .products {
    padding-top: 0;
  }

  .products__heading {
    min-height: 24rem;
    padding-block: 4rem;
  }

  .products-track {
    height: 36rem;
    min-height: 36rem;
  }

  .product-panel,
  .products-end {
    width: 87vw;
    min-width: 17rem;
  }

  .product-panel__content {
    min-height: 62%;
    padding: 1.75rem;
  }

  .product-panel__content > p {
    margin-top: 3rem;
  }

  .product-panel__content h3,
  .products-end h3 {
    font-size: 2.35rem;
  }

  .products-end {
    padding: 2rem;
  }

  .service__media {
    min-height: 28rem;
  }

  .service__stamp {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .service-step {
    grid-template-columns: 2.2rem 1fr;
  }

  .color-lab,
  .color-lab__content {
    min-height: 48rem;
  }

  .color-lab__content {
    width: 100%;
    align-content: start;
    padding-top: 5rem;
  }

  .color-lab h2 {
    max-width: 10ch;
    font-size: 2.95rem;
  }

  .color-lab__content > p:not(.section-kicker) {
    max-width: 31rem;
  }

  .color-lab__fan {
    right: -7rem;
    bottom: -17rem;
    width: 30rem;
    height: 38rem;
  }

  .color-lab__fan span {
    width: 6rem;
    height: 30rem;
  }

  .logistics__heading {
    margin-bottom: 3.5rem;
  }

  .logistics-path article {
    grid-template-columns: 3.75rem 1fr;
    padding-right: 0;
  }

  .logistics-path article > span {
    width: 3.75rem;
  }

  .logistics-path::before {
    left: 1.875rem;
  }

  .professional-callout {
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem;
  }

  .professional-callout h3 {
    font-size: 1.7rem;
  }

  .trust__grid {
    display: flex;
    flex-direction: column;
  }

  .trust__image {
    height: 25rem;
    min-height: 0;
  }

  .trust__statement {
    padding: 1.5rem 0 1rem;
  }

  .trust__statement h2 {
    font-size: 2.8rem;
  }

  .trust-facts div {
    padding-inline: 0;
  }

  .faq-item summary {
    min-height: 4.5rem;
    font-size: 0.95rem;
  }

  .contact,
  .contact__content {
    min-height: 59rem;
  }

  .contact__content {
    padding-block: 5rem;
  }

  .contact__actions {
    width: 100%;
    flex-direction: column;
  }

  .contact__actions .action-link {
    width: 100%;
  }

  .contact-details {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .contact-details > div {
    min-height: 6.5rem;
  }

  .footer-main {
    gap: 4rem;
    padding-block: 4.25rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-legal {
    min-height: 6rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
  }

  .floating-whatsapp {
    display: grid;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .floating-whatsapp.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .brand__name {
    max-width: 8rem;
    white-space: normal;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 0.86rem;
  }

  .action-link {
    font-size: 0.78rem;
    white-space: normal;
  }
}

@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;
  }

  .action-link,
  .action-link__icon,
  .faq-item__icon,
  .floating-whatsapp {
    transform: none !important;
  }

  .products-rail {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
  }

  .product-panel,
  .products-end {
    scroll-snap-align: start;
  }
}
