:root {
  --ink: #0b0d0c;
  --ink-soft: #171a18;
  --forest: #191c1a;
  --forest-deep: #0b0d0c;
  --paper: #f5f5f2;
  --paper-cool: #e8ebe7;
  --white: #ffffff;
  --lime: #c7ff2f;
  --coral: #ff6b51;
  --muted: #5f655f;
  --line: rgba(17, 24, 22, 0.16);
  --page: 1320px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

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

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

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

h1,
h2,
h3,
strong {
  font-weight: 720;
}

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

h2 {
  margin-bottom: 28px;
  font-size: 64px;
}

h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

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

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

.page-shell,
.header-shell {
  width: min(calc(100% - 80px), var(--page));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-160%);
}

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

.section-kicker,
.micro-label {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker::before,
.micro-label::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--coral);
  content: "";
}

.section-kicker-bright::before {
  background: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(4px);
}

.button-bright {
  color: var(--ink);
  background: var(--lime);
}

.button-bright:hover {
  color: var(--white);
  background: var(--coral);
}

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

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.underlined-link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 720;
  transition: color 180ms ease;
}

.underlined-link:hover {
  color: var(--lime);
}

.underlined-link-dark:hover {
  color: var(--coral);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(243, 244, 237, 0.94);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
}

.brand-symbol {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
}

.brand > span:last-child {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 720;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 650;
}

.desktop-nav a,
.header-contact {
  transition: color 160ms ease;
}

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

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  font-size: 12px;
  font-weight: 760;
}

.header-contact svg {
  width: 16px;
  height: 16px;
}

.menu-button,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-media,
.hero-frame,
.hero-frame img,
.hero-shade,
.formula-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-frame {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 6s ease;
}

.hero-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-frame img {
  object-fit: cover;
}

.hero-frame:first-child img {
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 18, 15, 0.82) 0%, rgba(9, 18, 15, 0.35) 56%, rgba(9, 18, 15, 0.42) 100%);
}

.formula-canvas {
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 130px;
  padding-bottom: 142px;
}

.hero-content .micro-label {
  margin-bottom: auto;
  padding-top: 22px;
}

.hero h1 {
  max-width: 1120px;
  margin-bottom: 35px;
  font-size: 112px;
  line-height: 0.82;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.hero-bottom > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-index {
  position: absolute;
  right: 40px;
  bottom: 28px;
  left: 40px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr)) 54px;
  align-items: center;
  gap: 0;
  color: var(--white);
}

.hero-index-button {
  position: relative;
  min-height: 58px;
  padding: 18px 18px 13px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  font-size: 11px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.hero-index-button::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transition: width 500ms ease;
}

.hero-index-button.is-active {
  color: var(--white);
}

.hero-index-button.is-active::before {
  width: 100%;
}

.hero-index-button span {
  margin-right: 10px;
  color: var(--lime);
}

.hero-pause {
  justify-self: end;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Ticker */
.capability-ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 50px;
  align-items: center;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  padding-inline: 28px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

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

/* Manifesto */
.manifesto {
  padding-block: 135px;
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.58fr 1.7fr 0.62fr;
  align-items: start;
  gap: 60px;
}

.manifesto-copy h2 {
  max-width: 780px;
}

.manifesto-copy > p {
  max-width: 660px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.manifesto-stat {
  display: grid;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.manifesto-stat strong {
  color: var(--coral);
  font-size: 106px;
  line-height: 0.82;
}

.manifesto-stat span {
  max-width: 150px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

/* Scroll story */
.story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(480px, 0.85fr);
  color: var(--white);
  background: var(--forest-deep);
}

.story-visual {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.story-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 700ms ease, transform 1.2s ease;
}

.story-image::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 17, 0.22);
  content: "";
}

.story-image.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.story-visual-meta {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.story-visual-meta span {
  font-size: 10px;
  font-weight: 720;
}

.story-visual-meta strong {
  color: var(--lime);
  font-size: 42px;
  line-height: 0.9;
}

.story-copy {
  padding: 140px 7vw 80px 6vw;
}

.story-intro {
  min-height: 55vh;
}

.story-intro h2 {
  max-width: 600px;
}

.story-step {
  display: grid;
  min-height: 68vh;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 28px;
  opacity: 0.34;
  transition: opacity 300ms ease;
}

.story-step.is-active {
  opacity: 1;
}

.story-step > span {
  padding-top: 5px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 750;
}

.story-verb {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
}

.story-step h3 {
  max-width: 520px;
  font-size: 40px;
  line-height: 1.05;
}

.story-step div > p:last-child {
  max-width: 510px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

/* Formula atlas */
.atlas {
  padding-top: 135px;
  color: var(--ink);
  background: var(--paper);
}

.atlas-heading {
  display: grid;
  grid-template-columns: 0.52fr 1.25fr 0.66fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 80px;
}

.atlas-heading h2,
.atlas-heading p {
  margin-bottom: 0;
}

.atlas-heading > p:last-child {
  color: var(--muted);
  font-size: 14px;
}

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

.atlas-tab {
  min-height: 66px;
  padding: 0 20px;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.atlas-tab + .atlas-tab {
  border-left: 1px solid var(--line);
}

.atlas-tab span {
  margin-right: 12px;
  font-size: 10px;
}

.atlas-tab.is-active {
  color: var(--ink);
  background: var(--lime);
}

.atlas-stage {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.7fr) minmax(370px, 0.8fr);
  background: var(--ink);
}

.atlas-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.atlas-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 550ms ease, transform 900ms ease;
}

.atlas-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.atlas-panels {
  display: grid;
  padding: 70px 56px;
  color: var(--white);
  background: var(--forest);
}

.atlas-panel {
  align-self: end;
}

.atlas-panel > p {
  margin-bottom: 24px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 780;
}

.atlas-panel h3 {
  margin-bottom: 44px;
  font-size: 46px;
  line-height: 1.02;
}

.atlas-panel ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
}

.atlas-panel li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

/* Formula lens */
.formula-lens {
  color: var(--white);
  background: var(--forest-deep);
}

.formula-lens-stage {
  position: relative;
  height: min(78svh, 820px);
  min-height: 620px;
  overflow: hidden;
  background: #dcebea;
  isolation: isolate;
}

.formula-lens-micro,
.formula-lens-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formula-lens-micro {
  transform: scale(1.02);
}

.formula-lens-motion {
  z-index: 1;
  object-position: center;
  clip-path: polygon(57% 0, 100% 0, 100% 100%, 38% 100%);
  filter: saturate(0.9) contrast(1.04);
}

.formula-lens-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 28, 23, 0.03) 45%, rgba(8, 28, 23, 0.66) 100%);
  content: "";
}

.formula-lens-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47%;
  z-index: 3;
  width: 1px;
  background: rgba(217, 255, 67, 0.85);
  box-shadow: 0 0 24px rgba(217, 255, 67, 0.4);
  transform: skewX(-10deg);
  transform-origin: top;
  animation: formula-scan 7s ease-in-out infinite alternate;
}

.formula-lens-coordinates {
  position: absolute;
  right: 40px;
  bottom: 28px;
  left: 40px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 760;
}

.formula-lens-coordinates span:first-child {
  color: var(--lime);
}

.formula-lens-content {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.44fr);
  gap: 80px;
  padding-block: 105px 120px;
}

.formula-lens-heading h2 {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 58px;
}

.formula-lens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.formula-lens-grid article {
  min-width: 0;
  padding: 26px 26px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.formula-lens-grid span {
  display: block;
  margin-bottom: 86px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
}

.formula-lens-grid h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.formula-lens-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@keyframes formula-scan {
  0% { left: 41%; opacity: 0.45; }
  100% { left: 61%; opacity: 1; }
}

/* Real factory wall */
.factory {
  padding: 145px 0 170px;
  color: var(--white);
  background: var(--ink);
}

.factory-heading {
  display: grid;
  grid-template-columns: 0.52fr 1.45fr auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 90px;
}

.factory-heading > * {
  margin-bottom: 0;
}

.factory-wall {
  display: grid;
  width: min(calc(100% - 80px), 1500px);
  min-height: 1120px;
  margin-inline: auto;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 330px 310px 360px;
  gap: 18px;
}

.factory-shot {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: #27312e;
  cursor: zoom-in;
}

.factory-shot::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  content: "";
  pointer-events: none;
}

.factory-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
}

.factory-shot:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.factory-shot span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 10px;
  font-weight: 720;
  text-align: left;
  text-shadow: 0 1px 8px #000;
}

.factory-shot-a { grid-column: 1 / 8; grid-row: 1 / 3; }
.factory-shot-b { grid-column: 9 / 13; grid-row: 1 / 2; }
.factory-shot-c { grid-column: 8 / 13; grid-row: 2 / 3; }
.factory-shot-d { grid-column: 1 / 5; grid-row: 3 / 4; }
.factory-shot-e { grid-column: 5 / 13; grid-row: 3 / 4; }

/* Quality */
.quality {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  background: var(--paper-cool);
}

.quality-visual {
  position: absolute;
  inset: 0 50% 0 0;
}

.quality-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(10, 29, 24, 0.14);
  content: "";
}

.quality-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-content {
  display: grid;
  min-height: 980px;
  grid-template-columns: 1fr 1fr;
}

.quality-title {
  position: relative;
  z-index: 2;
  align-self: start;
  max-width: 640px;
  margin: 100px 60px 0 0;
  padding: 40px;
  color: var(--white);
  background: var(--forest-deep);
}

.quality-title h2 {
  margin-bottom: 0;
  font-size: 54px;
}

.quality-lines {
  display: grid;
  align-content: center;
  padding: 120px 0 120px 80px;
}

.quality-lines article {
  display: grid;
  grid-template-columns: 36px 150px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.quality-lines article:last-child {
  border-bottom: 1px solid var(--line);
}

.quality-lines span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 760;
}

.quality-lines h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.quality-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* OEM / ODM */
.process {
  padding-block: 140px;
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.52fr 1.5fr;
  gap: 48px;
  margin-bottom: 80px;
}

.process-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 0;
  padding-left: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-rail li {
  position: relative;
  min-width: 0;
  min-height: 320px;
  padding: 26px 24px 28px;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.process-rail li + li {
  border-left: 1px solid var(--line);
}

.process-rail li:hover {
  color: var(--white);
  background: var(--forest);
  transform: translateY(-8px);
}

.process-rail li > span {
  display: block;
  margin-bottom: 86px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
}

.process-rail svg {
  width: 32px;
  height: 32px;
  margin-bottom: 34px;
  stroke-width: 1.4;
}

.process-rail h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.process-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.process-rail li:hover p {
  color: rgba(255, 255, 255, 0.68);
}

/* Contact */
.contact {
  position: relative;
  min-height: 900px;
  padding-block: 130px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
  isolation: isolate;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.contact-backdrop::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 23, 0.83);
  content: "";
}

.contact-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 0.92fr);
  align-items: start;
  gap: 110px;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy h2 {
  max-width: 600px;
  font-size: 76px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
}

.contact-links {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-links a {
  display: grid;
  grid-template-columns: 30px 85px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-links svg {
  width: 20px;
  height: 20px;
  color: var(--lime);
}

.contact-links span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.inquiry-form {
  padding: 40px;
  color: var(--ink);
  background: var(--paper);
}

.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-topline strong {
  font-size: 16px;
}

.form-topline span,
.form-note {
  color: var(--muted);
  font-size: 10px;
}

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

.form-grid label {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.form-grid label > span {
  font-size: 11px;
  font-weight: 720;
}

.form-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bfc9c3;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 126px;
  padding: 11px 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 70, 61, 0.12);
  outline: 0;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-note {
  margin: 11px 0 0;
  text-align: center;
}

/* Footer and overlays */
.site-footer {
  padding-block: 54px;
  color: var(--white);
  background: var(--ink);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  align-items: end;
  gap: 48px;
}

.footer-layout > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-layout nav,
.footer-layout > div {
  display: grid;
  gap: 7px;
  font-size: 12px;
}

.footer-layout > div {
  justify-items: end;
  color: rgba(255, 255, 255, 0.6);
}

.footer-layout nav a:hover,
.footer-layout > div a:hover {
  color: var(--lime);
}

.lightbox {
  width: min(1160px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox::backdrop {
  background: rgba(5, 12, 10, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #07100e;
}

.lightbox p {
  margin: 0;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(17, 24, 22, 0.76);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: min(390px, calc(100% - 40px));
  padding: 14px 17px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

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

@media (max-width: 1180px) {
  h2 { font-size: 54px; }
  .page-shell, .header-shell { width: min(calc(100% - 48px), var(--page)); }
  .hero h1 { font-size: 88px; }
  .manifesto-grid { grid-template-columns: 0.45fr 1.4fr 0.5fr; gap: 36px; }
  .story { grid-template-columns: 1fr 0.8fr; }
  .story-copy { padding-inline: 5vw 4vw; }
  .atlas-heading, .factory-heading { gap: 32px; }
  .atlas-panels { padding-inline: 38px; }
  .quality-title h2 { font-size: 46px; }
  .quality-lines { padding-left: 45px; }
  .quality-lines article { grid-template-columns: 30px 120px 1fr; gap: 14px; }
  .process-rail li { padding-inline: 16px; }
  .contact-layout { gap: 60px; }
  .contact-copy h2 { font-size: 64px; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  h2 { font-size: 46px; }
  .page-shell, .header-shell { width: min(calc(100% - 32px), var(--page)); }
  .header-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-contact { display: none; }
  .menu-button { display: inline-grid; justify-self: end; color: currentColor; }
  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    padding: 16px;
    overflow-y: auto;
    color: var(--ink);
    border-top: 1px solid var(--line);
    background: var(--paper);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 15px 5px; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 720; }
  .hero { min-height: 700px; }
  .hero-content { padding-bottom: 165px; }
  .hero h1 { font-size: 68px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 26px; }
  .hero-actions { justify-self: start; }
  .hero-index { right: 16px; bottom: 18px; left: 16px; grid-template-columns: repeat(3, 1fr) 50px; }
  .hero-index-button { font-size: 0; }
  .hero-index-button span { font-size: 11px; }
  .manifesto { padding-block: 95px; }
  .manifesto-grid { grid-template-columns: 1fr 2fr; }
  .manifesto-copy { grid-column: 2; }
  .manifesto-stat { grid-column: 2; padding-top: 36px; }
  .manifesto-stat strong { font-size: 86px; }
  .story { display: block; }
  .story-visual { position: sticky; top: var(--header-height); z-index: 1; height: 54svh; min-height: 390px; }
  .story-copy { position: relative; z-index: 2; padding: 90px 24px 30px; background: var(--forest-deep); }
  .story-intro { min-height: 42vh; }
  .story-step { min-height: 62vh; }
  .atlas { padding-top: 100px; }
  .atlas-heading { grid-template-columns: 1fr 2fr; }
  .atlas-heading > p:last-child { grid-column: 2; }
  .atlas-stage { grid-template-columns: 1fr; }
  .atlas-media { min-height: 500px; }
  .atlas-panels { min-height: 430px; }
  .formula-lens-stage { height: 68svh; min-height: 560px; }
  .formula-lens-content { grid-template-columns: 1fr; gap: 58px; padding-block: 85px 95px; }
  .formula-lens-grid article { padding-inline: 20px; }
  .formula-lens-grid span { margin-bottom: 52px; }
  .factory { padding-block: 105px; }
  .factory-heading { grid-template-columns: 1fr 2fr; }
  .factory-heading .underlined-link { grid-column: 2; justify-self: start; }
  .factory-wall { width: calc(100% - 32px); min-height: 1080px; grid-template-rows: 320px 280px 240px 240px; }
  .factory-shot-a { grid-column: 1 / 9; grid-row: 1 / 3; }
  .factory-shot-b { grid-column: 9 / 13; grid-row: 1 / 2; }
  .factory-shot-c { grid-column: 9 / 13; grid-row: 2 / 3; }
  .factory-shot-d { grid-column: 1 / 7; grid-row: 3 / 5; }
  .factory-shot-e { grid-column: 7 / 13; grid-row: 3 / 5; }
  .quality { min-height: auto; }
  .quality-visual { position: relative; inset: auto; height: 560px; }
  .quality-content { min-height: auto; grid-template-columns: 1fr; }
  .quality-title { margin: -110px 0 0; }
  .quality-lines { padding: 70px 0 100px; }
  .quality-lines article { grid-template-columns: 36px 150px 1fr; }
  .process { padding-block: 100px; }
  .process-heading { grid-template-columns: 1fr 2fr; }
  .process-rail { grid-template-columns: repeat(2, 1fr); }
  .process-rail li { min-height: 250px; }
  .process-rail li:nth-child(odd) { border-left: 1px solid var(--line); }
  .process-rail li > span { margin-bottom: 38px; }
  .contact { padding-block: 100px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .contact-copy h2 { font-size: 58px; }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .footer-layout > div { justify-items: start; }
}

@media (max-width: 580px) {
  h2 { font-size: 38px; }
  h3 { font-size: 25px; }
  .section-kicker, .micro-label { font-size: 10px; }
  .brand-symbol { width: 34px; height: 34px; }
  .hero { min-height: 680px; }
  .hero-shade { background: rgba(9, 18, 15, 0.64); }
  .hero-frame:first-child img { object-position: 63% center; }
  .hero-content { padding-top: 110px; padding-bottom: 152px; }
  .hero-content .micro-label { padding-top: 0; }
  .hero h1 { max-width: 100%; font-size: 36px; line-height: 0.9; }
  .hero-bottom > p { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-index { grid-template-columns: repeat(3, 1fr) 45px; }
  .hero-index-button { min-width: 0; padding-right: 0; }
  .manifesto { padding-block: 75px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 30px; }
  .manifesto-copy, .manifesto-stat { grid-column: auto; }
  .manifesto-copy > p { font-size: 16px; }
  .manifesto-stat { grid-template-columns: 100px 1fr; align-items: end; }
  .manifesto-stat strong { font-size: 76px; }
  .manifesto-stat span { margin-top: 0; }
  .story-visual { height: 44svh; min-height: 320px; }
  .story-visual-meta { right: 16px; bottom: 16px; left: 16px; }
  .story-visual-meta strong { font-size: 28px; }
  .story-copy { padding: 65px 16px 20px; }
  .story-intro { min-height: 45vh; }
  .story-step { min-height: 68vh; grid-template-columns: 26px 1fr; gap: 12px; }
  .story-step h3 { font-size: 31px; }
  .atlas { padding-top: 75px; }
  .atlas-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 50px; }
  .atlas-heading > p:last-child { grid-column: auto; }
  .atlas-tabs { overflow-x: auto; grid-template-columns: repeat(4, minmax(135px, 1fr)); }
  .atlas-tab { padding-inline: 12px; }
  .atlas-media { min-height: 390px; }
  .atlas-panels { min-height: 390px; padding: 50px 24px; }
  .atlas-panel h3 { font-size: 36px; }
  .formula-lens-stage { height: 72svh; min-height: 520px; }
  .formula-lens-motion { clip-path: polygon(70% 0, 100% 0, 100% 100%, 22% 100%); }
  .formula-lens-coordinates { right: 16px; bottom: 16px; left: 16px; }
  .formula-lens-coordinates span:last-child { max-width: 145px; text-align: right; }
  .formula-lens-content { gap: 45px; padding-block: 70px 80px; }
  .formula-lens-heading h2 { font-size: 38px; }
  .formula-lens-grid { grid-template-columns: 1fr; }
  .formula-lens-grid article { padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); border-left: 0; }
  .formula-lens-grid span { margin-bottom: 26px; }
  .factory { padding-block: 80px; }
  .factory-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 50px; }
  .factory-heading .underlined-link { grid-column: auto; }
  .factory-wall { display: grid; min-height: 0; grid-template-columns: 1fr; grid-template-rows: repeat(5, 260px); }
  .factory-shot-a, .factory-shot-b, .factory-shot-c, .factory-shot-d, .factory-shot-e { grid-column: 1; }
  .factory-shot-a { grid-row: 1; }
  .factory-shot-b { grid-row: 2; }
  .factory-shot-c { grid-row: 3; }
  .factory-shot-d { grid-row: 4; }
  .factory-shot-e { grid-row: 5; }
  .quality-visual { height: 430px; }
  .quality-title { margin-top: -75px; padding: 28px 22px; }
  .quality-title h2 { font-size: 36px; }
  .quality-lines { padding-block: 60px 80px; }
  .quality-lines article { grid-template-columns: 28px 1fr; gap: 10px 14px; }
  .quality-lines article p { grid-column: 2; }
  .process { padding-block: 80px; }
  .process-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 50px; }
  .process-rail { grid-template-columns: 1fr; }
  .process-rail li { min-height: 230px; }
  .process-rail li + li, .process-rail li:nth-child(odd) { border-left: 1px solid var(--line); }
  .contact { padding-block: 80px; }
  .contact-copy h2 { font-size: 48px; }
  .contact-layout { gap: 50px; }
  .contact-links a { grid-template-columns: 26px 62px 1fr; }
  .inquiry-form { padding: 28px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .footer-layout { grid-template-columns: 1fr; gap: 28px; }
}

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

  .ticker-track { animation: none; }
  .formula-lens-scan { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Campaign v2: human ritual, high contrast, restrained geometry */
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  overflow: visible;
}

.brand-mark path {
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  font-size: 17px;
  font-weight: 800;
}

.brand small {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 700;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(11, 13, 12, 0.92);
}

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

.hero {
  min-height: 760px;
  background: #050605;
}

.hero-frame video,
.hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame:first-child video {
  object-position: center;
}

.hero-frame:nth-child(2) img {
  object-position: center;
}

.hero-frame:nth-child(3) img {
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 5, 4, 0.84) 0%, rgba(4, 5, 4, 0.46) 38%, rgba(4, 5, 4, 0.06) 70%),
    linear-gradient(180deg, rgba(4, 5, 4, 0.38) 0%, transparent 28%, rgba(4, 5, 4, 0.5) 100%);
}

.hero-content {
  padding-top: 118px;
  padding-bottom: 146px;
}

.hero-content .micro-label {
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-content .micro-label::before {
  background: var(--lime);
}

.hero h1 {
  display: grid;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-brand {
  display: block;
  font-size: 168px;
  font-weight: 780;
  line-height: 0.72;
}

.hero-discipline {
  display: block;
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 24px;
  font-weight: 520;
  line-height: 1;
}

.hero-bottom {
  grid-template-columns: minmax(0, 510px) auto;
}

.hero-bottom > div:first-child > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.hero-bottom .hero-promise {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 29px;
  font-weight: 650;
  line-height: 1.05;
}

.hero-index {
  right: max(40px, calc((100vw - var(--page)) / 2));
  left: max(40px, calc((100vw - var(--page)) / 2));
}

.hero-index-button {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.capability-ticker {
  background: var(--lime);
}

.ticker-track i {
  border-radius: 0;
  background: var(--ink);
  transform: rotate(45deg);
}

/* Scalp ritual split */
.ritual-intro {
  display: grid;
  min-height: 840px;
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, 0.85fr);
  background: var(--paper);
}

.ritual-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #080908;
}

.ritual-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 5, 4, 0.62) 100%);
  content: "";
}

.ritual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.ritual-media:hover img {
  transform: scale(1.02);
}

.ritual-media-label {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 760;
}

.ritual-media-label span:first-child {
  color: var(--lime);
}

.ritual-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 120px max(48px, 7vw);
  overflow: hidden;
}

.ritual-number {
  position: absolute;
  top: 36px;
  right: 42px;
  color: rgba(11, 13, 12, 0.055);
  font-size: 180px;
  font-weight: 800;
  line-height: 0.8;
  pointer-events: none;
}

.ritual-copy h2 {
  position: relative;
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 72px;
}

.ritual-lead {
  max-width: 570px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 18px;
}

.ritual-points {
  display: grid;
  max-width: 610px;
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
}

.ritual-points div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.ritual-points strong {
  color: var(--ink);
  font-size: 10px;
}

.ritual-points span {
  color: var(--muted);
  font-size: 13px;
}

.ritual-copy .underlined-link {
  width: max-content;
}

/* Real manufacturing story */
.story,
.story-copy {
  background: var(--ink);
}

.story-visual-meta strong,
.story-step > span {
  color: var(--lime);
}

.story-verb {
  color: var(--coral);
}

/* Product directions */
.atlas {
  background: var(--paper);
}

.atlas-stage {
  min-height: 720px;
}

.atlas-media {
  min-height: 680px;
}

.atlas-panels {
  color: var(--white);
  background: var(--ink-soft);
}

.atlas-panel > p {
  color: var(--lime);
}

.atlas-image[data-atlas-image="0"] {
  object-position: 62% center;
}

.atlas-image[data-atlas-image="1"] {
  object-position: center;
}

.atlas-image[data-atlas-image="2"] {
  object-position: 42% center;
}

/* Full-bleed hair impact */
.hair-impact {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  color: var(--white);
  background: #030403;
  isolation: isolate;
}

.hair-impact-media,
.hair-impact-shade {
  position: absolute;
  inset: 0;
}

.hair-impact-media {
  z-index: -2;
}

.hair-impact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hair-impact-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 3, 2, 0.72) 0%, rgba(2, 3, 2, 0.34) 37%, transparent 66%),
    linear-gradient(180deg, rgba(2, 3, 2, 0.18), transparent 45%, rgba(2, 3, 2, 0.7));
}

.hair-impact-content {
  display: flex;
  min-height: 880px;
  flex-direction: column;
  justify-content: center;
  padding-block: 120px;
}

.hair-impact-content h2 {
  max-width: 830px;
  margin-bottom: 30px;
  font-size: 92px;
  line-height: 0.9;
}

.hair-impact-content h2 em {
  color: var(--lime);
  font-style: normal;
  font-weight: inherit;
}

.hair-impact-lead {
  max-width: 520px;
  margin-bottom: 66px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.hair-impact-notes {
  display: flex;
  max-width: 720px;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 760;
}

.hair-impact-notes i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  background: var(--lime);
  transform: rotate(45deg);
}

/* Evidence and conversion */
.factory {
  background: var(--ink);
}

.quality-title {
  background: var(--ink);
}

.process-rail li:hover {
  color: var(--ink);
  background: var(--lime);
}

.process-rail li:hover p {
  color: rgba(11, 13, 12, 0.68);
}

.contact {
  background: var(--ink);
}

.contact-backdrop::after {
  background: rgba(4, 5, 4, 0.87);
}

.inquiry-form {
  background: var(--paper);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(199, 255, 47, 0.42);
}

.footer-brand .brand-mark {
  color: var(--lime);
}

@media (max-width: 1180px) {
  .hero-brand { font-size: 132px; }
  .hero-discipline { font-size: 21px; }
  .ritual-intro { grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr); }
  .ritual-copy { padding-inline: 48px; }
  .ritual-copy h2 { font-size: 58px; }
  .hair-impact-content h2 { font-size: 76px; }
}

@media (max-width: 900px) {
  .mobile-nav {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--ink);
  }
  .mobile-nav a { border-color: rgba(255, 255, 255, 0.15); }
  .hero-brand { font-size: 104px; }
  .hero-discipline { font-size: 18px; }
  .hero-bottom { grid-template-columns: 1fr; }
  .ritual-intro { grid-template-columns: 1fr; }
  .ritual-media { min-height: 64svh; }
  .ritual-copy { min-height: 680px; padding: 105px 9vw; }
  .ritual-copy h2 { max-width: 720px; font-size: 62px; }
  .ritual-lead { max-width: 650px; }
  .atlas-media { min-height: 560px; }
  .hair-impact,
  .hair-impact-content { min-height: 780px; }
  .hair-impact-content h2 { font-size: 68px; }
}

@media (max-width: 580px) {
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: 700px; }
  .hero-frame:first-child video { object-position: 65% center; }
  .hero-frame:nth-child(2) img { object-position: 56% center; }
  .hero-frame:nth-child(3) img { object-position: 35% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 5, 4, 0.72), rgba(4, 5, 4, 0.2)),
      linear-gradient(180deg, rgba(4, 5, 4, 0.46), transparent 34%, rgba(4, 5, 4, 0.75));
  }
  .hero-content { padding-top: 100px; padding-bottom: 150px; }
  .hero-content .micro-label { max-width: 250px; }
  .hero h1 { margin-bottom: 22px; }
  .hero-brand { font-size: 72px; line-height: 0.76; }
  .hero-discipline { margin-top: 16px; padding-top: 9px; font-size: 14px; }
  .hero-bottom > div:first-child > p { max-width: 330px; font-size: 13px; }
  .hero-bottom .hero-promise { margin-bottom: 7px; font-size: 25px; }
  .hero-actions { flex-direction: row; align-items: center; gap: 16px; }
  .hero-actions .button { min-height: 46px; padding-inline: 15px; }
  .hero-index { right: 16px; left: 16px; }
  .ritual-media { min-height: 510px; }
  .ritual-media img { object-position: 52% center; }
  .ritual-media-label { right: 16px; bottom: 16px; left: 16px; }
  .ritual-media-label span:last-child { display: none; }
  .ritual-copy { min-height: 620px; padding: 90px 16px 80px; }
  .ritual-number { top: 34px; right: 16px; font-size: 110px; }
  .ritual-copy h2 { font-size: 43px; }
  .ritual-lead { margin-bottom: 34px; font-size: 16px; }
  .ritual-points div { grid-template-columns: 100px 1fr; gap: 14px; }
  .atlas-image[data-atlas-image="0"] { object-position: 67% center; }
  .atlas-image[data-atlas-image="2"] { object-position: 32% center; }
  .hair-impact,
  .hair-impact-content { min-height: 720px; }
  .hair-impact-media img { object-position: 33% center; }
  .hair-impact-shade {
    background:
      linear-gradient(90deg, rgba(2, 3, 2, 0.58), transparent 86%),
      linear-gradient(180deg, rgba(2, 3, 2, 0.18), rgba(2, 3, 2, 0.78));
  }
  .hair-impact-content { justify-content: flex-end; padding-block: 90px; }
  .hair-impact-content h2 { font-size: 49px; }
  .hair-impact-lead { max-width: 340px; margin-bottom: 38px; font-size: 15px; }
  .hair-impact-notes { flex-wrap: wrap; gap: 9px 12px; }
}

@media (max-height: 760px) and (min-width: 581px) {
  .hero-content { padding-top: 98px; padding-bottom: 128px; }
  .hero-brand { font-size: 116px; }
  .hero-discipline { margin-top: 18px; }
  .hero-bottom .hero-promise { font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame video { display: none; }
  .hero-frame:first-child { background: url("assets/images/campaign-v2/salon-wash-hero.webp") 60% center / cover no-repeat; }
}
