@font-face {
  font-family: "Neva Sans";
  src: url("./assets/fonts/inter-cyrillic-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neva Serif";
  src: url("./assets/fonts/lora-cyrillic-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neva Serif";
  src: url("./assets/fonts/lora-cyrillic-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-sans: "Neva Sans", Arial, sans-serif;
  --font-serif: "Neva Serif", Georgia, serif;
  --cream: #f5efe0;
  --paper: #fbf7ee;
  --ink: #1a2e20;
  --forest: #10251a;
  --moss: #10251a;
  --green: #5a7a4a;
  --green-strong: #3a5530;
  --green-on-dark: #a9c6a0;
  --sage: #a9b89a;
  --brass: #c9a96e;
  --orange: #f38a38;
  --orange-hover: #ff9d4f;
  --orange-deep: #b8471f;
  --on-dark: #f5efe0;
  --on-accent: #10251a;
  --hero-charcoal: #111412;
  --hero-cream: #fff7e8;
  --hero-line: rgba(255, 247, 232, 0.22);
  --hero-panel-ink: #17231b;
  --hero-sand: #f1dfbf;
  --hero-amber: #d7aa62;
  --hero-copper: #b96f35;
  --line: rgba(26, 46, 32, 0.16);
  --dark-line: rgba(245, 239, 224, 0.18);
  --white-line: rgba(245, 239, 224, 0.26);
  --radius: 8px;
  --page-pad: clamp(16px, 2.2vw, 34px);
  --nav-height: 58px;
  --expo-inout: cubic-bezier(0.9, 0, 0.1, 1);
  --expo-out: cubic-bezier(0.16, 1.08, 0.38, 0.98);
  --quart-out: cubic-bezier(0.26, 1.04, 0.54, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--cream);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  overflow: hidden;
  place-items: center;
  clip-path: inset(0 round 0);
  background:
    radial-gradient(circle at 70% 28%, rgba(243, 138, 56, 0.14), transparent 34%),
    linear-gradient(145deg, #0f1713 0%, #141512 58%, #221810 100%);
  color: var(--hero-cream);
  will-change: clip-path;
  transition: clip-path 1.45s var(--expo-inout);
}

.site-loader.is-exiting {
  clip-path: inset(27% 14% 26% 66% round 10px);
}

.loader-waves,
.hero-portal__waves {
  position: absolute;
  inset: -35%;
  rotate: -13deg;
  background:
    repeating-radial-gradient(
      ellipse at 50% 82%,
      transparent 0 44px,
      rgba(201, 169, 110, 0.17) 46px 82px,
      transparent 84px 126px
    );
  animation: loader-grain-shift 1s steps(10) infinite;
}

.site-loader::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(243, 138, 56, 0.12), transparent 35%),
    linear-gradient(135deg, rgba(255, 247, 232, 0.04), transparent 50%, rgba(201, 169, 110, 0.12));
  content: "";
}

.loader-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 680;
  letter-spacing: -0.05em;
}

.loader-word {
  display: block;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  animation: loader-word-in 720ms var(--expo-out) 380ms forwards;
}

.loader-mark {
  position: relative;
  width: 44px;
  height: 28px;
  opacity: 0;
  transform: rotate(-28deg) scale(0.55);
  animation: loader-mark-in 760ms var(--expo-out) 180ms forwards;
}

.loader-mark::before {
  position: absolute;
  bottom: 0;
  left: 11px;
  width: 22px;
  height: 11px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  content: "";
}

.loader-mark i {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 4px;
  height: 14px;
  border-radius: 9px;
  background: currentColor;
  transform-origin: 50% 17px;
}

.loader-mark i:nth-child(1) { rotate: -64deg; }
.loader-mark i:nth-child(2) { rotate: -32deg; }
.loader-mark i:nth-child(3) { rotate: 0deg; }
.loader-mark i:nth-child(4) { rotate: 32deg; }
.loader-mark i:nth-child(5) { rotate: 64deg; }

@keyframes loader-word-in {
  to { clip-path: inset(0); }
}

@keyframes loader-mark-in {
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes loader-grain-shift {
  0% { translate: -2% 1%; }
  20% { translate: 1% -2%; }
  40% { translate: 2% 2%; }
  60% { translate: -1% -1%; }
  80% { translate: 2% 0; }
  100% { translate: -2% 1%; }
}

button,
input {
  font: inherit;
}

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

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

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

.motion-line,
.motion-word {
  display: inline-block;
  overflow: clip;
  vertical-align: bottom;
}

.motion-line {
  display: block;
  margin-block: -0.08em;
  padding-block: 0.08em;
}

.motion-line__inner,
.motion-word__inner {
  display: inline-block;
  will-change: transform, opacity;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 900ms var(--quart-out) calc(var(--reveal-order, 0) * 70ms),
    transform 1.1s var(--expo-out) calc(var(--reveal-order, 0) * 70ms);
}

.motion-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 999;
  translate: 0 -160%;
  border-radius: 999px;
  background: #fff;
  padding: 10px 16px;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0 0;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.64'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  right: 9px;
  top: 13vh;
  bottom: 13vh;
  z-index: 450;
  width: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  mix-blend-mode: difference;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: var(--scroll-progress, 0%);
  border-radius: inherit;
  background: #fff;
}

.floating-nav {
  position: fixed;
  left: 50%;
  top: 22px;
  z-index: 400;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  width: min(700px, calc(100vw - 32px));
  height: var(--nav-height);
  align-items: center;
  gap: clamp(12px, 1.45vw, 20px);
  padding: 6px 6px 6px 16px;
  translate: -50% 0;
  border: 1px solid rgba(26, 46, 32, 0.12);
  border-radius: 12px;
  background: rgba(251, 247, 238, 0.94);
  box-shadow: 0 12px 40px rgba(16, 37, 26, 0.12);
  color: var(--ink);
  backdrop-filter: blur(18px) saturate(135%);
  transition:
    width 450ms cubic-bezier(0.16, 1, 0.3, 1),
    top 450ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms ease,
    translate 1.2s var(--expo-out);
}

body:not(.is-motion-ready) .floating-nav {
  translate: -50% -170%;
}

.floating-nav.is-compact {
  top: 12px;
  width: min(680px, calc(100vw - 24px));
  box-shadow: 0 16px 54px rgba(16, 37, 26, 0.2);
}

.brand {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.floating-nav nav {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 26px);
  font-size: 12px;
}

.floating-nav nav a {
  position: relative;
  white-space: nowrap;
}

.floating-nav nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  scale: 0 1;
  background: currentColor;
  content: "";
  transition: scale 220ms ease;
}

.floating-nav nav a:hover::after,
.floating-nav nav a:focus-visible::after {
  scale: 1 1;
}

.nav-cta,
.hero-action,
.pill-button,
.dark-button,
.final-button,
.dialog-submit {
  border: 0;
  cursor: pointer;
}

.nav-cta {
  height: 46px;
  min-width: max-content;
  border-radius: 8px;
  background: var(--orange);
  padding: 0 19px;
  color: var(--on-accent);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  transition: background 200ms ease, translate 200ms ease;
}

.nav-cta:hover {
  translate: 0 -1px;
  background: var(--orange-hover);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  color: var(--hero-cream);
}

.hero-photo,
.network-photo {
  position: absolute;
  inset: -5%;
  z-index: -4;
  width: 110%;
  height: 110%;
  max-width: none;
  object-fit: cover;
  transform: translate3d(0, var(--media-y, 0%), 0) scale(var(--media-scale, 1.035));
  transform-origin: center;
  will-change: transform;
}

body:not(.is-motion-ready) .hero-photo {
  scale: 1.08;
}

.hero-photo {
  filter: saturate(0.8) contrast(1.05) brightness(0.94) sepia(0.06);
  transition: scale 2s var(--expo-inout);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(10, 12, 11, 0.86) 0%, rgba(10, 12, 11, 0.66) 38%, rgba(10, 12, 11, 0.26) 67%, rgba(10, 12, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 11, 10, 0.52) 0%, transparent 52%);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--white-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-line) 1px, transparent 1px);
  background-position: center;
  background-size: 25vw 25vh;
  opacity: 0.62;
  mask-image: linear-gradient(to bottom, transparent 6%, #000 30%, #000 88%, transparent);
  transition: opacity 1.2s ease;
}

.hero-portal {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  clip-path: inset(27% 14% 26% 66% round 10px);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(145deg, var(--hero-sand) 0%, var(--hero-amber) 52%, var(--hero-copper) 100%);
  color: var(--hero-panel-ink);
  will-change: clip-path, opacity;
}

.hero-portal::after {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -17deg,
      transparent 0 54px,
      rgba(255, 255, 255, 0.08) 55px 82px,
      transparent 83px 137px
    ),
    linear-gradient(140deg, transparent 42%, rgba(23, 35, 27, 0.14));
  content: "";
}

.fill-visual {
  position: absolute;
  top: 28.5%;
  left: 67.25%;
  z-index: 2;
  display: grid;
  width: 17.5%;
  height: 43.5%;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: clamp(12px, 1.15vw, 20px);
}

.fill-visual__topline,
.fill-visual__caption {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(23, 35, 27, 0.34);
  padding-bottom: 9px;
  font-family: var(--font-sans);
  font-size: clamp(7px, 0.58vw, 10px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fill-visual__topline strong,
.fill-visual__caption strong {
  flex: 0 0 auto;
  font-size: 1.08em;
}

.fill-visual__caption {
  border-top: 1px solid rgba(23, 35, 27, 0.34);
  border-bottom: 0;
  padding-top: 9px;
  padding-bottom: 0;
}

.fill-visual__scene {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.fill-faucet {
  position: absolute;
  top: 9%;
  right: 8%;
  width: 46%;
  height: 36%;
}

.fill-faucet i {
  position: absolute;
  display: block;
  background: var(--hero-panel-ink);
}

.fill-faucet__spout {
  top: 22%;
  right: 4%;
  width: 78%;
  height: 5px;
  border-radius: 6px 0 0 6px;
}

.fill-faucet__stem {
  top: 22%;
  right: 4%;
  width: 5px;
  height: 58%;
  border-radius: 0 0 6px 6px;
}

.fill-faucet__nozzle {
  top: 22%;
  left: 18%;
  width: 5px;
  height: 20%;
  border-radius: 0 0 6px 6px;
}

.fill-faucet__handle {
  top: 5%;
  right: -3%;
  width: 32%;
  height: 5px;
  border-radius: 6px;
  transform: rotate(-16deg);
  transform-origin: right center;
}

.fill-stream {
  position: absolute;
  top: 22.5%;
  left: 54.3%;
  width: 4px;
  height: 43%;
  border-radius: 999px;
  opacity: 0;
  transform: scaleY(0.05);
  transform-origin: top;
  background: linear-gradient(90deg, #e6fbff, #8fd8e3 55%, #fff);
  box-shadow: 0 0 9px rgba(216, 250, 255, 0.75);
  animation: stream-cycle 8.4s ease-in-out infinite;
  animation-play-state: paused;
}

.fill-tub {
  position: absolute;
  right: 4%;
  bottom: 7%;
  left: 4%;
  height: 49%;
}

.fill-tub__body {
  position: absolute;
  right: 5%;
  bottom: 9%;
  left: 5%;
  height: 68%;
  overflow: hidden;
  border: 3px solid var(--hero-panel-ink);
  border-top-width: 2px;
  border-radius: 10px 10px 42% 42% / 8px 8px 28% 28%;
  background:
    repeating-linear-gradient(90deg, transparent 0 14%, rgba(23, 35, 27, 0.18) 14.5% 15.5%),
    rgba(255, 247, 232, 0.24);
}

.fill-tub__rim {
  position: absolute;
  top: 13%;
  right: 0;
  left: 0;
  height: 22%;
  border: 3px solid var(--hero-panel-ink);
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.2);
  box-shadow: inset 0 0 0 5px rgba(255, 247, 232, 0.24);
}

.fill-tub__base {
  position: absolute;
  right: 24%;
  bottom: 0;
  left: 24%;
  height: 10%;
  border: 3px solid var(--hero-panel-ink);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.fill-tub__water {
  position: absolute;
  right: 4%;
  bottom: 3%;
  left: 4%;
  height: 88%;
  overflow: visible;
  opacity: 0;
  border-radius: 7px 7px 42% 42% / 5px 5px 28% 28%;
  background: linear-gradient(180deg, #d8f7f5 0%, #7ed2dc 42%, #3b9fba 100%);
  transform: scaleY(0.03);
  transform-origin: bottom;
  animation: water-fill-cycle 8.4s linear infinite;
  animation-play-state: paused;
}

.fill-tub__water::before {
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
  height: 14px;
  border: 2px solid rgba(49, 143, 164, 0.78);
  border-radius: 50%;
  background: #d8f7f5;
  content: "";
  animation: water-ripple 1.15s ease-in-out infinite;
  animation-play-state: paused;
}

.fill-tub__water i {
  position: absolute;
  width: 5px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  opacity: 0;
  animation: water-bubble 2.2s ease-in infinite;
  animation-play-state: paused;
}

.fill-tub__water i:nth-child(1) { left: 23%; bottom: 15%; }
.fill-tub__water i:nth-child(2) { left: 52%; bottom: 8%; animation-delay: 700ms; }
.fill-tub__water i:nth-child(3) { left: 72%; bottom: 21%; animation-delay: 1.25s; }

body.is-intro-done .fill-stream,
body.is-intro-done .fill-tub__water,
body.is-intro-done .fill-tub__water::before,
body.is-intro-done .fill-tub__water i {
  animation-play-state: running;
}

@keyframes stream-cycle {
  0%, 5%, 76%, 100% { opacity: 0; transform: scaleY(0.05); }
  10%, 66% { opacity: 0.95; transform: scaleY(1); }
  72% { opacity: 0; transform: scaleY(1); }
}

@keyframes water-fill-cycle {
  0% { opacity: 0; transform: scaleY(0.03); }
  2%, 7% { opacity: 1; transform: scaleY(0.03); }
  68%, 94% { opacity: 1; transform: scaleY(1); }
  99%, 100% { opacity: 0; transform: scaleY(1); }
}

@keyframes water-ripple {
  50% { transform: scaleX(0.86); opacity: 0.64; }
}

@keyframes water-bubble {
  0%, 28% { opacity: 0; transform: translateY(0) scale(0.7); }
  45% { opacity: 0.8; }
  76%, 100% { opacity: 0; transform: translateY(-52px) scale(1.3); }
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 1px;
  background: var(--white-line);
  content: "";
}

.hero-kicker {
  position: absolute;
  top: 25vh;
  left: var(--page-pad);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker,
.hero h1,
.hero-copy,
.hero-actions,
.hero-data {
  opacity: var(--hero-opacity, 1);
  transform: translate3d(0, var(--hero-shift, 0), 0);
  will-change: transform, opacity;
}

.hero h1 {
  position: absolute;
  top: 33vh;
  left: var(--page-pad);
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(58px, 8.3vw, 132px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.85;
}

.hero h1 > .motion-line {
  display: block;
}

.hero h1 > .motion-line:last-child {
  margin-left: 0.95em;
  font-style: italic;
}

.hero .motion-line__inner {
  opacity: 0;
  transform: translate3d(-110%, 0, 0);
  transition:
    transform 1s var(--expo-out) calc(80ms + var(--line-index, 0) * 90ms),
    opacity 650ms ease calc(80ms + var(--line-index, 0) * 90ms);
}

body.is-motion-ready .hero .motion-line__inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body:not(.is-motion-ready) .hero-kicker,
body:not(.is-motion-ready) .hero-copy,
body:not(.is-motion-ready) .hero-actions,
body:not(.is-motion-ready) .hero-data,
body:not(.is-motion-ready) .scroll-cue {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
}

body.is-motion-ready .hero-kicker,
body.is-motion-ready .hero-copy,
body.is-motion-ready .hero-actions,
body.is-motion-ready .hero-data,
body.is-motion-ready .scroll-cue {
  transition:
    transform 900ms var(--expo-out),
    opacity 700ms ease;
}

body.is-motion-ready .hero-kicker { transition-delay: 80ms; }
body.is-motion-ready .hero-copy { transition-delay: 220ms; }
body.is-motion-ready .hero-actions { transition-delay: 320ms; }
body.is-motion-ready .hero-data { transition-delay: 380ms; }
body.is-motion-ready .scroll-cue { transition-delay: 460ms; }

.hero-copy {
  position: absolute;
  bottom: 21vh;
  left: var(--page-pad);
  width: min(500px, 57vw);
  margin: 0;
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 540;
  line-height: 1.28;
}

.hero-actions {
  position: absolute;
  bottom: 9.5vh;
  left: var(--page-pad);
  display: grid;
  width: min(430px, calc(100% - var(--page-pad) * 2));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-action {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  padding: 6px 7px 6px 16px;
  color: var(--ink);
  font-size: clamp(11px, 0.92vw, 14px);
  font-weight: 720;
  line-height: 1.08;
  backdrop-filter: blur(16px);
  transition: background 220ms ease, transform 220ms ease;
}

.hero-action--light {
  background: rgba(255, 250, 239, 0.94);
}

.hero-action--accent {
  background: var(--orange);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-action span:last-child {
  flex: 0 0 auto;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: rgba(22, 22, 18, 0.1);
  font-size: 18px;
  transition: rotate 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-action:hover span:last-child {
  rotate: 45deg;
}

.hero-data {
  position: absolute;
  right: var(--page-pad);
  bottom: 9.5vh;
  display: grid;
  width: min(510px, 42vw);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 247, 232, 0.2);
  border-top-color: rgba(255, 247, 232, 0.34);
  border-radius: 10px;
  background: rgba(12, 15, 13, 0.68);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(120%);
  pointer-events: none;
}

.hero-data div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  padding: 13px 15px 14px;
}

.hero-data div + div {
  border-left: 1px solid rgba(255, 247, 232, 0.18);
}

.hero-data dt {
  overflow: hidden;
  color: var(--hero-amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-data dd {
  margin: 0;
  overflow: hidden;
  color: var(--hero-cream);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 3vh;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 38px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  translate: -100% 0;
  background: #fff;
  content: "";
  animation: cue 2s ease-in-out infinite;
}

@keyframes cue {
  50%,
  100% { translate: 100% 0; }
}

.section-shell {
  padding-inline: var(--page-pad);
}

.section-label,
.benefit-index,
.act-number,
.final-eyebrow,
.dialog-kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.promise {
  position: relative;
  overflow: clip;
  background: var(--paper);
  clip-path: inset(0);
}

.story-intro h2,
.three-d h2,
.visualizer h2,
.models h2 {
  margin: 28px 0 64px;
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.promise-flow {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 20svh 0;
  list-style: none;
}

.promise-flow::before,
.promise-flow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 1px;
  background: rgba(201, 169, 110, 0.55);
  content: "";
  pointer-events: none;
}

.promise-flow::before {
  left: 25%;
}

.promise-flow::after {
  right: 25%;
}

.promise-row {
  position: relative;
  display: grid;
  height: 58svh;
  min-height: 430px;
  grid-template-columns: 25% 50% 25%;
  border-bottom: 1px solid rgba(201, 169, 110, 0.55);
}

.promise-row:first-child {
  border-top: 1px solid rgba(201, 169, 110, 0.55);
}

.promise-copy-clip {
  position: relative;
  z-index: 3;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  overflow: clip;
  clip-path: inset(0);
  pointer-events: none;
}

.promise-copy {
  position: fixed;
  inset: 0;
  display: flex;
  height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 25vw;
  opacity: 0;
  text-align: center;
  transform: translate3d(0, var(--promise-copy-y, 0), 0);
  will-change: transform, opacity;
}

.promise-eyebrow {
  overflow: hidden;
  color: var(--green-strong);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.promise-eyebrow-inner {
  display: block;
  transform: translate3d(0, 110%, 0);
  will-change: transform;
}

.promise-copy h2,
.promise-copy h3 {
  width: min(590px, 46vw);
  margin: 27px 0 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.promise-line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0 0.12em;
  margin: -0.08em 0 -0.12em;
}

.promise-line > span {
  display: block;
  opacity: 0;
  transform: translate3d(0, 68%, 0);
  will-change: transform, opacity;
}

.promise-media {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  grid-row: 1;
  margin: 0;
  background: #d9cfbb;
}

.promise-media-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.promise-row--right .promise-media {
  grid-column: 3;
}

.promise-row--left .promise-media {
  grid-column: 1;
}

.promise-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--promise-media-y, 0), 0)
    scale(var(--promise-media-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.promise-media--winter img {
  object-position: 54% center;
}

.promise-media--workshop img {
  object-position: center 48%;
}

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

.act-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 12px #000;
  text-transform: uppercase;
}

.manifest {
  position: relative;
  display: block;
  min-height: 168svh;
  padding-block: 0;
  text-align: center;
}

.manifest-stage {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-content: center;
  padding-block: 110px;
  opacity: var(--manifest-opacity, 1);
  transform: scale(var(--manifest-scale, 1));
  transform-origin: center;
  will-change: transform, opacity;
}

.manifest .motion-word__inner {
  opacity: 0;
  transform: translate3d(0, 115%, 0);
}

.manifest h2 {
  max-width: 1120px;
  margin: 30px auto 36px;
  font-family: var(--font-serif);
  font-size: clamp(46px, 6.3vw, 98px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.manifest p {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
}

.pill-button {
  justify-self: center;
  margin-top: 42px;
  border-radius: 999px;
  background: var(--ink);
  padding: 17px 28px;
  color: #fff;
  font-weight: 650;
  transition: translate 200ms ease, box-shadow 200ms ease;
}

.pill-button:hover {
  translate: 0 -2px;
  box-shadow: 0 16px 28px rgba(10, 10, 8, 0.18);
}

.story {
  position: relative;
  padding-bottom: 0;
}

.story-intro {
  padding-top: 18vh;
  padding-bottom: 10vh;
}

.act-stage {
  position: sticky;
  top: 0;
  height: 220svh;
  padding: 6px var(--page-pad);
  opacity: var(--card-opacity, 1);
  transform: scale(var(--card-scale, 1));
  transform-origin: top center;
  will-change: transform, opacity;
}

.act-stage--one { z-index: 1; }
.act-stage--two { z-index: 2; }
.act-stage--three { z-index: 3; }

.act-card {
  position: relative;
  display: grid;
  width: 100%;
  height: calc(100svh - 12px);
  min-height: 690px;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e9e1d2;
  box-shadow: 0 -10px 45px rgba(22, 22, 18, 0.07);
}

.act-card--two {
  background: #dad4c6;
}

.act-card--three {
  background: #cad1ca;
}

.act-stage--three .act-card {
  position: sticky;
  top: 6px;
}

.act-copy > *,
.act-photo,
.css-tub {
  will-change: transform, opacity, clip-path;
}

.act-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: clamp(30px, 5vw, 76px);
}

.act-copy h3 {
  margin: 36px 0 54px;
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.act-copy strong {
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.act-copy p {
  max-width: 440px;
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
}

.dark-button {
  align-self: flex-start;
  margin-top: 38px;
  border-radius: 6px;
  background: var(--ink);
  padding: 15px 21px;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  transition: translate 200ms ease, background 200ms ease;
}

.dark-button:hover {
  translate: 0 -2px;
  background: #322f2b;
}

.act-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #b6afa3;
}

.act-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.act-photo--landscape img {
  object-position: 55% center;
}

.css-tub {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  perspective: 900px;
  background:
    radial-gradient(circle at 50% 44%, #f7cf9b 0 3%, transparent 27%),
    linear-gradient(145deg, #d7d0c2, #eee7db);
}

.css-tub::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 20, 16, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 16, 0.09) 1px, transparent 1px);
  background-size: 18% 18%;
  content: "";
  mask-image: radial-gradient(circle, #000 10%, transparent 72%);
}

.css-tub__body {
  position: relative;
  z-index: 2;
  width: min(56vw, 670px);
  aspect-ratio: 1.55;
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, #5a3522 0 13px, #8d6140 13px 15px),
    #5b3c28;
  box-shadow:
    0 86px 55px rgba(31, 20, 12, 0.23),
    inset 0 -70px 80px rgba(18, 10, 5, 0.28);
  transform: rotateX(65deg) rotateZ(-8deg);
  transform-style: preserve-3d;
  transition: none;
}

.css-tub:hover .css-tub__body {
  transform: rotateX(60deg) rotateZ(6deg);
}

.css-tub__water {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 35%, rgba(255, 255, 255, 0.9), transparent 18%),
    radial-gradient(circle at 54% 62%, #f7a74c, #355f60 70%);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.7);
  translate: 0 0 16px;
}

.css-tub__rim {
  position: absolute;
  inset: 1%;
  border: 18px solid #e9e5dc;
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.38), 0 7px 12px rgba(0, 0, 0, 0.2);
  translate: 0 0 28px;
}

.css-tub__stove {
  position: absolute;
  z-index: 4;
  right: 11%;
  bottom: 22%;
  width: 86px;
  height: 126px;
  border-radius: 10px 10px 15px 15px;
  background: linear-gradient(100deg, #4b5150, #161b1a 58%, #66706d);
  box-shadow: 0 36px 38px rgba(0, 0, 0, 0.27);
}

.css-tub__stove::before {
  position: absolute;
  bottom: 100%;
  left: 35px;
  width: 22px;
  height: 190px;
  border-radius: 12px 12px 2px 2px;
  background: linear-gradient(90deg, #303534, #87908c, #222625);
  content: "";
}

.css-tub__stove::after {
  position: absolute;
  right: 20px;
  bottom: 21px;
  left: 20px;
  height: 42px;
  border-radius: 5px;
  background: radial-gradient(circle at 50% 100%, #ffd275, #d54f1c 64%, #120706 70%);
  content: "";
}

.css-tub__halo {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242, 138, 56, 0.37);
  filter: blur(70px);
}

.css-tub__steam {
  position: absolute;
  z-index: 5;
  width: 32px;
  height: 150px;
  border-left: 3px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0;
  animation: steam 4.2s ease-in infinite;
}

.css-tub__steam--one { left: 43%; bottom: 47%; }
.css-tub__steam--two { left: 55%; bottom: 43%; animation-delay: 1.7s; }

@keyframes steam {
  0% { opacity: 0; translate: 0 30px; scale: 0.8; }
  25% { opacity: 0.7; }
  100% { opacity: 0; translate: 22px -90px; scale: 1.3; }
}

.three-d {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
  background: var(--forest);
  color: var(--on-dark);
}

.three-d-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 8vw;
}

.three-d-heading p {
  max-width: 500px;
  margin: 0 0 76px;
  color: rgba(245, 239, 224, 0.72);
  line-height: 1.6;
}

.viewer-shell {
  position: relative;
  height: min(78svh, 900px);
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: var(--ink);
  transform: scale(var(--viewer-scale, 0.94));
  transform-origin: center;
  will-change: clip-path, transform;
}

.viewer-shell::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 10px solid var(--forest);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.viewer-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.viewer-shell.is-interactive iframe {
  pointer-events: auto;
}

.viewer-activate {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  gap: 4px;
  min-width: 245px;
  translate: -50% -50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(16, 37, 26, 0.88);
  padding: 14px 18px;
  color: var(--on-dark);
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(16px);
  transition:
    top 450ms var(--expo-out),
    left 450ms var(--expo-out),
    right 450ms var(--expo-out),
    translate 450ms var(--expo-out),
    background 200ms ease;
}

.viewer-activate:hover {
  background: rgba(16, 37, 26, 0.98);
}

.viewer-activate span {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.viewer-activate strong {
  font-size: 13px;
}

.viewer-shell.is-interactive .viewer-activate {
  top: 16px;
  right: 16px;
  left: auto;
  min-width: 205px;
  translate: 0 0;
}

.viewer-label {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(16, 37, 26, 0.78);
  padding: 12px 15px;
  backdrop-filter: blur(12px);
  pointer-events: none;
  will-change: transform, opacity;
}

.viewer-label span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.viewer-label strong {
  font-size: 12px;
}

.viewer-label--left { left: 30px; }
.viewer-label--right { right: 30px; text-align: right; }

.viewer-models {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.viewer-models button {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  padding: 14px 16px;
  color: rgba(245, 239, 224, 0.72);
  cursor: pointer;
  text-align: left;
  transition: background 260ms ease, color 260ms ease;
}

.viewer-models button:hover,
.viewer-models button:focus-visible,
.viewer-models button.is-active {
  background: var(--green);
  color: #fff;
}

.viewer-models button span {
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.viewer-models button small {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.viewer-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: end start;
  background: var(--forest);
}

.viewer-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.7);
}

.viewer-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 10, 9, 0.9));
  content: "";
}

.viewer-photo > div {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 520px;
  gap: 9px;
  padding: clamp(26px, 5vw, 70px);
}

.viewer-photo span,
.viewer-configurator__head span {
  color: var(--brass);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.viewer-photo strong {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.viewer-photo p { margin: 0; color: rgba(255, 255, 255, 0.68); }
.viewer-photo a { width: fit-content; margin-top: 8px; color: #fff; text-decoration: underline; text-underline-offset: 5px; }

.viewer-configurator {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(20px, 3vw, 38px);
}

.viewer-configurator__head {
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.viewer-configurator__head > div { display: grid; gap: 8px; }
.viewer-configurator__head strong { font-family: var(--font-serif); font-size: clamp(24px, 2.4vw, 38px); font-weight: 400; line-height: 1.04; }
.viewer-configurator__head small { color: rgba(245, 239, 224, 0.64); }

.viewer-configurator__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.viewer-configurator fieldset {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
}

.viewer-configurator legend { padding-inline: 6px; color: rgba(247, 241, 229, 0.56); font-size: 10px; }
.viewer-swatches,
.viewer-side { display: flex; gap: 8px; }

.viewer-swatches button {
  width: 36px;
  height: 36px;
  border: 5px solid var(--forest);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.viewer-swatches button.is-active { box-shadow: 0 0 0 2px var(--brass); }

.viewer-side button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  padding-inline: 13px;
  color: rgba(247, 241, 229, 0.62);
  cursor: pointer;
}

.viewer-side button.is-active { border-color: var(--green); background: var(--green); color: #fff; }

.viewer-configurator__actions {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.viewer-configurator__actions button {
  min-height: 48px;
  border-radius: 6px;
  background: var(--orange);
  padding: 0 18px;
  color: var(--on-accent);
  cursor: pointer;
  font-weight: 750;
}

.viewer-configurator__actions a { color: rgba(245, 239, 224, 0.72); font-size: 11px; text-decoration: underline; text-underline-offset: 4px; }

.visualizer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(84px, 8vw, 124px);
  padding-bottom: clamp(100px, 12vw, 180px);
  background:
    radial-gradient(circle at 88% 10%, rgba(90, 122, 74, 0.18), transparent 30%),
    linear-gradient(150deg, var(--paper) 0%, var(--cream) 55%, #e6dfd0 100%);
}

.visualizer::before {
  position: absolute;
  top: -12vw;
  right: -11vw;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(26, 46, 32, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 7vw rgba(90, 122, 74, 0.04), 0 0 0 14vw rgba(201, 169, 110, 0.05);
  pointer-events: none;
}

.visualizer-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 7vw;
}

.visualizer-heading h2 {
  margin-bottom: 62px;
  font-family: var(--font-sans);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

.visualizer-intro {
  margin-bottom: 70px;
}

.visualizer-intro p {
  margin: 0 0 22px;
  color: rgba(26, 46, 32, 0.72);
  line-height: 1.65;
}

.visualizer-intro span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visualizer-intro i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-strong);
  box-shadow: 0 0 0 5px rgba(90, 122, 74, 0.14);
}

.visualizer-workspace {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "upload preview"
    "options preview"
    "options result";
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: auto 1fr auto;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(26, 46, 32, 0.14);
  border-radius: 10px;
  background: rgba(251, 247, 238, 0.78);
  box-shadow: 0 34px 90px rgba(16, 37, 26, 0.12);
  backdrop-filter: blur(20px);
}

.visualizer-controls {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(26, 46, 32, 0.13);
  padding: clamp(24px, 3.4vw, 52px);
}

.visualizer-controls--upload {
  grid-area: upload;
  border-bottom: 1px solid rgba(26, 46, 32, 0.13);
  padding-bottom: 24px;
}

.visualizer-controls--options {
  grid-area: options;
  padding-top: 28px;
}

.visualizer-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.visualizer-step__number,
.visualizer-options legend > span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.visualizer-step strong {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 500;
}

.visualizer-step p {
  margin: 7px 0 0;
  color: rgba(26, 46, 32, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.upload-zone {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 112px;
  margin: 24px 0 36px 52px;
  border: 1px dashed rgba(26, 46, 32, 0.32);
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms var(--quart-out);
}

.upload-zone:hover,
.upload-zone.is-dragging {
  border-color: var(--green-strong);
  background: rgba(90, 122, 74, 0.08);
  transform: translateY(-2px);
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-zone__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--on-dark);
  font-size: 22px;
}

.upload-zone > span:last-child {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.upload-zone strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.upload-zone small { color: rgba(26, 46, 32, 0.7); font-size: 10px; }

.visualizer-options {
  margin: 0 0 30px;
  border: 0;
  padding: 0;
}

.visualizer-options legend {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  padding: 0;
  font-size: 12px;
  font-weight: 650;
}

.visualizer-options legend > span { width: 38px; }

.option-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-left: 52px;
}

.option-chips--compact {
  grid-template-columns: repeat(3, 1fr);
}

.option-chips label { position: relative; }
.option-chips input { position: absolute; opacity: 0; pointer-events: none; }

.option-chips span {
  display: grid;
  min-height: 43px;
  place-items: center;
  border: 1px solid rgba(26, 46, 32, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(26, 46, 32, 0.78);
  cursor: pointer;
  font-size: 11px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.option-chips input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--on-dark);
}

.option-chips input:focus-visible + span { outline: 2px solid var(--forest); outline-offset: 2px; }

.visualizer-request {
  position: relative;
  display: block;
  margin-left: 52px;
}

.visualizer-request textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 92px;
  resize: vertical;
  border: 1px solid rgba(26, 46, 32, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.4);
  padding: 13px 42px 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  outline: none;
}

.visualizer-request textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(243, 138, 56, 0.12); }
.visualizer-request small { position: absolute; right: 10px; bottom: 9px; color: rgba(26, 46, 32, 0.7); font-size: 9px; }

.visualizer-limit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -8px 0 20px 52px;
  border-top: 1px solid rgba(26, 46, 32, 0.14);
  border-bottom: 1px solid rgba(26, 46, 32, 0.14);
  padding: 10px 0;
  color: rgba(26, 46, 32, 0.7);
  font-family: var(--font-sans);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visualizer-limit strong { color: var(--ink); font-size: 11px; }

.visualizer-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
  margin-left: 52px;
}

.visualizer-generate,
.visualizer-prompt {
  min-height: 52px;
  border-radius: 7px;
  padding: 0 17px;
  cursor: pointer;
}

.visualizer-generate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  color: var(--on-accent);
  font-weight: 760;
  transition: background 180ms ease, transform 180ms var(--quart-out);
}

.visualizer-generate:hover { background: var(--orange-hover); transform: translateY(-2px); }
.visualizer-generate.is-working i { animation: visualizer-spin 900ms linear infinite; }
.visualizer-generate:disabled { cursor: wait; opacity: 0.72; transform: none; }
.visualizer.is-generating .option-chips span,
.visualizer.is-generating .upload-zone,
.visualizer.is-generating .visualizer-request { cursor: wait; opacity: 0.58; }

.visualizer-prompt {
  border: 1px solid rgba(26, 46, 32, 0.22);
  background: transparent;
  color: rgba(26, 46, 32, 0.78);
  font-size: 11px;
}

.visualizer-status,
.visualizer-privacy {
  margin-left: 52px;
  font-size: 10px;
  line-height: 1.45;
}

.visualizer-status { min-height: 29px; margin-top: 10px; margin-bottom: 0; color: var(--orange-deep); }
.visualizer-status.is-success { color: var(--green-strong); }
.visualizer-privacy { margin-top: 5px; margin-bottom: 0; color: rgba(26, 46, 32, 0.7); }

.visualizer-preview {
  position: relative;
  grid-area: preview;
  min-height: 720px;
  overflow: hidden;
  background: var(--forest);
  color: var(--on-dark);
}

.visualizer-result-lead {
  grid-area: result;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--dark-line);
  background: var(--forest);
  padding: 22px 24px;
  color: var(--on-dark);
}

.visualizer-result-lead > div { display: grid; gap: 4px; }
.visualizer-result-lead span { color: var(--brass); font-family: var(--font-sans); font-size: 8px; letter-spacing: 0.09em; text-transform: uppercase; }
.visualizer-result-lead strong { font-family: var(--font-serif); font-size: clamp(22px, 2vw, 32px); font-weight: 500; line-height: 1.02; }
.visualizer-result-lead p { margin: 2px 0 0; color: rgba(245, 239, 224, 0.74); font-size: 10px; }
.visualizer-result-lead__button { min-height: 48px; border-radius: 6px; background: var(--orange); padding: 0 16px; color: var(--on-accent); cursor: pointer; font-size: 11px; font-weight: 720; }
.visualizer-result-lead > a { grid-column: 1 / -1; width: fit-content; color: var(--brass); font-size: 9px; text-decoration: underline; text-underline-offset: 4px; }

.visualizer-preview__backdrop,
.visualizer-preview__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visualizer-preview__backdrop {
  object-fit: cover;
  filter: blur(24px) brightness(0.52) saturate(0.8);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 420ms ease;
}

.visualizer-preview__photo {
  z-index: 1;
  object-fit: contain;
  filter: saturate(0.86) contrast(1.04);
  transition: filter 650ms ease;
}

.visualizer-preview[data-preview-state="uploaded"] .visualizer-preview__backdrop,
.visualizer-preview[data-preview-state="generating"] .visualizer-preview__backdrop,
.visualizer-preview[data-preview-state="ready"] .visualizer-preview__backdrop {
  opacity: 1;
}

.visualizer-preview[data-preview-state="ready"] .visualizer-preview__photo {
  filter: saturate(0.95) contrast(1.02);
}

.visualizer-preview[data-preview-state="generating"] .visualizer-preview__photo {
  filter: saturate(0.72) contrast(1.02) brightness(0.72) blur(1.5px);
}

.visualizer-preview__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 7, 0.45), transparent 35%, rgba(3, 7, 5, 0.5));
}

.visualizer-preview__topline {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visualizer-preview__topline span,
.visualizer-preview__topline strong {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: rgba(7, 13, 10, 0.48);
  padding: 10px 12px;
  backdrop-filter: blur(12px);
}

.visualizer-preview__topline b { color: var(--brass); }

.visualizer-preview__empty,
.visualizer-preview__result {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  max-width: 410px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  background: rgba(7, 13, 10, 0.69);
  padding: 24px;
  backdrop-filter: blur(17px);
}

.visualizer-preview__empty[hidden],
.visualizer-preview__result[hidden] {
  display: none;
}

.visualizer-preview__empty > span,
.visualizer-preview__result > span {
  color: var(--brass);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visualizer-preview__empty strong,
.visualizer-preview__result strong {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.03;
}

.visualizer-preview__empty p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 12px; }

.visualizer-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.visualizer-result-actions a,
.visualizer-result-actions button {
  display: inline-flex;
  width: fit-content;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #fff6e7;
  padding: 12px 15px;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visualizer-result-actions a {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(7, 13, 10, 0.38);
  color: #fff;
}

.visualizer-target {
  position: absolute;
  z-index: 4;
  top: 68%;
  left: 68%;
  width: 210px;
  height: 122px;
  border: 1px dashed rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  translate: -50% -50%;
  background: rgba(255, 138, 47, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18), inset 0 0 38px rgba(255, 138, 47, 0.08);
  cursor: grab;
  opacity: 0;
  outline: none;
  touch-action: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 350ms ease;
  user-select: none;
}

.visualizer-target:hover,
.visualizer-target:focus-visible,
.visualizer-target.is-dragging {
  border-color: var(--orange);
  background: rgba(255, 138, 47, 0.16);
  box-shadow: 0 0 0 3px rgba(255, 138, 47, 0.2), inset 0 0 42px rgba(255, 138, 47, 0.12);
}

.visualizer-target.is-dragging { cursor: grabbing; }

.visualizer-target em {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: max-content;
  translate: -50% -50%;
  border-radius: 999px;
  background: rgba(7, 13, 10, 0.72);
  padding: 7px 10px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
  pointer-events: none;
}

.visualizer-target span { position: absolute; width: 12px; height: 12px; border-color: #fff; }
.visualizer-target span:nth-child(1) { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.visualizer-target span:nth-child(2) { top: -1px; right: -1px; border-top: 2px solid; border-right: 2px solid; }
.visualizer-target span:nth-child(3) { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.visualizer-target span:nth-child(4) { bottom: -1px; left: -1px; border-bottom: 2px solid; border-left: 2px solid; }

.visualizer-preview[data-preview-state="uploaded"] .visualizer-target { opacity: 1; }

.visualizer-preview[data-preview-state="ready"] .visualizer-target,
.visualizer-preview[data-preview-state="generating"] .visualizer-target,
.visualizer-preview[data-preview-state="empty"] .visualizer-target { pointer-events: none; opacity: 0; }

.visualizer-placement-help {
  position: absolute;
  z-index: 5;
  top: 78px;
  left: 50%;
  translate: -50% 0;
  width: max-content;
  max-width: calc(100% - 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 13, 10, 0.62);
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-align: center;
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.visualizer-preview[data-preview-state="uploaded"] .visualizer-placement-help { opacity: 1; }

.visualizer-footnote {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  color: rgba(26, 46, 32, 0.7);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visualizer-footnote p { justify-self: end; margin: 0; text-align: right; text-transform: none; }

@keyframes visualizer-spin { to { rotate: 1turn; } }

.models {
  padding-top: clamp(110px, 14vw, 210px);
  padding-bottom: clamp(110px, 14vw, 210px);
}

.models-heading {
  display: grid;
  grid-template-columns: 0.72fr 2fr 0.65fr;
  align-items: end;
  gap: 28px;
}

.models-heading h2 {
  margin-bottom: 54px;
}

.models-heading p {
  margin: 0 0 58px;
  color: rgba(26, 46, 32, 0.72);
  font-size: 13px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.model-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vw, 42px);
  clip-path: inset(0 var(--row-clip, 100%) 0 0);
  opacity: var(--row-opacity, 0);
  transform: translate3d(0, var(--row-y, 86px), 0);
  transition: background 500ms ease, color 500ms ease;
  will-change: transform, opacity, clip-path;
}

.model-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 37, 26, 0.72) 0%, rgba(16, 37, 26, 0.42) 42%, rgba(16, 37, 26, 0.94) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.model-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.085);
  transition:
    opacity 650ms ease,
    transform 1.15s var(--quart-out);
  will-change: opacity, transform;
}

.model-card > span,
.model-card h3,
.model-card p,
.model-card strong {
  position: relative;
  z-index: 2;
}

.model-card > span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.model-card h3 {
  margin: auto 0 3px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.model-card p {
  margin: 0 0 28px;
  font-size: 13px;
  opacity: 0.62;
}

.model-card strong {
  font-size: 14px;
}

.model-card i {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 22px;
  font-style: normal;
  z-index: 2;
  transition: rotate 300ms ease;
}

.model-card:hover,
.model-card:focus-visible {
  background: var(--forest);
  color: var(--on-dark);
}

.model-card:hover::after,
.model-card:focus-visible::after,
.model-card:hover .model-card__image,
.model-card:focus-visible .model-card__image {
  opacity: 1;
}

.model-card:hover .model-card__image,
.model-card:focus-visible .model-card__image {
  transform: scale(1);
}

.model-card:hover i,
.model-card:focus-visible i {
  rotate: 45deg;
}

@media (hover: none), (pointer: coarse) {
  .model-card {
    background: var(--forest);
    color: var(--on-dark);
  }

  .model-card::after,
  .model-card__image {
    opacity: 1;
  }

  .model-card__image {
    transform: scale(1);
  }
}

.network {
  position: relative;
  display: block;
  min-height: 164svh;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.network-stage {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  overflow: hidden;
  place-content: center;
  isolation: isolate;
}

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

.network-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: rgba(6, 13, 18, 0.49);
}

.network h2 {
  margin: 28px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(62px, 9vw, 145px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.network .motion-line__inner {
  opacity: 0;
  transform: translate3d(0, 115%, 0);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 130px var(--page-pad) 0;
  background: var(--forest);
  border-radius: var(--final-radius, 42px) var(--final-radius, 42px) 0 0;
  color: var(--on-dark);
  text-align: center;
  isolation: isolate;
  transform: translate3d(0, var(--final-rise, 120px), 0);
  transform-origin: bottom center;
  will-change: transform, border-radius;
}

.heat-lines {
  position: absolute;
  inset: -30%;
  z-index: -2;
  background:
    repeating-radial-gradient(ellipse at 50% 80%, transparent 0 42px, rgba(201, 169, 110, 0.24) 44px 80px, transparent 82px 123px);
  animation: heat-drift 12s ease-in-out infinite alternate;
  will-change: transform;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(90, 122, 74, 0.2), transparent 50%, rgba(201, 169, 110, 0.14));
  content: "";
}

@keyframes heat-drift {
  to { translate: 4% -3%; scale: 1.05; }
}

.final-eyebrow {
  align-self: end;
  margin: 0 0 12px;
}

.final-cta > h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(90px, 16vw, 250px);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.71;
}

.final-cta > p:not(.final-eyebrow) {
  max-width: 560px;
  align-self: start;
  margin: 40px 0 0;
  line-height: 1.5;
}

.final-actions {
  display: flex;
  align-self: start;
  gap: 10px;
  margin-top: 34px;
}

.final-button {
  border-radius: 7px;
  background: #fffaf0;
  padding: 16px 24px;
  color: var(--ink);
  font-weight: 700;
  transition: translate 200ms ease;
}

.final-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.final-button:hover {
  translate: 0 -2px;
}

.site-footer {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 28px;
  border-top: 1px solid var(--dark-line);
  background: var(--moss);
  padding: 34px var(--page-pad) 30px;
  color: var(--on-dark);
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.site-footer address,
.footer-links {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
}

.footer-links {
  justify-self: end;
  text-align: right;
}

.lead-dialog {
  width: min(520px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: var(--forest);
  padding: clamp(28px, 5vw, 56px);
  color: var(--on-dark);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.lead-dialog::backdrop {
  background: rgba(3, 6, 5, 0.7);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  opacity: 0.72;
}

.lead-dialog h2 {
  margin: 16px 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 66px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.dialog-visual {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
}

.dialog-visual img {
  width: 112px;
  height: 82px;
  border-radius: 6px;
  object-fit: cover;
}

.dialog-visual div { display: grid; gap: 5px; min-width: 0; }
.dialog-visual span { color: var(--brass); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.dialog-visual strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }

.dialog-copy {
  margin: 0 0 32px;
  color: rgba(245, 239, 224, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.lead-dialog form {
  display: grid;
  gap: 22px;
}

.lead-dialog label:not(.consent-row) {
  display: grid;
  gap: 8px;
  color: rgba(245, 239, 224, 0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-dialog input[type="text"],
.lead-dialog input[type="tel"] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(245, 239, 224, 0.42);
  outline: 0;
  background: transparent;
  padding: 11px 0;
  color: var(--on-dark);
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
}

.lead-dialog input:focus {
  border-color: var(--orange);
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: rgba(245, 239, 224, 0.7);
  font-size: 11px;
  line-height: 1.5;
}

.consent-row input {
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.consent-row a {
  border-bottom: 1px solid currentColor;
}

.form-status {
  min-height: 19px;
  margin: -5px 0 0;
  color: #ffb083;
  font-size: 12px;
}

.form-status.is-success {
  color: var(--green-on-dark);
}

.dialog-submit {
  border-radius: 7px;
  background: var(--orange);
  padding: 17px 20px;
  color: var(--on-accent);
  font-weight: 750;
}

.dialog-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

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

.hero :focus-visible,
.three-d :focus-visible,
.site-footer :focus-visible,
.lead-dialog :focus-visible,
.visualizer-preview :focus-visible {
  outline-color: var(--orange);
}

.visualizer-result-lead :focus-visible {
  outline-color: var(--orange);
}

.nav-cta:focus-visible,
.hero-action:focus-visible,
.viewer-configurator__actions button:focus-visible,
.visualizer-generate:focus-visible,
.visualizer-result-lead__button:focus-visible,
.dialog-submit:focus-visible {
  outline-color: var(--forest);
  box-shadow: 0 0 0 3px var(--paper);
}

@media (max-width: 980px) {
  .floating-nav {
    width: min(700px, calc(100vw - 24px));
    gap: 12px;
  }

  .floating-nav nav {
    display: flex;
    gap: 12px;
    font-size: 11px;
  }

  .hero h1 > .motion-line:last-child {
    margin-left: 0;
  }

  .hero-data {
    width: min(390px, 46vw);
  }

  .hero-actions {
    width: min(390px, 46vw);
  }

  .act-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .three-d-heading,
  .visualizer-heading,
  .models-heading {
    grid-template-columns: 1fr;
  }

  .three-d-heading p,
  .visualizer-intro,
  .models-heading p {
    margin: -28px 0 50px;
  }

  .visualizer-workspace {
    grid-template-areas:
      "upload"
      "options"
      "preview"
      "result";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .visualizer-controls {
    border-right: 0;
    border-bottom: 1px solid rgba(22, 22, 18, 0.13);
  }

  .visualizer-preview { min-height: 650px; }

  .visualizer-footnote { grid-template-columns: repeat(4, auto); }
  .visualizer-footnote p { grid-column: 1 / -1; justify-self: start; text-align: left; }

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

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

  .footer-links {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .promise {
    overflow: hidden;
    clip-path: none;
  }

  .promise-flow {
    padding: clamp(92px, 14svh, 132px) 0 84px;
  }

  .promise-flow::before,
  .promise-flow::after {
    display: none;
  }

  .promise-row {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    margin: 0 0 76px;
    border: 0;
  }

  .promise-row:first-child {
    border-top: 0;
  }

  .promise-row:last-child {
    margin-bottom: 0;
  }

  .promise-copy-clip {
    position: static;
    order: 1;
    width: 100%;
    overflow: visible;
    clip-path: none;
  }

  .promise-copy {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 250px;
    padding: 64px 8.2vw;
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    transition:
      opacity 700ms ease,
      transform 1.05s var(--expo-out);
  }

  .promise-eyebrow {
    font-size: 10px;
  }

  .promise-copy h2,
  .promise-copy h3 {
    width: min(84vw, 620px);
    margin-top: 22px;
    font-size: clamp(34px, 7vw, 50px);
  }

  .promise-media {
    order: 2;
    width: min(60vw, 430px);
    height: auto;
    aspect-ratio: 220 / 275;
    overflow: visible;
    align-self: center;
    background: transparent;
  }

  .promise-media::before,
  .promise-media::after {
    position: absolute;
    left: 50%;
    z-index: 4;
    width: 100vw;
    height: 1px;
    background: rgba(201, 169, 110, 0.55);
    content: "";
    translate: -50% 0;
  }

  .promise-media::before {
    top: 0;
  }

  .promise-media::after {
    bottom: 0;
  }

  .promise-media-frame {
    clip-path: inset(20% 0);
    transition: clip-path 900ms var(--expo-out);
  }

  .promise-media img {
    transform: translate3d(0, var(--promise-media-y, 0), 0)
      scale(var(--promise-media-scale, 1.72));
    transition: none;
  }

  .promise-row.is-promise-visible .promise-copy {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .promise-row.is-promise-visible .promise-eyebrow-inner,
  .promise-row.is-promise-visible .promise-line > span {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .promise-row.is-promise-visible .promise-eyebrow-inner {
    transition: transform 700ms var(--expo-out) 80ms;
  }

  .promise-row.is-promise-visible .promise-line > span {
    transition:
      opacity 650ms ease,
      transform 900ms var(--expo-out);
  }

  .promise-row.is-promise-visible .promise-line:nth-child(2) > span {
    transition-delay: 90ms;
  }

  .promise-row.is-promise-visible .promise-media-frame {
    clip-path: inset(0);
  }

  .promise-row.is-promise-visible .promise-media img {
    transform: translate3d(0, var(--promise-media-y, 0), 0)
      scale(var(--promise-media-scale, 1.72));
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 12px;
  }

  .scroll-progress {
    display: none;
  }

  .floating-nav {
    right: 8px;
    left: 8px;
    top: 8px;
    width: auto;
    height: 52px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
    padding: 5px;
    translate: 0 0;
    border-radius: 9px;
  }

  .floating-nav.is-compact {
    right: 7px;
    left: 7px;
    top: 7px;
    width: auto;
  }

  body:not(.is-motion-ready) .floating-nav {
    translate: 0 -170%;
  }

  .site-loader.is-exiting {
    clip-path: inset(36% 6% 30% 44% round 8px);
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 25px;
    height: 25px;
  }

  .floating-nav nav {
    display: flex;
    justify-content: center;
    gap: clamp(4px, 1.5vw, 7px);
    font-size: clamp(8.5px, 2.35vw, 10px);
    letter-spacing: -0.025em;
  }

  .nav-cta {
    height: 40px;
    padding-inline: clamp(8px, 2.4vw, 11px);
    font-size: clamp(8.5px, 2.35vw, 10px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-photo {
    object-position: 65% center;
  }

  .hero-portal {
    clip-path: inset(36% 6% 30% 44% round 8px);
  }

  .fill-visual {
    top: 37.25%;
    left: 45.5%;
    width: 47%;
    height: 31.5%;
    padding: 10px;
  }

  .fill-visual__topline,
  .fill-visual__caption {
    font-size: 7px;
  }

  .fill-faucet__spout,
  .fill-faucet__stem,
  .fill-faucet__nozzle,
  .fill-faucet__handle {
    height: 3px;
  }

  .fill-faucet__stem {
    width: 3px;
    height: 58%;
  }

  .fill-faucet__nozzle {
    width: 3px;
    height: 20%;
  }

  .fill-stream {
    width: 3px;
  }

  .blueprint-grid {
    background-size: 50vw 25vh;
  }

  .hero-kicker {
    top: 15.5svh;
    font-size: 9px;
  }

  .hero h1 {
    top: 20.5svh;
    width: calc(100% - var(--page-pad) * 2);
    font-size: clamp(44px, 14.5vw, 66px);
    line-height: 0.83;
  }

  .hero-copy {
    right: var(--page-pad);
    bottom: 23svh;
    width: auto;
    font-size: clamp(13px, 4vw, 16px);
  }

  .hero-data {
    right: var(--page-pad);
    bottom: 14.5svh;
    left: var(--page-pad);
    width: auto;
    border-radius: 8px;
  }

  .hero-data div {
    gap: 3px;
    padding: 8px 7px 9px;
  }

  .hero-data dt {
    font-size: clamp(6.5px, 1.9vw, 8px);
    letter-spacing: 0.045em;
  }

  .hero-data dd {
    font-size: clamp(9px, 2.8vw, 12px);
  }

  .hero-actions {
    right: var(--page-pad);
    bottom: 3.5svh;
    width: auto;
    gap: 7px;
  }

  .hero-action {
    min-height: 50px;
    padding-left: 12px;
    font-size: clamp(10px, 3vw, 12px);
  }

  .hero-action span:last-child {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .scroll-cue {
    display: none;
  }

  .promise-flow {
    padding: 72px 0 28px;
  }

  .promise-row {
    margin-bottom: 18px;
  }

  .promise-copy {
    min-height: 196px;
    padding: 46px 7vw;
  }

  .promise-copy h2,
  .promise-copy h3 {
    width: 88vw;
    font-size: clamp(32px, 9vw, 43px);
  }

  .promise-media {
    width: 60vw;
  }

  .story-intro h2,
  .three-d h2,
  .models h2 {
    margin-bottom: 42px;
    font-size: clamp(46px, 15vw, 70px);
  }

  .manifest {
    min-height: 154svh;
    padding-block: 0;
  }

  .manifest-stage {
    min-height: 100svh;
    padding-block: 88px;
  }

  .manifest h2 {
    font-size: 45px;
  }

  .story {
    padding-bottom: 0;
  }

  .story-intro {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .act-stage {
    height: 220svh;
    padding: 6px 12px;
  }

  .act-card {
    position: relative;
    top: auto;
    width: 100%;
    height: calc(100svh - 12px);
    min-height: 620px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 52%) minmax(0, 48%);
    margin: 0;
  }

  .act-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 24px 22px 22px;
  }

  .act-copy h3 {
    margin: 18px 0 22px;
    font-size: clamp(39px, 12vw, 51px);
  }

  .act-copy strong { margin-bottom: 12px; }
  .act-copy p { font-size: 13px; line-height: 1.42; }
  .act-copy .dark-button { margin-top: 18px; padding: 12px 16px; }

  .act-photo {
    min-height: 0;
  }

  .css-tub__body {
    width: 78vw;
  }

  .css-tub__stove {
    right: 5%;
    scale: 0.7;
  }

  .three-d {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .visualizer {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .models {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .models h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .visualizer::before {
    top: -22vw;
    right: -34vw;
    width: 66vw;
    height: 66vw;
  }

  .visualizer-heading h2 {
    margin-bottom: 26px;
    font-size: clamp(40px, 11.2vw, 48px);
    letter-spacing: -0.048em;
    line-height: 0.98;
  }

  .visualizer-intro { margin: 0 0 26px; }
  .visualizer-intro p { margin-bottom: 15px; line-height: 1.5; }
  .visualizer-intro span { font-size: 8px; line-height: 1.45; }
  .visualizer-workspace {
    display: grid;
    grid-template-areas:
      "upload"
      "preview"
      "result"
      "options";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 0;
    overflow: hidden;
  }

  .visualizer-controls {
    display: flex;
    border-right: 0;
  }

  .visualizer-controls--upload {
    grid-area: upload;
    padding: 20px 16px;
  }

  .visualizer-controls--options {
    grid-area: options;
    border-top: 1px solid rgba(22, 22, 18, 0.13);
    border-bottom: 0;
    padding: 22px 16px 18px;
  }

  .visualizer-step {
    grid-template-columns: 32px 1fr;
    padding: 0;
  }
  .upload-zone {
    min-height: 100px;
    margin: 18px 0 0;
    padding: 15px;
  }
  .upload-zone__icon { width: 38px; height: 38px; flex-basis: 38px; }
  .visualizer-preview {
    grid-area: preview;
    height: clamp(400px, 62svh, 520px);
    min-height: 0;
    scroll-margin-top: 68px;
  }
  .visualizer-options {
    margin: 0 0 23px;
    padding: 0;
  }
  .option-chips { margin-left: 0; }
  .option-chips--compact { grid-template-columns: repeat(3, 1fr); }
  .option-chips span { min-height: 46px; padding: 7px; font-size: 10px; text-align: center; }
  .visualizer-request { margin-left: 0; }
  .visualizer-request textarea { min-height: 104px; }
  .visualizer-limit { margin: -3px 0 18px; }
  .visualizer-actions {
    position: static;
    margin: 0;
    border: 1px solid rgba(26, 46, 32, 0.14);
    border-radius: 10px;
    background: rgba(251, 247, 238, 0.82);
    padding: 8px;
  }
  .visualizer-generate,
  .visualizer-prompt { width: 100%; min-height: 50px; }
  .visualizer-prompt[hidden] { display: none; }
  .visualizer-status {
    min-height: 20px;
    margin: 12px 0 0;
  }
  .visualizer-privacy {
    margin: 8px 0 0;
  }
  .visualizer-result-lead {
    grid-area: result;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 20px 16px;
  }
  .visualizer-result-lead strong { font-size: 26px; }
  .visualizer-result-lead__button { width: 100%; min-height: 52px; }
  .visualizer-result-lead > a { grid-column: auto; }
  .visualizer-preview__topline { top: 14px; right: 14px; left: 14px; }
  .visualizer-preview__topline strong { display: none; }
  .visualizer-preview__empty,
  .visualizer-preview__result { right: 14px; bottom: 14px; left: 14px; max-width: none; padding: 18px; }
  .visualizer-preview__empty strong,
  .visualizer-preview__result strong { font-size: 26px; }
  .visualizer-preview__result a { width: fit-content; color: #fff; font-size: 10px; text-decoration: underline; text-underline-offset: 4px; }
  .visualizer-target em { font-size: 7px; }
  .visualizer-placement-help { top: 64px; max-width: calc(100% - 28px); }
  .visualizer-footnote { grid-template-columns: repeat(2, 1fr); gap: 7px 14px; }
  .visualizer-footnote p { grid-column: 1 / -1; margin-top: 8px; text-align: left; }

  .viewer-models { grid-template-columns: repeat(2, 1fr); }
  .viewer-models button { min-height: 58px; padding: 12px; }

  .viewer-shell {
    height: clamp(460px, 68svh, 620px);
    min-height: 0;
  }

  .viewer-label--right {
    display: none;
  }

  .viewer-label--left {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .viewer-activate {
    min-width: min(250px, calc(100% - 36px));
  }

  .viewer-shell.is-interactive .viewer-activate {
    top: 12px;
    right: 12px;
    min-width: 190px;
  }

  .viewer-photo > div { padding: 24px 20px 78px; }
  .viewer-photo strong { font-size: 42px; }

  .viewer-configurator {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px 16px;
  }

  .viewer-configurator__head { gap: 12px; }
  .viewer-configurator__head strong { font-size: 27px; }
  .viewer-configurator__grid { grid-template-columns: 1fr; gap: 8px; }
  .viewer-configurator fieldset { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 58px; padding: 10px 12px; }
  .viewer-configurator legend { float: left; width: 70px; padding: 0; }
  .viewer-configurator__actions { grid-column: auto; display: grid; gap: 12px; margin-top: 0; }
  .viewer-configurator__actions button { width: 100%; min-height: 52px; }
  .viewer-configurator__actions a { text-align: center; }

  .dialog-visual { grid-template-columns: 86px minmax(0, 1fr); }
  .dialog-visual img { width: 86px; height: 72px; }

  .model-grid {
    grid-template-columns: none;
    grid-auto-columns: min(84vw, 350px);
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .model-card {
    min-height: 360px;
    background: var(--forest);
    color: var(--on-dark);
    scroll-snap-align: start;
  }

  .model-card::after,
  .model-card__image {
    opacity: 1;
  }

  .model-card__image {
    transform: scale(1);
  }

  .model-grid::-webkit-scrollbar {
    display: none;
  }

  .network {
    min-height: 150svh;
    padding-inline: 12px;
  }

  .network-stage {
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .network-photo {
    object-position: 35% center;
  }

  .network h2 {
    font-size: 68px;
  }

  .final-cta {
    min-height: 900px;
    padding-top: 100px;
  }

  .final-cta > h2 {
    font-size: clamp(92px, 30vw, 136px);
  }

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

  .final-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 30px;
  }

  .footer-links {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .hero-action {
    justify-content: center;
    padding-inline: 8px;
    text-align: center;
  }

  .hero-action span:last-child {
    display: none;
  }

  .promise-copy {
    min-height: 204px;
    padding-inline: 5vw;
  }

  .promise-copy h2,
  .promise-copy h3 {
    width: 92vw;
    font-size: clamp(30px, 9.5vw, 36px);
  }
}

@media (min-width: 721px) and (max-height: 650px) {
  .act-card {
    height: calc(100svh - 12px);
    min-height: 0;
  }

  .act-copy {
    padding: 28px 38px;
  }

  .act-copy h3 {
    margin: 18px 0 24px;
    font-size: clamp(38px, 4.7vw, 62px);
  }

  .act-copy strong { margin-bottom: 10px; }
  .act-copy p { font-size: 13px; line-height: 1.38; }
  .act-copy .dark-button { margin-top: 18px; padding: 11px 16px; }

  .viewer-shell {
    min-height: 430px;
  }
}

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

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

  body.is-loading {
    overflow: auto;
  }

  .site-loader {
    display: none !important;
  }

  .motion-reveal,
  .motion-line__inner,
  .motion-word__inner,
  .hero-kicker,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-data,
  .promise-copy,
  .promise-eyebrow-inner,
  .promise-line > span,
  .promise-media,
  .promise-media-frame,
  .manifest-stage,
  .act-stage,
  .act-card,
  .act-copy > *,
  .three-d-heading > *,
  .visualizer-heading > *,
  .visualizer-workspace,
  .viewer-shell,
  .viewer-label,
  .model-card,
  .network-copy *,
  .final-cta {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-photo,
  .network-photo,
  .act-photo img,
  .promise-media img {
    scale: 1 !important;
    transform: none !important;
  }

  .promise {
    overflow: hidden;
    clip-path: none;
  }

  .promise-flow {
    padding: 100px 0 80px;
  }

  .promise-flow::before,
  .promise-flow::after {
    display: none;
  }

  .promise-row {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    margin-bottom: 72px;
    border: 0;
  }

  .promise-row:first-child {
    border-top: 0;
  }

  .promise-copy-clip {
    position: static;
    order: 1;
    overflow: visible;
    clip-path: none;
  }

  .promise-copy {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 240px;
    padding: 60px 8vw;
  }

  .promise-media {
    order: 2;
    width: min(60vw, 430px);
    height: auto;
    aspect-ratio: 220 / 275;
    overflow: visible;
    align-self: center;
  }

  .fill-stream,
  .fill-tub__water i {
    display: none !important;
  }

  .fill-tub__water {
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }

  .manifest,
  .network {
    min-height: auto;
  }

  .act-stage--three .act-card {
    position: relative;
    top: auto;
  }

  .manifest-stage,
  .network-stage {
    position: relative;
    min-height: 100svh;
  }

  .act-stage {
    position: relative;
    top: auto;
    height: auto;
    padding-block: 6px 18px;
  }

  .act-card {
    position: relative;
    top: auto;
  }
}
