:root {
  --bg: #d9d0c3;
  --bg-top: #efe8dc;
  --panel: rgba(255, 248, 240, 0.78);
  --panel-strong: rgba(255, 251, 246, 0.92);
  --panel-dark: #161513;
  --panel-dark-soft: rgba(22, 21, 19, 0.92);
  --line: rgba(38, 31, 24, 0.12);
  --line-strong: rgba(193, 165, 120, 0.34);
  --ink: #171513;
  --muted: #71665b;
  --muted-soft: #93877c;
  --white: #fffdf9;
  --gold: #c49b61;
  --gold-soft: rgba(196, 155, 97, 0.18);
  --navy: #22324a;
  --shadow-soft: 0 20px 60px rgba(22, 21, 19, 0.08);
  --shadow-strong: 0 32px 90px rgba(22, 21, 19, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 155, 97, 0.22), transparent 22%),
    radial-gradient(circle at 92% 0%, rgba(34, 50, 74, 0.12), transparent 18%),
    linear-gradient(180deg, #f6f0e6 0%, var(--bg-top) 34%, var(--bg) 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 24px 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--panel-dark);
  color: var(--white);
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.hero-stage-kicker,
.eyebrow,
.button,
.header-button,
.session-chip,
.group-status,
.product-card-kicker,
.option-card-label,
.saved-card-label,
.journey-main-label,
.progress-step-label {
  font-family: var(--font-body);
}

.brand-copy small,
.hero-text,
.section-copy,
.step-copy,
.account-copy,
.measurements-copy,
.figure-note,
.saved-card-meta,
.progress-step-note,
.journey-sub,
.empty-copy,
.field-hint {
  color: var(--muted);
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.header-button,
.button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-button {
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.7);
}

.header-button-dark {
  border-color: var(--panel-dark);
  background: var(--panel-dark);
  color: var(--white);
}

.header-button:hover,
.button:hover,
.choice-card:hover,
.product-card:hover,
.fabric-card:hover,
.saved-card:hover,
.journey-link:hover,
.group-pill:hover,
.progress-step:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 24px 0 40px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.hero-copy h1,
.hero-stage-meta strong,
.studio-head h2,
.journey-head h3,
.saved-section-head h3,
.step-section h3,
.account-panel h3,
.measurements-head h3,
.saved-card-title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 7vw, 6.7rem);
  line-height: 0.88;
  font-weight: 700;
}

.hero-text,
.section-copy,
.step-copy,
.account-copy,
.measurements-copy,
.figure-note,
.empty-copy {
  line-height: 1.72;
  font-size: 1rem;
}

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

.hero-actions {
  align-items: center;
  margin-top: 28px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.56);
  color: var(--muted);
}

.button {
  border: 1px solid transparent;
}

.button-primary {
  background: var(--panel-dark);
  color: var(--white);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 251, 246, 0.7);
}

.button:disabled,
.header-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.hero-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.product-card,
.choice-card,
.fabric-card,
.saved-card,
.panel,
.hero-stage,
.journey-link,
.progress-step,
.group-pill {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.product-card,
.choice-card,
.fabric-card,
.saved-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 252, 248, 0.7));
  box-shadow: var(--shadow-soft);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.product-card-kicker,
.saved-card-label,
.option-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.product-card h3,
.choice-card h3,
.fabric-card h3 {
  margin: 0 0 6px;
  font-size: 1.8rem;
  font-family: var(--font-display);
}

.product-card p,
.choice-card p,
.fabric-card p {
  margin: 0;
  line-height: 1.6;
}

.product-card.active,
.choice-card.active,
.fabric-card.active,
.saved-card.active,
.group-pill.active,
.journey-link.active,
.progress-step.current {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(31, 28, 25, 0.86), rgba(17, 16, 15, 0.98)),
    linear-gradient(150deg, rgba(196, 155, 97, 0.12), rgba(34, 50, 74, 0.18));
  box-shadow: var(--shadow-strong);
  color: var(--white);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -16%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(196, 155, 97, 0.12);
  filter: blur(10px);
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -14%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(34, 50, 74, 0.2);
  filter: blur(12px);
}

.hero-stage-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.hero-stage-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.hero-stage-meta strong {
  font-size: 3.1rem;
  line-height: 0.95;
}

.hero-stage-meta small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.hero-stage-visual,
.summary-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  border-radius: 28px;
}

.hero-stage-visual {
  padding: 28px 24px 18px;
}

.hero-stage-visual img,
.summary-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  object-fit: contain;
}

.hero-stage-glow,
.summary-glow {
  position: absolute;
  inset: auto 14% 9% 14%;
  height: 130px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.95;
}

.studio {
  padding-top: 14px;
}

.studio-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.studio-head h2 {
  font-size: clamp(2.6rem, 4.1vw, 4rem);
  line-height: 0.96;
}

.session-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.64);
  border: 1px solid var(--line);
}

.studio-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1.05fr) minmax(340px, 0.84fr);
  gap: 20px;
  align-items: start;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(255, 251, 246, 0.58));
  box-shadow: var(--shadow-soft);
}

.panel-journey,
.panel-summary {
  position: sticky;
  top: 92px;
}

.panel-journey {
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(23, 21, 19, 0.94), rgba(32, 27, 23, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.journey-head {
  margin-bottom: 16px;
}

.journey-head .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.journey-head h3 {
  font-size: 2rem;
}

.journey-list {
  display: grid;
  gap: 10px;
}

.journey-link {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.journey-link-main {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 4px 6px 2px;
  text-align: left;
  cursor: pointer;
}

.journey-link.done {
  border-color: rgba(196, 155, 97, 0.26);
}

.journey-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.journey-main-label {
  font-size: 0.96rem;
}

.journey-main-state {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-sub {
  font-size: 0.88rem;
  line-height: 1.5;
}

.journey-children {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.journey-child {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  cursor: pointer;
}

.journey-child.active {
  border-color: rgba(196, 155, 97, 0.32);
  background: rgba(196, 155, 97, 0.12);
}

.panel-flow {
  padding: 22px;
}

.progress-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.progress-step {
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.74);
  cursor: pointer;
}

.progress-step.done {
  border-color: rgba(196, 155, 97, 0.32);
}

.progress-step-label {
  font-size: 0.92rem;
}

.progress-step-note {
  font-size: 0.84rem;
}

.panel-summary {
  padding: 20px;
  background: linear-gradient(180deg, rgba(19, 18, 17, 0.94), rgba(30, 28, 25, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.summary-preview {
  display: grid;
  gap: 16px;
}

.summary-visual {
  min-height: 430px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(196, 155, 97, 0.12), transparent 52%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-fabric {
  min-height: 48px;
}

.fabric-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.fabric-chip-swatch,
.fabric-card-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.summary-meta {
  display: grid;
  gap: 12px;
}

.summary-block,
.saved-section,
.group-rail,
.fabric-select-shell,
.account-panel,
.measurements-shell,
.measurement-card {
  border: 1px solid var(--line);
  border-radius: 22px;
}

.summary-block {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-key {
  color: rgba(255, 255, 255, 0.58);
}

.summary-value {
  text-align: right;
  color: var(--white);
  font-weight: 600;
}

.saved-section {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.saved-section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.saved-section-head .eyebrow {
  color: rgba(255, 255, 255, 0.42);
}

.saved-section-head h3 {
  font-size: 1.7rem;
}

.saved-designs {
  display: grid;
  gap: 12px;
}

.saved-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.saved-card-preview {
  display: grid;
  place-items: center;
  min-height: 96px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.saved-card-title {
  font-size: 1.35rem;
}

.saved-card-meta {
  display: block;
  margin: 4px 0 10px;
}

.saved-card button {
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.empty-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.step-shell {
  display: grid;
  gap: 18px;
}

.step-section {
  display: grid;
  gap: 18px;
}

.step-section h3,
.account-panel h3,
.measurements-head h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-card,
.fabric-card {
  padding: 18px;
  cursor: pointer;
}

.choice-media,
.fabric-card-media {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(196, 155, 97, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(249, 244, 237, 0.94), rgba(255, 255, 255, 0.98));
}

.choice-media img,
.fabric-card-media img {
  width: min(100%, 220px);
  object-fit: contain;
}

.fabric-select-shell {
  padding: 18px;
  background: var(--panel-strong);
}

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

.fabric-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.group-rail {
  display: flex;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
  background: var(--panel-strong);
}

.group-pill {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.group-pill.done {
  border-color: var(--line-strong);
}

.group-pill.active {
  background: var(--panel-dark);
  border-color: var(--panel-dark);
  color: var(--white);
}

.group-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.group-status {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #7a5b2e;
}

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

.account-shell,
.measurements-shell {
  display: grid;
  gap: 16px;
}

.account-panel,
.measurements-shell {
  padding: 18px;
  background: var(--panel-strong);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.field label,
.measurement-field label,
.fabric-select-shell label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea,
.measurement-field input,
.measurement-field select,
.measurement-field textarea,
.fabric-select-shell select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(38, 31, 24, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  outline: none;
}

.field textarea,
.measurement-field textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.measurement-field input:focus,
.measurement-field select:focus,
.measurement-field textarea:focus,
.fabric-select-shell select:focus {
  border-color: rgba(196, 155, 97, 0.8);
  box-shadow: 0 0 0 4px rgba(196, 155, 97, 0.16);
}

.account-email-lock {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(196, 155, 97, 0.12);
  color: #785731;
}

.reset-link {
  padding: 0;
  cursor: pointer;
  color: var(--muted);
}

.measurements-shell-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.figure-panel {
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(196, 155, 97, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(252, 247, 240, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
}

.figure-stage {
  display: grid;
  place-items: center;
  min-height: 420px;
}

.figure-silhouette {
  position: relative;
  width: 190px;
  height: 320px;
}

.figure-head,
.figure-torso,
.figure-arm,
.figure-leg {
  position: absolute;
  background: linear-gradient(180deg, #20252c, #121212);
}

.figure-head {
  top: 0;
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.figure-torso {
  top: 58px;
  left: 50%;
  width: 112px;
  height: 144px;
  border-radius: 56px 56px 28px 28px;
  transform: translateX(-50%);
}

.figure-arm {
  top: 76px;
  width: 30px;
  height: 132px;
  border-radius: 20px;
}

.figure-arm.left {
  left: 10px;
  transform: rotate(8deg);
}

.figure-arm.right {
  right: 10px;
  transform: rotate(-8deg);
}

.figure-leg {
  bottom: 0;
  width: 38px;
  height: 138px;
  border-radius: 24px;
}

.figure-leg.left {
  left: 50%;
  transform: translateX(-108%);
}

.figure-leg.right {
  left: 50%;
  transform: translateX(8%);
}

.measure-tag {
  position: absolute;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(38, 31, 24, 0.1);
  box-shadow: 0 12px 26px rgba(22, 21, 19, 0.08);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.measure-tag.neck {
  top: 42px;
  right: -8px;
}

.measure-tag.chest {
  top: 120px;
  left: -26px;
}

.measure-tag.waist {
  top: 184px;
  right: -14px;
}

.measure-tag.inseam {
  bottom: 56px;
  left: -20px;
}

.measurement-groups {
  display: grid;
  gap: 14px;
}

.measurement-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.measurement-card h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.measurement-card p {
  margin: 0 0 14px;
  line-height: 1.6;
  color: var(--muted);
}

.measurement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.panel-actions {
  margin-top: 18px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(22, 21, 19, 0.94);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.panel,
.hero-stage,
.choice-card,
.fabric-card,
.saved-card,
.product-card {
  animation: rise 420ms ease;
}

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

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

  .panel-journey,
  .panel-summary {
    position: static;
  }

  .journey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .hero,
  .measurements-shell-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 580px;
  }

  .progress-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-shell {
    padding: 0 16px 36px;
  }

  .site-header,
  .studio-head,
  .saved-section-head,
  .group-header {
    align-items: start;
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-product-grid,
  .choice-grid,
  .fabric-grid,
  .option-grid,
  .field-grid,
  .measurement-grid,
  .journey-list,
  .progress-rail {
    grid-template-columns: 1fr;
  }

  .product-card,
  .saved-card {
    grid-template-columns: 1fr;
  }

  .product-card img,
  .saved-card-preview img {
    width: min(100%, 170px);
    margin: 0 auto;
  }

  .panel-flow,
  .panel-summary,
  .panel-journey,
  .hero-stage {
    padding: 18px;
  }

  .summary-visual {
    min-height: 340px;
  }

  .hero-stage {
    min-height: 520px;
  }
}
