/* Hallmark · macrostructures: Split Studio / Map / Manifesto · themes: Atelier / Midnight / Carnival */
/* Hallmark · pre-emit critique: P5 H5 E4 S5 R4 V5 · audience: women elevating their personal style */
@font-face {
  font-family: Fraunces;
  src: url("/static/fonts/fraunces-variable-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url("/static/fonts/fraunces-italic-500-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url("/static/fonts/instrument-sans-variable-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --font-display: Fraunces, Georgia, serif;
  --font-body: Instrument, Arial, sans-serif;
  --color-paper: oklch(97% 0.017 80);
  --color-ink: oklch(26% 0.039 28);
  --color-muted: oklch(48% 0.035 40);
  --color-accent: oklch(43% 0.11 17);
  --color-rule: oklch(84% 0.024 70);
  --color-panel: oklch(94% 0.024 75);
  --color-white: oklch(99% 0.009 80);
  --color-teal: oklch(37% 0.059 211);
  --color-rust: oklch(57% 0.118 42);
  --color-camel: oklch(72% 0.095 72);
  --color-rose: oklch(75% 0.07 14);
  --color-sage: oklch(68% 0.051 122);
  --color-wine: oklch(34% 0.105 16);
  --color-gold: oklch(77% 0.088 78);
  --color-lime: oklch(88% 0.16 119);
  --color-pink: oklch(87% 0.052 14);
  --color-shadow: oklch(28% 0.05 30 / 0.16);
  --color-clear: oklch(0% 0 0 / 0);
  --color-focus: oklch(51% 0.16 30);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 80px;
  --space-4xl: 120px;
  --text-display: clamp(64px, 7.3vw, 112px);
  --text-heading: clamp(40px, 4.6vw, 72px);
  --text-body: 17px;
  --text-small: 12px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.64, 0, 0.78, 0);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-scene: 1100ms;
  --radius-card: 3px;
  --rule: 1px solid var(--color-rule);
}
.chemistry {
  --color-paper: oklch(20% 0.024 32);
  --color-ink: oklch(95% 0.024 77);
  --color-muted: oklch(76% 0.026 67);
  --color-panel: oklch(26% 0.031 32);
  --color-rule: oklch(39% 0.028 38);
  --color-accent: oklch(83% 0.084 78);
  --color-shadow: oklch(5% 0.02 30 / 0.4);
  --color-focus: var(--color-gold);
}
.edit {
  --color-paper: oklch(96% 0.02 85);
  --color-ink: oklch(33% 0.095 10);
  --color-accent: oklch(37% 0.126 12);
  --color-muted: oklch(47% 0.058 12);
  --color-panel: var(--color-pink);
  --color-rule: oklch(80% 0.04 20);
}

/* Hallmark · shared interaction foundation · 4pt spacing · native browser motion */

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  overflow-x: clip;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: var(--color-clear);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
button,
a {
  touch-action: manipulation;
}
button:active,
.button:active {
  transform: translateY(1px);
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 5px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "WONK" 0,
    "SOFT" 0;
  letter-spacing: -0.055em;
  min-width: 0;
  overflow-wrap: anywhere;
}
h1 {
  font-size: var(--text-display);
  line-height: 0.98;
}
h2 {
  font-size: var(--text-heading);
  line-height: 1.06;
}
h3 {
  font-size: 30px;
  line-height: 1.1;
}
p {
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border: 0;
  background: none;
}
a,
button {
  white-space: nowrap;
}
main {
  min-width: 0;
}
.wrap {
  max-width: 1600px;
  margin: auto;
  padding-inline: clamp(22px, 4.5vw, 76px);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--color-paper);
  padding: 16px;
}
.skip-link:focus {
  top: 16px;
}
.concept-nav {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 11px;
  letter-spacing: 0.04em;
  background: var(--color-ink);
  color: var(--color-paper);
  position: relative;
  z-index: 30;
}
.concept-nav > span {
  opacity: 0.6;
}
.concept-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.6;
  border-bottom: 2px solid var(--color-clear);
}
.concept-nav a[aria-current="page"] {
  opacity: 1;
  border-color: currentColor;
}
.concept-nav a:hover {
  opacity: 1;
}
.concept-nav .number {
  font-size: 9px;
  opacity: 0.65;
}
.brand {
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: -1.2px;
  display: flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}
.brand em {
  font-weight: 500;
}
.brand svg {
  width: 29px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.site-nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-nav .links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.site-nav .links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-cta {
  border: 1px solid currentColor;
  padding: 12px 20px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.button {
  min-height: 56px;
  background: var(--color-accent);
  color: var(--color-paper);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 23px;
  font-size: 14px;
}
.button .arrow {
  font-size: 23px;
  line-height: 0.7;
}
.text-link {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.fine-print {
  font-size: 11px;
  color: var(--color-muted);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.garment {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  background-image: url("/static/img/atelier/garments.webp");
  background-size: 300% 200%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 14px 9px var(--color-shadow));
}
.teal-top {
  background-position: 0% 0%;
}
.rust-skirt {
  background-position: 50% 0%;
}
.camel-bag {
  background-position: 100% 0%;
}
.rose-top {
  background-position: 0% 100%;
}
.sage-skirt {
  background-position: 50% 100%;
}
.wine-shoe {
  background-position: 100% 100%;
}
.palette-controls {
  display: flex;
  gap: 7px;
  align-items: center;
}
.palette-choice {
  display: flex;
  gap: 0;
  padding: 8px;
  border: 1px solid var(--color-clear);
  min-height: 44px;
  border-radius: 30px;
  align-items: center;
}
.palette-choice[aria-pressed="true"] {
  border-color: currentColor;
}
.swatch {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--swatch);
  display: inline-block;
  margin-left: -4px;
  border: 2px solid var(--color-paper);
}
.swatch:first-child {
  margin-left: 0;
}
.swatch.teal {
  --swatch: var(--color-teal);
}
.swatch.rust {
  --swatch: var(--color-rust);
}
.swatch.camel {
  --swatch: var(--color-camel);
}
.swatch.rose {
  --swatch: var(--color-rose);
}
.swatch.sage {
  --swatch: var(--color-sage);
}
.swatch.wine {
  --swatch: var(--color-wine);
}
.motion-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}
.icon-button {
  border: 1px solid var(--color-rule);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.replay {
  font-size: 12px;
  min-height: 44px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.replay span {
  font-size: 20px;
}
.live-label {
  font-size: 11px;
  letter-spacing: 0.03em;
}
.phase-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 7px;
}
.controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.section-copy {
  max-width: 435px;
}
.section-copy p {
  color: var(--color-muted);
  margin: 25px 0;
}
.feature-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 120px);
  padding-block: 100px;
}
.feature-spread > figure {
  position: relative;
}
.feature-spread > figure > img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}
.feature-spread figcaption {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 12px;
}
.section-copy .eyebrow {
  margin-bottom: 25px;
}
.reveal {
  opacity: 1;
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.how-list {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.how-row {
  padding: 22px 0;
  border-top: var(--rule);
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
}
.how-row .step {
  font-size: 11px;
  padding-top: 8px;
}
.how-row h3 {
  font-family: var(--font-body);
  letter-spacing: -0.025em;
  font-size: 20px;
}
.how-row p {
  font-size: 14px;
  margin: 8px 0 0;
}
.end-cta {
  padding-block: 100px;
  text-align: center;
}
.end-cta h2 {
  max-width: 800px;
  margin: 0 auto 32px;
}
.end-cta > p {
  font-size: 14px;
  margin-bottom: 22px;
  color: var(--color-muted);
}
.footer {
  border-top: var(--rule);
  padding-block: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.footer .links {
  display: flex;
  gap: 25px;
  font-size: 12px;
  flex-wrap: wrap;
}
.footer .links a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.prototype-note {
  font-size: 11px;
  line-height: 1.7;
  color: var(--color-muted);
  padding-block: 24px;
  border-top: var(--rule);
}
.star {
  font-family: var(--font-display);
  line-height: 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.is-paused * {
  animation-play-state: paused !important;
}
.photo-label {
  position: absolute;
  background: var(--color-paper);
  color: var(--color-ink);
  padding: 14px 19px;
  font-size: 11px;
  box-shadow: 0 8px 30px var(--color-shadow);
}
.photo-label strong {
  font-size: 17px;
  font-family: var(--font-display);
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
.mini-swatches {
  display: flex;
  gap: 4px;
}
.mini-swatches i {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--swatch);
}
@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }
  .nav-cta:hover {
    background: var(--color-ink);
    color: var(--color-paper);
  }
  .icon-button:hover {
    background: var(--color-panel);
  }
  .text-link:hover {
    opacity: 0.65;
  }
  .palette-choice:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 900px) {
  .site-nav {
    height: 85px;
  }
  .site-nav .links {
    gap: 16px;
  }
  .site-nav .links .secondary-nav {
    display: none;
  }
  .feature-spread {
    gap: 35px;
    padding-block: 70px;
  }
  .section-copy h2 {
    font-size: 44px;
  }
  .concept-nav {
    gap: 20px;
  }
  .concept-nav > span {
    display: none;
  }
}
@media (max-width: 620px) {
  .wrap {
    padding-inline: 22px;
  }
  .concept-nav {
    gap: 18px;
    font-size: 10px;
  }
  .concept-nav .number {
    display: none;
  }
  .brand {
    font-size: 24px;
    gap: 7px;
  }
  .brand svg {
    width: 23px;
  }
  .site-nav {
    height: 82px;
    gap: 12px;
  }
  .site-nav .links {
    display: none;
  }
  .nav-cta {
    font-size: 11px;
    padding: 12px 13px;
    gap: 13px;
  }
  .feature-spread {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 60px;
    gap: 40px;
  }
  .feature-spread .section-copy {
    max-width: none;
  }
  .section-copy h2 {
    font-size: 42px;
  }
  .actions {
    gap: 18px;
  }
  .button {
    font-size: 13px;
    gap: 22px;
    min-height: 52px;
    padding: 14px 19px;
  }
  .text-link {
    font-size: 12px;
  }
  .end-cta {
    padding-block: 70px;
  }
  .end-cta h2 {
    font-size: 48px;
  }
  .footer {
    align-items: flex-start;
  }
  .footer .links {
    gap: 20px;
  }
  .prototype-note {
    font-size: 10px;
  }
  .fine-print {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.12s !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 360px) {
  .site-nav .brand {
    font-size: 21px;
    gap: 6px;
  }
  .site-nav .brand svg {
    width: 20px;
  }
  .site-nav .nav-cta {
    font-size: 10px;
    padding: 12px 10px;
    gap: 9px;
  }
  .site-nav {
    gap: 9px;
  }
  .concept-nav {
    gap: 15px;
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stage .piece,
  .stage .model-window,
  .stage .center-print,
  .stage .orbit-model {
    transition-property: opacity !important;
  }
}

/* Hallmark · macrostructure: Split Studio · theme: Atelier · nav: N6 Masthead · footer: Ft6 Letter close */

.atelier .site-nav {
  border-bottom: var(--rule);
  position: relative;
}
.atelier .site-nav > .brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.atelier .site-nav .links {
  order: -1;
}
.atelier .nav-cta {
  margin-left: auto;
  border: none;
  padding-right: 0;
}
.atelier-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
  min-height: 690px;
  align-items: center;
  gap: 5px;
  padding-top: 32px;
  padding-bottom: 28px;
}
.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 560px;
  padding-bottom: 30px;
}
.hero-copy > .eyebrow {
  margin-bottom: 32px;
}
.hero-copy h1 .last-line {
  color: var(--color-accent);
}
.hero-copy .intro {
  max-width: 360px;
  font-size: 16px;
  color: var(--color-muted);
  margin: 27px 0 30px;
}
.hero-copy .fine-print {
  margin-top: 18px;
}
.atelier-stage {
  height: 630px;
  position: relative;
  isolation: isolate;
  --piece-shift: 0;
}
.atelier-stage::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 91%;
  top: 1%;
  right: -5%;
  border-radius: 50% 50% 5% 5%;
  background: var(--color-panel);
  z-index: -2;
}
.atelier-stage::after {
  content: "";
  position: absolute;
  inset: 0 -9% -1% 42%;
  z-index: -1;
  background: repeating-linear-gradient(
    113deg,
    var(--color-clear) 0 53px,
    var(--color-paper) 56px 69px,
    var(--color-clear) 72px 105px
  );
  opacity: 0.6;
  transform: skewY(-7deg);
  pointer-events: none;
}
.model-window {
  position: absolute;
  width: 47%;
  height: 79%;
  left: 39%;
  top: 4%;
  transform: rotate(4deg);
  overflow: hidden;
  box-shadow: 0 28px 40px var(--color-shadow);
  border: 8px solid var(--color-white);
  transition: transform var(--dur-scene) var(--ease-out);
}
.model-window img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: opacity 0.6s var(--ease-out);
}
.model-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-paper);
  opacity: 0.07;
  pointer-events: none;
}
.model-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 12px;
  font-size: 10px;
  text-align: center;
}
.atelier-stage .piece {
  position: absolute;
  z-index: 4;
  transition:
    transform var(--dur-scene) var(--ease-out),
    opacity var(--dur-scene) var(--ease-out);
}
.atelier-stage .piece-top {
  width: 45%;
  left: -1%;
  top: 6%;
  transform: rotate(-11deg);
}
.atelier-stage .piece-bottom {
  width: 46%;
  left: 7%;
  top: 40%;
  transform: rotate(8deg);
}
.atelier-stage .piece-bag {
  width: 32%;
  right: -9%;
  top: 39%;
  transform: rotate(12deg);
}
.atelier-stage .piece-shoe {
  width: 30%;
  right: 4%;
  bottom: 2%;
  transform: rotate(-14deg);
}
.piece-caption {
  position: absolute;
  left: 50%;
  bottom: 5%;
  font-size: 10px;
  white-space: nowrap;
  background: var(--color-paper);
  padding: 6px 10px;
  transform: translateX(-50%);
  box-shadow: 0 4px 14px var(--color-shadow);
}
.atelier-stage .thread {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  stroke: var(--color-camel);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 4 6;
  opacity: 0.6;
}
.palette-paper {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-white);
  padding: 17px 20px;
  transform: rotate(-5deg);
  box-shadow: 0 10px 30px var(--color-shadow);
  z-index: 8;
  min-width: 190px;
}
.palette-paper > .eyebrow {
  font-size: 8px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.palette-paper > .eyebrow::before {
  display: none;
}
.palette-paper strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.palette-paper .palette-controls {
  margin-top: 8px;
}
.studio-stamp {
  position: absolute;
  right: 0;
  top: 5%;
  z-index: 6;
  width: 99px;
  height: 99px;
  border: 1px solid var(--color-camel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: rotate(12deg);
  background: var(--color-paper);
  font-size: 8px;
  letter-spacing: 0.07em;
  gap: 4px;
  text-transform: uppercase;
}
.studio-stamp .star {
  font-size: 38px;
  color: var(--color-accent);
}
.atelier-stage .live-label {
  position: absolute;
  bottom: 1%;
  right: 1%;
  z-index: 8;
}
.atelier-stage[data-phase="paired"] .piece-top {
  transform: translate(35%, -3%) rotate(-3deg) scale(0.9);
}
.atelier-stage[data-phase="paired"] .piece-bottom {
  transform: translate(17%, -8%) rotate(0) scale(0.92);
}
.atelier-stage[data-phase="paired"] .piece-bag {
  transform: translate(-23%, 15%) rotate(0) scale(0.86);
}
.atelier-stage[data-phase="paired"] .piece-shoe {
  transform: translate(-16%, -15%) rotate(0) scale(0.88);
}
.atelier-stage[data-phase="worn"] .piece-top {
  transform: translate(-9%, 7%) rotate(-16deg) scale(0.75);
  opacity: 0.78;
}
.atelier-stage[data-phase="worn"] .piece-bottom {
  transform: translate(-17%, 9%) rotate(10deg) scale(0.8);
  opacity: 0.78;
}
.atelier-stage[data-phase="worn"] .piece-bag {
  transform: translate(9%, 13%) rotate(10deg) scale(0.8);
}
.atelier-stage[data-phase="worn"] .piece-shoe {
  transform: translate(0, 0) rotate(-5deg) scale(0.8);
}
.atelier-stage[data-phase="worn"] .model-window {
  transform: translate(-4%, 0) rotate(0) scale(1.08);
}
.atelier-stage[data-phase="worn"] .studio-stamp {
  transform: rotate(0);
}
.atelier .hero-baseline {
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding-block: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero-baseline .descriptor {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: var(--color-muted);
}
.hero-baseline .descriptor .star {
  font-size: 24px;
  color: var(--color-accent);
}
.atelier .feature-spread .photo-label {
  right: -25px;
  bottom: 45px;
  transform: rotate(5deg);
}
.atelier .color-section {
  background: var(--color-panel);
}
.color-section .feature-spread {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}
.color-section .swatch-photo {
  aspect-ratio: 1.3;
  object-fit: cover;
}
.color-section .section-copy {
  padding-left: 25px;
}
.palette-names {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  margin-top: 24px;
}
.palette-names span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.palette-names .swatch {
  border: none;
  width: 14px;
  height: 14px;
  margin: 0;
}
.stef-note {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 550px;
  margin: 0 auto 40px;
  text-align: left;
}
.stef-note img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.stef-note p {
  font-size: 13px;
  color: var(--color-muted);
}
.stef-note strong {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 400;
}
.atelier .end-cta {
  padding-bottom: 75px;
}
@media (min-width: 1600px) {
  .atelier-hero {
    gap: 45px;
  }
  .atelier-stage {
    height: 690px;
  }
}
@media (max-width: 1100px) {
  .atelier-stage {
    height: 560px;
  }
  .atelier-hero {
    min-height: 630px;
  }
  .hero-copy h1 {
    font-size: 79px;
  }
  .hero-copy .actions {
    gap: 15px;
  }
  .atelier-stage .piece-bag {
    right: -5%;
  }
  .studio-stamp {
    right: -2%;
    width: 82px;
    height: 82px;
  }
  .atelier .site-nav .links {
    gap: 14px;
    font-size: 11px;
  }
  .atelier .brand {
    font-size: 25px;
  }
  .palette-paper {
    padding: 12px;
    min-width: 160px;
  }
}
@media (max-width: 900px) {
  .atelier .site-nav > .brand {
    position: static;
    transform: none;
  }
  .atelier .site-nav .links {
    display: none;
  }
  .atelier-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
  .hero-copy h1 {
    font-size: 68px;
  }
  .hero-copy .intro {
    font-size: 14px;
  }
  .atelier-stage {
    height: 510px;
  }
  .atelier-stage .piece-top {
    top: 14%;
    width: 49%;
  }
  .atelier-stage .model-window {
    top: 11%;
    height: 72%;
    width: 52%;
    left: 36%;
  }
  .atelier-stage .piece-bottom {
    top: 44%;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
  }
  .hero-copy .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .hero-baseline .descriptor {
    max-width: 300px;
    font-size: 10px;
  }
  .atelier-stage .live-label {
    bottom: -12px;
    font-size: 9px;
  }
  .color-section .feature-spread {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 620px) {
  .atelier-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 35px;
    padding-bottom: 25px;
    gap: 5px;
  }
  .hero-copy {
    padding-bottom: 0;
    max-width: none;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .hero-copy h1 {
    font-size: clamp(58px, 12vw, 76px);
    line-height: 1.01;
    letter-spacing: -0.06em;
  }
  .hero-copy h1 br:first-child {
    display: none;
  }
  .hero-copy h1 .last-line {
    display: block;
  }
  .hero-copy .intro {
    max-width: 330px;
    margin: 20px 0 21px;
    font-size: 14px;
  }
  .hero-copy .actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .hero-copy .fine-print {
    margin-top: 12px;
  }
  .atelier-stage {
    height: 440px;
    margin: 10px -5px 0;
  }
  .atelier-stage::before {
    height: 90%;
    width: 91%;
    right: 0;
    top: 8%;
  }
  .atelier-stage .model-window {
    top: 7%;
    left: 39%;
    width: 48%;
    height: 76%;
  }
  .atelier-stage .piece-top {
    left: -2%;
    top: 12%;
    width: 47%;
  }
  .atelier-stage .piece-bottom {
    top: 43%;
    width: 46%;
    left: 1%;
  }
  .atelier-stage .piece-bag {
    width: 31%;
    right: -5%;
    top: 41%;
  }
  .atelier-stage .piece-shoe {
    bottom: 2%;
    right: 0;
    width: 31%;
  }
  .palette-paper {
    bottom: 1%;
    left: 0;
    transform: rotate(-4deg);
    min-width: 147px;
    padding: 12px;
  }
  .palette-paper strong {
    font-size: 18px;
  }
  .palette-paper .palette-controls {
    margin-top: 4px;
  }
  .studio-stamp {
    width: 72px;
    height: 72px;
    right: 0;
    font-size: 6px;
    top: 4%;
  }
  .studio-stamp .star {
    font-size: 28px;
  }
  .atelier-stage .live-label {
    bottom: 0;
    right: 0;
    font-size: 8px;
  }
  .atelier .hero-baseline {
    gap: 9px;
    flex-wrap: wrap;
  }
  .hero-baseline .descriptor {
    max-width: none;
    font-size: 10px;
  }
  .hero-baseline .motion-controls {
    margin-left: auto;
  }
  .color-section .feature-spread {
    grid-template-columns: minmax(0, 1fr);
  }
  .color-section .section-copy {
    padding-left: 0;
  }
  .color-section .section-copy {
    order: 2;
  }
  .atelier .feature-spread .photo-label {
    right: -6px;
    bottom: 36px;
  }
  .model-caption {
    font-size: 8px;
    padding: 8px;
  }
  .palette-paper .swatch {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: 57px;
  }
  .hero-copy .actions {
    gap: 11px;
  }
  .hero-copy .button {
    padding-inline: 14px;
    font-size: 12px;
  }
  .hero-copy .text-link {
    font-size: 11px;
  }
  .atelier-stage {
    height: 390px;
  }
  .studio-stamp {
    width: 61px;
    height: 61px;
  }
  .palette-paper {
    padding: 9px;
    min-width: 132px;
  }
  .palette-paper strong {
    font-size: 16px;
  }
  .palette-choice {
    padding: 5px;
  }
  .palette-paper .swatch {
    width: 17px;
    height: 17px;
  }
}
/* Short laptop viewports keep the headline, visual and action in one frame. */
@media (min-width: 621px) and (max-height: 850px) {
  .atelier .site-nav {
    height: 80px;
  }
  .atelier-hero {
    min-height: 560px;
    padding-top: 20px;
    padding-bottom: 24px;
  }
  .atelier-stage {
    height: 500px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-copy h1 {
    font-size: clamp(66px, 6.4vw, 90px);
  }
  .hero-copy > .eyebrow {
    margin-bottom: 24px;
  }
  .hero-copy .intro {
    margin: 22px 0;
    font-size: 14px;
  }
  .hero-copy .fine-print {
    margin-top: 14px;
  }
  .studio-stamp {
    width: 78px;
    height: 78px;
    font-size: 7px;
  }
  .studio-stamp .star {
    font-size: 30px;
  }
}
@media (max-width: 620px) {
  .hero-copy h1 {
    font-size: clamp(55px, 12vw, 72px);
  }
  .atelier-stage {
    height: 360px;
  }
  .atelier-stage .model-window {
    height: 78%;
  }
  .palette-paper {
    bottom: 0;
  }
  .atelier-stage .live-label {
    font-size: 7px;
  }
  .hero-copy .intro {
    margin: 16px 0;
  }
  .hero-copy > .eyebrow {
    margin-bottom: 17px;
  }
  .atelier-hero {
    padding-top: 24px;
  }
  .hero-copy .fine-print {
    margin-top: 10px;
  }
}
@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: 49px;
  }
  .hero-copy > .eyebrow {
    font-size: 7px;
    letter-spacing: 0.12em;
  }
  .hero-copy .intro {
    font-size: 13px;
  }
  .hero-copy .actions {
    gap: 12px;
  }
  .hero-copy .button {
    gap: 14px;
    padding-inline: 12px;
    min-width: 155px;
  }
  .hero-copy .text-link {
    font-size: 10px;
    gap: 9px;
  }
  .hero-copy .fine-print {
    font-size: 9px;
  }
  .atelier-stage {
    height: 335px;
  }
}
/* Preserve the entire alternate outfit, including face and shoes. */
.atelier-stage[data-palette="soft"] .model-window img {
  height: calc(100% - 34px);
  object-fit: contain;
  background: var(--color-panel);
}

/* Hallmark · refinement of Split Studio · theme: existing Stef's Closet Bloom · nav: existing public masthead */
/* Pre-emit critique: P5 H5 E4 S5 R4 V4. Retains the selected composition; reconnects it to the product. */

@font-face {
  font-family: "Instrument Sans";
  src: url("/static/fonts/instrument-sans-variable-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: Geist;
  src: url("/static/fonts/geist-variable-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
.atelier-v2 {
  --color-panel: var(--color-paper-3);
  --color-white: var(--color-paper-2);
  --color-shadow: color-mix(in oklch, var(--color-accent-2) 14%, transparent);
  --text-heading: clamp(36px, 4vw, 54px);
  --color-line: var(--color-rule-soft);
  position: relative;
  isolation: isolate;
  font-family: var(--font-body);
  font-size: 16px;
}
.atelier-v2::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60rem 42rem at 88% -6%, var(--wash-blush), transparent 62%),
    radial-gradient(52rem 40rem at -8% 88%, var(--wash-plum), transparent 60%);
}
.atelier-v2 .wrap {
  max-width: 1320px;
  padding-inline: clamp(24px, 4vw, 56px);
}
.atelier-v2 h1,
.atelier-v2 h2,
.atelier-v2 h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.atelier-v2 .site-nav {
  height: 88px;
  border: 0;
  gap: 32px;
}
.atelier-v2 .site-nav > .brand {
  position: static;
  transform: none;
}
.atelier-v2 .brand {
  font-family: var(--font-wordmark);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.9px;
  gap: 8px;
}
.atelier-v2 .brand svg {
  width: 21px;
  height: 21px;
  stroke: var(--color-accent);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.atelier-v2 .site-nav .links {
  order: 0;
  margin-left: auto;
  gap: 28px;
  display: flex;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.atelier-v2 .site-nav .links a {
  gap: 8px;
}
.atelier-v2 .atelier-hero {
  min-height: 630px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 36px;
}
.atelier-v2 .hero-copy {
  padding-bottom: 24px;
  max-width: 470px;
}
.atelier-v2 .hero-copy .eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.5;
  color: var(--color-accent);
  margin-bottom: 28px;
  gap: 8px;
}
.atelier-v2 .hero-copy .eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.atelier-v2 .hero-copy h1 {
  font-size: clamp(64px, 6.1vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.atelier-v2 .hero-copy .intro {
  font-size: 17px;
  line-height: 1.65;
  max-width: 360px;
  margin: 28px 0;
}
.atelier-v2 .button {
  font-family: var(--font-display);
  background: var(--color-accent);
  color: var(--color-on-accent);
  font-size: 15px;
  font-weight: 500;
  min-height: 52px;
  border-radius: var(--r-pill);
  padding: 14px 23px;
  gap: 22px;
  box-shadow: var(--shadow-panel);
}
.atelier-v2 .button .arrow {
  font-size: 20px;
}
.atelier-v2 .text-link {
  border-radius: var(--r-pill);
  border: 1px solid var(--color-rule);
  padding: 10px 19px;
  min-height: 52px;
  font-size: 14px;
  gap: 12px;
}
.atelier-v2 .actions {
  gap: 12px;
}
.atelier-v2 .fine-print {
  font-size: 11px;
  margin-top: 16px;
}
.atelier-v2 .atelier-stage {
  height: 570px;
  margin: 0;
  isolation: isolate;
}
.atelier-v2 .atelier-stage::before {
  width: 88%;
  height: 93%;
  right: -2%;
  top: 0;
  border-radius: 45% 48% 24px 24px;
  background: linear-gradient(
    155deg,
    var(--color-paper-2),
    var(--color-paper-3)
  );
  box-shadow: inset 0 0 0 1px var(--color-rule-soft);
  opacity: 0.8;
}
.atelier-v2 .atelier-stage::after {
  display: none;
}
.atelier-v2 .model-window {
  left: 44%;
  top: 0;
  width: 48%;
  height: 89%;
  border: 0;
  border-radius: var(--r-panel);
  transform: rotate(3deg);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  background: var(--color-paper-2);
}
.atelier-v2 .model-window img,
.atelier-v2 .atelier-stage[data-palette="soft"] .model-window img {
  height: calc(100% - 51px);
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--color-paper-3);
}
.atelier-v2 .model-window::after {
  display: none;
}
.atelier-v2 .model-caption {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  padding: 10px 15px;
  background: var(--color-paper-2);
  height: 51px;
}
.atelier-v2 .caption-detail {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  color: var(--color-muted);
  margin-top: 3px;
}
.atelier-v2 .piece {
  mix-blend-mode: normal;
}
.atelier-v2 .garment {
  background-image: url("/static/img/atelier/garments.webp");
  background-size: 400% 200%;
  filter: none;
}
.editorial-teal {
  background-position: 0 0;
}
.editorial-trousers {
  background-position: 33.333% 0;
}
.editorial-camel {
  background-position: 66.667% 0;
}
.editorial-pump {
  background-position: 100% 0;
}
.editorial-blazer {
  background-position: 0 100%;
}
.editorial-shorts {
  background-position: 33.333% 100%;
}
.editorial-wine {
  background-position: 66.667% 100%;
}
.editorial-boot {
  background-position: 100% 100%;
}
.atelier-v2 .atelier-stage .piece-top {
  left: 0;
  top: 4%;
  width: 43%;
  transform: rotate(-10deg);
}
.atelier-v2 .atelier-stage .piece-bottom {
  left: 8%;
  top: 36%;
  width: 42%;
  transform: rotate(7deg);
}
.atelier-v2 .atelier-stage .piece-bag {
  right: -5%;
  top: 44%;
  width: 27%;
  transform: rotate(8deg);
}
.atelier-v2 .atelier-stage .piece-shoe {
  right: 0;
  bottom: 2%;
  width: 28%;
  transform: rotate(-12deg);
}
.atelier-v2 .atelier-stage[data-palette="soft"] .piece-shoe {
  width: 28%;
  right: -3%;
  bottom: 1%;
}
.atelier-v2 .atelier-stage[data-phase="paired"] .piece-top {
  transform: translate(14%, 0) rotate(0) scale(0.96);
}
.atelier-v2 .atelier-stage[data-phase="paired"] .piece-bottom {
  transform: translate(0, -6%) rotate(0) scale(0.94);
}
.atelier-v2 .atelier-stage[data-phase="paired"] .piece-bag {
  transform: translate(-10%, 4%) rotate(0) scale(0.9);
}
.atelier-v2 .atelier-stage[data-phase="paired"] .piece-shoe {
  transform: translate(-10%, -5%) rotate(0) scale(0.9);
}
.atelier-v2 .atelier-stage[data-phase="worn"] .piece-top {
  transform: translate(-8%, 4%) rotate(-12deg) scale(0.83);
  opacity: 1;
}
.atelier-v2 .atelier-stage[data-phase="worn"] .piece-bottom {
  transform: translate(-14%, 1%) rotate(4deg) scale(0.87);
  opacity: 1;
}
.atelier-v2 .atelier-stage[data-phase="worn"] .piece-bag {
  transform: translate(8%, 4%) rotate(7deg) scale(0.88);
}
.atelier-v2 .atelier-stage[data-phase="worn"] .piece-shoe {
  transform: translate(5%, 0) rotate(-7deg) scale(0.88);
}
.atelier-v2 .atelier-stage[data-phase="worn"] .model-window {
  transform: translate(-3%, 0) rotate(0) scale(1.04);
}
.atelier-v2 .thread {
  stroke: var(--color-accent);
  opacity: 0.22;
}
.atelier-v2 .palette-paper {
  left: 0;
  bottom: -1%;
  transform: rotate(-3deg);
  border-radius: 16px;
  min-width: 234px;
  padding: 16px 20px;
  background: var(--color-paper-2);
  border: 1px solid var(--color-rule-soft);
  box-shadow: var(--shadow-panel);
}
.atelier-v2 .palette-paper > .eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 7px;
  color: var(--color-muted);
}
.atelier-v2 .palette-paper strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.atelier-v2 .palette-paper .palette-controls {
  margin-top: 9px;
}
.atelier-v2 .palette-choice {
  border-color: var(--color-rule-soft);
  padding: 7px 11px;
}
.atelier-v2 .palette-choice[aria-pressed="true"] {
  border-color: var(--color-accent);
  background: var(--color-paper-3);
}
.atelier-v2 .swatch {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-paper-2);
}
.atelier-v2 .styling-note {
  position: absolute;
  top: -1%;
  right: -1%;
  z-index: 8;
  transform: rotate(4deg);
  background: var(--color-paper-2);
  border: 1px solid var(--color-rule-soft);
  border-radius: 13px;
  box-shadow: var(--shadow-panel);
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}
.atelier-v2 .note-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 6px;
}
.atelier-v2 .note-detail {
  display: block;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 400;
  margin-left: 12px;
  margin-top: 2px;
}
.atelier-v2 .atelier-stage .live-label {
  right: 2%;
  bottom: -2%;
  font-size: 9px;
  color: var(--color-muted);
}
.atelier-v2 .hero-baseline {
  padding-block: 16px;
  border-color: var(--color-rule-soft);
  margin-top: 5px;
}
.atelier-v2 .phase-selector {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
}
.atelier-v2 .phase-selector button {
  min-height: 44px;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
}
.atelier-v2 .phase-selector button span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--color-paper-3);
  display: grid;
  place-items: center;
  font-size: 10px;
  border: 1px solid var(--color-rule-soft);
}
.atelier-v2 .phase-selector button[aria-pressed="true"] {
  color: var(--color-accent);
}
.atelier-v2 .phase-selector button[aria-pressed="true"] span {
  background: var(--color-accent);
  color: var(--color-on-accent);
  border-color: var(--color-accent);
}
.atelier-v2 .phase-selector > i {
  font-style: normal;
  color: var(--color-neutral);
  font-size: 12px;
}
.atelier-v2 .feature-spread {
  padding-block: 88px;
  gap: 72px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}
.atelier-v2 .feature-spread > figure > img {
  object-fit: contain;
  border-radius: var(--r-panel);
  box-shadow: var(--shadow-panel);
  aspect-ratio: auto;
}
.atelier-v2 .feature-spread h2 {
  font-size: 48px;
}
.atelier-v2 .section-copy p {
  font-size: 15px;
  margin: 24px 0;
}
.atelier-v2 .how-list {
  margin-top: 24px;
}
.atelier-v2 .how-row {
  padding: 18px 0;
}
.atelier-v2 .how-row h3 {
  font-size: 18px;
}
.atelier-v2 .how-row p {
  font-size: 13px;
  margin: 8px 0 0;
}
.atelier-v2 .color-section {
  background: var(--color-paper-3);
}
.atelier-v2 .color-section .section-copy {
  padding-left: 0;
}
.atelier-v2 .end-cta h2 {
  font-size: 56px;
}
.atelier-v2 .end-cta .stef-note strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.atelier-v2 .review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
  padding: 8px 0 24px;
  color: var(--color-muted);
}
.atelier-v2 .review-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 621px) and (max-height: 850px) {
  .atelier-v2 .site-nav {
    height: 76px;
  }
  .atelier-v2 .atelier-hero {
    min-height: 570px;
    padding-top: 28px;
    padding-bottom: 36px;
  }
  .atelier-v2 .atelier-stage {
    height: 500px;
  }
  .atelier-v2 .hero-copy h1 {
    font-size: 74px;
  }
  .atelier-v2 .hero-copy .eyebrow {
    margin-bottom: 24px;
  }
  .atelier-v2 .hero-copy .intro {
    font-size: 16px;
    margin: 24px 0;
  }
  .atelier-v2 .hero-copy {
    padding-bottom: 0;
  }
}
@media (max-width: 1100px) {
  .atelier-v2 .hero-copy h1 {
    font-size: 68px;
  }
  .atelier-v2 .hero-copy .intro {
    font-size: 15px;
  }
  .atelier-v2 .hero-copy .actions {
    gap: 10px;
  }
  .atelier-v2 .button {
    padding-inline: 20px;
    font-size: 14px;
  }
  .atelier-v2 .text-link {
    font-size: 13px;
    padding-inline: 16px;
  }
  .atelier-v2 .atelier-stage {
    height: 500px;
  }
  .atelier-v2 .styling-note {
    right: -1%;
    padding: 10px 13px;
    font-size: 9px;
  }
  .atelier-v2 .palette-paper {
    min-width: 205px;
    padding: 14px 16px;
  }
  .atelier-v2 .palette-paper strong {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .atelier-v2 .site-nav .links {
    gap: 20px;
    font-size: 10px;
  }
  .atelier-v2 .site-nav .links .secondary-nav {
    display: none;
  }
  .atelier-v2 .atelier-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 12px;
    min-height: 570px;
  }
  .atelier-v2 .hero-copy h1 {
    font-size: 59px;
  }
  .atelier-v2 .hero-copy .eyebrow {
    font-size: 10px;
    max-width: 240px;
  }
  .atelier-v2 .hero-copy .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .atelier-v2 .hero-copy .intro {
    font-size: 14px;
  }
  .atelier-v2 .atelier-stage {
    height: 460px;
  }
  .atelier-v2 .model-window {
    left: 40%;
    width: 55%;
    height: 85%;
    top: 6%;
  }
  .atelier-v2 .atelier-stage .piece-top {
    left: -4%;
    top: 11%;
    width: 48%;
  }
  .atelier-v2 .atelier-stage .piece-bottom {
    left: 0;
    top: 40%;
    width: 49%;
  }
  .atelier-v2 .atelier-stage .piece-bag {
    top: 45%;
    right: -8%;
    width: 32%;
  }
  .atelier-v2 .atelier-stage .piece-shoe {
    width: 31%;
    bottom: 0;
  }
  .atelier-v2 .styling-note {
    top: 1%;
    right: 0;
    font-size: 8px;
  }
  .atelier-v2 .note-detail {
    font-size: 7px;
  }
  .atelier-v2 .palette-paper {
    left: -6%;
    bottom: 0;
    min-width: 190px;
    padding: 12px 14px;
  }
  .atelier-v2 .palette-paper strong {
    font-size: 18px;
  }
  .atelier-v2 .palette-paper > .eyebrow {
    font-size: 8px;
  }
  .atelier-v2 .atelier-stage .live-label {
    font-size: 7px;
    bottom: -5%;
  }
  .atelier-v2 .phase-selector {
    gap: 7px;
    font-size: 10px;
  }
  .atelier-v2 .phase-selector button {
    gap: 5px;
  }
  .atelier-v2 .feature-spread {
    gap: 36px;
  }
  .atelier-v2 .feature-spread h2 {
    font-size: 38px;
  }
}
@media (max-width: 620px) {
  .atelier-v2 .wrap {
    padding-inline: 22px;
  }
  .atelier-v2 .site-nav {
    height: 76px;
    gap: 16px;
  }
  .atelier-v2 .brand {
    font-size: 22px;
    gap: 6px;
  }
  .atelier-v2 .brand svg {
    width: 18px;
    height: 18px;
  }
  .atelier-v2 .site-nav .links {
    font-size: 10px;
    gap: 0;
  }
  .atelier-v2 .site-nav .links a:first-child {
    display: none;
  }
  .atelier-v2 .atelier-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 20px;
    padding-bottom: 22px;
    gap: 20px;
    min-height: 0;
  }
  .atelier-v2 .hero-copy {
    padding-bottom: 0;
    max-width: none;
  }
  .atelier-v2 .hero-copy .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
    max-width: none;
  }
  .atelier-v2 .hero-copy h1 {
    font-size: clamp(50px, 11.7vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }
  .atelier-v2 .hero-copy h1 br:first-child {
    display: none;
  }
  .atelier-v2 .hero-copy h1 .last-line {
    display: block;
  }
  .atelier-v2 .hero-copy .intro {
    font-size: 14px;
    max-width: 340px;
    margin: 18px 0;
  }
  .atelier-v2 .hero-copy .actions {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .atelier-v2 .button {
    font-size: 13px;
    min-height: 48px;
    padding: 12px 18px;
    gap: 16px;
  }
  .atelier-v2 .text-link {
    font-size: 12px;
    min-height: 48px;
    padding: 10px 16px;
    gap: 10px;
  }
  .atelier-v2 .fine-print {
    font-size: 10px;
    margin-top: 13px;
  }
  .atelier-v2 .atelier-stage {
    height: 380px;
    margin: 0;
  }
  .atelier-v2 .model-window {
    top: 3%;
    left: 42%;
    width: 53%;
    height: 86%;
    border-radius: 17px;
  }
  .atelier-v2 .model-window img,
  .atelier-v2 .atelier-stage[data-palette="soft"] .model-window img {
    height: calc(100% - 45px);
  }
  .atelier-v2 .model-caption {
    height: 45px;
    font-size: 9px;
    padding: 8px 10px;
  }
  .atelier-v2 .caption-detail {
    font-size: 7px;
  }
  .atelier-v2 .styling-note {
    right: -1%;
    top: 0;
    padding: 8px 10px;
    font-size: 7px;
    border-radius: 9px;
  }
  .atelier-v2 .note-detail {
    font-size: 6px;
  }
  .atelier-v2 .atelier-stage .piece-top {
    left: -6%;
    top: 8%;
    width: 48%;
  }
  .atelier-v2 .atelier-stage .piece-bottom {
    left: 0;
    top: 37%;
    width: 48%;
  }
  .atelier-v2 .atelier-stage .piece-bag {
    right: -6%;
    top: 45%;
    width: 31%;
  }
  .atelier-v2 .atelier-stage .piece-shoe {
    width: 30%;
    right: -3%;
    bottom: 2%;
  }
  .atelier-v2 .palette-paper {
    min-width: 173px;
    left: -2%;
    bottom: 0;
    padding: 12px;
    border-radius: 12px;
  }
  .atelier-v2 .palette-paper strong {
    font-size: 17px;
  }
  .atelier-v2 .palette-paper > .eyebrow {
    font-size: 7px;
  }
  .atelier-v2 .palette-paper .palette-controls {
    margin-top: 7px;
  }
  .atelier-v2 .palette-choice {
    padding: 5px 8px;
  }
  .atelier-v2 .swatch {
    width: 20px;
    height: 20px;
  }
  .atelier-v2 .atelier-stage .live-label {
    bottom: -3%;
    right: 0;
    font-size: 6px;
  }
  .atelier-v2 .hero-baseline {
    gap: 8px;
    flex-wrap: wrap;
    padding-block: 12px;
  }
  .atelier-v2 .phase-selector {
    width: 100%;
    justify-content: space-between;
    gap: 3px;
    font-size: 10px;
  }
  .atelier-v2 .phase-selector button {
    padding: 5px 0;
    gap: 4px;
    min-height: 44px;
  }
  .atelier-v2 .phase-selector button span {
    width: 19px;
    height: 19px;
    font-size: 8px;
  }
  .atelier-v2 .phase-selector > i {
    font-size: 9px;
  }
  .atelier-v2 .hero-baseline .motion-controls {
    margin-left: auto;
  }
  .atelier-v2 .feature-spread,
  .atelier-v2 .color-section .feature-spread {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 60px;
    gap: 32px;
  }
  .atelier-v2 .feature-spread h2 {
    font-size: 38px;
  }
  .atelier-v2 .color-section .section-copy {
    order: 0;
  }
  .atelier-v2 .end-cta h2 {
    font-size: 43px;
  }
}
@media (max-width: 360px) {
  .atelier-v2 .hero-copy h1 {
    font-size: 48px;
  }
  .atelier-v2 .hero-copy .eyebrow {
    font-size: 8px;
  }
  .atelier-v2 .hero-copy .intro {
    font-size: 13px;
  }
  .atelier-v2 .hero-copy .actions {
    gap: 8px;
  }
  .atelier-v2 .button {
    padding-inline: 13px;
    font-size: 12px;
    gap: 10px;
    min-width: 0;
  }
  .atelier-v2 .text-link {
    padding-inline: 12px;
    font-size: 11px;
    gap: 8px;
  }
  .atelier-v2 .atelier-stage {
    height: 340px;
  }
  .atelier-v2 .palette-paper {
    min-width: 152px;
    padding: 10px;
  }
  .atelier-v2 .palette-paper strong {
    font-size: 15px;
  }
  .atelier-v2 .palette-choice {
    padding: 4px 6px;
  }
  .atelier-v2 .swatch {
    width: 18px;
    height: 18px;
  }
  .atelier-v2 .phase-selector {
    font-size: 9px;
  }
  .atelier-v2 .phase-selector button span {
    width: 17px;
    height: 17px;
  }
  .atelier-v2 .styling-note {
    font-size: 6px;
    padding: 7px;
  }
  .atelier-v2 .note-detail {
    font-size: 5px;
  }
}
/* Production essentials, using the same Bloom surfaces as the approved page. */
.atelier-v2 .readiness {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-muted);
}
.atelier-v2 .atelier-pricing {
  padding-block: 76px;
  border-bottom: 1px solid var(--color-rule-soft);
}
.atelier-v2 .pricing-heading {
  max-width: 680px;
}
.atelier-v2 .pricing-heading .eyebrow {
  color: var(--color-accent);
  margin-bottom: 16px;
}
.atelier-v2 .pricing-heading > p:last-child {
  margin-block: 24px;
  line-height: 1.7;
  color: var(--color-muted);
}
.atelier-v2 .pricing-details,
.atelier-v2 .privacy-details {
  margin-block: 24px;
  border: 1px solid var(--color-rule);
  border-radius: var(--r-panel);
  padding: 20px 24px;
  background: var(--color-paper-2);
}
.atelier-v2 summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
}
.atelier-v2 details[open] summary {
  margin-bottom: 24px;
}
.atelier-v2 details > p,
.atelier-v2 details li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
}
.atelier-v2 details li + li {
  margin-top: 12px;
}
.atelier-v2 .site-disclosure {
  max-width: 750px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.atelier-v2 .site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 12px;
  padding-bottom: 28px;
}
.cta-dock {
  display: none;
}
/* Hallmark · component: wardrobe introduction · existing Atelier / Bloom tokens
 * pre-emit critique: P4 H5 E4 S5 R5 V4 · static content, native document flow */
.atelier-v2 .closet-start {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: var(--sp-8);
  padding-block: var(--sp-8);
  border-bottom: 1px solid var(--color-rule-soft);
}
.atelier-v2 .closet-start h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
}
.atelier-v2 .closet-start-copy > p {
  max-width: 30ch;
  margin-top: var(--sp-4);
  color: var(--color-muted);
  font-size: 15px;
}
.atelier-v2 .closet-start-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5) var(--sp-6);
  align-content: center;
}
.atelier-v2 .closet-start-method svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: var(--sp-4);
}
.atelier-v2 .closet-start h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
}
.atelier-v2 .closet-start-method p {
  margin-top: var(--sp-2);
  color: var(--color-muted);
  font-size: 14px;
}
.atelier-v2 .closet-start-next {
  grid-column: 1 / -1;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-rule-soft);
  color: var(--color-muted);
  font-size: 13px;
}
@media (max-width: 768px) {
  .atelier-v2 .closet-start {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-6);
    padding-block: var(--sp-7);
  }
  .atelier-v2 .closet-start h2 br {
    display: none;
  }
  .atelier-v2 .closet-start-copy > p {
    max-width: 40ch;
  }
  .atelier-v2 .closet-start-methods {
    column-gap: var(--sp-4);
  }
}
@media (max-width: 640px) {
  .atelier-v2 .atelier-pricing {
    padding-block: 48px;
  }
  .atelier-v2 .pricing-details,
  .atelier-v2 .privacy-details {
    padding: 18px 16px;
  }
  .cta-dock:not([hidden]) {
    display: block;
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 0 max(12px, env(safe-area-inset-bottom));
    background: var(--color-paper-2);
    border-top: 1px solid var(--color-rule);
    box-shadow: 0 -4px 28px var(--color-shadow);
  }
  .cta-dock__inner {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .cta-dock .button {
    flex-shrink: 0;
    font-size: 13px;
    gap: 10px;
    padding-inline: 16px;
  }
  .cta-dock__note {
    font-size: 10px;
    line-height: 1.5;
    color: var(--color-muted);
  }
  body.has-dock {
    padding-bottom: 88px;
  }
}

/* A static overview, separate from the illustrative hero. */
.atelier-v2 .closet-steps {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: var(--sp-5) 0;
  border-block: 1px solid var(--color-rule-soft);
  font-size: 16px;
}
.atelier-v2 .closet-steps li {
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
}
.atelier-v2 .closet-steps li > span {
  color: var(--color-accent);
  font-weight: 600;
}
@media (max-width: 768px) {
  .atelier-v2 .closet-steps {
    flex-direction: column;
    gap: var(--sp-4);
  }
}

/* Hallmark · closing section · existing Atelier / Bloom tokens
 * pre-emit critique: P4 H5 E4 S5 R5 V4 · one offer, paired with founder's note */
.atelier-v2 .closet-finale { padding-block: var(--sp-8); }
.atelier-v2 .closet-finale-main { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: var(--sp-8); align-items: center; }
.atelier-v2 .closet-finale h2 { font-size: clamp(36px, 4vw, 58px); line-height: 1.08; letter-spacing: -0.045em; max-width: 14ch; overflow-wrap: anywhere; }
.atelier-v2 .closet-finale-copy > p { max-width: 42ch; margin-top: var(--sp-5); color: var(--color-muted); line-height: 1.7; }
.atelier-v2 .closet-finale .stef-note { display: flex; align-items: center; gap: var(--sp-4); max-width: 460px; margin: var(--sp-7) 0 0; text-align: left; }
.atelier-v2 .closet-finale .stef-note img { width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.atelier-v2 .closet-finale .stef-note p { font-size: 13px; line-height: 1.7; color: var(--color-muted); }
.atelier-v2 .closet-finale .stef-note strong { font-size: 14px; font-family: var(--font-body); color: var(--color-ink); }
.atelier-v2 .closet-offer { padding: var(--sp-7); background: var(--color-accent); color: var(--color-on-accent); border-radius: var(--r-panel); }
.atelier-v2 .closet-offer h3 { font-size: 22px; letter-spacing: -0.02em; }
.atelier-v2 .closet-offer-price { display: flex; align-items: baseline; gap: var(--sp-4); font-size: 64px; font-weight: 600; letter-spacing: -0.05em; margin-top: var(--sp-3); }
.atelier-v2 .closet-offer-price span { font-size: 14px; font-weight: 400; letter-spacing: 0; }
.atelier-v2 .closet-offer-benefits { list-style: none; padding: 0; margin: var(--sp-5) 0 var(--sp-6); font-size: 15px; }
.atelier-v2 .closet-offer-benefits li { display: flex; gap: var(--sp-3); margin-top: var(--sp-3); }
.atelier-v2 .closet-offer-benefits li::before { content: '✓'; }
.atelier-v2 .closet-offer .button { display: flex; justify-content: space-between; width: 100%; background: var(--color-on-accent); color: var(--color-accent); border-color: var(--color-on-accent); white-space: nowrap; }
.atelier-v2 .closet-offer .button:hover { background: var(--color-paper-3); border-color: var(--color-paper-3); }
.atelier-v2 .closet-offer .button:focus-visible { outline: 2px solid var(--color-on-accent); outline-offset: 5px; }
.atelier-v2 .closet-offer-action > p { text-align: center; font-size: 12px; margin-top: var(--sp-3); }
.atelier-v2 .closet-upgrade { margin: var(--sp-6) 0; max-width: 85ch; font-size: 14px; line-height: 1.7; color: var(--color-muted); }
.atelier-v2 .closet-finale-details { border-top: 1px solid var(--color-rule); }
.atelier-v2 .closet-finale-details details { margin: 0; border: 0; border-bottom: 1px solid var(--color-rule); border-radius: 0; padding: var(--sp-5) 0; background: none; }
.atelier-v2 .closet-finale-details summary { display: flex; align-items: center; justify-content: space-between; list-style: none; }
.atelier-v2 .closet-finale-details summary::-webkit-details-marker { display: none; }
.atelier-v2 .closet-finale-details summary::after { content: '+'; font-size: 22px; color: var(--color-accent); }
.atelier-v2 .closet-finale-details details[open] summary::after { content: '−'; }
@media (max-width: 768px) {
 .atelier-v2 .closet-finale { padding-block: var(--sp-7); }
 .atelier-v2 .closet-finale-main { grid-template-columns: minmax(0, 1fr); gap: var(--sp-6); }
 .atelier-v2 .closet-finale h2 { max-width: 18ch; }
 .atelier-v2 .closet-finale .stef-note { margin-top: var(--sp-5); }
 .atelier-v2 .closet-offer { padding: var(--sp-6); }
}
@media (max-width: 375px) {
 .atelier-v2 .closet-offer { padding: var(--sp-5); }
 .atelier-v2 .closet-offer .button { padding-inline: var(--sp-4); font-size: 14px; }
}
