:root {
  --ink: #0d0d0c;
  --ink-2: #1c1b19;
  --bone: #edebe4;
  --bone-2: #e2dfd5;
  --paper: #f7f6f2;
  --muted: #6f6c63;
  --line: rgba(13, 13, 12, .14);
  --line-l: rgba(237, 235, 228, .16);
  --accent: #ff4a1c;
  --lime: #c7ff3d;
  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --gutter: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.035em; line-height: .95; text-wrap: balance; }
p { margin: 0; }
.serif { font-family: var(--serif); font-style: italic; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.tag { font-family: var(--mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.tag--light { color: rgba(237, 235, 228, .55); }
.big { font-size: clamp(2.4rem, 6.5vw, 6rem); }
.huge { font-size: clamp(2.8rem, 7.5vw, 7.2rem); }

/* Pills */
.pill {
  --bg: transparent; --fg: currentColor;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid currentColor;
  background: var(--bg); color: var(--fg);
  font-family: var(--display); font-weight: 600; font-size: .95rem; text-decoration: none;
  cursor: pointer; white-space: nowrap; position: relative; overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.pill::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--ink); transform: translateY(101%); transition: transform .5s var(--ease);
}
.pill:hover::before { transform: translateY(0); }
.pill--accent { --bg: var(--accent); --fg: var(--ink); border-color: var(--accent); }
.pill--accent:hover { color: var(--accent); }
.pill--ghost:hover { color: var(--bone); }
.pill--ghost::before { background: rgba(237,235,228,.12); }
.pill--dark { --bg: var(--ink); --fg: var(--bone); border-color: var(--ink); }
.pill--dark::before { background: var(--accent); }
.pill--dark:hover { color: var(--ink); }
.pill--lg { padding: 18px 30px; font-size: 1.05rem; }
.pill--block { width: 100%; }
.arrow { display: inline-block; transition: transform .4s var(--ease); }
.pill:hover .arrow { transform: translate(3px, -3px); }

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column; justify-content: space-between; padding: var(--gutter);
  transition: clip-path 1s var(--ease);
  clip-path: inset(0 0 0 0);
}
.loader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.loader__tag { font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; opacity: .6; }
.loader__count { font-size: clamp(5rem, 22vw, 18rem); font-weight: 800; letter-spacing: -0.06em; line-height: .8; align-self: flex-end; font-variant-numeric: tabular-nums; }

/* Grain */
.grain {
  position: fixed; inset: -50%; z-index: 150; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(6) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-3%,2%)} 40%{transform:translate(2%,-4%)} 60%{transform:translate(-4%,-1%)} 80%{transform:translate(3%,3%)} 100%{transform:translate(0,0)} }

/* Cursor */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 180; pointer-events: none;
  width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%;
  background: var(--bone); mix-blend-mode: difference;
  display: grid; place-items: center;
  transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background .3s;
}
.cursor.is-big { width: 84px; height: 84px; margin: -42px 0 0 -42px; background: var(--accent); mix-blend-mode: normal; }
.cursor__label { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); opacity: 0; transition: opacity .2s; }
.cursor.is-big .cursor__label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* Nav */
.nav {
  position: fixed; top: env(safe-area-inset-top, 0px); left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px var(--gutter); color: var(--bone); pointer-events: none;
}
.nav > * { pointer-events: auto; }
.logo, .nav__links { background: rgba(13,13,12,.55); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); border: 1px solid rgba(237,235,228,.12); border-radius: 999px; }
.logo { padding: 8px 18px; }
.nav__links { padding: 5px; }
.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -0.05em; text-decoration: none; }
.logo sup { font-size: .5em; font-weight: 400; }
.nav__links { display: flex; gap: 6px; font-size: .9rem; }
.nav__links a { text-decoration: none; padding: 8px 14px; border-radius: 999px; transition: background .3s; }
.nav__links a:hover { background: rgba(237,235,228,.14); }

/* Hero */
.hero {
  position: relative; min-height: 100svh; background: var(--ink); color: var(--bone); overflow: hidden;
  display: grid; grid-template-rows: auto 1fr auto; padding: 110px var(--gutter) 40px;
}
.hero__gl { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,12,.92) 0%, rgba(13,13,12,.55) 22%, transparent 45%); pointer-events: none; z-index: 1; }
.hero > *:not(canvas) { position: relative; z-index: 2; }
.hero__tags { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; opacity: .7; }
.hero__title { align-self: center; font-size: clamp(3.6rem, 15vw, 16rem); font-weight: 800; letter-spacing: -0.065em; line-height: .84; margin: 40px 0; mix-blend-mode: difference; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line--indent { padding-left: 12vw; }
.hero__title .word { display: inline-block; }
.hero__title em { font-weight: 400; letter-spacing: -0.03em; padding-right: .06em; }
.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.hero__lead { max-width: 460px; font-size: 1.05rem; color: rgba(237,235,228,.78); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll { position: absolute !important; right: var(--gutter); top: 50%; display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--mono); font-size: .65rem; letter-spacing: .2em; writing-mode: vertical-rl; opacity: .6; }
.hero__scroll i { width: 1px; height: 60px; background: linear-gradient(var(--bone), transparent); animation: drip 2s var(--ease) infinite; }
@keyframes drip { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* Ticker */
.ticker { background: var(--accent); color: var(--ink); overflow: hidden; padding: 18px 0; transform: rotate(-2deg) scale(1.05); margin: -20px 0; position: relative; z-index: 5; }
.ticker__track { display: flex; align-items: center; gap: 36px; width: max-content; will-change: transform; }
.ticker span { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.04em; text-transform: uppercase; white-space: nowrap; }
.ticker span.o { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.ticker b { font-size: 2rem; }

/* Manifesto */
.manifesto { padding: clamp(120px, 18vw, 240px) var(--gutter) clamp(90px, 12vw, 160px); display: grid; gap: 48px; }
.manifesto__text { font-size: clamp(1.9rem, 4.6vw, 4.4rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.035em; max-width: 22ch; max-width: 1400px; }
.manifesto__text .w { opacity: .14; transition: opacity .2s; }
.manifesto__text .w.on { opacity: 1; }
.no-js .manifesto__text .w, .reduce .manifesto__text .w { opacity: 1; }
.manifesto__sign { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 28px; }
.manifesto__sign .serif { font-size: clamp(1.3rem, 2.4vw, 2rem); max-width: 30ch; line-height: 1.15; }

/* Services */
.services { background: var(--ink); color: var(--bone); padding: clamp(90px, 12vw, 160px) var(--gutter); border-radius: 36px 36px 0 0; }
.services__head { display: grid; gap: 20px; margin-bottom: 64px; max-width: 1200px; }
.stack { display: grid; gap: 24px; }
.scard {
  position: sticky; top: calc(96px + var(--i, 0) * 18px);
  background: var(--c); color: var(--ink); border-radius: 28px;
  padding: clamp(24px, 4vw, 48px); min-height: 360px;
  display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: auto 1fr auto; gap: 18px 48px;
  transform-origin: center top; will-change: transform;
  box-shadow: 0 -20px 60px rgba(0,0,0,.35);
}
.scard__meta { grid-column: 1 / -1; display: flex; justify-content: space-between; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(13,13,12,.2); padding-bottom: 14px; }
.scard h3 { font-size: clamp(2.2rem, 5.5vw, 5rem); align-self: end; }
.scard p { font-size: 1.15rem; max-width: 36ch; align-self: end; }
.scard ul { grid-column: 1 / -1; list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.scard li { font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; padding: 8px 14px; border: 1px solid rgba(13,13,12,.35); border-radius: 999px; }

/* Work */
.work { background: var(--bone); }
.work__pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; gap: 40px; padding: clamp(90px, 10vw, 120px) 0 60px; overflow: hidden; }
.work__head { padding: 0 var(--gutter); display: grid; gap: 16px; }
.work__note { font-family: var(--mono); font-size: .8rem; color: var(--muted); }
.work__track { display: flex; gap: 24px; padding: 0 var(--gutter); width: max-content; will-change: transform; }
.wcard {
  width: min(420px, 78vw); flex-shrink: 0; background: var(--paper); border-radius: 26px; overflow: hidden;
  display: flex; flex-direction: column; transform-style: preserve-3d; transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  box-shadow: 0 1px 0 var(--line);
}
.wcard:hover { box-shadow: 0 40px 80px -30px rgba(13,13,12,.35); }
.wcard__art { position: relative; aspect-ratio: 4 / 4.2; max-width: 100%; overflow: hidden; background: radial-gradient(120% 90% at 30% 20%, var(--g1), var(--g2) 70%); }
.wcard__art svg { position: absolute; inset: 8% 10%; width: 80%; height: 84%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); will-change: transform; }
.wcard__art::after { content: attr(data-garment); position: absolute; left: 16px; top: 14px; font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.wcard__info { padding: 22px 24px 26px; display: grid; gap: 10px; }
.wcard__sku { font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; color: var(--muted); }
.wcard h3 { font-size: 2rem; }
.wcard p { color: #3b3a36; font-size: .98rem; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.chips span { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; padding: 6px 10px; border-radius: 999px; background: var(--bone-2); }
.wcard--end { background: var(--ink); color: var(--bone); justify-content: space-between; padding: 32px; text-decoration: none; min-height: 100%; }
.wcard--end .serif { font-size: 1.6rem; }
.wcard__endbig { font-size: clamp(3rem, 5vw, 4.4rem); font-weight: 800; letter-spacing: -0.05em; line-height: .9; }
.wcard--end .pill { align-self: flex-start; }

/* Ad check */
.check { background: var(--bone-2); padding: clamp(90px, 12vw, 160px) var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.check__left { display: grid; gap: 20px; position: sticky; top: 100px; }
.gauge { background: var(--ink); color: var(--bone); border-radius: 28px; padding: 28px; display: grid; gap: 14px; justify-items: center; text-align: center; margin-top: 12px; }
.gauge__svg { width: 100%; max-width: 280px; overflow: visible; }
.gauge__bg, .gauge__fg { fill: none; stroke-width: 14; stroke-linecap: round; }
.gauge__bg { stroke: rgba(237,235,228,.12); }
.gauge__fg { stroke: var(--accent); stroke-dasharray: 267; stroke-dashoffset: 267; transition: stroke-dashoffset .8s var(--ease), stroke .5s; }
.gauge__num { font-size: 4rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1; margin-top: -70px; font-variant-numeric: tabular-nums; }
.gauge__num small { font-size: 1.4rem; opacity: .5; }
.gauge__verdict { max-width: 40ch; color: rgba(237,235,228,.8); min-height: 4.6em; }
.checklist { display: grid; gap: 10px; }
.checklist label {
  display: flex; gap: 18px; align-items: center; padding: 22px 24px; border-radius: 20px;
  background: var(--paper); cursor: pointer; transition: transform .4s var(--ease), background .3s;
}
.checklist label:hover { transform: translateX(8px); }
.checklist input { appearance: none; -webkit-appearance: none; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--ink); display: grid; place-items: center; cursor: pointer; margin: 0; transition: background .3s; }
.checklist input::after { content: "✓"; font-size: .9rem; font-weight: 800; color: var(--ink); transform: scale(0); transition: transform .35s var(--ease); }
.checklist input:checked { background: var(--accent); border-color: var(--accent); }
.checklist input:checked::after { transform: scale(1); }
.checklist label:has(input:checked) { background: var(--ink); color: var(--bone); }
.checklist b { display: block; font-size: 1.2rem; letter-spacing: -0.02em; }
.checklist span { font-size: .92rem; color: inherit; opacity: .75; }
.checklist b { opacity: 1; }

/* Process */
.process { background: var(--ink); color: var(--bone); padding: clamp(90px, 12vw, 160px) var(--gutter); }
.process__rows { margin-top: 40px; }
.prow { display: grid; grid-template-columns: 120px 1.2fr 1fr; gap: 24px; align-items: baseline; padding: 30px 0; border-top: 1px solid var(--line-l); position: relative; }
.prow:last-child { border-bottom: 1px solid var(--line-l); }
.prow__n { font-family: var(--mono); font-size: .85rem; color: var(--accent); }
.prow h3 { font-size: clamp(1.8rem, 4.4vw, 4rem); transition: transform .5s var(--ease), color .3s; }
.prow p { color: rgba(237,235,228,.65); }
.prow:hover h3 { transform: translateX(16px); color: var(--accent); }

/* Audit */
.audit { background: var(--accent); padding: clamp(90px, 12vw, 160px) var(--gutter); display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.audit .tag { color: rgba(13,13,12,.6); }
.audit__left { display: grid; gap: 24px; }
.audit__left > p { font-size: 1.15rem; max-width: 44ch; }
.audit .muted { color: rgba(13,13,12,.65); }
.label-tag { background: var(--paper); border-radius: 6px 6px 18px 18px; padding: 22px; max-width: 360px; font-family: var(--mono); font-size: .8rem; position: relative; transform: rotate(-3deg); box-shadow: 0 30px 50px -20px rgba(0,0,0,.35); }
.label-tag::before { content: ""; position: absolute; top: 12px; left: 50%; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%; background: var(--accent); box-shadow: inset 0 2px 3px rgba(0,0,0,.3); }
.label-tag__row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(13,13,12,.3); margin-top: 18px; }
.label-tag__row:last-of-type { margin-top: 0; border-bottom: 0; font-weight: 500; font-size: 1rem; }
.label-tag ul { list-style: none; padding: 8px 0; margin: 0; border-bottom: 1px dashed rgba(13,13,12,.3); }
.label-tag li { padding: 4px 0; }
.label-tag li::before { content: "+ "; color: var(--accent); }
.barcode { height: 40px; margin-top: 10px; background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 5px, transparent 5px 8px, var(--ink) 8px 11px, transparent 11px 12px); }

.form { background: var(--ink); color: var(--bone); border-radius: 30px; padding: clamp(22px, 3.5vw, 40px); display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: grid; gap: 8px; font-size: .85rem; font-weight: 500; }
.form label i { font-style: normal; opacity: .5; font-family: var(--mono); font-size: .7rem; }
.form input, .form select, .form textarea {
  font: inherit; font-size: 1rem; color: var(--bone); background: transparent;
  border: 0; border-bottom: 1px solid rgba(237,235,228,.3); border-radius: 0; padding: 10px 0; width: 100%;
  transition: border-color .3s;
}
.form select { appearance: none; -webkit-appearance: none; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23edebe4' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 4px center; }
.form select option { color: var(--ink); }
.form input::placeholder, .form textarea::placeholder { color: rgba(237,235,228,.35); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form .invalid { border-color: #ff8a6b; }
.hp { position: absolute; left: -5000px; }
.fchips { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.fchips legend { font-size: .85rem; font-weight: 500; margin-bottom: 10px; }
.fchips label { display: inline-flex; }
.fchips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.fchips span { padding: 9px 16px; border: 1px solid rgba(237,235,228,.3); border-radius: 999px; cursor: pointer; font-size: .9rem; transition: all .3s var(--ease); }
.fchips input:checked + span { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.fchips input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.form .pill--accent:hover { color: var(--ink); }
.form .pill--accent::before { background: var(--lime); }
.form__note { font-family: var(--mono); font-size: .72rem; text-align: center; opacity: .55; }
.form__status { text-align: center; font-weight: 600; }
.form__status.err { color: #ff8a6b; }
.form__status a { color: var(--accent); }
.form--done { text-align: center; padding: 64px 32px; }
.form--done h3 { font-size: 3rem; margin-bottom: 16px; }
.form--done p { margin-bottom: 10px; }

/* Fit */
.fit { padding: clamp(80px, 10vw, 140px) var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fit__col { background: var(--paper); border-radius: 28px; padding: clamp(24px, 3.5vw, 44px); }
.fit__col--no { background: transparent; border: 1px solid var(--line); }
.fit ul { list-style: none; padding: 0; margin: 20px 0 0; }
.fit li { font-size: clamp(1.1rem, 1.8vw, 1.45rem); font-weight: 500; letter-spacing: -0.02em; padding: 14px 0; border-top: 1px solid var(--line); display: flex; gap: 14px; }
.fit li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.fit__col--no li { color: var(--muted); }
.fit__col--no li::before { content: "✕"; color: var(--muted); }

/* FAQ */
.faq { padding: 0 var(--gutter) clamp(90px, 12vw, 160px); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 96px); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 26px 0; font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; font-weight: 400; transition: transform .5s var(--ease), background .3s; }
.faq details[open] summary::after { transform: rotate(135deg); background: var(--accent); border-color: var(--accent); }
.faq details p { padding: 0 0 26px; color: #3b3a36; max-width: 60ch; }

/* Footer */
.footer { background: var(--ink); color: var(--bone); padding: clamp(60px, 8vw, 100px) var(--gutter) 28px; border-radius: 36px 36px 0 0; }
.footer__cta { display: grid; text-decoration: none; }
.footer__cta .serif { font-size: clamp(1.3rem, 2.6vw, 2.2rem); }
.footer__big { font-size: clamp(6rem, 30vw, 30rem); font-weight: 800; letter-spacing: -0.08em; line-height: .8; display: flex; align-items: flex-start; transition: color .5s var(--ease); }
.footer__big span { font-size: .3em; margin-left: .1em; transition: transform .6s var(--ease); }
.footer__cta:hover .footer__big { color: var(--accent); }
.footer__cta:hover .footer__big span { transform: translate(10px, -10px) rotate(0deg); }
.footer__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line-l); font-family: var(--mono); font-size: .75rem; color: rgba(237,235,228,.6); }
.footer__row a { text-decoration: none; }
.footer__row a:hover { color: var(--accent); }

.sticky-cta { display: none; }

/* Responsive */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .check, .audit, .faq, .fit { grid-template-columns: 1fr; }
  .check__left { position: static; }
  .scard { grid-template-columns: 1fr; min-height: 0; }
  .prow { grid-template-columns: 60px 1fr; }
  .prow p { grid-column: 2; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { padding-top: 90px; }
  .hero__tags span:nth-child(n+2) { display: none; }
  .hero__title { font-size: 19vw; }
  .hero__title .line--indent { padding-left: 6vw; }
  .hero::after { background: linear-gradient(to top, rgba(13,13,12,.95) 0%, rgba(13,13,12,.8) 38%, transparent 62%); }
  .hero__scroll { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .work__pin { min-height: 0; }
  .work__track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .work__track::-webkit-scrollbar { display: none; }
  .wcard { scroll-snap-align: center; }
  .scard { top: calc(80px + var(--i, 0) * 12px); }
  .label-tag { transform: rotate(-2deg); }
  .sticky-cta {
    display: block; position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 90;
    text-align: center; padding: 16px; border-radius: 999px; background: var(--accent); color: var(--ink);
    font-weight: 700; text-decoration: none; box-shadow: 0 14px 30px -10px rgba(0,0,0,.5);
    transition: transform .4s var(--ease), opacity .4s;
  }
  .sticky-cta.hide { transform: translateY(160%); opacity: 0; pointer-events: none; }
  .footer { padding-bottom: 100px; }
}
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scroll i { animation: none; }
  .loader { display: none; }
  * { transition-duration: .01ms !important; }
}

/* Failsafes: loader never blocks the page, hero still looks good without WebGL */
.loader { animation: loaderOut .01s 4s forwards; }
@keyframes loaderOut { to { visibility: hidden; opacity: 0; } }
.hero.no-gl { background: radial-gradient(70% 60% at 70% 70%, #ff4a1c 0%, transparent 60%), radial-gradient(60% 60% at 20% 20%, #3a3934 0%, transparent 60%), var(--ink); }
.hero.no-gl .hero__gl { display: none; }

/* Portfolio photos (drop files into images/work/ to replace the illustrations) */
.wcard__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wcard__art.has-img::after { display: none; }

/* Collections hover list */
.collections { padding: clamp(90px, 12vw, 160px) var(--gutter); position: relative; background: var(--bone); }
.collections__head { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.clist { list-style: none; margin: 0; padding: 0; }
.clist li {
  --sw: var(--ink);
  display: grid; grid-template-columns: 70px 1fr auto 56px; align-items: center; gap: 20px;
  padding: 18px 0; border-top: 1px solid var(--line); cursor: default; position: relative;
}
.clist li:last-child { border-bottom: 1px solid var(--line); }
.clist li::after { content: ""; width: 44px; height: 44px; border-radius: 50%; background: var(--sw); justify-self: end; transition: transform .5s var(--ease); }
.clist li:hover::after { transform: scale(1.25) rotate(90deg); }
.clist__n { font-family: var(--mono); font-size: .8rem; color: var(--muted); }
.clist__t { font-size: clamp(2rem, 6vw, 5.4rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1; transition: transform .5s var(--ease), color .3s; }
.clist__k { font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.clist li:hover .clist__t { transform: translateX(24px); font-style: italic; }
.clist li[data-style="geo"] { --sw: conic-gradient(from 45deg, #ff4a1c 0 25%, #1c5bff 0 50%, #ffe14d 0 75%, #0d0d0c 0); }
.clist li[data-style="retro"] { --sw: radial-gradient(circle at 50% 50%, #f3d9a4 0 30%, #c8452c 31% 55%, #2d5a4a 56%); }
.clist li[data-style="abstract"] { --sw: radial-gradient(circle at 30% 30%, #ff5ea8, transparent 45%), radial-gradient(circle at 70% 60%, #3ad1ff, transparent 50%), radial-gradient(circle at 40% 80%, #ffe14d, transparent 45%), #6a2cff; }
.clist li[data-style="street"] { --sw: repeating-linear-gradient(-45deg, #0d0d0c 0 6px, #f2f0ea 6px 12px); }
.clist li[data-style="mini"] { --sw: radial-gradient(circle, #0d0d0c 0 12%, #f2f0ea 13%); box-shadow: none; }
.clist li[data-style="nature"] { --sw: radial-gradient(circle at 30% 70%, #c7e84a, transparent 50%), radial-gradient(circle at 70% 30%, #2f6b3a, transparent 55%), #5b6b4a; }
.clist li[data-style="tech"] { --sw: linear-gradient(#0000 0 0), repeating-linear-gradient(0deg, #3dfcff55 0 1px, transparent 1px 7px), repeating-linear-gradient(90deg, #ff3df255 0 1px, transparent 1px 7px), #0a0620; }
.clist li[data-style="heritage"] { --sw: repeating-conic-gradient(#b3261e 0 25%, #e8b33c 0 50%); }
.cpreview {
  position: fixed; left: 0; top: 0; width: 260px; height: 260px; pointer-events: none; z-index: 60;
  background: var(--sw, var(--ink)); background-size: cover;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M70 26 Q100 44 130 26 L168 44 L188 82 L158 96 L150 82 L150 184 Q100 192 50 184 L50 82 L42 96 L12 82 L32 44 Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M70 26 Q100 44 130 26 L168 44 L188 82 L158 96 L150 82 L150 184 Q100 192 50 184 L50 82 L42 96 L12 82 L32 44 Z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0; transform: scale(.6); transition: opacity .3s, transform .5s var(--ease);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
}
.cpreview.on { opacity: 1; }

/* Testimonial */
.quote { background: var(--ink); color: var(--bone); padding: clamp(90px, 12vw, 160px) var(--gutter); }
.quote blockquote { margin: 32px 0 0; display: grid; gap: 24px; }
.quote__stars { color: var(--accent); letter-spacing: .2em; font-size: 1.2rem; }
.quote__text { font-size: clamp(2rem, 5.2vw, 5rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; max-width: 18ch; text-wrap: balance; }
.quote footer { font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(237,235,228,.6); }

/* Audit right column */
.audit__right { display: grid; gap: 32px; justify-items: start; }
.audit__right .label-tag { max-width: 400px; width: 100%; }

@media (max-width: 760px) {
  .clist li { grid-template-columns: 36px 1fr 36px; gap: 12px; }
  .clist li::after { width: 30px; height: 30px; }
  .clist__k { display: none; }
  .cpreview { display: none; }
}
.nav.on-accent .pill--accent { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* Portfolio cards as buttons with real boards */
button.wcard { font: inherit; color: inherit; text-align: left; border: 0; padding: 0; cursor: pointer; }
.work .wcard__art { aspect-ratio: 4 / 4.4; background: var(--ink); }
.wcard__art img { object-position: top center; transition: transform .8s var(--ease); }
.wcard__art::before { content: "View board ↗"; position: absolute; right: 14px; bottom: 14px; z-index: 2; font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; background: var(--accent); color: var(--ink); padding: 6px 10px; border-radius: 999px; opacity: 0; transform: translateY(8px); transition: all .4s var(--ease); }
.wcard:hover .wcard__art::before, .wcard:focus-visible .wcard__art::before { opacity: 1; transform: none; }
@media (max-height: 820px) and (min-width: 761px) { .work .wcard { width: min(360px, 78vw); } .work .wcard__art { aspect-ratio: 4 / 3.6; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 170; background: rgba(13,13,12,.94); backdrop-filter: blur(8px); }
.lightbox__scroll { position: absolute; inset: 0; overflow-y: auto; padding: 70px var(--gutter) 40px; display: flex; justify-content: center; align-items: flex-start; }
.lightbox__scroll img { width: min(900px, 100%); height: auto; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close { position: fixed; top: calc(16px + env(safe-area-inset-top, 0px)); right: var(--gutter); z-index: 2; font: 600 .9rem var(--display); color: var(--ink); background: var(--accent); border: 0; border-radius: 999px; padding: 12px 20px; cursor: pointer; }

/* Case study */
.case { background: var(--paper); padding: clamp(90px, 12vw, 160px) var(--gutter); }
.case__head { display: grid; gap: 20px; margin-bottom: 56px; max-width: 1300px; }
.case__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.case__img { margin: 0; overflow: hidden; border-radius: 22px; background: var(--ink); }
.case__img { position: relative; }
.case__img img { position: absolute; left: 0; top: -8%; width: 100%; height: 116%; object-fit: cover; display: block; will-change: transform; }
.case__img--wide { grid-column: 1 / 9; aspect-ratio: 16 / 10.5; }
.case__facts { grid-column: 9 / 13; display: grid; gap: 22px; align-content: center; }
.case__facts p { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; margin-top: 6px; }
.case__img--tall { grid-column: 1 / 6; aspect-ratio: 1 / 0.95; }
.case__img--wide2 { grid-column: 6 / 13; aspect-ratio: 16 / 9.4; align-self: end; }
.shipped { margin-top: 64px; }
.shipped ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.shipped li { background: var(--paper); padding: 26px; color: var(--muted); font-size: .95rem; display: grid; gap: 6px; }
.shipped b { color: var(--ink); font-size: 1.25rem; letter-spacing: -0.02em; }

/* Two testimonials */
.quote__list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); margin-top: 32px; }
.quote__list blockquote { margin: 0; }
.quote__list .quote__text { font-size: clamp(1.7rem, 3.4vw, 3.4rem); }

@media (max-width: 960px) {
  .case__img--wide, .case__facts, .case__img--tall, .case__img--wide2 { grid-column: 1 / -1; }
  .shipped ul { grid-template-columns: 1fr 1fr; }
  .quote__list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .shipped ul { grid-template-columns: 1fr; } }

/* ===== Hero v2: readable headline + 3D T-shirt ===== */
.hero { grid-template-rows: auto 1fr; padding-bottom: 56px; }
.hero::after { display: none; }
.hero__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 78% 55%, rgba(255,74,28,.28), transparent 70%),
    radial-gradient(35% 40% at 15% 90%, rgba(199,255,61,.08), transparent 70%),
    linear-gradient(180deg, #0d0d0c 0%, #141311 100%); }
.hero__main { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.hero__copy { display: grid; gap: 28px; }
.hero__title { mix-blend-mode: normal; margin: 0; font-size: clamp(3rem, 6.4vw, 6.8rem); line-height: .9; letter-spacing: -0.055em; color: var(--bone); }
.hero__title .line--indent { padding-left: 0; }
.hero__title em { color: var(--accent); }
.hero__lead { max-width: 520px; font-size: 1.12rem; color: rgba(237,235,228,.8); }
.hero__chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hero__chips li { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; padding: 7px 12px; border: 1px solid rgba(237,235,228,.2); border-radius: 999px; color: rgba(237,235,228,.75); }

.hero__stage { position: relative; height: clamp(460px, 64vh, 640px); display: grid; grid-template-rows: 1fr auto; gap: 10px; }
#teeGl { width: 100%; height: 100%; display: block; cursor: grab; touch-action: pan-y; position: relative; z-index: 1; }
.is-grabbing #teeGl { cursor: grabbing; }
.hero__stage.no-gl #teeGl { display: none; }
.hero__stage.no-gl::before { content: ""; justify-self: center; align-self: center; width: 70%; aspect-ratio: 1; background: #1b1b1a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M70 26 Q100 44 130 26 L168 44 L188 82 L158 96 L150 82 L150 184 Q100 192 50 184 L50 82 L42 96 L12 82 L32 44 Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M70 26 Q100 44 130 26 L168 44 L188 82 L158 96 L150 82 L150 184 Q100 192 50 184 L50 82 L42 96 L12 82 L32 44 Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.hero__floor { position: absolute; left: 22%; right: 22%; bottom: 96px; height: 50px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255,74,28,.4), transparent); filter: blur(12px); pointer-events: none; z-index: 0; }
.tee-ui { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; position: relative; z-index: 2; }
.tee-ui__row { display: flex; gap: 8px; align-items: center; padding: 6px; border-radius: 999px; background: rgba(237,235,228,.06); border: 1px solid rgba(237,235,228,.12); }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; background: var(--s); cursor: pointer; padding: 0; box-shadow: inset 0 0 0 1px rgba(237,235,228,.25); transition: transform .3s var(--ease), border-color .3s; }
.swatch:hover { transform: scale(1.12); }
.swatch.is-on { border-color: var(--bone); transform: scale(1.12); }
.print { font: 500 .72rem var(--mono); letter-spacing: .06em; text-transform: uppercase; color: rgba(237,235,228,.75); background: transparent; border: 0; border-radius: 999px; padding: 8px 12px; cursor: pointer; transition: background .3s, color .3s; }
.print:hover { color: var(--bone); }
.print.is-on { background: var(--accent); color: var(--ink); }
.hero__hint { position: relative; text-align: center; margin: 0; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(237,235,228,.5); }

@media (max-width: 960px) {
  .hero__main { grid-template-columns: 1fr; }
  .hero__stage { height: 440px; }
}
@media (max-width: 760px) {
  .hero__title { font-size: 13.5vw; }
  .hero__stage { height: 400px; margin-top: 4px; }
  .hero__floor { bottom: 110px; }
  .tee-ui { gap: 8px; }
  .hero__tags span:nth-child(n+2) { display: none; }
}

/* ===== Lead funnel ===== */
.audit__left .label-tag { margin: 8px 0; }
.form__steps { display: flex; gap: 6px; flex-wrap: wrap; font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.form__steps span { padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(237,235,228,.2); color: rgba(237,235,228,.55); }
.form__steps span.on { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.form--done { text-align: left; padding: clamp(28px, 4vw, 44px); display: grid; gap: 14px; }
.form--done h3 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 6px 0 0; }
.form--done .muted { color: rgba(237,235,228,.65); }
.done__btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0; }
.form__status a { color: var(--accent); }

.pill--wa { --bg: #25d366; --fg: #06210f; border-color: #25d366; }
.pill--wa::before { background: var(--ink); }
.pill--wa:hover { color: #25d366; }

.alt-contact { display: grid; gap: 12px; padding: 22px 24px; border-radius: 22px; background: rgba(13,13,12,.08); border: 1px solid rgba(13,13,12,.18); }
.alt-contact .tag { color: rgba(13,13,12,.65); }
.alt-contact__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.alt-contact__mail { font-family: var(--mono); font-size: .85rem; text-decoration: none; justify-self: start; border-bottom: 1px solid currentColor; }
.alt-contact__mail:hover { color: var(--bone); }
.audit__right { gap: 20px; justify-items: stretch; }

.wa-float {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 95;
  display: flex; align-items: center; gap: 10px; padding: 12px 18px 12px 12px; border-radius: 999px;
  background: #25d366; color: #06210f; text-decoration: none; font-weight: 700; font-size: .9rem;
  box-shadow: 0 16px 34px -12px rgba(0,0,0,.55); transition: transform .4s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
@media (max-width: 760px) {
  .wa-float { right: 16px; bottom: calc(84px + env(safe-area-inset-bottom, 0px)); padding: 12px; }
  .wa-float span { display: none; }
  .sticky-cta { right: 16px; }
  .alt-contact__btns .pill { flex: 1 1 100%; }
}
@media (max-width: 760px) { .audit__left .label-tag { display: none; } }

/* ===== Conversion upgrades ===== */
.proof { display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(237,235,228,.14); max-width: 560px; }
.proof__stat { display: flex; align-items: baseline; gap: 12px; margin: 0; color: rgba(237,235,228,.75); font-size: .95rem; }
.proof__stat b { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--accent); }
.proof__names { margin: 0; display: grid; gap: 4px; font-weight: 600; letter-spacing: -0.01em; color: var(--bone); font-size: .98rem; }
.proof__names .tag { font-size: .66rem; }

.cta-band { margin-top: clamp(48px, 6vw, 80px); padding: clamp(24px, 4vw, 44px); border-radius: 28px; background: var(--accent); color: var(--ink); display: grid; grid-template-columns: 1fr auto; gap: 8px 32px; align-items: center; }
.cta-band__t { margin: 0; font-size: clamp(1.6rem, 3.2vw, 2.8rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.cta-band__s { margin: 0; grid-column: 1; max-width: 52ch; }
.cta-band__btns { grid-column: 2; grid-row: 1 / 3; display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cta-band .pill--accent { --bg: var(--ink); --fg: var(--bone); border-color: var(--ink); }
.cta-band .pill--accent::before { background: var(--bone); }
.cta-band .pill--accent:hover { color: var(--ink); }
.pill--line { border-color: var(--ink); color: var(--ink); }
.pill--line:hover { color: var(--accent); }
@media (max-width: 860px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__btns { grid-column: 1; grid-row: auto; justify-content: flex-start; }
  .cta-band__btns .pill { flex: 1 1 100%; }
}
