:root {
  --black: #0d0d0c;
  --black-soft: #161614;
  --bone: #f4f0e8;
  --paper: #fffcf7;
  --sand: #c9b48d;
  --acid: #d8ff4f;
  --acid-dark: #536600;
  --ink-muted: #a8a39a;
  --paper-muted: #716a61;
  --line-dark: rgba(244, 240, 232, 0.15);
  --line-light: rgba(13, 13, 12, 0.14);
  --page: min(1440px, calc(100vw - 64px));
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--bone);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

::selection {
  background: var(--acid);
  color: var(--black);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--acid);
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 88px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(13, 13, 12, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--page);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 180, 141, 0.85);
  border-radius: 16px;
  color: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-meta {
  display: grid;
  gap: 1px;
}

.brand-meta strong {
  font-size: 12px;
  letter-spacing: 0.26em;
}

.brand-meta span {
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--bone);
}

.site-nav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--acid);
  color: var(--acid);
}

.site-nav .nav-cta:hover {
  background: var(--acid);
  color: var(--black);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(600px, 1.08fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: 148px max(32px, calc((100vw - 1440px) / 2)) 86px;
  background:
    radial-gradient(circle at 76% 42%, rgba(201, 180, 141, 0.12), transparent 26%),
    var(--black);
}

.hero-grid {
  position: absolute;
  inset: 88px 0 0;
  opacity: 0.42;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

.hero::after {
  content: "SBX";
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  color: rgba(244, 240, 232, 0.025);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(260px, 34vw, 620px);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Arial, Helvetica, sans-serif;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(66px, 7.4vw, 132px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.83;
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--acid);
  font-style: normal;
}

.stakeholder-title {
  max-width: 720px;
  font-size: clamp(64px, 5.5vw, 96px);
  letter-spacing: -0.068em;
  line-height: 0.86;
}

.section-light .section-kicker,
.section-light h2 em {
  color: var(--acid-dark);
}

.section-light :focus-visible {
  outline-color: var(--acid-dark);
}

.hero-lead {
  max-width: 480px;
  margin-bottom: 30px;
  color: #cbc5bb;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--bone);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-acid {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--black);
}

.button-light {
  border-color: var(--black);
  background: var(--black);
  color: var(--paper);
}

.button-ghost:hover {
  background: var(--bone);
  color: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.product-stage {
  position: relative;
  z-index: 2;
  width: min(760px, 55vw);
  height: min(750px, 72vh);
  justify-self: end;
}

.stage-halo {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  inset: 14% 7% 10% 12%;
  border: 1px solid rgba(216, 255, 79, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(216, 255, 79, 0.07), inset 0 0 100px rgba(201, 180, 141, 0.08);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.stage-halo::before,
.stage-halo::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(244, 240, 232, 0.12);
  border-radius: 50%;
}

.stage-halo::after {
  inset: 24%;
}

.product-card {
  --hover-y: 0px;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --rotate: 0deg;
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.22);
  background: #f5f3ee;
  box-shadow: var(--shadow);
  transform: translate3d(var(--parallax-x), calc(var(--parallax-y) + var(--hover-y)), 0) rotate(var(--rotate));
  will-change: transform;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(244, 240, 232, 0.2);
  background: rgba(13, 13, 12, 0.86);
  color: var(--sand);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-boots {
  top: 8%;
  left: 12%;
  width: 73%;
  height: 73%;
  --rotate: -4deg;
}

.product-shaker {
  z-index: 4;
  top: 0;
  right: -1%;
  width: 34%;
  height: 44%;
  --rotate: 6deg;
}

.product-bebe {
  z-index: 3;
  left: -1%;
  bottom: 0;
  width: 38%;
  height: 47%;
  --rotate: -7deg;
}

.proof-rail {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black-soft);
}

.proof-rail > a,
.proof-rail > div {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 28px 32px;
  border-right: 1px solid var(--line-dark);
  text-decoration: none;
  transition: background 180ms ease;
}

.proof-rail > a:hover {
  background: rgba(216, 255, 79, 0.06);
}

.proof-rail strong {
  color: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-rail span {
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-note {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 8px 32px 12px;
  color: #928d84;
  font-size: 10px;
}

.section {
  padding: 138px max(32px, calc((100vw - 1440px) / 2));
}

.section-light {
  background: var(--bone);
  color: var(--black);
}

.section-dark {
  background: var(--black);
  color: var(--bone);
}

.section-heading,
.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 74px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2,
.portfolio-intro h2,
.contact-copy h2,
.legal-hero h1 {
  margin-bottom: 0;
  font-size: clamp(56px, 7vw, 118px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading > p,
.portfolio-intro > p {
  max-width: 450px;
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(18px, 1.5vw, 23px);
}

.section-dark .section-heading > p {
  color: var(--ink-muted);
}

.system-list {
  border-top: 1px solid var(--line-light);
}

.system-row {
  --hover-y: 0px;
  min-height: 136px;
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  transform: translate3d(0, var(--hover-y), 0);
  transition: background 220ms ease, transform 220ms ease;
}

.system-row > span {
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.system-row h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.05em;
}

.system-row p {
  max-width: 620px;
  margin: 0;
  color: var(--paper-muted);
}

.brand-panel {
  --hover-y: 0px;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line-light);
  background: var(--paper);
  transform: translate3d(0, var(--hover-y), 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 78px);
}

.brand-copy > span {
  margin-bottom: 26px;
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy h3 {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding-right: 0.08em;
  font-size: clamp(48px, 4.2vw, 72px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.92;
  white-space: nowrap;
}

.brand-thesis {
  margin-bottom: 22px;
  color: var(--paper-muted);
  font-size: clamp(20px, 1.8vw, 27px);
}

.brand-copy > p:not(.brand-thesis) {
  max-width: 500px;
  margin-bottom: 34px;
  color: var(--paper-muted);
}

.brand-panel > img {
  --scroll-y: 0px;
  width: 100%;
  height: 100%;
  min-height: 680px;
  padding: clamp(28px, 4vw, 64px);
  object-fit: contain;
  object-position: center;
  background: #f3f1ed;
  transform: translate3d(0, var(--scroll-y), 0) scale(0.95);
  transition: transform 120ms linear;
  will-change: transform;
}

.brand-bebelux {
  background: #f7d0a2;
}

.brand-bebelux > img {
  object-position: center;
  background: #f7d0a2;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.proof-card {
  --hover-y: 0px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 4vw, 54px);
  background: var(--black-soft);
  color: var(--bone);
  text-decoration: none;
  transform: translate3d(0, var(--hover-y), 0);
  transition: transform 220ms ease, filter 220ms ease;
}

.proof-card-acid {
  background: var(--acid);
  color: var(--black);
}

.proof-card-acid:focus-visible {
  outline-color: var(--black);
}

.proof-card > span {
  color: var(--sand);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-card-acid > span {
  color: rgba(13, 13, 12, 0.6);
}

.proof-card strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 4vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.proof-card p {
  margin: 0;
  color: var(--ink-muted);
}

.proof-card-acid p,
.proof-card-acid small {
  color: rgba(13, 13, 12, 0.72);
}

.proof-card small {
  color: #928d84;
  font-size: 10px;
}

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

.method-card {
  --hover-y: 0px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border: 1px solid var(--line-light);
  background: var(--paper);
  transform: translate3d(0, var(--hover-y), 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.corporate-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 18px;
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.corporate-facts > div {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.corporate-facts > div:last-child {
  border-right: 0;
}

.corporate-facts dt,
.value-driver-grid span {
  margin-bottom: 10px;
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.corporate-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 800;
  line-height: 1.3;
}

.value-driver-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-driver-grid article {
  --hover-y: 0px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line-light);
  background: var(--paper);
  transform: translate3d(0, var(--hover-y), 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.value-driver-grid h3 {
  margin: 52px 0 14px;
  font-size: clamp(27px, 2.4vw, 40px);
  letter-spacing: -0.05em;
}

.value-driver-grid p {
  margin: 0;
  color: var(--paper-muted);
}

.method-card > span {
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.method-card h3 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.method-card p {
  margin: 0;
  color: var(--paper-muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 90px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 30px;
}

.contact-copy > p {
  max-width: 590px;
  color: var(--ink-muted);
  font-size: clamp(18px, 1.5vw, 23px);
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.contact-direct a {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--bone);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.contact-direct span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  background: var(--black-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: grid;
  gap: 9px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.checkbox-label {
  color: #b8b2a8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--bone);
}

.field input {
  min-height: 52px;
}

.field textarea {
  min-height: 142px;
  padding: 15px 0;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--acid);
  outline: 0;
}

.checkbox-field {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--acid);
}

.checkbox-label {
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.checkbox-label a {
  color: var(--bone);
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.form-note,
.form-status {
  margin: 0;
  color: #928d84;
  font-size: 11px;
}

.form-status {
  min-height: 1.5em;
  margin-top: 14px;
  color: var(--acid);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.footer-main {
  width: var(--page);
  min-height: 240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 50px;
  align-items: center;
}

.footer-statement strong {
  display: block;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.footer-statement span,
.footer-column span {
  color: var(--ink-muted);
  font-size: 11px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column > span {
  margin-bottom: 2px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: var(--bone);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  width: var(--page);
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  color: #98938b;
  font-size: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  background: var(--bone);
  color: var(--black);
}

.legal-hero {
  padding: 178px max(32px, calc((100vw - 1160px) / 2)) 72px;
  border-bottom: 1px solid var(--line-light);
}

.legal-hero .eyebrow {
  color: var(--paper-muted);
}

.legal-content {
  width: min(920px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 78px 0 124px;
}

.legal-content h2 {
  margin: 52px 0 16px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 21px;
}

.legal-content p,
.legal-content li {
  color: #514c45;
  line-height: 1.72;
}

.legal-content a {
  color: var(--black);
  text-underline-offset: 4px;
}

.legal-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-light);
  background: var(--paper);
}

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

.legal-updated {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  font-size: 12px;
}

.not-found {
  min-height: calc(100vh - 300px);
  display: grid;
  place-items: center;
  padding: 160px 32px 90px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--acid);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(100px, 22vw, 300px);
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.not-found h1 {
  margin: 30px 0 22px;
  font-size: clamp(42px, 7vw, 90px);
}

.js [data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1), translate 620ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease, background 220ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (hover: hover) and (pointer: fine) {
  .system-row:hover {
    --hover-y: -3px;
    background: rgba(13, 13, 12, 0.025);
  }

  .brand-panel:hover,
  .method-card:hover,
  .value-driver-grid article:hover {
    --hover-y: -5px;
    border-color: rgba(13, 13, 12, 0.28);
    box-shadow: 0 24px 70px rgba(13, 13, 12, 0.1);
  }

  .proof-card:hover {
    --hover-y: -5px;
    filter: brightness(1.06);
  }
}

@media (max-width: 1160px) {
  .hero {
    min-height: 1060px;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 154px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .product-stage {
    width: min(760px, 88vw);
    height: 610px;
    justify-self: center;
  }

  .section-heading,
  .portfolio-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .brand-panel {
    grid-template-columns: 1fr;
  }

  .brand-panel > img {
    height: auto;
    min-height: 520px;
    max-height: 640px;
    aspect-ratio: 16 / 10;
  }

  .corporate-facts,
  .value-driver-grid {
    grid-template-columns: 1fr 1fr;
  }

  .corporate-facts > div:nth-child(2) {
    border-right: 0;
  }

  .corporate-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

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

  .proof-card:first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 960px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header,
  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 15px;
  }

  .brand-meta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(13, 13, 12, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 0;
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header,
  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 15px;
  }

  .brand-meta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(13, 13, 12, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero {
    min-height: 970px;
    gap: 10px;
    padding: 118px 18px 54px;
  }

  .hero-grid {
    inset: 72px 0 0;
    background-size: 44px 44px;
  }

  .eyebrow {
    max-width: 330px;
    font-size: 9px;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(54px, 16vw, 76px);
    line-height: 0.86;
  }

  .stakeholder-title {
    font-size: clamp(44px, 12vw, 58px);
    letter-spacing: -0.06em;
  }

  .hero-lead {
    font-size: 17px;
  }

  .product-stage {
    width: 100%;
    height: 390px;
    margin-top: 18px;
  }

  .product-card figcaption {
    display: none;
  }

  .proof-rail {
    grid-template-columns: 1fr 1fr;
  }

  .proof-rail > a,
  .proof-rail > div {
    min-height: 122px;
    padding: 22px 18px;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-rail strong {
    font-size: 28px;
  }

  .proof-note {
    padding: 10px 18px 14px;
  }

  .section {
    padding: 92px 18px;
  }

  .section-heading,
  .portfolio-intro {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .portfolio-intro h2,
  .contact-copy h2,
  .legal-hero h1 {
    font-size: clamp(40px, 10.5vw, 58px);
  }

  .section-heading > p,
  .portfolio-intro > p {
    max-width: 100%;
  }

  .system-row {
    min-height: 0;
    grid-template-columns: 44px 1fr;
    gap: 8px 14px;
    padding: 28px 0;
  }

  .system-row p {
    grid-column: 2;
  }

  .brand-panel {
    min-height: 0;
  }

  .brand-copy {
    padding: 38px 26px 44px;
  }

  .brand-copy h3 {
    font-size: clamp(44px, 12vw, 56px);
  }

  .brand-panel > img {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
    padding: 24px;
  }

  .corporate-facts,
  .value-driver-grid {
    grid-template-columns: 1fr;
  }

  .corporate-facts > div,
  .corporate-facts > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .corporate-facts > div:last-child {
    border-bottom: 0;
  }

  .value-driver-grid article {
    min-height: 240px;
  }

  .proof-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .proof-card:first-child {
    grid-column: auto;
  }

  .proof-card,
  .method-card {
    min-height: 300px;
  }

  .contact-section {
    gap: 54px;
  }

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

  .field-full,
  .checkbox-field,
  .form-footer {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .legal-hero {
    padding: 132px 18px 48px;
  }

  .legal-content {
    width: calc(100vw - 36px);
    padding: 52px 0 90px;
  }
}

@media (max-width: 430px) {
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .product-boots {
    left: 8%;
    width: 80%;
  }

  .product-shaker {
    width: 38%;
  }

  .product-bebe {
    width: 41%;
  }

  .proof-rail {
    grid-template-columns: 1fr;
  }

  .proof-note {
    grid-column: 1;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    translate: none;
  }

  .stage-halo,
  .product-card {
    --parallax-x: 0px !important;
    --parallax-y: 0px !important;
  }

  .brand-panel > img {
    --scroll-y: 0px !important;
  }
}
