/* ============================================================
   WATSON STYLE GROUP — /fit
   Qualification funnel. Warm, colored, editorial. Uses the
   shared brand system in style.css (Schnyder M + Neue Haas,
   blush #f8e5e7, ink) and adds full-bleed color bands so the
   flow reads rich rather than clinical white.
   ============================================================ */

:root {
  --fit-cream: #f5f1ea;   /* warm paper base for the funnel */
  --fit-blush: #f8e5e7;   /* signature accent band */
  --fit-blush-tint: #fcf2f3;
  --fit-dark: #050505;    /* dramatic band */
  --fit-line-cream: rgba(0,0,0,0.10);
}

/* warm base instead of clinical white */
body.fit-page { background: var(--fit-cream); }
.fit { min-height: 60vh; background: var(--fit-cream); }

/* screens are mutually exclusive; JS toggles [hidden] + .is-active */
.fit-screen { display: none; }
.fit-screen.is-active { display: block; }
.fit-screen[hidden] { display: none !important; }

/* ------------------------------------------------------------
   FULL-BLEED COLOR BANDS
   ------------------------------------------------------------ */
.fit-band {
  padding: clamp(1.9rem, 3.6vw, 3rem) var(--pad);
}
.fit-band--blush { background: var(--fit-blush); }
.fit-band--cream { background: var(--fit-cream); }
.fit-band--dark  { background: var(--fit-dark); color: #fff; }
.fit-band--cta   { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.fit-band > * { max-width: 960px; margin: 0 auto; }

.eyebrow--on-dark { color: rgba(255,255,255,0.55); }

/* ------------------------------------------------------------
   HERO (blush)
   ------------------------------------------------------------ */
.fit-hero { padding-top: clamp(2rem, 4vw, 3.25rem); padding-bottom: clamp(2rem, 4vw, 3.25rem); }
.fit-hero__inner { text-align: center; }
.fit-hero .eyebrow {
  display: block;
  margin-bottom: 0.85rem;
  font-size: clamp(1.15rem, 2.8vw, 1.85rem);
  letter-spacing: 0.2em;
  color: var(--camel);
}
.fit-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.004em;
  color: #4a4238;
  max-width: 32ch;
  margin: 0 auto;
}
.fit-hero__lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #2a2a2a;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.7;
  text-wrap: balance;
}

/* ------------------------------------------------------------
   VIDEO
   ------------------------------------------------------------ */
.fit-video { margin: 0 auto; }
.fit-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--fit-blush) center / cover no-repeat;
  overflow: hidden;
  cursor: pointer;
}
.fit-video__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.52) 100%);
  transition: background 0.4s ease;
}
.fit-video__frame:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.44) 100%); }
.fit-video__frame.is-playing { cursor: default; }
.fit-video__frame.is-playing::after { display: none; }
.fit-video__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.fit-video__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 82px; height: 82px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.fit-video__play svg { width: 30px; height: 30px; margin-left: 4px; }
.fit-video__frame:hover .fit-video__play {
  background: var(--fit-blush);
  transform: translate(-50%, -50%) scale(1.06);
}
.fit-video__caption {
  margin-top: 1.1rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ------------------------------------------------------------
   WHO WE SERVE (clean columns, light — mirrors How It Works)
   ------------------------------------------------------------ */
.fit-cols .eyebrow { display: block; margin-bottom: 2rem; }
.fit-cols__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  border-top: 1px solid var(--fit-line-cream);
  padding-top: 2.4rem;
}
.fit-col h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.32rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.fit-col p {
  font-size: 0.95rem;
  color: #3a3a3a;
  line-height: 1.65;
  max-width: 34ch;
}

/* ------------------------------------------------------------
   HOW IT WORKS (dark)
   ------------------------------------------------------------ */
.fit-process .eyebrow { display: block; margin-bottom: 1.2rem; font-size: clamp(1rem, 2.1vw, 1.35rem); letter-spacing: 0.2em; }
.fit-process__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.05rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 0 clamp(1.8rem, 3.2vw, 2.6rem);
  text-wrap: balance;
}
.fit-process__lead-sub { font-size: 0.6em; color: var(--muted); }
.fit-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  border-top: 1px solid var(--fit-line-cream);
  padding-top: 2.2rem;
}
.fit-process__grid--4 { grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.4vw, 2.2rem); }
.fit-process__grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.8rem, 3.4vw, 2.8rem) clamp(2rem, 5vw, 4.5rem);
  max-width: 900px;
  margin: 0 auto;
}
.fit-process__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--camel);
  display: block;
  margin-bottom: 0.85rem;
}
.fit-process h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.fit-process__step p {
  font-size: 1.08rem;
  color: #3a3a3a;
  line-height: 1.62;
  max-width: 42ch;
}

/* ------------------------------------------------------------
   HOW TO BEGIN + CTA (blush)
   ------------------------------------------------------------ */
.fit-invite { text-align: center; }
.fit-invite__eyebrow {
  display: block;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  color: #6a5a5c;
}
.fit-invite__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.9vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -0.006em;
  color: var(--ink);
  max-width: 26ch;
  margin: 0 auto;
  text-wrap: balance;
}
/* split layout: sentence on one side, the CTA alone on the other */
.fit-invite--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  text-align: left;
  max-width: 1000px;
}
.fit-invite--split .fit-invite__lead { max-width: 32ch; margin: 0; }
.fit-invite--split .fit-cta { margin-top: 0; display: flex; justify-content: center; }
.fit-cta {
  margin-top: clamp(2rem, 4.5vw, 3rem);
}
/* extra-large primary CTA */
.fit-btn.fit-btn--xl {
  font-size: 1rem;
  letter-spacing: 0.26em;
  padding: 1.85rem 5.5rem;
}
.fit-cta__note {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: #7a6a6c;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.fit-btn {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  background: none;
  border: 1px solid var(--ink);
  padding: 1rem 2.4rem;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease, border-color 0.4s ease;
}
.fit-btn:hover { background: var(--ink); color: #fff; }
/* filled: warm ink primary that reads on both cream and blush */
.fit-btn--filled { background: var(--ink); color: #fff; border-color: var(--ink); }
.fit-btn--filled:hover { background: #2a2a2a; border-color: #2a2a2a; color: #fff; }
.fit-btn--lg { padding: 1.2rem 3.4rem; }
.fit-btn--ghost {
  border-color: transparent;
  background: none;
  padding-left: 0; padding-right: 0;
  position: relative;
}
.fit-btn--ghost::after {
  content: "";
  position: absolute; left: 0; bottom: 0.55rem;
  width: 100%; height: 1px;
  background: currentColor; opacity: 0.35;
  transition: opacity 0.3s ease;
}
.fit-btn--ghost:hover { background: none; color: var(--ink); opacity: 0.7; }

/* ------------------------------------------------------------
   SCREEN 1 — SURVEY (cream)
   ------------------------------------------------------------ */
.fit-screen--survey {
  min-height: calc(100vh - var(--nav-h));
  display: none;
  padding: clamp(3rem, 8vw, 6rem) var(--pad) clamp(4rem, 9vw, 7rem);
  background: var(--fit-cream);
}
.fit-screen--survey.is-active { display: flex; }
.fit-survey {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* progress */
.fit-progress {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.fit-progress__bar {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;
}
.fit-progress__bar span {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--ink);
  transition: width 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fit-progress__label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* steps */
.fit-step {
  border: 0; margin: 0; padding: 0;
  display: none;
  animation: fit-step-in 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.fit-step.is-active { display: block; }
@keyframes fit-step-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.fit-step__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  padding: 0;
  margin-bottom: 0.9rem;
}
.fit-step__sub {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

/* text fields */
.fit-field { margin-bottom: 1.7rem; }
.fit-field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.fit-field__opt { text-transform: none; letter-spacing: 0; font-style: italic; opacity: 0.7; }
.fit-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,0.22);
  background: none;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink);
  padding: 0.55rem 0;
  transition: border-color 0.3s ease;
}
.fit-field input:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.fit-field input::placeholder { color: rgba(0,0,0,0.28); }

/* choices */
.fit-choice { display: flex; flex-direction: column; gap: 0; }
.fit-choice--radio.fit-choice--stack { gap: 0; }
.fit-choice:not(.fit-choice--stack) { flex-direction: row; flex-wrap: wrap; gap: 0.9rem; }

.fit-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(0,0,0,0.11);
  background: transparent;
  margin-top: -1px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  font-size: 0.94rem;
  line-height: 1.45;
  color: #1a1a1a;
}
.fit-choice:not(.fit-choice--stack) .fit-opt {
  margin-top: 0;
  min-width: 120px;
  justify-content: center;
}
.fit-opt:hover { background: rgba(248,229,231,0.45); border-color: rgba(0,0,0,0.2); }
.fit-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.fit-opt span { flex: 1; }

/* custom control mark */
.fit-opt::before {
  content: "";
  flex: 0 0 auto;
  width: 15px; height: 15px;
  border: 1px solid rgba(0,0,0,0.3);
  background: transparent;
  margin-top: 3px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.fit-choice--radio .fit-opt::before { border-radius: 50%; }
.fit-opt:has(input:checked) {
  border-color: var(--ink);
  background: var(--fit-blush);
}
.fit-opt:has(input:checked)::before {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: inset 0 0 0 3px var(--fit-blush);
}
.fit-opt:has(input:focus-visible) { border-color: var(--ink); }

/* sub-question + branching reveals */
.fit-subq {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fit-line-cream);
}
.fit-subq__q {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.fit-reveal {
  overflow: hidden;
  margin-top: 1.6rem;
  animation: fit-step-in 0.4s ease both;
}
.fit-reveal[hidden] { display: none; }

/* controls */
.fit-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}
.fit-controls .fit-btn#fitNext { margin-left: auto; }
.fit-error {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--red, #c30319);
  font-family: var(--serif);
  font-style: italic;
}
.fit-error[hidden] { display: none; }

/* ------------------------------------------------------------
   SCREEN 2 — RESULT (cream / blush)
   ------------------------------------------------------------ */
.fit-screen--result {
  min-height: calc(100vh - var(--nav-h));
  padding: clamp(3rem, 8vw, 6rem) var(--pad) clamp(4rem, 9vw, 7rem);
  background: var(--fit-cream);
}
.fit-screen--result.is-active { display: flex; flex-direction: column; }

/* evaluating */
.fit-eval {
  flex: 1;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.fit-eval[hidden] { display: none; }
.fit-eval__mark img {
  width: 48px; height: auto;
  animation: fit-pulse 2.4s cubic-bezier(0.45,0,0.55,1) infinite;
}
.fit-eval__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
@keyframes fit-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.96); }
}

/* result cards */
.fit-result-card {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  animation: fit-step-in 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.fit-result-card[hidden] { display: none; }
.fit-result-card__inner { text-align: center; }
.fit-result-card__inner .eyebrow { display: block; margin-bottom: 1.5rem; }
.fit-result-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  margin-bottom: 1.6rem;
}
.fit-result-card__body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #2a2a2a;
  max-width: 48ch;
  margin: 0 auto;
  text-wrap: pretty;
}
.fit-result-card__sign {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}
/* waitlist gets a warm blush card so a "no" still feels gracious */
.fit-result-card--waitlist {
  max-width: 1000px;
  background: var(--fit-blush);
  padding: clamp(2.5rem, 6vw, 4.25rem) clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(1rem, 4vw, 3rem);
}
/* title on one line, body on two (desktop) */
.fit-result-card--waitlist .fit-result-card__title {
  font-size: clamp(1.5rem, 3.1vw, 2.3rem);
}
.fit-result-card--waitlist .fit-result-card__body {
  max-width: 68ch;
}
@media (min-width: 720px) {
  .fit-result-card--waitlist .fit-result-card__title { white-space: nowrap; }
}

/* calendar */
.fit-calendar {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  min-height: 660px;
}
.fit-calendar iframe {
  width: 100%;
  min-width: 320px;
  min-height: 660px;
  border: none;
  overflow: hidden;
}

/* ------------------------------------------------------------
   WHO WE SERVE — scrolling cards (the main platter)
   ------------------------------------------------------------ */
.fit-serve__head { text-align: center; }
.fit-serve__head .eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
}
.fit-serve__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.98rem, 1.7vw, 1.25rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
  max-width: 34ch;
  margin: 0 auto;
  text-wrap: balance;
}
.fit-serve > .fit-cards {
  position: relative;
  max-width: 1180px;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
}
.fit-cards__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: max-content;
  will-change: transform;
}
.fit-card {
  flex: 0 0 auto;
  width: clamp(262px, 30vw, 330px);
  scroll-snap-align: start;
  background: #fffdfb;
  border: 1px solid var(--fit-line-cream);
  padding: 1.9rem 1.7rem 2.1rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.fit-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.005em;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.fit-card p { font-size: 1.1rem; color: #3a3a3a; line-height: 1.6; }
/* elegant dark cards on the black Who We Serve band (not stark white) */
.fit-band--dark .fit-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); }
.fit-band--dark .fit-card h3 { color: #fff; }
.fit-band--dark .fit-card p { color: rgba(255,255,255,0.72); }
.fit-cards__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.fit-cards__arrow:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.6); }
.fit-cards__arrow--prev { left: -8px; }
.fit-cards__arrow--next { right: -8px; }

/* ------------------------------------------------------------
   DIGITAL LOOKBOOK — scrolling iPad (adapted from /origin)
   ------------------------------------------------------------ */
.atelier-section{
  --ivory:#F1EADF; --ivory-deep:#E7DDCD;
  --silver-1:#E9E9EC; --silver-2:#C4C4CB; --silver-3:#9A9AA4;
  --ink-soft:#6B6256; --rust:#B0654A; --watson-pink:#F8E5E7; --screen:#FFFFFF;
  position:relative; isolation:isolate; overflow:hidden;
  background:radial-gradient(120% 90% at 50% 0%, #F7F1E7 0%, var(--ivory) 50%, var(--ivory-deep) 100%);
  color:#26211B;
}
.atelier-section *{ box-sizing:border-box; }
.fit-lookbook{ padding:clamp(1.8rem,3.6vw,3.25rem) var(--pad); }
.fit-lookbook__inner{
  display:grid; grid-template-columns:1.05fr 0.95fr;
  gap:clamp(1.25rem,2.6vw,2.75rem); align-items:center;
  max-width:1080px; margin:0 auto;
}
.fit-lookbook__text .eyebrow{ display:block; margin-bottom:1.1rem; font-size:clamp(1rem,2.1vw,1.35rem); letter-spacing:0.2em; color:var(--ink-soft); }
.fit-lookbook__title{
  font-family:var(--serif); font-weight:500;
  font-size:clamp(1.7rem,3.2vw,2.55rem); line-height:1.16; letter-spacing:-0.012em;
  color:#26211B; margin-bottom:1.2rem; text-wrap:balance;
}
/* combined hero (Our Goal + lookbook) */
.fit-lookbook--hero{ padding-top:clamp(2.4rem,5vw,4.25rem); background:var(--fit-blush); }
.fit-hero__headline{ font-size:clamp(2rem,4.2vw,3.1rem); line-height:1.12; max-width:15ch; }
.fit-lookbook__text p{ font-size:1.05rem; line-height:1.7; color:#4a4238; max-width:42ch; }
.fit-lookbook .bg-grain{ display:none; }
.stage{ position:relative; display:flex; align-items:center; justify-content:center; gap:clamp(22px,4vw,52px); }
.ipad-wrap{ position:relative; perspective:1700px; perspective-origin:50% 40%; }
.ipad-wrap::after{ content:""; position:absolute; z-index:-1; left:14%; right:-6%; bottom:-7%; height:60px; background:radial-gradient(ellipse at 50% 50%, rgba(40,33,27,.34), rgba(40,33,27,0) 70%); filter:blur(14px); transform:rotateZ(-3deg); }
.ipad{
  --w:min(300px,60vw); width:var(--w); aspect-ratio:3/4; position:relative;
  padding:calc(var(--w) * .038); border-radius:calc(var(--w) * .085);
  transform-style:preserve-3d; transform:rotateY(-19deg) rotateX(6deg) rotateZ(-1.5deg);
  transition:transform 1s cubic-bezier(.2,.7,.2,1);
  background:linear-gradient(150deg,#FCFCFD 0%,var(--silver-1) 18%,var(--silver-2) 50%,var(--silver-3) 82%,#7E7E88 100%);
  box-shadow:0 2px 3px rgba(255,255,255,.7) inset,0 -2px 4px rgba(0,0,0,.18) inset,34px 50px 80px -26px rgba(40,33,27,.5),14px 22px 40px -20px rgba(40,33,27,.42);
}
.ipad:hover{ transform:rotateY(-7deg) rotateX(3deg) rotateZ(0deg); }
.camera{ position:absolute; top:calc(var(--w) * .019); left:50%; transform:translateX(-50%); width:5px; height:5px; border-radius:50%; background:radial-gradient(circle at 35% 35%,#3a3a44,#0c0c10 70%); box-shadow:0 0 0 1.5px rgba(0,0,0,.15); }
.home-line{ position:absolute; bottom:calc(var(--w) * .016); left:50%; transform:translateX(-50%); width:30%; height:3px; border-radius:3px; background:rgba(255,255,255,.55); }
.screen{ position:relative; width:100%; height:100%; overflow:hidden; border-radius:calc(var(--w) * .052); background:var(--screen); box-shadow:0 0 0 1px rgba(0,0,0,.55), 0 0 22px rgba(0,0,0,.35) inset; }
.filmstrip{ height:100%; display:flex; flex-direction:column; transition:transform .85s cubic-bezier(.76,.02,.2,1); will-change:transform; }
.panel{ width:100%; height:100%; flex:0 0 100%; display:flex; flex-direction:column; background:var(--screen); }
.appbar{ display:flex; align-items:center; justify-content:space-between; padding:0 7%; height:9%; flex:0 0 9%; border-bottom:1px solid #EFE9DF; }
/* W icon: already black and the complete mark, so it reads at app-bar size
   (WSG_Style_Group_Type.svg is white-filled and only half the lockup) */
.brand-logo{
  height:52%; aspect-ratio:1 / 1;
  background:url('../images/W_Icon_Black.svg') left center/contain no-repeat;
  opacity:.75;
}
.edit-tag{ font-size:clamp(.46rem,1.2vw,.58rem); letter-spacing:.26em; text-transform:uppercase; color:var(--rust); font-weight:500; }
.shot{ flex:1; width:100%; overflow:hidden; background:#fff; }
.shot img{ width:100%; height:100%; object-fit:contain; display:block; }
.glass{ position:absolute; inset:0; pointer-events:none; border-radius:inherit; background:linear-gradient(125deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,.06) 16%, rgba(255,255,255,0) 38%, rgba(255,255,255,0) 70%, rgba(255,255,255,.08) 100%); }
.scroll-track{ position:absolute; top:13%; bottom:5%; right:2.4%; width:2px; background:rgba(38,33,27,.07); border-radius:2px; }
.scroll-thumb{ position:absolute; left:0; width:100%; background:var(--watson-pink); border-radius:2px; opacity:1; transition:top .85s cubic-bezier(.76,.02,.2,1); }
.stage{ opacity:0; transform:translateY(34px) scale(.97); }
.atelier-section.in-view .stage{ animation:riseScale 1.05s .05s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes riseScale{ to{ opacity:1; transform:translateY(0) scale(1); } }

/* ------------------------------------------------------------
   VIDEO + TESTIMONIAL (side by side)
   ------------------------------------------------------------ */
.fit-feature{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,4.5rem); align-items:center;
}
.fit-feature__kicker{
  font-family:var(--serif); font-style:italic;
  font-size:clamp(0.9rem,1.5vw,1.08rem); line-height:1.3;
  color:var(--muted); margin:0.95rem 0 0; text-align:center;
}
.fit-feature__quote blockquote{
  font-family:var(--serif); font-style:normal;
  font-size:clamp(0.92rem,1.3vw,1.05rem); line-height:1.55; letter-spacing:0.004em; color:#2a2a2a; margin:0;
}
.fit-feature__quote figcaption{
  margin-top:1rem; font-size:0.66rem; letter-spacing:0.24em;
  text-transform:uppercase; color:var(--muted);
}

/* ------------------------------------------------------------
   INQUIRE FORM (dark)
   ------------------------------------------------------------ */
.fit-inquire__inner{ max-width:620px; margin:0 auto; text-align:center; }
.fit-inquire .eyebrow{ display:block; margin-bottom:1.2rem; }
.fit-inquire__title{
  font-family:var(--serif); font-weight:500;
  font-size:clamp(1.7rem,3.4vw,2.5rem); letter-spacing:-0.01em;
  color:var(--ink); margin-bottom:0.9rem;
}
.fit-inquire__sub{ color:var(--muted); font-size:1rem; margin-bottom:2.6rem; }
.fit-inquire__form{ text-align:left; }
.fit-field--dark label{ color:rgba(255,255,255,0.5); }
.fit-field--dark input,
.fit-field--dark textarea{
  width:100%; border:0; border-bottom:1px solid rgba(255,255,255,0.25);
  background:none; color:#fff; font-family:var(--sans); font-weight:300;
  font-size:1.05rem; padding:0.55rem 0; transition:border-color 0.3s ease;
}
.fit-field--dark textarea{ resize:vertical; line-height:1.6; }
.fit-field--dark input:focus,
.fit-field--dark textarea:focus{ outline:none; border-bottom-color:#fff; }
.fit-field--light label{ color:var(--muted); }
.fit-field--light input,
.fit-field--light textarea{
  width:100%; border:0; border-bottom:1px solid rgba(0,0,0,0.22);
  background:none; color:var(--ink); font-family:var(--sans); font-weight:300;
  font-size:1.05rem; padding:0.55rem 0; transition:border-color 0.3s ease;
}
.fit-field--light textarea{ resize:vertical; line-height:1.6; }
.fit-field--light input:focus,
.fit-field--light textarea:focus{ outline:none; border-bottom-color:var(--ink); }
.fit-hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.fit-btn--filled-light{ background:#fff; color:var(--ink); border-color:#fff; margin-top:1rem; }
.fit-btn--filled-light:hover{ background:var(--fit-blush); border-color:var(--fit-blush); color:var(--ink); }
.fit-inquire__thanks{ color:var(--ink); font-family:var(--serif); font-style:italic; margin-top:1.3rem; }
.fit-inquire__thanks[hidden]{ display:none; }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
.d-br { display: inline; }

@media (max-width: 980px) {
  .fit-process__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .fit-lookbook__inner { grid-template-columns: 1fr; gap: 2rem; }
  .fit-lookbook__text { text-align: center; }
  .fit-lookbook__text p { max-width: none; margin: 0 auto; }
  .fit-lookbook__title { margin-left: auto; margin-right: auto; }
  .fit-feature { grid-template-columns: 1fr; gap: 2.2rem; }
  .fit-invite--split { grid-template-columns: 1fr; text-align: center; gap: 1.6rem; }
  .fit-invite--split .fit-invite__lead { max-width: none; margin: 0 auto; }
}
@media (max-width: 780px) {
  .d-br { display: none; }
  .fit-process__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .fit-process__grid--2x2 { grid-template-columns: 1fr; gap: 1.6rem; }
  .fit-process__step p, .fit-col p { max-width: none; }
}
@media (max-width: 560px) {
  .fit-process__grid--4 { grid-template-columns: 1fr; }
  .fit-btn--lg, .fit-btn--xl { width: 100%; }
  .fit-opt { padding: 0.95rem 1rem; font-size: 0.95rem; }
  .fit-card { width: 76vw; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .fit-step, .fit-reveal, .fit-result-card { animation: none; }
  .fit-eval__mark img { animation: none; }
  .fit-cards__track { transform: none !important; }
  .filmstrip, .scroll-thumb, .ipad { transition: none; }
  .stage { opacity: 1; transform: none; animation: none; }
}
