/* =====================================================================
   Outfyx — Editorial Intelligence
   Production stylesheet. No build step.
   ===================================================================== */

:root {
  /* Color */
  --bg: #0A0908;
  --bg-soft: #141312;
  --bg-deepest: #050404;
  --ink: #F5F1EB;
  --ink-60: rgba(245, 241, 235, 0.6);
  --ink-40: rgba(245, 241, 235, 0.4);
  --ink-20: rgba(245, 241, 235, 0.2);
  --paper: #F5F1EB;
  --paper-ink: #0A0908;
  --cherry: #C8102E;
  --hairline: #484740;
  --hairline-soft: #262524;
  --muted: #939188;

  /* Type */
  --serif: 'Playfair Display', 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Courier Prime', 'Courier New', monospace;

  /* Space */
  --edge: 48px;
  --section: 120px;
  --gutter: 24px;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --dur: 700ms;
}

@media (max-width: 768px) {
  :root {
    --edge: 20px;
    --section: 80px;
  }
}

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><line x1='8' y1='2' x2='8' y2='14' stroke='%23F5F1EB' stroke-width='1'/><line x1='2' y1='8' x2='14' y2='8' stroke='%23F5F1EB' stroke-width='1'/></svg>") 8 8, crosshair;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><rect x='1' y='4' width='14' height='8' fill='none' stroke='%23C8102E' stroke-width='1'/><circle cx='4' cy='8' r='1' fill='%23C8102E'/></svg>") 8 8, pointer;
}
img { max-width: 100%; height: auto; display: block; }
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><rect x='1' y='4' width='14' height='8' fill='none' stroke='%23C8102E' stroke-width='1'/><circle cx='4' cy='8' r='1' fill='%23C8102E'/></svg>") 8 8, pointer;
}
::selection { background: var(--cherry); color: var(--ink); }

/* Selection on paper surfaces */
.paper ::selection { background: var(--paper-ink); color: var(--paper); }

/* =====================================================================
   GLOBAL OVERLAYS
   ===================================================================== */

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--cherry);
  z-index: 10000;
  transition: width 100ms linear;
  pointer-events: none;
}

/* =====================================================================
   NAV
   ===================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.nav__wordmark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav__wordmark .dot { color: var(--cherry); }

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--cherry);
  transition: width var(--dur) var(--ease);
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__action {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 18px;
  transition: all var(--dur) var(--ease);
}

.nav__action:hover {
  background: var(--ink);
  color: var(--bg);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav { padding: 16px var(--edge); }
}

/* =====================================================================
   SECTION
   ===================================================================== */

main { padding-top: 80px; }

.section {
  padding: var(--section) var(--edge);
  position: relative;
}

.section--flush { padding-left: 0; padding-right: 0; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin: 0;
}

.eyebrow--cherry { color: var(--cherry); }
.eyebrow--ink { color: var(--ink); }

.hairline-rule {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

.hairline-rule--soft {
  border-top-color: var(--hairline-soft);
}

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
  min-height: 100vh;
  padding: 120px var(--edge) var(--section);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  position: relative;
}

.hero__trace {
  position: absolute;
  left: var(--edge);
  top: 120px;
  bottom: var(--section);
  width: 1px;
  background: var(--cherry);
  opacity: 0.6;
}

.hero__trace::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--cherry);
  border-bottom: 1px solid var(--cherry);
  transform: rotate(45deg);
}

.hero__left {
  padding-left: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hero__wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(96px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 32px 0 0;
  color: var(--ink);
  white-space: nowrap;
  display: inline-block;
}

.hero__wordmark .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) forwards;
}

.hero__wordmark .dot { color: var(--cherry); }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink-60);
  margin: 16px 0 0;
  font-weight: 500;
}

.hero__quote {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 200px;
  margin-right: -40px;
}

.hero__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink-60);
  margin: 0 0 8px;
}

.hero__quote cite {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.hero__avail {
  max-width: 220px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero__scroll {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__scroll::after {
  content: '↓';
  display: inline-block;
}

.hero__right {
  height: 80vh;
  overflow: hidden;
  border: 1px solid var(--hairline);
  position: relative;
}

.hero__strip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: vscroll 20s linear infinite;
}

.hero__strip img {
  width: 100%;
  height: 33.33vh;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.85;
}

@keyframes vscroll {
  to { transform: translateY(-50%); }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__left { padding-left: 32px; }
  .hero__quote { display: none; }
  .hero__right { height: 60vh; }
  .hero__strip img { height: 25vh; }
}

@media (max-width: 768px) {
  .hero__left { padding-left: 24px; }
  .hero__trace { left: var(--edge); }
}

/* =====================================================================
   THE TRY (scroll-jacked)
   ===================================================================== */

.try {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 32px;
  min-height: 100vh;
  padding-top: var(--section);
}

.try__ticker {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.try__ticker-item {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-20);
  border-top: 1px solid var(--hairline-soft);
  padding-top: 8px;
  transition: color var(--dur) var(--ease);
}

.try__ticker-item.is-active {
  color: var(--cherry);
  border-top-color: var(--cherry);
}

.try__ticker-item.is-done {
  color: var(--ink-60);
  border-top-color: var(--ink-60);
}

.try__figure {
  position: sticky;
  top: 120px;
  height: 80vh;
  border: 1px solid var(--hairline);
  overflow: hidden;
}

.try__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.try__captions {
  display: flex;
  flex-direction: column;
  gap: 60vh;
  padding: 20vh 0;
}

.try__caption {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.try__caption-meta {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-60);
  letter-spacing: 0.04em;
}

.try__caption-name {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 500;
  font-style: italic;
}

.try__caption-name .fade {
  opacity: 0.3;
}

.try__caption-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-60);
  max-width: 360px;
}

@media (max-width: 1024px) {
  .try { grid-template-columns: 1fr; gap: 24px; }
  .try__ticker { flex-direction: row; gap: 16px; position: static; }
  .try__ticker-item { padding-top: 4px; font-size: 14px; }
  .try__figure { position: static; height: 60vh; }
  .try__captions { gap: 80px; padding: 60px 0; }
}

/* =====================================================================
   WARDROBE RAIL
   ===================================================================== */

.wardrobe {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-deepest);
}

.wardrobe__head {
  padding: 0 var(--edge);
  margin-bottom: 48px;
}

.wardrobe__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.wardrobe__title .muted { color: var(--ink-60); font-style: italic; }

.wardrobe__rail-wrap {
  position: relative;
}

.wardrobe__rail-line {
  position: absolute;
  top: 24px;
  left: var(--edge);
  right: 0;
  height: 1px;
  background: var(--hairline);
}

.wardrobe__rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 48px var(--edge) 24px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path d='M3 8 L12 4 L21 8 L21 9 L12 5 L3 9 Z' fill='%23F5F1EB'/><line x1='12' y1='4' x2='12' y2='14' stroke='%23F5F1EB' stroke-width='1'/></svg>") 12 12, grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-overflow-scrolling: touch;
}

.wardrobe__rail.is-dragging {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path d='M3 8 L12 4 L21 8 L21 9 L12 5 L3 9 Z' fill='%23C8102E'/><line x1='12' y1='4' x2='12' y2='14' stroke='%23C8102E' stroke-width='1'/></svg>") 12 12, grabbing;
  scroll-snap-type: none;
}

.wardrobe__rail.is-dragging .wardrobe__item { pointer-events: none; }

.wardrobe__rail::-webkit-scrollbar { display: none; }

.wardrobe__rail img { user-select: none; -webkit-user-drag: none; pointer-events: none; }

.wardrobe__item {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  position: relative;
}

.wardrobe__hanger {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 16px;
  z-index: 2;
}

.wardrobe__hanger::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--ink-60);
}

.wardrobe__hanger::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background: var(--ink-60);
}

.wardrobe__thread {
  position: absolute;
  top: -32px;
  left: 50%;
  width: 1px;
  height: 16px;
  background: var(--ink-20);
}

.wardrobe__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1);
  border: 1px solid var(--hairline);
}

.wardrobe__meta {
  margin-top: 16px;
}

.wardrobe__name {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}

.wardrobe__stats {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-60);
  margin: 4px 0 0;
}

.wardrobe__drag-hint {
  position: absolute;
  right: var(--edge);
  bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-40);
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 600ms var(--ease);
}

.wardrobe__rail.has-interacted ~ .wardrobe__drag-hint,
.wardrobe__rail-wrap.has-interacted .wardrobe__drag-hint {
  opacity: 0;
}

/* =====================================================================
   STYLIST (terminal)
   ===================================================================== */

.stylist {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

.stylist__weather {
  border: 1px solid var(--hairline);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.stylist__weather-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stylist__live {
  width: 6px;
  height: 6px;
  background: var(--cherry);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.stylist__weather-city {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

.stylist__weather-temp {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stylist__weather-cond {
  font-size: 13px;
  color: var(--ink-60);
  margin: 8px 0 0;
}

.stylist__terminal {
  border: 1px solid var(--hairline);
  background: var(--bg-soft);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.stylist__terminal-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 16px;
  border-left: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.stylist__output {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 32px;
}

.stylist__output p { margin: 0 0 8px; color: var(--ink-60); }
.stylist__output p.bright { color: var(--ink); }

.stylist__suggestion {
  border-left: 2px solid var(--ink-20);
  padding: 12px 16px;
  margin: 12px 0;
  opacity: 0.5;
  transition: all var(--dur) var(--ease);
}

.stylist__suggestion.active {
  border-left-color: var(--cherry);
  opacity: 1;
}

.stylist__suggestion-label {
  font-weight: 700;
  color: var(--ink);
}

.stylist__suggestion.active .stylist__suggestion-label {
  color: var(--cherry);
}

.stylist__tagline {
  text-align: center;
  margin-top: 64px;
  position: relative;
  padding: 24px 0;
}

.stylist__tagline::before,
.stylist__tagline::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--cherry);
  margin: 16px auto;
}

.stylist__tagline span {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .stylist { grid-template-columns: 1fr; }
}

/* =====================================================================
   NUMBERS
   ===================================================================== */

.numbers {
  text-align: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.numbers__big {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(96px, 18vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}

.numbers__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink-60);
  margin: 32px auto 0;
  max-width: 480px;
}

.numbers__rest {
  margin-top: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--hairline);
}

.numbers__row {
  border-bottom: 1px solid var(--hairline);
  padding: 24px 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-align: left;
}

.numbers__row-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  font-style: italic;
}

.numbers__row-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-60);
}

/* =====================================================================
   STUDIO (from the studio)
   ===================================================================== */

.studio__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}

.studio__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.studio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.studio__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.studio__date {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  gap: 24px;
}

.studio__card-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.studio__card-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0;
}

.studio__read {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cherry);
  border-bottom: 1px solid var(--cherry);
  padding-bottom: 2px;
  width: fit-content;
}

@media (max-width: 1024px) {
  .studio__grid { grid-template-columns: 1fr; gap: 32px; }
  .studio__head { flex-direction: column; align-items: start; gap: 16px; }
}

/* =====================================================================
   EDITORIAL MARQUEE
   ===================================================================== */

.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg-soft);
  white-space: nowrap;
}

.marquee__track {
  display: inline-block;
  animation: hscroll 45s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink-60);
  font-weight: 500;
}

.marquee__track span { padding: 0 32px; }

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

/* =====================================================================
   PRICING (clothing care labels)
   ===================================================================== */

.pricing__head {
  margin-bottom: 64px;
}

.pricing__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.label-card {
  position: relative;
  background: var(--paper);
  color: var(--paper-ink);
  padding: 48px 28px 32px;
  font-family: var(--sans);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><rect x='1' y='4' width='14' height='8' fill='none' stroke='%23C8102E' stroke-width='1'/><circle cx='4' cy='8' r='1' fill='%23C8102E'/></svg>") 8 8, pointer;
  transition: transform var(--dur) var(--ease);
}

.label-card:hover {
  transform: translateY(-8px);
}

/* Perforated top edge */
.label-card::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 12px;
  background-image: radial-gradient(circle at 12px 12px, var(--bg) 6px, transparent 7px);
  background-size: 24px 12px;
  background-repeat: repeat-x;
}

/* Eyelet hole */
.label-card__eyelet {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--paper-ink);
  box-shadow: inset 0 0 0 2px var(--paper);
}

.label-card__care {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin: 4px 0 24px;
  padding-left: 36px;
  color: var(--paper-ink);
  opacity: 0.85;
}

.label-card__care svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--paper-ink);
  stroke-width: 1.25;
}

.label-card__tier {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--cherry);
  margin: 0;
  line-height: 1;
}

.label-card--free .label-card__tier { font-weight: 300; }
.label-card--plus .label-card__tier { font-weight: 500; }
.label-card--unlimited .label-card__tier { font-weight: 700; }

.label-card__sub {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-ink);
  margin: 12px 0;
}

.label-card__price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--paper-ink);
}

.label-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.label-card__features li {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--paper-ink);
}

.label-card__features li:last-child {
  border-bottom: none;
}

/* Stitched bottom edge */
.label-card__stitch {
  text-align: center;
  border-top: 1px dashed var(--hairline);
  padding-top: 16px;
  margin-top: 16px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-ink);
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* =====================================================================
   WAITLIST
   ===================================================================== */

.waitlist {
  background: #000;
  text-align: center;
  padding: var(--section) var(--edge);
  border-top: 1px solid var(--hairline);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist__inner {
  max-width: 540px;
  width: 100%;
}

.waitlist__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 48px;
}

.waitlist__form {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid var(--ink-20);
  position: relative;
  transition: border-color var(--dur) var(--ease);
}

.waitlist__form:focus-within {
  border-bottom-color: var(--ink);
}

.waitlist__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  padding: 16px 0;
  font-style: italic;
}

.waitlist__input::placeholder {
  color: var(--ink-40);
  font-style: italic;
}

.waitlist__submit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  padding: 12px 8px 12px 24px;
  transition: color var(--dur) var(--ease);
}

.waitlist__submit:hover {
  color: var(--cherry);
}

.waitlist__note {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
}

.waitlist__inbox-note {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.waitlist__inbox-note::before {
  content: '↳';
  color: var(--cherry);
  font-size: 14px;
}

.waitlist__inbox-note a {
  color: var(--cherry);
  border-bottom: 1px solid var(--cherry);
  padding-bottom: 1px;
}

/* =====================================================================
   SCROLL REVEAL — fade-up on section entry
   ===================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-in > *:nth-child(n+6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* =====================================================================
   HERO PARALLAX — subtle photo strip slow-drift
   ===================================================================== */

.hero__strip {
  will-change: transform;
}

.hero__quote {
  will-change: transform;
}

/* =====================================================================
   IMAGE HOVER — subtle scale + grain bloom
   ===================================================================== */

.wardrobe__item .wardrobe__img,
.studio__card img {
  transition: filter 800ms var(--ease), transform 800ms var(--ease);
}

.wardrobe__item:hover .wardrobe__img {
  filter: grayscale(0.85);
  transform: scale(1.015);
}

/* =====================================================================
   STUDIO CARD — accent border on hover
   ===================================================================== */

.studio__card {
  position: relative;
  padding-bottom: 24px;
  transition: transform 600ms var(--ease);
}

.studio__card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--cherry);
  transition: width 700ms var(--ease);
}

.studio__card:hover::before { width: 100%; }

/* =====================================================================
   FAQ — accent on hover
   ===================================================================== */

.faq__item {
  transition: background 500ms var(--ease);
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.faq__item:hover {
  background: rgba(245, 241, 235, 0.015);
}

.faq__q {
  transition: color 400ms var(--ease);
}

.faq__item:hover .faq__q {
  color: var(--ink);
}

/* =====================================================================
   LABEL CARD — sharper lift on hover
   ===================================================================== */

.label-card {
  box-shadow: 0 0 0 0 transparent;
  transition: transform 700ms var(--ease), box-shadow 700ms var(--ease);
}

.label-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 0 -12px rgba(200, 16, 46, 0.15);
}

/* =====================================================================
   STYLIST TERMINAL — typewriter cursor
   ===================================================================== */

.stylist__output p:last-of-type::after {
  content: '▍';
  color: var(--cherry);
  margin-left: 2px;
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* CRT off animation */
.crt-off {
  animation: crtOff 600ms var(--ease) forwards;
}

@keyframes crtOff {
  0% { transform: scale(1, 1); opacity: 1; filter: brightness(1); }
  60% { transform: scale(1, 0.005); opacity: 1; filter: brightness(3); }
  100% { transform: scale(0, 0.005); opacity: 0; filter: brightness(0); }
}

.waitlist__confirmed {
  display: none;
  flex-direction: column;
  align-items: center;
}

.waitlist__confirmed.is-on { display: flex; animation: fadeIn 1.2s var(--ease) 1s both; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}

.footer__top {
  padding: var(--section) var(--edge) 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--hairline);
}

.footer__brand-wordmark {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.footer__brand-wordmark .dot { color: var(--cherry); }

.footer__brand-tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 8px;
}

.footer__col a {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: color var(--dur) var(--ease);
}

.footer__col a:hover { color: var(--ink); }

.footer__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  display: block;
}

.footer__signoff {
  padding: 32px var(--edge);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__image { height: 320px; }
}

/* =====================================================================
   COOKIE LINE
   ===================================================================== */

.cookie-line {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px var(--edge);
  background: rgba(10, 9, 8, 0.95);
  border-top: 1px solid var(--hairline-soft);
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.cookie-line.is-dismissed { display: none; }

.cookie-line button {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

/* =====================================================================
   GENERIC LONG-FORM (privacy, terms, etc.)
   ===================================================================== */

.legal {
  padding: 160px var(--edge) var(--section);
  max-width: 1440px;
  margin: 0 auto;
}

.legal__head {
  margin-bottom: 64px;
}

.legal__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}

.legal__title .dot { color: var(--cherry); }

.legal__tldr {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 32px 40px;
  margin: 32px 0 64px;
  max-width: 720px;
}

.legal__tldr h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  margin: 0 0 12px;
}

.legal__tldr p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.legal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1440px;
}

.legal__col {
  max-width: 720px;
}

.legal__section {
  margin-bottom: 56px;
}

.legal__h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.legal__h2 .num {
  color: var(--cherry);
  font-size: 18px;
  margin-right: 12px;
}

.legal__section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-60);
  margin: 0 0 12px;
}

.legal__margin-note {
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  border-left: 1px solid var(--hairline);
  padding-left: 12px;
  margin: 12px 0 0;
  max-width: 320px;
}

@media (max-width: 1024px) {
  .legal__body { grid-template-columns: 1fr; gap: 32px; }
}

/* =====================================================================
   404
   ===================================================================== */

.notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--edge);
}

.notfound__h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.notfound__h .dot { color: var(--cherry); }

.notfound__back {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cherry);
  border-bottom: 1px solid var(--cherry);
  padding-bottom: 2px;
}

/* =====================================================================
   FORGET ME / DELETE
   ===================================================================== */

.forget {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--edge);
  text-align: center;
}

.forget__inner { max-width: 540px; width: 100%; }

.forget__h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  margin: 0 0 32px;
}

.forget__h .dot { color: var(--cherry); }

.forget__body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0 0 48px;
}

.forget__note {
  margin-top: 48px;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
}

/* =====================================================================
   WAITLIST CONFIRMED standalone
   ===================================================================== */

.confirmed {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--edge);
  text-align: center;
}

.confirmed__wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}

.confirmed__wordmark .dot { color: var(--cherry); }

.confirmed__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  margin: 32px 0 12px;
}

.confirmed__note {
  font-size: 14px;
  color: var(--ink-60);
}

.confirmed__back {
  margin-top: 48px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cherry);
  border-bottom: 1px solid var(--cherry);
  padding-bottom: 2px;
}

/* =====================================================================
   ABOUT / MANIFESTO
   ===================================================================== */

.manifesto__hero {
  padding: 160px var(--edge) 64px;
  text-align: center;
}

.manifesto__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0;
}

.manifesto__title .dot { color: var(--cherry); }

.manifesto__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  padding: 64px var(--edge) var(--section);
  max-width: 1440px;
  margin: 0 auto;
}

.manifesto__text p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 720px;
}

.manifesto__text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  padding: 6px 16px 0 0;
  color: var(--ink);
}

.manifesto__section-break {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
  color: var(--cherry);
}

.manifesto__section-break::before,
.manifesto__section-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

.manifesto__section-break::after {
  content: '•';
  flex: 0;
  color: var(--cherry);
  font-size: 14px;
  background: transparent;
  height: auto;
}

.manifesto__h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  margin: 48px 0 16px;
}

.manifesto__aside {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.manifesto__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(1);
}

.manifesto__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.25;
  color: var(--ink-60);
  margin: 32px 0;
  border-left: 1px solid var(--cherry);
  padding-left: 16px;
}

.manifesto__closer {
  text-align: right;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  margin: 80px 0 0;
}

@media (max-width: 1024px) {
  .manifesto__body { grid-template-columns: 1fr; }
  .manifesto__aside { position: static; }
}

/* =====================================================================
   PRESS
   ===================================================================== */

.press__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.press__item {
  padding: 40px 32px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.press__item:nth-child(odd) {
  border-right: 1px solid var(--hairline);
}

.press__meta {
  display: flex;
  gap: 24px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.press__item-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}

.press__item-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0;
}

.press__read {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cherry);
  border-bottom: 1px solid var(--cherry);
  padding-bottom: 2px;
  width: fit-content;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .press__list { grid-template-columns: 1fr; }
  .press__item:nth-child(odd) { border-right: none; }
}

/* =====================================================================
   CAREERS
   ===================================================================== */

.careers__h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 64px;
}

.careers__h .dot { color: var(--cherry); }

.careers__list {
  border-top: 1px solid var(--hairline);
}

.careers__role {
  padding: 48px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: baseline;
}

.careers__role-title {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.careers__role-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-60);
  margin: 0;
}

.careers__role-meta {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

.careers__write {
  margin-top: 80px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-60);
}

.careers__write a { color: var(--cherry); border-bottom: 1px solid var(--cherry); }

@media (max-width: 768px) {
  .careers__role { grid-template-columns: 1fr; }
  .careers__role-meta { text-align: left; }
}

/* =====================================================================
   APP STORE BADGES (editorial, custom — not Google's chunky default)
   ===================================================================== */

.badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 14px 20px;
  border: 1px solid var(--ink);
  background: transparent;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  color: var(--ink);
  min-width: 200px;
}

.badge:hover {
  background: var(--ink);
  color: var(--bg);
}

.badge:hover .badge__icon { fill: var(--bg); }

.badge__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--ink);
  transition: fill var(--dur) var(--ease);
}

.badge__txt { display: flex; flex-direction: column; line-height: 1.1; }

.badge__sup {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}

.badge__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.badge--soon {
  border-style: dashed;
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.badge--soon::after {
  content: 'beta';
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-left: 4px;
  color: var(--cherry);
}

/* =====================================================================
   AVAILABLE SECTION (CTA strip with badges)
   ===================================================================== */

.available {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 80px var(--edge);
  text-align: center;
}

.available__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.available__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-60);
  margin: 0 0 48px;
}

.available .badges {
  justify-content: center;
}

/* =====================================================================
   EDITORIAL GALLERY (large masonry)
   ===================================================================== */

.gallery {
  border-top: 1px solid var(--hairline);
}

.gallery__head {
  padding: var(--section) var(--edge) 48px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}

.gallery__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  margin: 0;
  max-width: 720px;
}

.gallery__caption {
  max-width: 320px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-60);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  padding: 0 4px var(--section);
}

.gallery__item {
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 1.4s var(--ease), transform 1.4s var(--ease);
}

.gallery__item:hover img {
  filter: grayscale(0);
  transform: scale(1.02);
}

.gallery__item--tall { grid-column: span 4; grid-row: span 2; aspect-ratio: 3 / 4; }
.gallery__item--wide { grid-column: span 8; aspect-ratio: 16 / 9; }
.gallery__item--sq { grid-column: span 4; aspect-ratio: 1; }
.gallery__item--hero { grid-column: span 6; grid-row: span 2; aspect-ratio: 4 / 5; }
.gallery__item--full { grid-column: span 12; aspect-ratio: 21 / 9; }
.gallery__item--portrait { grid-column: span 3; aspect-ratio: 3 / 4; }

.gallery__cap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur) var(--ease);
}

.gallery__item:hover .gallery__cap {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .gallery__item--tall { grid-column: span 3; }
  .gallery__item--wide { grid-column: span 6; }
  .gallery__item--sq { grid-column: span 3; }
  .gallery__item--hero { grid-column: span 6; }
  .gallery__item--portrait { grid-column: span 3; }
}

@media (max-width: 640px) {
  .gallery__head { flex-direction: column; align-items: start; }
}

/* =====================================================================
   FAQ (AEO — answer engine optimization)
   ===================================================================== */

.faq__head {
  padding: 0 0 48px;
}

.faq__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  margin: 16px 0 0;
}

.faq__cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cherry);
  margin: 64px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cherry);
  display: inline-block;
}

.faq__list {
  border-top: 1px solid var(--hairline);
}

.faq__item {
  border-bottom: 1px solid var(--hairline);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.faq__q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}

.faq__a {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0;
}

.faq__a strong { color: var(--ink); font-weight: 500; }

@media (max-width: 768px) {
  .faq__item { grid-template-columns: 1fr; gap: 12px; }
  .faq__q { font-size: 20px; }
}

/* =====================================================================
   PRICING — billing toggle (Free + Pro with 3 cadences)
   ===================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid .label-card { min-height: 540px; }

.pricing-grid__pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid__pro { grid-template-columns: 1fr; }
}

/* =====================================================================
   PRESS — expandable dispatch (replaces broken Read → links)
   ===================================================================== */

[data-dispatch-body] {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}

[data-dispatch].is-open [data-dispatch-body] {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

[data-dispatch-body] p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 12px;
  max-width: 640px;
}

[data-dispatch-body] em {
  color: var(--ink-60);
  font-style: italic;
}

/* =====================================================================
   BETA BADGE (replaces "Available now")
   ===================================================================== */

.beta {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 80px var(--edge);
  text-align: center;
}

.beta__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 16px 0;
}

.beta__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-60);
  margin: 0 auto 48px;
  max-width: 540px;
}

.beta__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}

.beta__status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cherry);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}

.beta__waitlist {
  max-width: 480px;
  margin: 0 auto;
}

.beta__waitlist .waitlist__form {
  margin: 0 auto;
}

/* =====================================================================
   MOBILE RESPONSIVE — comprehensive pass for 320-768px viewports
   ===================================================================== */

/* Hide the custom cursor on touch devices — gets in the way */
@media (hover: none) and (pointer: coarse) {
  body, a, button, .label-card, .wardrobe__rail {
    cursor: auto !important;
  }
}

/* Mobile NAV — hamburger button visible, links hidden in panel */
.nav__hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  margin-left: auto;
  margin-right: 12px;
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

.nav__panel {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
  padding: 32px var(--edge) 40px;
  z-index: 49;
  animation: navDown 400ms var(--ease) both;
}

.nav__panel.is-open { display: flex; flex-direction: column; gap: 20px; }

.nav__panel a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-soft);
}

.nav__panel a:last-child { border-bottom: none; }
.nav__panel .panel-eyebrow {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-60);
  border-bottom: 0;
  padding: 0;
  margin-top: 8px;
}

@keyframes navDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 16px var(--edge); }
  .nav__action {
    padding: 8px 14px;
    font-size: 10px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: hero — wordmark sized to fit, photo strip below
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 96px var(--edge) 60px;
    gap: 32px;
  }
  .hero__left { padding-left: 24px; }
  .hero__trace { left: var(--edge); top: 96px; bottom: 60px; }
  .hero__wordmark {
    font-size: clamp(64px, 18vw, 96px);
    line-height: 0.9;
    letter-spacing: -0.03em;
  }
  .hero__tagline { font-size: 22px; margin-top: 12px; }
  .hero__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 48px;
  }
  .hero__scroll { font-size: 9px; }
  .hero__avail { max-width: 100%; font-size: 9px; }
  .hero__right {
    height: 50vh;
    min-height: 320px;
  }
  .hero__strip img { height: 25vh; }
}

@media (max-width: 480px) {
  .hero__wordmark { font-size: clamp(56px, 20vw, 80px); }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: The Try — stacked, ticker as a horizontal row
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .try {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 60px;
    min-height: auto;
  }
  .try__ticker {
    flex-direction: row;
    position: static;
    gap: 12px;
    overflow-x: auto;
    padding: 0 var(--edge);
    margin: 0 calc(-1 * var(--edge));
  }
  .try__ticker-item {
    flex: 0 0 auto;
    font-size: 14px;
    padding-top: 6px;
    min-width: 48px;
  }
  .try__figure {
    position: relative;
    top: 0;
    height: 56vh;
    max-height: 480px;
  }
  .try__captions {
    gap: 48vh;
    padding: 24vh 0;
  }
  .try__caption-name { font-size: 28px; }
  .try__caption-body { max-width: 100%; font-size: 14px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Wardrobe rail — wider hit targets, smaller items
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .wardrobe__head { margin-bottom: 32px; padding: 0 var(--edge); }
  .wardrobe__title { font-size: clamp(32px, 9vw, 48px); }
  .wardrobe__item { min-width: 220px; max-width: 220px; }
  .wardrobe__rail { padding: 40px var(--edge) 16px; gap: 12px; }
  .wardrobe__hanger { top: -20px; }
  .wardrobe__thread { top: -26px; height: 12px; }
  .wardrobe__rail-line { top: 20px; }
  .wardrobe__drag-hint { right: var(--edge); bottom: 8px; font-size: 9px; }
  .wardrobe__name { font-size: 14px; }
  .wardrobe__stats { font-size: 11px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Stylist — terminal panel collapses cleanly
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stylist { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .stylist__weather { padding: 24px; min-height: 200px; }
  .stylist__weather-city { font-size: 36px; }
  .stylist__weather-temp { font-size: 56px; }
  .stylist__terminal { padding: 24px 20px; }
  .stylist__terminal-tag {
    position: static;
    display: inline-block;
    border: 1px solid var(--hairline);
    margin-bottom: 16px;
    padding: 6px 12px;
  }
  .stylist__output { margin-top: 8px; font-size: 12px; line-height: 1.7; }
  .stylist__suggestion { padding: 10px 12px; font-size: 12px; }
  .stylist__tagline { margin-top: 40px; }
  .stylist__tagline::before, .stylist__tagline::after { width: 40px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Numbers — stacked, larger row touch targets
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .numbers__big { font-size: clamp(72px, 24vw, 128px); }
  .numbers__tag { font-size: 18px; max-width: 100%; padding: 0 var(--edge); margin-top: 20px; }
  .numbers__rest { margin-top: 48px; padding: 0 var(--edge); }
  .numbers__row {
    padding: 20px 0;
    flex-direction: row;
    gap: 16px;
    align-items: baseline;
  }
  .numbers__row-num { font-size: 28px; min-width: 48px; }
  .numbers__row-text { font-size: 16px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Gallery — single column on small, 2 col on medium
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .gallery__head {
    padding: 80px var(--edge) 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .gallery__title { font-size: clamp(32px, 9vw, 48px); }
  .gallery__caption { max-width: 100%; font-size: 15px; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    padding: 0 2px 60px;
  }
  .gallery__item--tall, .gallery__item--sq, .gallery__item--portrait { grid-column: span 1; }
  .gallery__item--wide, .gallery__item--hero, .gallery__item--full { grid-column: span 2; }
  .gallery__cap {
    bottom: 8px;
    left: 8px;
    right: 8px;
    font-size: 8px;
    opacity: 1; /* always visible on touch */
  }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--tall, .gallery__item--sq, .gallery__item--portrait,
  .gallery__item--wide, .gallery__item--hero, .gallery__item--full {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: From the studio cards
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .studio__head { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 var(--edge); }
  .studio__title { font-size: clamp(32px, 9vw, 48px); }
  .studio__grid { grid-template-columns: 1fr; gap: 32px; padding: 0 var(--edge); }
  .studio__card-title { font-size: 20px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Marquee — slower speed, smaller type
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .marquee { padding: 24px 0; }
  .marquee__track { font-size: 24px; }
  .marquee__track span { padding: 0 16px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Pricing — Free + Pro stacked, full-width
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-grid__pro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pricing__head { margin-bottom: 40px; padding: 0 var(--edge); }
  .pricing__title { font-size: clamp(32px, 9vw, 48px); }
  .label-card { padding: 40px 20px 28px; min-height: auto; }
  .label-card__tier { font-size: 28px; }
  .label-card__price { font-size: 24px; }
  .pricing__grid { padding: 0 var(--edge); }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Waitlist + Beta — generous spacing, touch-friendly input
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .waitlist { padding: 60px var(--edge); min-height: auto; }
  .waitlist__inner { width: 100%; }
  .waitlist__eyebrow { font-size: 12px; margin-bottom: 32px; line-height: 1.5; }
  .waitlist__form {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .waitlist__input {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 14px 0;
    min-height: 48px;
  }
  .waitlist__submit {
    font-size: 20px;
    padding: 10px 4px 10px 16px;
    min-height: 48px;
    min-width: 56px;
  }
  .waitlist__note { margin-top: 20px; font-size: 9px; }
  .beta { padding: 60px var(--edge); }
  .beta__title { font-size: clamp(32px, 9vw, 44px); }
  .beta__sub { font-size: 16px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: FAQ — single col, larger Q, expandable A
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq__title { font-size: clamp(32px, 9vw, 48px); }
  .faq__list { padding: 0 var(--edge); }
  .faq__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .faq__q { font-size: 18px; line-height: 1.3; }
  .faq__a { font-size: 14px; line-height: 1.6; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Footer
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr;
    padding: 60px var(--edge) 40px;
    gap: 32px;
  }
  .footer__image { height: 320px; }
  .footer__brand-wordmark { font-size: 28px; }
  .footer__col-title { font-size: 10px; }
  .footer__col a { font-size: 10px; padding: 8px 0; min-height: 44px; display: flex; align-items: center; }
  .footer__signoff { font-size: 9px; padding: 24px var(--edge); }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Cookie line — wraps cleanly, larger dismiss target
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cookie-line {
    padding: 12px 16px;
    flex-direction: row;
    gap: 12px;
    font-size: 8px;
    text-align: left;
  }
  .cookie-line button {
    font-size: 8px;
    padding: 8px 6px;
    min-height: 32px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Legal pages (privacy / terms / pricing / about) — single col
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .legal {
    padding: 96px var(--edge) 60px;
  }
  .legal__title { font-size: clamp(36px, 10vw, 56px); }
  .legal__body { grid-template-columns: 1fr; gap: 0; }
  .legal__col { max-width: 100%; }
  .legal__h2 { font-size: 24px; }
  .legal__section { margin-bottom: 40px; }
  .legal__section p { font-size: 15px; line-height: 1.65; }
  .legal__tldr { padding: 20px 24px; margin: 24px 0 40px; }
  .legal__tldr h3 { font-size: 20px; }
  .legal__tldr p { font-size: 14px; }
  .legal__margin-note { max-width: 100%; font-size: 11px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Manifesto, Careers, Press
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .manifesto__hero { padding: 96px var(--edge) 40px; }
  .manifesto__title { font-size: clamp(56px, 18vw, 96px); }
  .manifesto__body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px var(--edge) 60px;
  }
  .manifesto__text p { font-size: 17px; line-height: 1.6; }
  .manifesto__text p:first-of-type::first-letter { font-size: 3.5em; padding-right: 12px; }
  .manifesto__h2 { font-size: 28px; }
  .manifesto__aside { position: static; }
  .manifesto__pull { font-size: 20px; }
  .manifesto__closer { font-size: 22px; }

  .careers__h { font-size: clamp(40px, 12vw, 72px); margin-bottom: 40px; }
  .careers__role { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .careers__role-title { font-size: 12px; line-height: 1.6; }
  .careers__role-body { font-size: 16px; }
  .careers__role-meta { text-align: left; font-size: 9px; line-height: 1.8; }

  .press__list { grid-template-columns: 1fr; }
  .press__item { padding: 32px var(--edge); }
  .press__item:nth-child(odd) { border-right: none; }
  .press__item-title { font-size: 22px; line-height: 1.2; }
  .press__item-body { font-size: 13px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: 404 + Forget + Waitlist Confirmed
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .notfound__h { font-size: clamp(28px, 9vw, 48px); padding: 0 16px; line-height: 1.2; }
  .forget__h { font-size: clamp(40px, 12vw, 56px); }
  .forget__body { font-size: 16px; line-height: 1.6; margin-bottom: 32px; }
  .confirmed__wordmark { font-size: clamp(64px, 20vw, 120px); }
  .confirmed__line { font-size: 22px; }
  .confirmed__note { font-size: 13px; }
}

/* ─────────────────────────────────────────────────────────────────────
   MOBILE: Touch targets enforcement — every interactive element ≥ 44px
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__wordmark { padding: 8px 0; min-height: 44px; display: inline-flex; align-items: center; }
  .nav__action { min-height: 36px; padding: 8px 14px; }
  .badge { min-height: 48px; padding: 12px 16px; }
  .label-card { min-height: 320px; }
}

/* ─────────────────────────────────────────────────────────────────────
   iOS Safari quirks — disable bounce, fix viewport height
   ───────────────────────────────────────────────────────────────────── */
html, body {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* prevent input zoom on iOS — already covered above, but global insurance */
input, select, textarea {
  font-size: 16px;
}

/* dynamic viewport height — for hero on mobile browsers with shrinking URL bar */
.hero {
  min-height: 100svh; /* fallback in supporting browsers */
}

@supports (height: 100svh) {
  .hero { min-height: 100svh; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */

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