:root {
  color-scheme: dark;
  --bg: #17271c;
  --text: #ffffff;
  --muted: #dadada;
  --ghost: rgba(218, 218, 218, 0.28);
  --line: rgba(218, 218, 218, 0.28);
  --accent: #ef7c3e;
  --button: #ffffff;
  --button-text: #17271c;
  --panel: rgba(218, 218, 218, 0.08);
  --page-pad: clamp(3rem, 12.5vw, 15rem);
  --header-top: clamp(1.25rem, 3svh, 2.5rem);
  --content-width: calc(100% - (var(--page-pad) * 2));
  --menu-radius: 1.725rem;
  --font-body: "Cascadia Code", "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}


@font-face {
  font-family: "Cascadia Code";
  src: url("assets/fonts/cascadia-code-pl-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cascadia Code";
  src: url("assets/fonts/cascadia-code-pl-semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cascadia Code";
  src: url("assets/fonts/cascadia-code-pl-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

body.light {
  color-scheme: light;
  --bg: #dadada;
  --text: #17271c;
  --muted: rgba(23, 39, 28, 0.72);
  --ghost: rgba(23, 39, 28, 0.26);
  --line: rgba(23, 39, 28, 0.24);
  --accent: #ef7c3e;
  --button: #17271c;
  --button-text: #ffffff;
  --panel: rgba(255, 255, 255, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scroll-behavior: smooth;
}

body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100svh;
  height: auto;
  margin: 0;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

body::before {
  opacity: 0.13;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 50%, transparent 50%) 0 0 / 100% 4px;
  mix-blend-mode: screen;
}

body::after {
  opacity: 0.045;
  background-image:
    repeating-radial-gradient(circle at 23% 19%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 7px);
  background-size: 18rem 18rem;
  animation: site-noise-drift 28s linear infinite;
  will-change: transform;
}

body.light::before {
  opacity: 0.13;
  mix-blend-mode: multiply;
}

body.light::after {
  opacity: 0.035;
}

.effect-canvas {
  position: fixed;
  inset: 0;
  grid-area: 1 / 1;
  z-index: 2;
  pointer-events: none;
}

.effect-canvas {
  opacity: 0.88;
}

body.effects-ready .site-header,
body.effects-ready main,
body.effects-ready .footer {
  position: relative;
  z-index: 5;
}

body.effects-ready .site-header {
  z-index: 70;
}

body.effects-ready main,
body.effects-ready .footer {
  z-index: 5;
}

body.effects-ready .site-menu {
  z-index: 55;
}

main {
  display: grid;
  align-items: center;
  min-height: 0;
}

body.about-page {
  min-height: 100svh;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
}

body.catalog-page {
  min-height: 100svh;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
}

body.home-page {
  --home-pad: clamp(1.5rem, 6vw, 7rem);
  display: block;
  position: relative;
  min-height: 100svh;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
}

body.home-page main {
  display: block;
  min-height: 100svh;
}

body.home-page .site-header {
  position: absolute;
  top: clamp(1.25rem, 3svh, 2.5rem);
  left: 50%;
  width: var(--content-width);
  margin: 0;
  transform: translateX(-50%);
}

body.home-page .footer {
  width: var(--content-width);
  margin: 0;
  margin-inline: auto;
  padding: clamp(2.25rem, 5svh, 4rem) 0 clamp(1rem, 2.5svh, 2rem);
  flex-direction: column;
  gap: 0.25rem;
}

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

button {
  font: inherit;
}

.boot-intro-pending body > :not(.boot-sequence) {
  opacity: 0;
  pointer-events: none;
}

body.booting {
  overflow: hidden;
}

.boot-sequence {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(239, 124, 62, 0.18), transparent 19rem),
    radial-gradient(circle at 18% 82%, rgba(218, 218, 218, 0.08), transparent 18rem),
    linear-gradient(135deg, #08100b 0%, #17271c 54%, #050806 100%);
  color: #ffffff;
  cursor: pointer;
  isolation: isolate;
  animation: boot-enter 360ms ease-out both;
}

.boot-sequence.is-done {
  pointer-events: none;
  animation: boot-exit 680ms ease forwards;
}

.boot-grid,
.boot-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.boot-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(218, 218, 218, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 218, 218, 0.08) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
  animation: boot-grid-drift 3200ms linear infinite;
}

.boot-scan {
  background: linear-gradient(180deg, transparent, rgba(239, 124, 62, 0.24), transparent);
  height: 32%;
  opacity: 0.65;
  transform: translateY(-120%);
  animation: boot-scan 2400ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.boot-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(94vw, 76rem);
  min-height: min(86svh, 46rem);
  text-align: center;
}

.boot-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(9rem, 18vw, 14rem);
  aspect-ratio: 1;
  margin-bottom: clamp(1.25rem, 3svh, 2rem);
}

.boot-mark::before,
.boot-mark::after,
.boot-mark span {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(218, 218, 218, 0.52);
  border-radius: 50%;
}

.boot-mark::before {
  inset: 16%;
  border-color: rgba(239, 124, 62, 0.88);
  box-shadow: 0 0 34px rgba(239, 124, 62, 0.28);
  animation: boot-ring 2200ms linear infinite;
}

.boot-mark::after {
  inset: 31%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.62);
  animation: boot-ring-reverse 3200ms linear infinite;
}

.boot-mark span:nth-child(1) {
  inset: 6%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: boot-ring 4200ms linear infinite;
}

.boot-mark span:nth-child(2) {
  inset: 24%;
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: boot-ring-reverse 2600ms linear infinite;
}

.boot-mark span:nth-child(3) {
  inset: 44%;
  border: 0;
  background: var(--accent);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  box-shadow: 0 0 32px rgba(239, 124, 62, 0.58);
  animation: boot-pulse 1200ms ease-in-out infinite;
}

.boot-kicker {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.boot-panel h1 {
  max-width: 96vw;
  margin: 0;
  font-family: obviously-thin, sans-serif;
  font-size: clamp(2rem, 4.2vw, 5.1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.95;
  white-space: nowrap;
}

.boot-lines {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  margin-top: clamp(1.4rem, 3svh, 2.4rem);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  text-align: center;
}

.boot-lines span {
  opacity: 0;
  transform: translateY(0.5rem);
  animation: boot-line 520ms ease forwards;
}

.boot-lines span:nth-child(2) {
  animation-delay: 520ms;
}

.boot-lines span:nth-child(3) {
  animation-delay: 1040ms;
}

.boot-lines span::before {
  content: "> ";
  color: var(--accent);
}

.boot-progress {
  width: min(100%, 26rem);
  height: 0.28rem;
  margin-top: clamp(1.4rem, 3svh, 2.3rem);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.boot-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transform-origin: left;
  animation: boot-progress 2850ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.boot-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 2.2svh, 1.6rem);
  width: min(88vw, 76rem);
  padding: clamp(1rem, 2.2vw, 1.8rem);
  border: 1px solid rgba(218, 218, 218, 0.28);
  background: rgba(8, 16, 11, 0.72);
  box-shadow: 0 26px 120px rgba(0, 0, 0, 0.42), inset 0 0 64px rgba(239, 124, 62, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.boot-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(239, 124, 62, 0.18);
  pointer-events: none;
  clip-path: polygon(0 0, 18% 0, 18% 1px, 1px 1px, 1px 18%, 0 18%, 0 0, 100% 0, 100% 18%, calc(100% - 1px) 18%, calc(100% - 1px) 1px, 82% 1px, 82% 0);
}

.boot-topbar,
.boot-telemetry {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(218, 218, 218, 0.72);
  font-size: clamp(0.68rem, 0.9vw, 0.85rem);
  text-transform: uppercase;
}

.boot-console {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: stretch;
  min-height: clamp(24rem, 52svh, 36rem);
}

.boot-terminal,
.boot-modules {
  min-width: 0;
  border: 1px solid rgba(218, 218, 218, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%),
    rgba(23, 39, 28, 0.42);
}

.boot-terminal {
  display: grid;
  align-content: start;
  padding: clamp(1rem, 2vw, 1.8rem);
}

.boot-terminal .boot-kicker {
  margin: 0 0 clamp(0.7rem, 1.5svh, 1.1rem);
}

.boot-terminal h1 {
  max-width: 10ch;
  margin: 0 0 clamp(1.3rem, 3svh, 2.2rem);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(2.8rem, 5.35vw, 5.95rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
}

.boot-log {
  display: grid;
  gap: 0.42rem;
  max-width: 62ch;
  font-size: clamp(0.72rem, 0.95vw, 0.95rem);
}

.boot-log span {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  width: 0;
  animation: boot-type 420ms steps(58, end) forwards;
}

.boot-log span:nth-child(1) { animation-delay: 120ms; }
.boot-log span:nth-child(2) { animation-delay: 520ms; }
.boot-log span:nth-child(3) { animation-delay: 920ms; }
.boot-log span:nth-child(4) { animation-delay: 1320ms; }
.boot-log span:nth-child(5) { animation-delay: 1760ms; }
.boot-log span:nth-child(6) { animation-delay: 2220ms; }
.boot-log span:nth-child(7) { animation-delay: 2780ms; }
.boot-log span:nth-child(8) {
  color: var(--accent);
  animation-delay: 3440ms;
}

.boot-modules {
  display: grid;
  align-content: stretch;
}

.boot-modules div {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: clamp(1rem, 1.8vw, 1.4rem);
  border-bottom: 1px solid rgba(218, 218, 218, 0.14);
  opacity: 0;
  transform: translateX(1rem);
  animation: boot-module 520ms ease forwards;
}

.boot-modules div:nth-child(1) { animation-delay: 900ms; }
.boot-modules div:nth-child(2) { animation-delay: 1500ms; }
.boot-modules div:nth-child(3) { animation-delay: 2200ms; }
.boot-modules div:nth-child(4) {
  border-bottom: 0;
  animation-delay: 3100ms;
}

.boot-modules span {
  color: rgba(218, 218, 218, 0.7);
  font-size: clamp(0.72rem, 0.85vw, 0.86rem);
  text-transform: uppercase;
}

.boot-modules strong {
  color: var(--text);
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.boot-modules strong::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: #9cff21;
  box-shadow: 0 0 18px rgba(156, 255, 33, 0.46);
}

.boot-telemetry {
  flex-wrap: wrap;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(218, 218, 218, 0.14);
}

.boot-telemetry span {
  opacity: 0;
  animation: boot-line 420ms ease forwards;
}

.boot-telemetry span:nth-child(1) { animation-delay: 1200ms; }
.boot-telemetry span:nth-child(2) { animation-delay: 1800ms; }
.boot-telemetry span:nth-child(3) { animation-delay: 2400ms; }
.boot-telemetry span:nth-child(4) {
  color: var(--accent);
  animation-delay: 3300ms;
}

.boot-shell .boot-progress {
  width: 100%;
  height: 0.34rem;
  margin-top: 0;
  border-radius: 0;
}

@keyframes boot-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes boot-exit {
  to {
    opacity: 0;
    transform: scale(1.03);
  }
}

@keyframes boot-grid-drift {
  to {
    background-position: 4rem 4rem;
  }
}

@keyframes boot-scan {
  0% {
    transform: translateY(-120%);
  }

  100% {
    transform: translateY(320%);
  }
}

@keyframes boot-ring {
  to {
    transform: rotate(360deg);
  }
}

@keyframes boot-ring-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes boot-pulse {
  50% {
    transform: scale(0.76);
    opacity: 0.65;
  }
}

@keyframes boot-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes boot-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes boot-type {
  to {
    width: 100%;
  }
}

@keyframes boot-module {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.site-header {
  position: relative;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content-width);
  margin: var(--header-top) auto 0;
  min-height: clamp(3.4rem, 7svh, 5.2rem);
  overflow: visible;
}

.brand,
.header-actions,
.language-switch,
.hello-button,
.theme-button,
.menu-button {
  display: inline-flex;
  align-items: center;
}

body.menu-open .brand,
body.menu-open .language-switch,
body.menu-open .theme-button,
body.menu-open .hello-button {
  opacity: 0;
  pointer-events: none;
}

.brand {
  flex: 0 1 clamp(13rem, 21vw, 22rem);
  width: clamp(13rem, 21vw, 22rem);
  height: clamp(3.4rem, 7svh, 5.2rem);
  max-height: clamp(3.4rem, 7svh, 5.2rem);
  overflow: visible;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-height: clamp(3.4rem, 7svh, 5.2rem);
  object-fit: contain;
  object-position: left center;
}

body.light .brand-logo {
  filter: brightness(0) saturate(100%) invert(12%) sepia(21%) saturate(684%) hue-rotate(85deg) brightness(92%) contrast(91%);
}

.header-actions {
  gap: 1.05rem;
}

.language-switch {
  gap: 0.2rem;
  height: 3.45rem;
  padding: 0.25rem;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  color: var(--text-muted);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.8rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  color: inherit;
  font-family: obviously-wide, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.language-switch a:hover,
.language-switch a.is-active {
  background: var(--button);
  color: var(--button-text);
}

.theme-button,
.menu-button,
.hello-button {
  min-height: 3.45rem;
  border: 0;
  cursor: pointer;
}

.theme-button {
  position: relative;
  flex: 0 0 3.45rem;
  width: 3.45rem;
  height: 3.45rem;
  justify-content: center;
  background: transparent;
  color: var(--text);
  overflow: visible;
}

.hello-button {
  gap: 0.6rem;
  flex: 0 0 auto;
  justify-content: center;
  width: 12.6rem;
  height: 3.45rem;
  padding: 0 1.35rem;
  border: 2px solid var(--button);
  border-radius: 999px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(0);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
  will-change: transform;
}

.hello-button svg {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
}

.menu-button {
  position: relative;
  z-index: 60;
  width: 3.45rem;
  justify-content: center;
  border-radius: 50%;
  background: var(--button);
  color: var(--button-text);
  overflow: visible;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

body.menu-open .menu-button {
  z-index: 80;
  background: color-mix(in srgb, var(--bg) 92%, var(--text) 8%);
  color: var(--text);
  pointer-events: auto;
}

body.light.menu-open .menu-button {
  background: color-mix(in srgb, var(--bg) 88%, #fff 12%);
  color: var(--text);
}

.hello-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--menu-panel-top, var(--header-top));
  padding-inline: 0;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

body.light .site-menu {
  background: rgba(23, 39, 28, 0.14);
}

body.menu-open .site-menu {
  opacity: 1;
  pointer-events: auto;
}

.site-menu-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: clamp(2rem, 4vw, 5rem);
  width: min(90vw, calc(100% - 2rem));
  min-height: calc(100svh - var(--menu-panel-top, var(--header-top)) - 1rem);
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--menu-panel-radius, var(--menu-button-radius, var(--menu-radius)));
  background: color-mix(in srgb, var(--bg) 92%, var(--text) 8%);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
  transform: translate(0, 0) scale(0.045);
  transform-origin: var(--menu-origin-x, calc(100% - var(--menu-button-radius, var(--menu-radius)))) var(--menu-button-radius, var(--menu-radius));
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.light .site-menu-panel {
  background: color-mix(in srgb, var(--bg) 88%, #fff 12%);
  box-shadow: 0 26px 80px rgba(23, 39, 28, 0.18);
}

body.menu-open .site-menu-panel {
  transform: translateY(0);
}

.site-menu-nav {
  display: grid;
  align-content: center;
  gap: 1.5rem;
  margin: 0;
}

.menu-label {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  text-transform: uppercase;
}

.menu-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: baseline;
  color: var(--text);
}

.menu-link span {
  color: var(--accent);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
}

.menu-link strong {
  font-family: obviously-thin, sans-serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 0.9;
  transition: color 220ms ease, transform 220ms ease;
}

.menu-link:hover strong {
  color: var(--accent);
  transform: translateX(0.2rem);
}

.site-menu-side {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-width: 0;
  padding-left: clamp(1rem, 3vw, 3rem);
  border-left: 1px solid var(--line);
}

.site-menu-side p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.55;
}

.menu-intro {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.35;
}

.menu-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  margin: 0.5rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.menu-side-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  color: var(--muted);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  transition: color 180ms ease;
}

.menu-side-link:hover {
  color: var(--accent);
}

.menu-side-link svg {
  width: 0.9em;
  height: 0.9em;
}

.menu-mail {
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  transition: color 180ms ease;
}

.menu-mail:hover {
  color: var(--accent);
}

.contact-layout,
.footer {
  width: var(--content-width);
  margin-inline: auto;
}

.contact-layout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1.5rem, 4svh, 3rem) 0;
}

.contact-content {
  position: relative;
  min-width: 0;
  width: min(100%, 88rem);
  overflow: visible;
  text-align: left;
}

.contact-content h1,
.contact-content .giant-mail,
.contact-content .lead {
  position: relative;
  z-index: 2;
}

.catalog-hero > :not(.three-scene),
.product-detail > :not(.three-scene) {
  position: relative;
  z-index: 2;
}

h1 {
  max-width: 20ch;
  margin: 0;
  font-family: obviously-thin, sans-serif;
  font-size: clamp(3.45rem, 5vw, 6.8rem);
  font-weight: 400;
  font-style: normal;
  line-height: 0.98;
}

.giant-mail {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  max-width: 100%;
  margin: 0.25rem 0 0;
  color: var(--ghost);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(2.65rem, 3.4vw, 5rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
  word-break: break-word;
  transition: color 260ms ease;
}

.giant-mail:hover {
  color: var(--accent);
}

.mail-arrow {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1.22em;
  height: 1.22em;
  flex: 0 0 auto;
  overflow: hidden;
  transform: translateY(0.1em);
}

.mail-arrow::before,
.mail-arrow::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 840ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mail-arrow::after {
  transform: translate(-110%, 110%);
}

.mail-arrow svg {
  width: 1.22em;
  height: 1.22em;
  opacity: 0;
}

.giant-mail:hover .mail-arrow::before {
  transform: translate(110%, -110%);
}

.giant-mail:hover .mail-arrow::after {
  transform: translate(0, 0);
}

.giant-mail:hover .mail-arrow svg {
  opacity: 0;
}

.lead {
  max-width: 61rem;
  margin: clamp(1.75rem, 4svh, 3rem) 0 0;
  color: var(--text);
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 400;
  line-height: 1.52;
}

.three-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 900ms ease;
}

.three-scene.is-ready {
  opacity: 1;
}

.three-scene canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.home-three-scene {
  inset: clamp(6rem, 11svh, 9rem) 0 clamp(2rem, 5svh, 4rem);
  opacity: 0;
  mix-blend-mode: screen;
}

.home-network {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
}

body.light .home-network {
  opacity: 0.4;
}

body.light .home-three-scene,
body.light .print-three-scene,
body.light .about-three-scene,
body.light .catalog-three-scene,
body.light .contact-three-scene,
body.light .product-three-scene {
  mix-blend-mode: multiply;
}

.about-three-scene,
.catalog-three-scene,
.contact-three-scene,
.product-three-scene {
  mix-blend-mode: screen;
}

.about-three-scene {
  inset: clamp(6rem, 13svh, 10rem) 0 clamp(4rem, 10svh, 7rem);
}

.catalog-three-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: auto;
  min-width: 0;
}

.contact-three-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: auto;
  min-width: 0;
}

.product-three-scene {
  position: fixed;
  inset: 0;
  width: auto;
  min-width: 0;
  opacity: 0;
}

.home-hero {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(1.35rem, 3.6svh, 3.2rem);
  width: 100%;
  min-height: 0;
  height: 100svh;
  overflow: visible;
  padding: clamp(8rem, 14svh, 11rem) var(--home-pad) clamp(4.5rem, 9svh, 7rem);
}

.home-hero::before {
  position: absolute;
  inset: clamp(7rem, 12svh, 10rem) var(--home-pad) clamp(4rem, 8svh, 6rem);
  z-index: 0;
  content: "";
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(var(--accent) 0 0) left top / clamp(4rem, 9vw, 10rem) 2px no-repeat,
    linear-gradient(var(--accent) 0 0) right bottom / clamp(4rem, 9vw, 10rem) 2px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) left top / 2px clamp(3rem, 7vw, 7rem) no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) right bottom / 2px clamp(3rem, 7vw, 7rem) no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.home-title {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(0.65rem, 1.6svh, 1.25rem);
  max-width: min(100%, 108rem);
  margin: 0;
  padding-top: 0.48em;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 700;
  font-style: normal;
  line-height: 0.92;
  text-align: center;
}

.home-title::before,
.home-title::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.home-title::before {
  inset: 0.1em -0.18em -0.06em;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  opacity: 0.34;
}

.home-title::after {
  top: 0.16em;
  right: -0.24em;
  width: clamp(3rem, 8vw, 8rem);
  height: 1px;
  background: var(--accent);
  opacity: 0.76;
}

.home-title > span,
.home-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-title-row {
  position: relative;
  gap: clamp(1rem, 2vw, 2rem);
  max-width: 100%;
  overflow: visible;
  white-space: nowrap;
}

.home-pill {
  display: inline-flex;
  width: min(4.85em, 46vw);
  min-width: min(4.85em, 46vw);
  padding: 0.08em 0.46em 0.14em;
  overflow: hidden;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
}

.home-pill-track {
  display: flex;
  width: max-content;
  gap: 0;
  align-items: center;
  font-size: 0.82em;
}

.home-pill-track span {
  flex: 0 0 auto;
}

.home-pill-track span:not(:first-child) {
  display: none;
}

@keyframes home-pill-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.725em));
  }
}

.home-line {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.38rem, 0.85vw, 0.9rem);
}

.home-subtitle {
  position: relative;
  z-index: 2;
  width: min(58rem, 100%);
  margin: 0;
  color: var(--muted);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(1.05rem, 1.75vw, 2.15rem);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.home-subtitle::first-line {
  color: var(--text);
}

.home-paths {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  width: var(--content-width);
  margin: clamp(-4rem, -7svh, -2rem) auto 0;
  padding-bottom: clamp(2rem, 5svh, 4rem);
}

.home-path {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(4.6rem, auto) 1fr auto;
  align-content: stretch;
  min-height: clamp(20rem, 35svh, 27rem);
  padding: clamp(1.25rem, 2.3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 86%, transparent), transparent 82%),
    color-mix(in srgb, var(--bg) 92%, var(--text) 8%);
  opacity: 1;
  transform: none;
}

body.light .home-path {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 88%, transparent), transparent 82%),
    color-mix(in srgb, var(--bg) 84%, #fff 16%);
}

.home-path::before {
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: clamp(5rem, 11vw, 9rem);
  aspect-ratio: 1;
  content: "";
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 42% 2px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 0 0 / 2px 42% no-repeat,
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 33.33%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 33.33% 100%;
  opacity: 0.18;
  pointer-events: none;
}

.home-path-featured {
  min-height: clamp(20rem, 35svh, 27rem);
}

.home-path-kicker {
  margin: 0 0 clamp(1.8rem, 4svh, 3.2rem);
  color: var(--accent);
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
}

.home-path h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.3rem, 1.7vw, 2.15rem);
  line-height: 1.08;
}

.home-path p:not(.home-path-kicker) {
  max-width: 44rem;
  margin: clamp(1rem, 2.2svh, 1.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.58;
}

.home-path-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  min-height: 2.8rem;
  align-self: end;
  margin-top: clamp(1.4rem, 3svh, 2rem);
  color: var(--text);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.home-path-link svg {
  flex: 0 0 auto;
  width: 1.05em;
  height: 1.05em;
}

.home-path-link:hover {
  color: var(--accent);
  transform: translateX(0.16rem);
}

.home-visual {
  position: absolute;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.home-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-visual-right {
  right: clamp(2rem, 8vw, 9rem);
  top: clamp(6rem, 13svh, 10rem);
  width: clamp(6.5rem, 11vw, 12rem);
  aspect-ratio: 1;
  overflow: visible;
}

.home-stamp {
  position: absolute;
  z-index: 2;
  right: -0.52em;
  top: -0.78em;
  width: 1.18em;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.32));
  transform-origin: center;
  transform: rotate(0deg);
}

body.light .home-stamp {
  filter: drop-shadow(0 14px 26px rgba(23, 39, 28, 0.18));
}

.about-page main {
  align-items: start;
  min-height: auto;
}

.about-page .footer {
  padding-top: clamp(2rem, 5svh, 4rem);
}

.catalog-page main {
  position: relative;
  display: block;
}

.catalog-hero,
.catalog-section,
.catalog-cta {
  width: var(--content-width);
  margin-inline: auto;
}

.catalog-hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: clamp(5rem, 12svh, 9rem) 0 clamp(3rem, 8svh, 6rem);
}

.catalog-hero::after {
  position: absolute;
  right: 0;
  bottom: clamp(2rem, 5svh, 4rem);
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  content: "";
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(var(--accent) 0 0) 0 0 / 34% 2px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 0 0 / 2px 34% no-repeat,
    linear-gradient(var(--accent) 0 0) 100% 100% / 34% 2px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 100% 100% / 2px 34% no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.catalog-kicker,
.contact-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
}

.contact-kicker {
  position: relative;
  z-index: 2;
}

.catalog-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.9;
}

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

.catalog-hero p:last-child {
  position: relative;
  z-index: 2;
  max-width: 54rem;
  margin: clamp(1.5rem, 4svh, 2.75rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  line-height: 1.55;
}

.catalog-section {
  display: grid;
  grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(2.5rem, 7svh, 5rem) 0;
  border-top: 1px solid var(--line);
}

.catalog-section-heading span {
  color: var(--accent);
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  font-weight: 600;
  text-transform: uppercase;
}

.catalog-section-heading h2 {
  max-width: 24rem;
  margin: 0.65rem 0 0;
  color: var(--text);
  font-size: clamp(1.4rem, 2.4vw, 2.6rem);
  line-height: 1.12;
}

.catalog-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.95vw, 0.95rem);
  transition: color 180ms ease, transform 180ms ease;
}

.catalog-sub-link:hover {
  color: var(--accent);
  transform: translateX(0.2rem);
}

.catalog-sub-link svg {
  width: 1em;
  height: 1em;
}

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

.product-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.product-filters {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: -0.5rem;
  margin-bottom: 0.25rem;
}

.product-filters button {
  min-height: 2.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-filters button:hover,
.product-filters button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.product-filters button:hover {
  transform: translateY(-0.12rem);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card::before {
  position: absolute;
  inset: 0.75rem;
  z-index: 2;
  content: "";
  border: 1px solid color-mix(in srgb, var(--line) 68%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-card::after {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  content: "";
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 100% 1px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 100% 0 / 1px 100% no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-0.18rem);
}

.product-card:hover::before,
.product-card:hover::after {
  opacity: 0.72;
}

.product-card:hover::after {
  transform: translate(-0.15rem, 0.15rem);
}

.product-card.is-hidden {
  display: none;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.product-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 33.333%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 33.333% 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-visual::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--accent);
  content: "VECTOR / FIT";
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.3rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card:hover .product-visual::before {
  opacity: 0.42;
}

.product-card:hover .product-visual::after {
  opacity: 1;
  transform: translateY(0);
}

.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

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

.product-visual span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  color: var(--accent);
  font-size: 0.8rem;
}

.product-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0.8rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.product-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 1.7vw, 1.85rem);
  line-height: 1.05;
}

.product-copy p:not(.product-label) {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.product-meta span {
  width: fit-content;
  padding: 0.32rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
}

.product-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.product-price {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  font-weight: 700;
}

.product-price-request {
  color: var(--muted);
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  font-weight: 600;
}

.product-copy a,
.product-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--text);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.product-copy a:hover,
.product-detail-cta:hover {
  color: var(--accent);
  transform: translateX(0.2rem);
}

.product-copy svg,
.product-detail-cta svg {
  width: 1em;
  height: 1em;
}

.catalog-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem clamp(0.75rem, 2vw, 1.5rem);
  margin: clamp(1.25rem, 3svh, 2rem) 0 0;
  padding: 0;
  list-style: none;
}

.catalog-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem 0.5rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
}

.catalog-steps li span {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 700;
}

.filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.4rem;
  padding-inline: 0.3rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 55%, transparent);
  font-size: 0.7rem;
  font-weight: 700;
}

.product-filters button.is-active .filter-count,
.product-filters button:hover .filter-count {
  background: color-mix(in srgb, var(--bg) 24%, transparent);
}

.product-add {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-add:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-0.12rem);
}

.product-add.is-added {
  background: var(--accent);
  color: var(--bg);
}

.product-add svg {
  width: 1em;
  height: 1em;
}

.product-options {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.product-options label {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-options select {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  text-transform: none;
  transition: border-color 180ms ease;
}

.product-options select:hover,
.product-options select:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.order-item-details {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.order-item-price {
  display: block;
  margin-top: 0.15rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.order-total strong {
  color: var(--text);
  font-size: 1.05rem;
}

.order-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vh, 2rem);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.order-fab:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-0.15rem);
}

.order-fab svg {
  width: 1.1em;
  height: 1.1em;
}

.order-fab-count {
  display: grid;
  place-items: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding-inline: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.8rem;
}

.order-fab.has-items .order-fab-count {
  animation: order-count-pop 260ms ease;
}

@keyframes order-count-pop {
  50% {
    transform: scale(1.25);
  }
}

.order-panel {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(4.5rem, 9vh, 6rem);
  z-index: 41;
  display: grid;
  gap: 1rem;
  width: min(26rem, calc(100vw - 2rem));
  max-height: min(34rem, calc(100svh - 8rem));
  padding: clamp(1.1rem, 2vw, 1.5rem);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(0.75rem);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.order-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.order-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.order-panel-head h2 {
  margin: 0;
  font-size: 1.3rem;
}

.order-panel-close {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.order-panel-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.order-panel-close svg {
  width: 1rem;
  height: 1rem;
}

.order-panel-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.order-items {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-items:empty {
  display: none;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.order-item-name {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.order-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.order-item-controls button {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.order-item-controls button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.order-item-controls svg {
  width: 0.85rem;
  height: 0.85rem;
}

.order-item-qty {
  min-width: 1.4rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.order-fields {
  display: grid;
  gap: 0.85rem;
}

.order-fields label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.order-fields label em {
  font-style: normal;
  font-weight: 400;
}

.order-fields input,
.order-fields textarea {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

.order-fields input:focus-visible,
.order-fields textarea:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.order-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, filter 180ms ease;
}

.order-send:hover {
  filter: brightness(1.08);
  transform: translateY(-0.12rem);
}

.order-send svg {
  width: 1em;
  height: 1em;
}

.order-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease;
}

.order-copy:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.order-copy svg {
  width: 1em;
  height: 1em;
}

.order-panel-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.product-detail {
  position: relative;
  isolation: isolate;
  width: var(--content-width);
  margin-inline: auto;
  padding: clamp(4rem, 10svh, 7rem) 0 clamp(3rem, 8svh, 6rem);
  overflow: visible;
}

.product-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(20rem, 0.44fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  overflow: hidden;
  margin-top: clamp(1.5rem, 4svh, 3rem);
}

.product-detail-hero:has(.product-gallery img:only-child) {
  grid-template-columns: minmax(20rem, 34rem) minmax(20rem, 0.9fr);
  gap: clamp(1.4rem, 3vw, 3rem);
}

.product-detail-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.product-detail-copy {
  position: relative;
  z-index: 2;
}

.product-detail-image:has(.product-gallery img:only-child) {
  width: min(100%, 34rem);
}

.product-gallery {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.75rem;
  scroll-padding-inline: 0.75rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) transparent;
  scrollbar-width: thin;
}

.product-gallery::-webkit-scrollbar {
  height: 0.45rem;
}

.product-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.product-gallery::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.product-gallery.is-draggable {
  cursor: grab;
}

.product-gallery.is-draggable.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.product-gallery.is-draggable img {
  user-select: none;
  -webkit-user-drag: none;
}

.product-gallery img {
  display: block;
  flex: 0 0 min(84%, 42rem);
  width: min(84%, 42rem);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg);
  scroll-snap-align: start;
}

.product-gallery img:only-child {
  flex-basis: 100%;
  width: 100%;
}

.product-detail-copy h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: 0.9;
}

.product-detail-copy > p:not(.catalog-kicker) {
  max-width: 34rem;
  margin: clamp(1.2rem, 3svh, 2rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.product-detail-copy .product-meta {
  margin-top: clamp(1rem, 2svh, 1.5rem);
}

@media (max-width: 1500px) {
  .product-detail {
    width: min(var(--content-width), 58rem);
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
  }

  .product-detail-copy {
    order: -1;
  }

  .product-detail-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 8vw, 6.4rem);
  }

  .product-detail-copy > p:not(.catalog-kicker) {
    max-width: 40rem;
  }

  .product-gallery img {
    flex-basis: min(82%, 42rem);
    width: min(82%, 42rem);
  }
}

@media (max-width: 1020px) {
  .site-header {
    min-height: 3rem;
  }

  .brand {
    flex-basis: clamp(11rem, 28vw, 14rem);
    width: clamp(11rem, 28vw, 14rem);
    height: 3rem;
    max-height: 3rem;
  }

  .brand-logo {
    max-height: 3rem;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .language-switch {
    height: 3rem;
    padding: 0.2rem;
  }

  .language-switch a {
    min-width: 2.1rem;
    height: 2.45rem;
    padding-inline: 0.45rem;
    font-size: 0.66rem;
  }

  .theme-button,
  .menu-button,
  .hello-button {
    min-height: 3rem;
  }

  .theme-button,
  .menu-button {
    width: 3rem;
  }

  .hello-button {
    width: 10.7rem;
    height: 3rem;
    padding-inline: 1rem;
    font-size: 0.98rem;
  }

  .product-filters {
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .product-filters button {
    min-height: 2.15rem;
    padding: 0.36rem 0.68rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 980px) {
  .print-editorial,
  .print-lab,
  .catalog-section {
    grid-template-columns: 1fr;
  }

  .print-editorial {
    width: var(--content-width);
    padding-top: clamp(2.5rem, 6svh, 4rem);
  }

  .print-editorial-left,
  .print-editorial-copy {
    grid-column: 1;
  }

  .print-editorial-left {
    grid-row: 1;
    justify-self: center;
    width: min(100%, 30rem);
  }

  .print-editorial-copy {
    grid-row: 2;
    justify-self: center;
    width: min(100%, 42rem);
    text-align: center;
  }

  .print-editorial-copy p {
    justify-content: center;
  }

  .print-lab {
    row-gap: clamp(2rem, 5svh, 3.5rem);
  }

  .print-lab-controls,
  .print-lab-output {
    grid-column: 1;
    grid-row: auto;
  }

  .print-lab-output {
    width: 100%;
    min-height: clamp(24rem, 46vw, 31rem);
    justify-self: start;
  }

  .catalog-section-heading h2 {
    max-width: 34rem;
  }

  .product-filters {
    justify-content: flex-start;
  }
}

.product-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(1rem, 2svh, 1.4rem);
}

.product-colors span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  cursor: default;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-colors span::before {
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 auto;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--swatch);
}

.product-colors span::after {
  position: absolute;
  bottom: calc(100% + 0.7rem);
  left: 50%;
  z-index: 5;
  width: 9.2rem;
  height: 9.2rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: var(--swatch);
  box-shadow: 0 1.1rem 2.4rem rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.55rem) scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-colors span:hover,
.product-colors span:active {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}

.product-colors span:hover::after,
.product-colors span:active::after {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.product-detail-cta {
  margin-top: clamp(1.2rem, 3svh, 2rem);
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.catalog-card,
.catalog-list div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.catalog-card {
  display: grid;
  align-content: start;
  min-height: 17rem;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.catalog-card span {
  color: var(--accent);
  font-size: 0.8rem;
}

.catalog-card h3 {
  margin: auto 0 0.8rem;
  color: var(--text);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
}

.catalog-card p,
.catalog-list p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  line-height: 1.55;
}

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

.catalog-list div {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.catalog-list strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 8svh, 6rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--accent);
  color: var(--bg);
}

.catalog-cta h2 {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  line-height: 1;
}

.catalog-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bg);
  font-weight: 700;
  white-space: nowrap;
}

.catalog-cta svg {
  width: 1.1em;
  height: 1.1em;
}

.print-page main {
  display: block;
}

.print-hero,
.print-editorial,
.print-lab,
.print-cta {
  width: var(--content-width);
  margin-inline: auto;
}

.print-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: auto;
  padding: clamp(4.5rem, 9svh, 7rem) 0 clamp(1.5rem, 4svh, 2.8rem);
  overflow: hidden;
}

.print-hero::before {
  position: absolute;
  right: 0;
  bottom: clamp(1rem, 3svh, 2rem);
  width: min(42vw, 34rem);
  height: clamp(9rem, 18vw, 16rem);
  content: "";
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 33.333%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(var(--accent) 0 0) 0 0 / 42% 2px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 0 0 / 2px 42% no-repeat,
    linear-gradient(var(--accent) 0 0) 100% 100% / 42% 2px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 100% 100% / 2px 42% no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.print-hero::after {
  position: absolute;
  right: clamp(1rem, 3vw, 3rem);
  bottom: clamp(2.2rem, 5svh, 4rem);
  color: var(--accent);
  content: "FIT / MATERIAL / LAYER";
  font-size: clamp(0.68rem, 0.82vw, 0.82rem);
  font-weight: 700;
  opacity: 0.78;
  pointer-events: none;
  text-transform: uppercase;
}

.print-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: min(100%, 78rem);
  transform: translateY(var(--print-copy-shift, 0));
  transition: transform 120ms linear;
}

.print-three-scene {
  position: fixed;
  inset: 0;
  width: auto;
  min-width: 0;
  opacity: 0;
  mix-blend-mode: screen;
}

.print-three-scene.is-ready {
  opacity: 0.38;
}

.print-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--text);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(3.25rem, 6.4vw, 7rem);
  font-style: normal;
  font-weight: 500;
  line-height: 0.92;
}

.print-hero-copy > p:last-of-type {
  max-width: 58rem;
  margin: clamp(1.2rem, 3svh, 2rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
}

.print-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: clamp(1.5rem, 4svh, 2.6rem);
}

.print-primary-link,
.print-secondary-link,
.print-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  font-weight: 700;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.print-primary-link {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.print-secondary-link,
.print-cta a {
  color: var(--text);
}

.print-primary-link:hover,
.print-secondary-link:hover,
.print-cta a:hover {
  transform: translateY(-0.12rem);
}

.print-secondary-link:hover,
.print-cta a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.print-primary-link svg,
.print-secondary-link svg,
.print-cta svg {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
}

.print-editorial {
  display: grid;
  grid-template-columns: minmax(19rem, 0.9fr) minmax(32rem, 1.1fr);
  gap: clamp(1.4rem, 3.4vw, 3.8rem);
  align-items: center;
  width: min(var(--content-width), 88rem);
  padding: clamp(3.5rem, 8svh, 5.5rem) 0 clamp(4.5rem, 10svh, 6.5rem);
}

.print-editorial-image {
  display: block;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1.2rem 2.4rem rgba(0, 0, 0, 0.2));
}

.print-editorial-left {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1 / 1.14;
  align-self: center;
  justify-self: end;
  width: min(100%, 34rem);
  transform: translate3d(0, var(--print-art-shift, 0), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.print-editorial-copy {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  width: min(100%, 56rem);
  align-self: center;
  justify-self: start;
  padding-inline: 0;
  transform: translate3d(0, var(--print-editorial-copy-shift, 0), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.print-editorial-copy p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 clamp(1.4rem, 3vw, 2.4rem);
  color: var(--muted);
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
}

.print-editorial-copy p span {
  display: block;
  width: clamp(2.5rem, 4vw, 4rem);
  height: 1px;
  background: var(--accent);
}

.print-editorial-copy h2 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(2.85rem, 4vw, 4.35rem);
  font-weight: 700;
  line-height: 1;
}

.print-editorial-copy h2 span {
  display: block;
  white-space: normal;
}

.print-editorial-copy a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.print-editorial-copy a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-0.12rem);
}

.print-hero-visual {
  position: relative;
  justify-self: stretch;
  width: 100%;
  min-height: clamp(22rem, 34vw, 34rem);
  margin-top: clamp(0.5rem, 2svh, 1.5rem);
  isolation: isolate;
  transform: translateY(var(--print-visual-shift, 0));
  transition: transform 120ms linear;
}

.print-hero-visual::before {
  position: absolute;
  right: 8%;
  bottom: 2%;
  left: 8%;
  z-index: -1;
  height: 34%;
  content: "";
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 24%, transparent);
  filter: blur(28px);
  opacity: 0.32;
  transform: translateY(var(--print-grid-shift, 0)) perspective(68rem) rotateX(64deg) scaleX(1.2);
  transform-origin: 50% 78%;
  transition: transform 120ms linear;
}

.print-hero-visual::after {
  position: absolute;
  right: 9%;
  bottom: 10%;
  left: 11%;
  z-index: -1;
  height: 0.6rem;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(239, 124, 62, 0.72), transparent);
  opacity: 0.5;
  animation: print-bed-glow 4200ms ease-in-out infinite;
}

.print-visual-main,
.print-visual-float {
  position: absolute;
  display: block;
  background: color-mix(in srgb, var(--bg) 88%, var(--text) 12%);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.24);
}

.print-visual-main {
  left: 50%;
  bottom: 5%;
  width: min(38vw, 30rem);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.5rem;
  transform: translate3d(-50%, var(--print-main-shift, 0), 0) rotate(-1.5deg);
  transition: transform 120ms linear, box-shadow 220ms ease;
  animation: print-float-main 6200ms ease-in-out infinite;
}

.print-visual-float {
  object-fit: cover;
  border-radius: 1rem;
}

.print-visual-top {
  left: 6%;
  top: 3%;
  width: min(19vw, 14rem);
  aspect-ratio: 1;
  padding: clamp(0.8rem, 2vw, 1.4rem);
  object-fit: contain;
  transform: translate3d(0, var(--print-top-shift, 0), 0) rotate(5deg);
  transition: transform 120ms linear;
  animation: print-float-top 5400ms ease-in-out infinite;
}

.print-visual-bottom {
  right: 7%;
  bottom: 1%;
  left: auto;
  width: min(22vw, 16rem);
  aspect-ratio: 4 / 3;
  transform: translate3d(0, var(--print-bottom-shift, 0), 0) rotate(3deg);
  transition: transform 120ms linear;
  animation: print-float-bottom 7000ms ease-in-out infinite;
}

.print-nozzle {
  position: absolute;
  left: 36%;
  top: 2%;
  z-index: 3;
  width: clamp(4rem, 9vw, 7rem);
  height: clamp(2.4rem, 5vw, 4rem);
  color: var(--text);
  transform: translateY(var(--print-top-shift, 0)) rotate(-7deg);
  animation: print-nozzle-hover 5200ms ease-in-out infinite;
}

.print-nozzle::before {
  position: absolute;
  inset: 0 20% 28% 0;
  content: "";
  border-radius: 0.45rem;
  background: color-mix(in srgb, var(--text) 84%, var(--bg) 16%);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 10% 100%);
}

.print-nozzle i {
  position: absolute;
  right: 0.55rem;
  bottom: 0;
  width: 1.05rem;
  height: 1.55rem;
  background: var(--accent);
  clip-path: polygon(24% 0, 76% 0, 100% 100%, 0 100%);
}

.print-filament {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.print-filament span {
  position: absolute;
  left: 38%;
  width: clamp(9rem, 26vw, 23rem);
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform-origin: left center;
  animation: print-filament-run 4200ms ease-in-out infinite;
}

.print-filament span:nth-child(1) {
  top: 23%;
  transform: rotate(8deg) scaleX(0);
}

.print-filament span:nth-child(2) {
  top: 38%;
  animation-delay: 820ms;
  transform: rotate(-3deg) scaleX(0);
}

.print-filament span:nth-child(3) {
  top: 54%;
  animation-delay: 1640ms;
  transform: rotate(5deg) scaleX(0);
}

.print-bed {
  position: absolute;
  right: 8%;
  top: 8%;
  display: grid;
  gap: 0.45rem;
  width: min(17vw, 12rem);
  padding: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  transform: translate3d(0, var(--print-bed-shift, 0), 0);
  transition: transform 120ms linear;
}

.print-bed span {
  display: block;
  height: 0.45rem;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 12%, transparent 12% 18%);
  animation: print-layer-scan 1800ms linear infinite;
}

.print-bed strong {
  color: var(--text);
  font-size: inherit;
}

.print-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(28rem, 1.18fr);
  column-gap: clamp(2.5rem, 6vw, 7rem);
  row-gap: clamp(2.5rem, 5svh, 4.5rem);
  align-items: start;
  padding: clamp(6rem, 13svh, 10rem) 0 clamp(4rem, 9svh, 6.5rem);
}

.print-lab::before {
  position: absolute;
  inset: clamp(2.5rem, 7svh, 5rem) 0 clamp(2rem, 5svh, 4rem);
  z-index: -1;
  content: "";
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 25% 100%;
  opacity: 0.07;
  pointer-events: none;
}

.print-lab::after {
  position: absolute;
  top: clamp(5rem, 12svh, 9rem);
  right: 0;
  width: clamp(4rem, 9vw, 9rem);
  height: clamp(4rem, 9vw, 9rem);
  content: "";
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 100% 0 / 2px 100% no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.print-lab-heading {
  grid-column: 1 / -1;
  margin-bottom: clamp(0.8rem, 2.5svh, 2rem);
}

.print-lab-heading h2 {
  max-width: 18ch;
  margin: 0.7rem 0 0;
  color: var(--text);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(2.6rem, 5.6vw, 6.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.print-lab-controls {
  position: relative;
  display: grid;
  grid-column: 1;
  grid-row: 2;
  gap: clamp(1.8rem, 3.3vw, 3rem);
  width: 100%;
  max-width: 42rem;
  padding-top: clamp(0.6rem, 1.6vw, 1.2rem);
}

.print-lab-controls::before {
  position: absolute;
  top: -1rem;
  left: 0;
  width: min(100%, 18rem);
  height: 1px;
  content: "";
  background: var(--accent);
  opacity: 0.8;
}

.print-control-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  align-items: center;
  padding-left: clamp(1rem, 1.5vw, 1.25rem);
}

.print-control-group::before {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0;
  width: 1px;
  content: "";
  background: var(--line);
}

.print-control-group > span {
  flex: 0 0 100%;
  color: var(--accent);
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.print-control-group button {
  min-height: 2.65rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 92%, var(--text) 8%);
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.print-control-group button:hover,
.print-control-group button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-0.12rem);
}

.print-control-group button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  transform: none;
}

.print-control-group button:disabled:hover {
  border-color: var(--line);
  background: color-mix(in srgb, var(--bg) 92%, var(--text) 8%);
  color: var(--muted);
}

.print-lab-output {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  max-width: 50rem;
  min-height: clamp(24rem, 34vw, 34rem);
  justify-self: end;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.8rem, 3.6vw, 3.2rem);
  overflow: hidden;
  padding: clamp(1.6rem, 3.8vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(color-mix(in srgb, var(--line) 70%, transparent) 1px, transparent 1px) 0 0 / 100% 33.333%,
    linear-gradient(90deg, color-mix(in srgb, var(--line) 70%, transparent) 1px, transparent 1px) 0 0 / 33.333% 100%,
    radial-gradient(circle at 74% 22%, rgba(239, 124, 62, 0.16), transparent 11rem),
    color-mix(in srgb, var(--bg) 94%, var(--text) 6%);
  isolation: isolate;
}


.print-lab-output::after {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.4rem);
  right: clamp(0.9rem, 2vw, 1.4rem);
  z-index: -1;
  width: clamp(3.8rem, 8vw, 7rem);
  height: clamp(3.8rem, 8vw, 7rem);
  content: "";
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 100% 0 / 2px 100% no-repeat;
  opacity: 0.5;
}

.print-output-top,
.print-output-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.print-output-top {
  align-self: start;
}

.print-output-top > span,
.print-output-action > span {
  color: var(--muted);
  font-size: clamp(0.72rem, 0.85vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
}

.print-output-top p {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
}

.print-output-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  max-width: 40rem;
}

.print-output-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.25vw, 3.45rem);
  line-height: 1.02;
}

.print-output-copy p {
  max-width: 34rem;
  margin: clamp(1.05rem, 2.2vw, 1.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.5;
}

.print-output-action {
  align-self: end;
  padding-top: 1rem;
}

.print-output-action a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  color: var(--text);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.print-output-action a:hover {
  color: var(--accent);
  transform: translateX(0.2rem);
}

.print-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(0.4rem, 1.5vw, 1rem) 0 clamp(1rem, 3vw, 2rem);
}

.print-strip div {
  position: relative;
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  padding-right: clamp(1rem, 2vw, 2rem);
  transition: transform 220ms ease;
}

.print-strip div::before {
  position: absolute;
  right: clamp(0.4rem, 1.5vw, 1rem);
  bottom: -0.1rem;
  z-index: -1;
  color: rgba(255, 255, 255, 0.045);
  content: "";
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
}

.print-strip div:nth-child(1)::before {
  content: "01";
}

.print-strip div:nth-child(2)::before {
  content: "02";
}

.print-strip div:nth-child(3)::before {
  content: "03";
}

.print-strip div:hover {
  transform: translateY(-0.25rem);
}

.print-strip span,
.print-section-heading span,
.print-flow article > span,
.print-cta span {
  color: var(--accent);
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
}

.print-strip strong {
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.1;
}

.print-strip p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  line-height: 1.45;
}

.print-section {
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7svh, 5rem) 0;
}

.print-section-heading h2 {
  max-width: 24rem;
  margin: 0.7rem 0 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.3vw, 2.55rem);
  line-height: 1.12;
}

.print-flow,
.print-material-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.print-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.print-flow article,
.print-material-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 11rem;
  padding: clamp(0.2rem, 0.6vw, 0.4rem) clamp(1rem, 2vw, 1.5rem) 0 0;
  transition: transform 220ms ease;
}

.print-flow article::before,
.print-material-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1.8rem rgba(239, 124, 62, 0.42);
}

.print-flow article:hover,
.print-material-grid article:hover {
  transform: translateY(-0.25rem);
}

.print-flow h3,
.print-material-grid h3 {
  margin: 0.85rem 0 0.7rem;
  color: var(--text);
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  line-height: 1.1;
}

.print-flow p,
.print-material-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.84rem, 0.95vw, 0.98rem);
  line-height: 1.55;
}

.print-material-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.material-dot {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.45rem var(--bg);
  animation: print-material-pulse 3600ms ease-in-out infinite;
}

.material-pla {
  background: #f8f3e8;
}

.material-petg {
  background: #ef7c3e;
}

.material-tpu {
  background: #74b7a8;
}

.print-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 8svh, 6rem);
  padding: clamp(1.2rem, 3vw, 2.2rem) 0;
  border: 0;
  background: transparent;
}

.print-cta::before,
.print-cta::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.print-cta::before {
  inset: 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 50%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 25% 100%;
  opacity: 0.12;
}

.print-cta::after {
  display: none;
}

.print-cta > * {
  position: relative;
  z-index: 1;
}

.print-cta h2 {
  max-width: 52rem;
  margin: 0.45rem 0 0;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  line-height: 1.04;
}

.print-cta a {
  min-height: 3.55rem;
  padding: 0.95rem 1.35rem;
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-size: clamp(0.95rem, 1.08vw, 1.1rem);
  white-space: nowrap;
}

.print-cta a:hover {
  background: transparent;
  color: var(--accent);
}

@keyframes print-float-main {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.7rem;
  }
}

@keyframes print-float-top {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 0.55rem;
  }
}

@keyframes print-float-bottom {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.45rem;
  }
}

@keyframes print-nozzle-hover {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0.8rem 0.45rem;
  }
}

@keyframes print-filament-run {
  0% {
    opacity: 0;
    scale: 0 1;
  }

  24%,
  62% {
    opacity: 0.82;
    scale: 1 1;
  }

  100% {
    opacity: 0;
    scale: 0.2 1;
  }
}

@keyframes print-layer-scan {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 4rem;
  }
}

@keyframes print-bed-glow {
  0%,
  100% {
    opacity: 0.32;
  }

  50% {
    opacity: 0.72;
  }
}

@keyframes print-material-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .print-visual-main,
  .print-visual-top,
  .print-visual-bottom,
  .print-nozzle,
  .print-filament span,
  .print-bed span,
  .print-hero-visual::after,
  .material-dot {
    animation: none;
  }

  body::after,
  .about-status span,
  .about-portrait::after {
    animation: none;
  }

  .effect-canvas,
  .three-scene {
    display: none;
  }

  .revealable {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about-layout {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: clamp(46rem, 92svh, 62rem);
  padding-top: clamp(16rem, 33svh, 24rem);
  padding-bottom: clamp(4rem, 10svh, 7rem);
  overflow: hidden;
}

.about-hero-marquee {
  position: absolute;
  top: clamp(1.6rem, 5svh, 3.5rem);
  left: 0;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  padding-block: clamp(1rem, 2.5svh, 2rem);
}

.about-hero-track {
  display: flex;
  width: max-content;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  color: var(--text);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(5rem, 13vw, 11.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 0.78;
  white-space: nowrap;
  animation: about-marquee 44s linear infinite;
}

.about-hero-track span:nth-child(2n) {
  color: var(--accent);
}

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

  to {
    transform: translateX(0);
  }
}

.about-portrait {
  position: relative;
  z-index: 1;
  width: min(54vw, 34rem);
  aspect-ratio: 1;
  margin-top: clamp(4rem, 10svh, 8rem);
  transform: translateY(var(--about-photo-shift, 0px));
  will-change: transform;
}

.about-portrait::before {
  position: absolute;
  inset: -0.7rem;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.about-stat {
  position: absolute;
  display: grid;
  gap: 0.5rem;
  width: clamp(13rem, 18vw, 17rem);
  padding: clamp(0.95rem, 1.6vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(var(--about-card-blur, 18px));
  -webkit-backdrop-filter: blur(var(--about-card-blur, 18px));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  opacity: var(--about-card-opacity, 1);
  transform: translateY(var(--about-card-shift, 0px));
  will-change: opacity, transform, backdrop-filter;
}

body.light .about-stat {
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 38px rgba(23, 39, 28, 0.14);
}

.about-stat-left {
  left: max(-7rem, -13vw);
  top: 38%;
}

.about-stat-right {
  right: max(-7rem, -13vw);
  top: 50%;
}

.about-stat strong {
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 0.9;
}

.about-stat span {
  color: var(--muted);
  font-size: clamp(0.72rem, 0.95vw, 0.95rem);
  line-height: 1.35;
  white-space: nowrap;
}

.about-status {
  position: absolute;
  top: 8%;
  right: max(-6.5rem, -11vw);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: clamp(15rem, 22vw, 19rem);
  padding: clamp(0.95rem, 1.6vw, 1.3rem);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(var(--about-card-blur, 18px));
  -webkit-backdrop-filter: blur(var(--about-card-blur, 18px));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  opacity: var(--about-card-opacity, 1);
  transform: translateY(var(--about-card-shift, 0px));
  will-change: opacity, transform, backdrop-filter;
}

.about-status span {
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #9cff21;
}

.about-status strong {
  color: var(--text);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}

.about-stat strong,
.about-stat span,
.about-status span,
.about-status strong {
  opacity: var(--about-card-text-opacity, 1);
  filter: blur(var(--about-card-text-blur, 0px));
  transition: opacity 120ms linear, filter 120ms linear;
}

.about-copy {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: left;
}

.about-eyebrow {
  margin: 0 0 0.25rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
}

.about-lead {
  max-width: 28rem;
  margin: 0.55rem 0 0;
  color: var(--text);
  font-size: clamp(0.95rem, 1.25vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
}

.about-copy h1 {
  max-width: 34rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.25vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
}

.about-copy h1 span {
  white-space: nowrap;
}

.keyword-stack {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.keyword-stack-left {
  left: var(--page-pad);
  top: clamp(35rem, 68svh, 44rem);
}

.keyword-stack-right {
  right: var(--page-pad);
  top: clamp(17rem, 36svh, 25rem);
  justify-items: end;
}

.keyword-stack span {
  width: fit-content;
  max-width: 15rem;
  padding: 0.38rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: clamp(0.7rem, 0.9vw, 0.92rem);
  line-height: 1.2;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.03);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.keyword-stack span:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #17271c;
  transform: translateX(0.2rem);
}

.about-details {
  width: var(--content-width);
  margin: clamp(3rem, 8svh, 7rem) auto clamp(5rem, 12svh, 9rem);
  padding-top: clamp(2rem, 6svh, 5rem);
  border-top: 1px solid var(--line);
}

.about-details-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
}

.about-details-heading p {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  font-weight: 700;
  text-transform: uppercase;
}

.about-details-heading h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--text);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(3rem, 7vw, 8.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
}

.about-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(16rem, 1fr));
  gap: clamp(1rem, 1.5vw, 1.5rem);
  margin-top: clamp(2rem, 6svh, 5rem);
}

.about-detail-item {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(0.8rem, 1.4vw, 1.15rem);
  min-height: clamp(16rem, 23vw, 21rem);
  min-width: 0;
  padding: clamp(1.2rem, 1.8vw, 1.75rem);
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 94%, var(--text) 6%);
}

.about-detail-item::before,
.about-detail-item::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.about-detail-item::before {
  inset: 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 33.333%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 33.333% 100%;
  opacity: 0.12;
}

.about-detail-item::after {
  top: 0;
  right: 0;
  width: clamp(2.8rem, 5vw, 5rem);
  height: clamp(2.8rem, 5vw, 5rem);
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 100% 1px no-repeat,
    linear-gradient(90deg, var(--accent) 0 0) 100% 0 / 1px 100% no-repeat;
  opacity: 0.42;
}

.about-detail-item span {
  color: var(--accent);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 700;
}

.about-detail-item h3 {
  max-width: 9ch;
  margin: clamp(1.4rem, 3vw, 3rem) 0 0;
  color: var(--text);
  font-family: obviously-thin, sans-serif;
  font-size: clamp(2.15rem, 2.55vw, 3.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.92;
}

.about-detail-item p {
  max-width: 24ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 0.92vw, 0.98rem);
  line-height: 1.62;
}

.about-detail-item span,
.about-detail-item h3,
.about-detail-item p {
  position: relative;
  z-index: 1;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(2rem, 5svh, 4rem);
}

.about-process div {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.about-process span {
  color: var(--accent);
  font-size: clamp(0.75rem, 0.85vw, 0.88rem);
  font-weight: 700;
  text-transform: uppercase;
}

.about-process strong {
  color: var(--text);
  font-size: clamp(0.95rem, 1.2vw, 1.35rem);
  line-height: 1.35;
}

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

.revealable {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.revealable.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-path,
.catalog-card,
.product-card,
.product-detail-image,
.print-lab-output,
.about-detail-item {
  isolation: isolate;
}

.home-path::after,
.catalog-card::after,
.product-card::after,
.about-detail-item::after,
.print-lab-output::after {
  transition: opacity 220ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-path:hover,
.catalog-card:hover,
.product-card:hover,
.about-detail-item:hover {
  transform: translateY(-0.22rem);
}

.home-path,
.catalog-card,
.product-card,
.about-detail-item {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-path:hover,
.catalog-card:hover,
.product-card:hover,
.about-detail-item:hover,
.keyword-stack span:hover {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
}

.home-path:hover::after,
.catalog-card:hover::after,
.product-card:hover::after,
.about-detail-item:hover::after {
  opacity: 0.82;
  transform: translate3d(-0.25rem, 0.25rem, 0);
}

.theme-button,
.menu-button,
.hello-button,
.home-path-link,
.catalog-sub-link,
.print-primary-link,
.print-secondary-link,
.print-editorial-copy a,
.print-cta a,
.product-actions a,
.keyword-stack span {
  position: relative;
  overflow: hidden;
}

.theme-button::after,
.menu-button::after,
.hello-button::after,
.home-path-link::after,
.catalog-sub-link::after,
.print-primary-link::after,
.print-secondary-link::after,
.print-editorial-copy a::after,
.print-cta a::after,
.product-actions a::after,
.keyword-stack span::after {
  position: absolute;
  inset: -140% -35%;
  content: "";
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.46), transparent 58%);
  opacity: 0;
  transform: translateX(-56%);
  transition: opacity 180ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.theme-button:hover::after,
.menu-button:hover::after,
.hello-button:hover::after,
.home-path-link:hover::after,
.catalog-sub-link:hover::after,
.print-primary-link:hover::after,
.print-secondary-link:hover::after,
.print-editorial-copy a:hover::after,
.print-cta a:hover::after,
.product-actions a:hover::after,
.keyword-stack span:hover::after {
  opacity: 0.72;
  transform: translateX(56%);
}

.theme-button::after,
.menu-button::after {
  display: none;
}

.theme-button[data-tooltip]::before,
.menu-button[data-tooltip]::before {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  z-index: 120;
  width: max-content;
  max-width: 12rem;
  padding: 0.45rem 0.62rem;
  border: 1px solid color-mix(in srgb, var(--line) 78%, var(--accent));
  border-radius: 0.38rem;
  background: color-mix(in srgb, var(--bg) 88%, var(--text) 12%);
  color: var(--text);
  content: attr(data-tooltip);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, -0.2rem);
  transition: opacity 140ms ease, transform 140ms ease;
  white-space: nowrap;
}

body.light .theme-button[data-tooltip]::before,
body.light .menu-button[data-tooltip]::before {
  background: color-mix(in srgb, var(--bg) 74%, #fff 26%);
  box-shadow: 0 0.8rem 1.8rem rgba(23, 39, 28, 0.12);
}

.theme-button[data-tooltip]:hover::before,
.theme-button[data-tooltip]:focus-visible::before,
.menu-button[data-tooltip]:hover::before,
.menu-button[data-tooltip]:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.about-status span {
  animation: status-pulse 1600ms ease-in-out infinite;
}

.about-portrait::after {
  position: absolute;
  inset: -1.15rem;
  content: "";
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0 54deg, rgba(239, 124, 62, 0.72) 58deg 64deg, transparent 68deg 174deg, rgba(218, 218, 218, 0.42) 180deg 186deg, transparent 190deg 360deg);
  opacity: 0.44;
  mask: radial-gradient(circle, transparent 64%, #000 65%);
  animation: portrait-orbit 16s linear infinite;
  pointer-events: none;
}

@keyframes site-noise-drift {
  0% {
    transform: translate3d(-0.35rem, -0.2rem, 0) scale(1.012);
  }

  50% {
    transform: translate3d(0.35rem, 0.22rem, 0) scale(1);
  }

  100% {
    transform: translate3d(-0.35rem, -0.2rem, 0) scale(1.012);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(156, 255, 33, 0.34);
  }

  50% {
    box-shadow: 0 0 0 0.55rem rgba(156, 255, 33, 0);
  }
}

@keyframes portrait-orbit {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0 clamp(1rem, 2.5svh, 2rem);
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: clamp(0.72rem, 0.9vw, 0.95rem);
  line-height: 1.4;
}

.footer-ai-note {
  position: relative;
  display: inline-grid;
  justify-items: center;
  color: color-mix(in srgb, var(--muted) 78%, var(--text) 22%);
  font-size: clamp(0.68rem, 0.82vw, 0.86rem);
  outline: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-ai-note::after {
  position: absolute;
  right: 0;
  bottom: -0.18rem;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-ai-default,
.footer-ai-hover {
  grid-area: 1 / 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-ai-hover {
  color: var(--accent);
  font-weight: 700;
  opacity: 0;
  transform: translateY(0.35rem);
}

.footer-ai-note:hover,
.footer-ai-note:focus-visible {
  color: var(--text);
  transform: translateY(-0.08rem);
}

.footer-ai-note:hover::after,
.footer-ai-note:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-ai-note:hover .footer-ai-default,
.footer-ai-note:focus-visible .footer-ai-default {
  opacity: 0;
  transform: translateY(-0.35rem);
}

.footer-ai-note:hover .footer-ai-hover,
.footer-ai-note:focus-visible .footer-ai-hover {
  opacity: 1;
  transform: translateY(0);
}

body.pizza-page {
  --bg: #fcf9ed;
  --paper: #fffdf7;
  --paper-warm: #f4efe1;
  --text: #4f5842;
  --muted: rgba(79, 88, 66, 0.78);
  --brown: #a33b16;
  --brown-dark: #6f270f;
  --green: #4d6046;
  --gold: #8c721e;
  --accent: #a33b16;
  --cream: #fcf9ed;
  --ink: #4f5842;
  --line: rgba(79, 88, 66, 0.18);
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", Arial, sans-serif;
}

body.pizza-page::before {
  opacity: 0.28;
  background:
    radial-gradient(circle at 82% 72%, rgba(163, 59, 22, 0.11) 0 8rem, transparent 8.25rem),
    radial-gradient(circle at 11% 43%, rgba(163, 59, 22, 0.07) 0 11rem, transparent 11.2rem);
}

.pizza-page main {
  display: block;
}

.pizza-header,
.pizza-main,
.pizza-footer {
  position: relative;
  z-index: 5;
}

.pizza-bg-vectors {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.pizza-bg-slice-art {
  position: absolute;
  height: auto;
  filter: sepia(1) saturate(1.7) hue-rotate(328deg);
  mix-blend-mode: multiply;
}

.pizza-bg-slice-main {
  left: max(-4rem, -4vw);
  top: clamp(8rem, 18svh, 16rem);
  width: clamp(13rem, 22vw, 24rem);
  opacity: 0.085;
  transform: rotate(-12deg);
}

.pizza-bg-slice-small {
  right: max(-2rem, -1vw);
  top: clamp(9rem, 21svh, 18rem);
  width: clamp(8rem, 12vw, 14rem);
  opacity: 0.042;
  transform: rotate(18deg) scaleX(-1);
}

.pizza-bg-slice-ghost {
  right: clamp(8rem, 16vw, 18rem);
  bottom: clamp(2rem, 9svh, 7rem);
  width: clamp(10rem, 17vw, 19rem);
  opacity: 0.035;
  transform: rotate(-28deg);
}

.pizza-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100% - 2rem, 82rem);
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.3rem) 0 clamp(0.9rem, 2vw, 1.6rem);
}

.pizza-brand,
.pizza-nav a {
  color: var(--text);
  text-decoration: none;
}

.pizza-brand {
  display: block;
  width: clamp(7rem, 10vw, 9.6rem);
  aspect-ratio: 1;
  transform: rotate(-8deg);
  transform-origin: center;
}

.pizza-brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brown);
  mask: url("assets/bits-grain-stamp-white.png") center / contain no-repeat;
  -webkit-mask: url("assets/bits-grain-stamp-white.png") center / contain no-repeat;
}

.pizza-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.55rem, 1.2vw, 1rem);
  justify-content: flex-end;
  align-items: center;
}

.pizza-nav a {
  padding: 0.15rem 0.15rem 0.4rem;
  border-bottom: 0.22rem solid transparent;
  color: var(--text);
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  font-weight: 900;
  text-transform: uppercase;
}

.pizza-nav a:last-child {
  padding: 0.8rem 1.15rem;
  border: 0;
  border-radius: 0.45rem;
  background: var(--brown);
  color: var(--paper);
  box-shadow: 0.28rem 0.28rem 0 var(--brown-dark);
}

.pizza-nav a:first-child {
  border-bottom-color: var(--brown);
  color: var(--brown);
}

.pizza-hero,
.pizza-info,
.pizza-booking,
.pizza-section-intro,
.pizza-strip {
  width: min(100% - 2rem, 82rem);
  margin-inline: auto;
}

.pizza-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(11rem, 0.78fr) minmax(0, 1.5fr) minmax(11rem, 0.78fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 7rem);
  padding: clamp(1.5rem, 4svh, 3rem) 0 clamp(3rem, 8svh, 5.5rem);
  text-align: center;
}

.pizza-hero-copy {
  display: grid;
  justify-items: center;
}

.pizza-kicker {
  margin: 0 0 1rem;
  color: var(--brown);
  font-size: clamp(1rem, 1.38vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pizza-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--brown);
  font-family: "Luckiest Guy", Impact, Arial Black, sans-serif;
  font-size: clamp(4.1rem, 8.3vw, 8.8rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.88;
  text-transform: uppercase;
}

.pizza-hero-copy > p:not(.pizza-kicker):not(.pizza-favorite) {
  max-width: 39rem;
  margin: clamp(1.2rem, 2.8svh, 2rem) 0 0;
  color: var(--green);
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  font-weight: 900;
  line-height: 1.4;
}

.pizza-favorite {
  max-width: 33rem;
  margin: 1.25rem 0 0;
  color: var(--gold);
  font-family: "Permanent Marker", "Marker Felt", "Bradley Hand", cursive;
  font-size: clamp(1.2rem, 2.3vw, 2.05rem);
  font-weight: 900;
  line-height: 1.05;
  transform: rotate(-3deg);
}

.pizza-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: clamp(1.6rem, 4svh, 2.5rem);
}

.pizza-actions a,
.pizza-booking button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0 1.35rem;
  border: 2px solid rgba(79, 88, 66, 0.18);
  border-radius: 0.45rem;
  background: var(--brown);
  color: var(--paper);
  box-shadow: 0.3rem 0.3rem 0 var(--brown-dark);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.pizza-actions .pizza-secondary-action {
  background: #e6e2d4;
  color: var(--green);
  box-shadow: inset 0 0 0 2px rgba(79, 88, 66, 0.12);
}

.pizza-polaroid {
  margin: 0;
  padding: clamp(0.75rem, 1.3vw, 1rem) clamp(0.75rem, 1.3vw, 1rem) clamp(1rem, 2vw, 1.35rem);
  background: var(--paper);
  box-shadow: 0 1.2rem 2.7rem rgba(38, 31, 22, 0.14);
}

.pizza-polaroid-left {
  transform: rotate(-4deg);
}

.pizza-polaroid-right {
  transform: translateX(clamp(0.8rem, 2vw, 2rem)) rotate(3deg);
}

.pizza-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 32%),
    radial-gradient(circle at 42% 42%, rgba(252, 249, 237, 0.52) 0 5rem, transparent 5.2rem),
    linear-gradient(135deg, #d7eadf 0 46%, #f1d7bd 46% 100%);
}

.pizza-video {
  background: #e6e2d4;
}

.pizza-polaroid-image {
  background: #e6e2d4;
  object-position: 50% 28%;
}

.pizza-photo-service {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(90deg, transparent 0 12%, #9d2f16 12% 17%, transparent 17% 100%),
    radial-gradient(circle at 50% 47%, #f3c05c 0 3rem, transparent 3.1rem),
    linear-gradient(160deg, #dce7e0 0 42%, #f3dbc1 42% 100%);
}

.pizza-photo-table {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 35%),
    radial-gradient(circle at 48% 51%, #e6ae4c 0 4.2rem, transparent 4.3rem),
    radial-gradient(circle at 48% 51%, #9d2f16 0 0.6rem, transparent 0.65rem),
    linear-gradient(160deg, #cbded5 0 44%, #f4d8bd 44% 100%);
}

.pizza-polaroid figcaption {
  margin-top: 0.8rem;
  color: #2e2a24;
  font-family: "Permanent Marker", "Marker Felt", "Bradley Hand", cursive;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 900;
  line-height: 1;
}

.pizza-section-intro {
  padding: clamp(3.4rem, 8svh, 6.2rem) 0 clamp(0.7rem, 2svh, 1.2rem);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.84);
  clip-path: inset(0 -100vmax);
  text-align: center;
}

.pizza-section-intro h2 {
  margin: 0;
  color: var(--brown);
  font-family: "Luckiest Guy", Impact, Arial Black, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.9;
  text-transform: uppercase;
}

.pizza-section-intro span {
  display: block;
  max-width: 42rem;
  margin: 0.9rem auto 0;
  color: rgba(79, 88, 66, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 900;
  line-height: 1.25;
}

.pizza-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.1rem);
  padding: clamp(2rem, 5svh, 3.4rem) 0 clamp(1.5rem, 4svh, 2.8rem);
  color: var(--green);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.84);
  clip-path: inset(0 -100vmax);
}

.pizza-strip span {
  display: grid;
  grid-template-rows: 3rem 1.2rem 2rem;
  justify-items: center;
  gap: 0.34rem;
  min-width: 0;
  overflow: visible;
  line-height: 1.05;
  text-align: center;
}

.pizza-strip strong {
  align-self: start;
  margin-top: 0;
  color: var(--green);
  font-size: clamp(0.9rem, 1.15vw, 1.12rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pizza-strip small {
  align-self: start;
  max-width: 13rem;
  color: rgba(79, 88, 66, 0.78);
  font-size: clamp(0.74rem, 0.9vw, 0.9rem);
  font-weight: 800;
  line-height: 1.18;
}

.pizza-strip svg {
  align-self: start;
  width: clamp(2rem, 3vw, 2.8rem);
  height: clamp(2rem, 3vw, 2.8rem);
  padding: 0.5rem;
  border: 1.5px solid rgba(79, 88, 66, 0.72);
  border-radius: 50%;
  color: var(--brown);
  background: rgba(255, 253, 247, 0.45);
  overflow: visible;
  stroke-width: 1.75;
}

.pizza-info {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(5rem, 12svh, 9rem) 0 clamp(8rem, 18svh, 14rem);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.84);
  clip-path: inset(0 -100vmax);
}

.pizza-info::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5rem;
  width: 100vw;
  height: 5rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.pizza-info article {
  display: grid;
  grid-template-rows: 4.8rem minmax(5rem, auto) auto;
  align-content: start;
  min-height: 18rem;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border: 3px solid var(--ink);
  border-radius: 1.2rem;
  background: var(--cream);
  box-shadow: 0.32rem 0.32rem 0 var(--ink);
}

.pizza-info span {
  display: inline-grid;
  place-items: center;
  align-self: start;
  width: 4.25rem;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  color: var(--brown);
}

.pizza-info span svg {
  width: 3.25rem;
  height: 3.25rem;
  stroke-width: 1.55;
}

.pizza-info h2 {
  align-self: start;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.pizza-info p {
  align-self: end;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.pizza-booking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(8rem, 20svh, 16rem) 0 clamp(4rem, 10svh, 7rem);
}

.pizza-booking::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(-2.1rem, -3vw, -1.2rem);
  z-index: 0;
  width: 100vw;
  height: clamp(2.2rem, 4vw, 3.8rem);
  transform: translateX(-50%) skewY(-1.4deg);
  transform-origin: center;
  background: var(--brown);
  pointer-events: none;
}

.pizza-booking > * {
  position: relative;
  z-index: 1;
}

.pizza-booking h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--brown);
  font-family: "Luckiest Guy", Impact, Arial Black, sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.88;
  text-transform: uppercase;
}

.pizza-booking-copy > p:not(.pizza-kicker) {
  max-width: 36rem;
  margin: 1.2rem 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 700;
  line-height: 1.62;
}

.pizza-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 3px solid var(--ink);
  border-radius: 1.2rem;
  background: var(--cream);
  box-shadow: 0.45rem 0.45rem 0 var(--ink);
}

.pizza-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pizza-form-wide,
.pizza-mail-button {
  grid-column: 1 / -1;
}

.pizza-form input,
.pizza-form select,
.pizza-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 0.75rem;
  background: #fff9e8;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.pizza-form textarea {
  resize: vertical;
}

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

.pizza-recaptcha {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(7rem, 0.34fr);
  align-items: center;
  gap: 0.9rem;
  min-height: 3.65rem;
  padding: 0.72rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 0.75rem;
  background: rgba(255, 249, 232, 0.82);
}

.pizza-recaptcha input {
  min-height: 2.65rem;
  padding: 0.6rem 0.7rem;
  text-align: center;
}

.pizza-recaptcha strong {
  display: block;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pizza-recaptcha small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
}

.pizza-mail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
  min-height: 3.2rem;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 0.45rem;
  background: var(--brown);
  color: var(--paper);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0.28rem 0.28rem 0 var(--brown-dark);
  cursor: pointer;
}

.pizza-mail-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pizza-form-status {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  margin: -0.1rem 0 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.pizza-mail-fallback {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.8rem;
  border: 2px dashed rgba(79, 88, 66, 0.65);
  border-radius: 0.75rem;
  background: rgba(255, 249, 232, 0.7);
}

.pizza-mail-fallback[hidden] {
  display: none;
}

.pizza-mail-fallback a,
.pizza-mail-fallback button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.75rem;
  border: 2px solid rgba(79, 88, 66, 0.68);
  border-radius: 0.55rem;
  background: rgba(255, 253, 247, 0.78);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 900;
  font-family: inherit;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.pizza-mail-fallback textarea {
  grid-column: 1 / -1;
  min-height: 9rem;
  max-height: 11rem;
  font-size: 0.82rem;
  line-height: 1.45;
  scrollbar-color: rgba(79, 88, 66, 0.55) rgba(255, 253, 247, 0.6);
  scrollbar-width: thin;
}

.pizza-mail-fallback textarea::-webkit-scrollbar {
  width: 0.55rem;
}

.pizza-mail-fallback textarea::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.65);
}

.pizza-mail-fallback textarea::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 253, 247, 0.65);
  border-radius: 999px;
  background: rgba(79, 88, 66, 0.6);
}

.pizza-footer {
  color: var(--ink);
}

@media (max-width: 900px) {
  /* Header-nav is op mobiel overbodig: de hero heeft zelf beide knoppen. */
  .pizza-nav {
    display: none;
  }

  .pizza-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.15rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .pizza-hero-copy {
    order: 1;
  }

  .pizza-polaroid {
    width: min(62vw, 16rem);
    padding: 0.6rem 0.6rem 0.85rem;
  }

  .pizza-polaroid-left {
    order: 2;
    justify-self: center;
  }

  .pizza-polaroid-right {
    display: none;
  }

  .pizza-polaroid figcaption {
    margin-top: 0.6rem;
    font-size: 0.9rem;
  }

  .pizza-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(5.2rem, 15vw, 7.3rem);
    line-height: 0.78;
  }

  .pizza-section-intro {
    padding-top: 2.8rem;
  }

  .pizza-section-intro h2 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .pizza-section-intro span {
    max-width: 30rem;
  }

  .pizza-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding-inline: 1rem;
  }

  .pizza-strip strong {
    font-size: clamp(0.82rem, 3vw, 0.98rem);
  }

  .pizza-strip small {
    max-width: 10.5rem;
    font-size: 0.76rem;
  }

  .pizza-info {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-top: 4.5rem;
    padding-bottom: 6rem;
  }

  .pizza-info article {
    min-height: auto;
    padding: 1.1rem;
  }

  .pizza-info h2 {
    margin-top: 1.4rem;
    font-size: clamp(1.75rem, 7vw, 2.55rem);
  }

  .pizza-booking {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .pizza-booking h2 {
    max-width: 100%;
    font-size: clamp(3.2rem, 9.6vw, 4.8rem);
    line-height: 0.88;
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 1rem;
    --content-width: calc(100% - (var(--page-pad) * 2));
  }

  .boot-shell {
    width: calc(100% - 1.5rem);
    max-height: calc(100svh - 1.5rem);
    overflow: hidden;
  }

  .boot-topbar,
  .boot-telemetry {
    display: grid;
  }

  .boot-console {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .boot-terminal h1 {
    font-size: clamp(2.8rem, 13vw, 4.9rem);
  }

  .boot-panel h1 {
    font-size: clamp(2.1rem, 8.6vw, 4rem);
  }

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

  .boot-modules div {
    border-right: 1px solid rgba(218, 218, 218, 0.14);
  }

  .boot-log {
    font-size: 0.7rem;
  }

  .site-header,
  .contact-layout,
  .footer,
  .site-menu-panel {
    width: calc(100% - (var(--page-pad) * 2));
  }

  .site-header {
    margin-top: 1rem;
  }

  .brand {
    width: 14rem;
  }

  .hello-button {
    display: none;
  }

  .contact-layout {
    padding: 1.5rem 0;
  }

  .catalog-hero,
  .catalog-section,
  .catalog-cta {
    width: calc(100% - (var(--page-pad) * 2));
  }

  .catalog-section {
    grid-template-columns: 1fr;
  }

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

  .product-detail {
    width: calc(100% - (var(--page-pad) * 2));
  }

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

  .product-detail-copy {
    order: -1;
  }

  .product-detail-image {
    margin-top: 0.5rem;
  }

  .product-gallery img {
    flex-basis: min(88%, 30rem);
    width: min(88%, 30rem);
  }

  .product-filters {
    grid-column: 1;
    justify-content: flex-start;
    gap: 0.45rem;
    margin-top: 0;
  }

  .product-filters button {
    min-height: 2.2rem;
    padding: 0.38rem 0.72rem;
    font-size: 0.88rem;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-copy {
    grid-template-rows: auto;
  }

  .product-actions {
    align-items: stretch;
  }

  .product-add {
    justify-content: center;
    min-height: 2.75rem;
  }

  .order-fab {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    min-height: 3rem;
  }

  .order-panel {
    right: 1rem;
    bottom: calc(4.65rem + env(safe-area-inset-bottom));
    width: calc(100vw - 2rem);
    max-height: min(34rem, calc(100svh - 6rem));
  }

  .order-item {
    align-items: flex-start;
  }

  .order-item-controls button {
    width: 2rem;
    height: 2rem;
  }

  .product-colors span::after {
    display: none;
  }

  .catalog-card {
    min-height: 12rem;
  }

  .catalog-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .print-hero,
  .print-editorial,
  .print-lab,
  .print-cta {
    width: calc(100% - (var(--page-pad) * 2));
  }

  .print-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(2.5rem, 7svh, 4rem) 0 clamp(2rem, 5svh, 3rem);
  }

  .print-three-scene {
    position: fixed;
    inset: 0;
    width: auto;
    min-width: 0;
    height: auto;
    opacity: 0.58;
  }

  .about-three-scene,
  .catalog-three-scene,
  .contact-three-scene,
  .product-three-scene {
    position: fixed;
    inset: 0;
    width: auto;
    height: auto;
    min-width: 0;
  }

  .about-three-scene {
    opacity: 0.52;
  }

  .catalog-three-scene {
    opacity: 0.62;
  }

  .contact-three-scene {
    opacity: 0.56;
  }

  .product-three-scene {
    opacity: 0.54;
  }

  .print-hero::before,
  .print-lab::before,
  .print-lab::after,
  .print-cta::before {
    opacity: 0.1;
  }

  .print-hero::after {
    display: none;
  }

  .print-hero-copy,
  .print-hero-visual {
    transform: none;
  }

  .print-editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 4vw, 2rem);
    min-height: auto;
    padding: 1rem 0 clamp(3rem, 7svh, 4.5rem);
  }

  .print-editorial-copy {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 52rem);
    margin: clamp(1.25rem, 4vw, 2rem) auto 0;
    padding-inline: 0;
    text-align: center;
    transform: none;
  }

  .print-editorial-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: min(100%, 32rem);
    aspect-ratio: 1 / 1.08;
    transform: none;
  }

  .print-editorial-copy p {
    justify-content: center;
  }

  .print-editorial-copy h2 {
    max-width: 18ch;
    margin-inline: auto;
  }

  .print-editorial-copy h2 span {
    white-space: normal;
  }

  .print-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 10vw, 5.8rem);
  }

  .print-hero-visual {
    justify-self: center;
    width: 100%;
    min-height: clamp(21rem, 58vw, 29rem);
  }

  .print-visual-main {
    left: 50%;
    right: auto;
    width: min(56vw, 23rem);
  }

  .print-visual-top {
    left: 0;
    width: min(34vw, 12rem);
  }

  .print-visual-bottom {
    right: 0;
    left: auto;
    width: min(38vw, 14rem);
  }

  .print-bed {
    right: 0;
    width: min(34vw, 11rem);
  }

  .print-lab {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.75rem;
  }

  .print-lab-controls,
  .print-lab-output {
    grid-column: 1;
    grid-row: auto;
  }

  .print-lab-controls::before {
    width: 12rem;
  }

  .print-lab-heading h2 {
    max-width: 18ch;
  }

  .print-lab-output {
    min-height: 24rem;
  }

  .print-strip,
  .print-flow,
  .print-material-grid {
    grid-template-columns: 1fr;
  }

  .print-strip {
    gap: 0;
  }

  .print-strip div {
    padding: 1rem 0;
  }

  .print-strip div::before {
    right: 0;
    bottom: 0.2rem;
  }

  .print-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .print-section-heading h2 {
    max-width: 36rem;
  }

  .print-flow article,
  .print-material-grid article {
    min-height: auto;
  }

  .print-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero {
    gap: clamp(1.5rem, 4svh, 3rem);
    padding: 2rem var(--page-pad) 3rem;
  }

  .home-three-scene {
    inset: 4rem 0 0;
  }

  .home-hero::before,
  .catalog-hero::after,
  .contact-content::before {
    opacity: 0.14;
  }

  .home-title {
    font-size: clamp(3.1rem, 11vw, 6rem);
  }

  .home-subtitle {
    font-size: clamp(1rem, 3.2vw, 1.55rem);
  }

  .home-paths {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-bottom: 2rem;
  }

  .home-path,
  .home-path-featured {
    min-height: auto;
  }

  .home-path h2 {
    max-width: 100%;
  }

  .home-visual-right {
    right: 1rem;
    top: 7rem;
    width: clamp(5.5rem, 18vw, 8rem);
  }

  .about-layout {
    min-height: auto;
    padding-top: clamp(8rem, 22svh, 12rem);
    padding-bottom: 3rem;
    overflow: visible;
  }

  .about-hero-marquee {
    top: 2rem;
  }

  .about-hero-track {
    font-size: clamp(4rem, 18vw, 8rem);
  }

  .about-copy {
    width: var(--content-width);
  }

  .about-copy h1,
  .about-lead {
    max-width: 100%;
  }

  .about-portrait {
    width: min(82vw, 24rem);
    margin-top: 2rem;
  }

  .about-stat {
    width: clamp(8.5rem, 34vw, 12rem);
    padding: 0.85rem;
    border-radius: 14px;
  }

  .about-stat-left {
    left: 0;
    top: auto;
    bottom: 10%;
  }

  .about-stat-right {
    right: 0;
    top: auto;
    bottom: -5%;
  }

  .about-status {
    right: 0;
    top: 3%;
    width: clamp(12rem, 52vw, 16rem);
  }

  .keyword-stack {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    width: var(--content-width);
    margin: 1.2rem auto 0;
  }

  .keyword-stack-right {
    justify-items: start;
    margin-top: 0.2rem;
  }

  .keyword-stack span:hover {
    transform: translateY(-0.12rem);
  }

  .about-details {
    width: var(--content-width);
    margin-top: 3rem;
  }

  .about-details-heading,
  .about-detail-grid,
  .about-process {
    grid-template-columns: 1fr;
  }

  .about-details-heading h2 {
    max-width: 11ch;
    font-size: clamp(3.3rem, 16vw, 5.5rem);
  }

  .about-detail-grid {
    gap: 1rem;
  }

  .about-detail-item {
    min-height: auto;
    padding: 1.2rem;
  }

  .about-detail-item h3 {
    margin-top: 2.5rem;
  }

  .menu-link {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-menu {
    padding-top: var(--menu-panel-top, 1rem);
    padding-right: var(--menu-panel-right, 1rem);
  }

  .site-menu-panel {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 2rem);
    gap: 3rem;
    border-radius: var(--menu-button-radius, var(--menu-radius));
    transform: translate(0, 0) scale(0.045);
  }

  .site-menu-side {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
  }

  .giant-mail {
    gap: 0.45rem;
    white-space: normal;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .theme-button,
  .menu-button {
    width: 3rem;
    height: 3rem;
    min-height: 3rem;
  }

  .language-switch {
    height: 2.7rem;
    padding: 0.16rem;
  }

  .language-switch a {
    min-width: 1.9rem;
    height: 2.3rem;
    padding-inline: 0.35rem;
    font-size: 0.62rem;
  }

  .brand {
    width: clamp(9.5rem, 43vw, 10.5rem);
    height: clamp(2.9rem, 9vw, 3.35rem);
    max-height: clamp(2.9rem, 9vw, 3.35rem);
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .giant-mail {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .catalog-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .product-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }

  .product-filters button {
    width: 100%;
    min-height: 2.15rem;
    padding: 0.36rem 0.58rem;
    font-size: clamp(0.76rem, 3.8vw, 0.88rem);
    text-align: center;
  }

  .catalog-steps li {
    width: 100%;
  }

  .product-card::before,
  .product-card::after,
  .product-visual::after {
    display: none;
  }

  .product-visual {
    aspect-ratio: 1 / 0.82;
  }

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

  .product-price {
    font-size: 1.05rem;
  }

  .product-add {
    width: 100%;
  }

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

  .order-fab {
    left: 1rem;
    justify-content: center;
    width: calc(100vw - 2rem);
  }

  .order-panel-head,
  .order-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .pizza-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.15rem;
    padding-top: 1.3rem;
    padding-bottom: 1.4rem;
    padding-inline: 0.6rem;
  }

  .pizza-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.4rem, 16vw, 7.45rem);
    line-height: 0.78;
  }

  .pizza-header {
    align-items: center;
    gap: 0.65rem;
    width: min(100% - 1.1rem, 82rem);
    padding-top: 0.8rem;
  }

  .pizza-brand {
    width: clamp(5.2rem, 20vw, 6.8rem);
    transform: translateY(0.1rem) rotate(-6deg);
  }

  .pizza-nav a {
    min-height: 2.25rem;
    padding: 0.52rem 0.7rem;
    font-size: 0.72rem;
  }

  .pizza-polaroid {
    width: min(66vw, 15.5rem);
    padding: 0.55rem 0.55rem 0.8rem;
  }

  .pizza-polaroid-right {
    display: none;
  }

  .pizza-polaroid figcaption {
    margin-top: 0.55rem;
    font-size: 0.86rem;
  }

  .pizza-hero-copy > p:not(.pizza-kicker):not(.pizza-favorite) {
    max-width: 24rem;
    font-size: clamp(0.98rem, 4.2vw, 1.12rem);
  }

  .pizza-favorite {
    max-width: 19rem;
    font-size: clamp(1rem, 5vw, 1.32rem);
  }

  .pizza-section-intro h2 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .pizza-section-intro span {
    font-size: 0.98rem;
  }

  .pizza-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 18.5rem);
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .pizza-actions a {
    min-height: 2.8rem;
    padding-inline: 0.9rem;
  }

  .pizza-strip {
    width: 100%;
    justify-content: flex-start;
    overflow: hidden;
    padding-inline: 1rem;
  }

  .pizza-bg-slice-main {
    left: -8rem;
    top: 9rem;
    width: 17rem;
  }

  .pizza-bg-slice-small {
    right: -5.5rem;
    top: 20rem;
    width: 11rem;
  }

  .pizza-bg-slice-ghost {
    display: none;
  }

  .pizza-info {
    grid-template-columns: 1fr;
  }

  .pizza-info article {
    min-height: auto;
  }

  .pizza-booking {
    grid-template-columns: 1fr;
  }

  .pizza-form {
    grid-template-columns: 1fr;
  }

  .catalog-cta a {
    white-space: normal;
  }

  .print-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .print-hero-copy > p:last-of-type {
    font-size: clamp(0.92rem, 4vw, 1.08rem);
  }

  .print-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .print-primary-link,
  .print-secondary-link,
  .print-editorial-copy a,
  .print-cta a {
    width: 100%;
    min-height: 2.85rem;
    white-space: normal;
  }

  .print-editorial {
    gap: 0.7rem;
  }

  .print-editorial-copy h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .print-control-group button {
    flex: 1 1 auto;
  }

  .print-lab-output {
    min-height: 20rem;
    border-radius: 1.2rem;
  }

  .print-output-top,
  .print-output-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .print-output-top p {
    text-align: left;
  }

  .print-output-copy h3 {
    font-size: clamp(1.45rem, 8vw, 2.35rem);
  }

  .print-hero-visual {
    min-height: 19rem;
  }

  .print-visual-main {
    left: 52%;
    right: auto;
    width: 68%;
  }

  .print-visual-top {
    left: 0;
    width: 38%;
  }

  .print-visual-bottom {
    right: 0;
    left: auto;
    width: 42%;
  }

  .print-bed {
    right: 0;
    width: 44%;
  }

  .print-section-heading h2,
  .print-cta h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .home-title {
    gap: 0.45rem;
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .home-title-row {
    gap: 0.55rem;
  }

  .home-line {
    gap: 0.34rem;
  }

  .home-pill {
    width: min(4.9em, 74vw);
    min-width: min(4.9em, 74vw);
    padding-inline: 0.42em;
  }

  .home-subtitle {
    font-size: clamp(0.92rem, 4.5vw, 1.25rem);
  }

  .about-layout {
    padding-top: 7.5rem;
  }

  .about-hero-track {
    font-size: clamp(3.2rem, 20vw, 5.5rem);
  }

  .about-copy h1,
  .about-lead {
    font-size: clamp(0.95rem, 4.5vw, 1.25rem);
  }

  .about-portrait {
    width: min(88vw, 20rem);
    margin-top: 1.75rem;
  }

  .about-stat,
  .about-status {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 18rem;
    margin-inline: auto;
  }

  .about-status {
    margin-top: 1rem;
  }

  .about-stat-left,
  .about-stat-right {
    margin-top: 0.6rem;
  }

  .about-portrait {
    display: grid;
  }

  .about-portrait img,
  .about-portrait::before {
    grid-area: 1 / 1;
  }

  .about-status,
  .about-stat {
    grid-column: 1;
  }

  .keyword-stack {
    justify-content: flex-start;
  }

  .keyword-stack span {
    max-width: 100%;
    white-space: normal;
  }

}

@media (max-width: 1180px) {
  .home-paths,
  .about-detail-grid,
  .about-process,
  .print-flow,
  .print-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-path h2,
  .about-detail-item h3,
  .print-flow h3,
  .print-material-grid h3,
  .print-section-heading h2 {
    max-width: 100%;
  }

  .home-title-row {
    flex-wrap: wrap;
    white-space: normal;
  }

  .print-editorial,
  .print-lab,
  .catalog-section,
  .print-section,
  .pizza-hero,
  .pizza-booking {
    grid-template-columns: minmax(0, 1fr);
  }

  .print-editorial {
    width: var(--content-width);
    gap: clamp(1.25rem, 4vw, 2.75rem);
  }

  .print-editorial-left,
  .print-editorial-copy {
    grid-column: 1;
  }

  .print-editorial-left {
    justify-self: center;
    width: min(100%, 32rem);
  }

  .print-editorial-copy {
    justify-self: center;
    width: min(100%, 46rem);
    text-align: center;
  }

  .print-editorial-copy p {
    justify-content: center;
  }

  .print-editorial-copy h2 span {
    white-space: normal;
  }

  .print-lab {
    row-gap: clamp(2.25rem, 5svh, 3.75rem);
  }

  .print-lab-controls,
  .print-lab-output {
    grid-column: 1;
    grid-row: auto;
  }

  .print-lab-controls {
    max-width: 48rem;
  }

  .print-lab-output {
    width: 100%;
    max-width: 48rem;
    min-height: clamp(24rem, 42vw, 31rem);
    justify-self: start;
  }

  .print-output-top,
  .print-output-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .print-output-top p {
    text-align: left;
  }

  .print-output-copy h3 {
    max-width: 18ch;
    font-size: clamp(2rem, 5.5vw, 3.1rem);
  }

  .about-portrait {
    width: min(62vw, 30rem);
  }

  .about-stat-left {
    left: max(-3rem, -6vw);
  }

  .about-stat-right,
  .about-status {
    right: max(-3rem, -6vw);
  }

  .about-stat span,
  .about-status strong,
  .about-copy h1 span,
  .keyword-stack span {
    white-space: normal;
  }

  .keyword-stack-left,
  .keyword-stack-right {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    width: var(--content-width);
    margin: 1rem auto 0;
    justify-items: start;
  }

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

  .pizza-hero {
    min-height: auto;
    padding-top: clamp(2rem, 5svh, 3rem);
  }

  .pizza-hero-copy {
    order: 1;
  }

  .pizza-polaroid-left {
    order: 2;
    justify-self: center;
    width: min(46vw, 17rem);
  }

  .pizza-polaroid-right {
    display: none;
  }

  .pizza-info {
    grid-template-columns: 1fr;
  }

  .pizza-info article {
    min-height: auto;
  }

  .pizza-booking h2,
  .pizza-booking-copy > p:not(.pizza-kicker) {
    max-width: 42rem;
  }
}

@media (max-width: 760px) {
  .home-paths,
  .about-detail-grid,
  .about-process,
  .print-flow,
  .print-material-grid,
  .catalog-grid,
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .print-lab-output {
    max-width: none;
  }

  .print-cta,
  .catalog-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
