@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f6efdf;
  --paper-deep: #e9e2d4;
  --cream: #fbf4e3;
  --line: #ede3cf;
  --ink: #2a2016;
  --muted: #6e5c44;
  --muted-strong: #544532;
  --rust: #b14a2a;
  --rust-dark: #9a4525;
  --gold: #d9982e;
  --green: #16211b;
  --nav: #1c1710;
  --sage: #a9bba6;
  --sage-light: #cbd9c4;
  --teal: #2c7a78;
  --max: 1140px;
  --sidebar-width: 220px;
  --focus: 0 0 0 3px rgba(217, 152, 46, 0.55);
  --shadow: 0 18px 40px rgba(42, 32, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  height: 100%;
  color: var(--ink);
  background: var(--cream);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--paper);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 12%, rgba(217, 152, 46, 0.08), transparent 26rem),
    radial-gradient(circle at 85% 18%, rgba(63, 107, 74, 0.07), transparent 30rem);
  opacity: 0.9;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

/* Desktop default: left vertical header + content column */
.picker-page {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  min-height: 100%;
  height: 100%;
  align-items: stretch;
  overflow: hidden;
}

/* Review and confirm need normal page scroll so long content stays reachable. */
.picker-page.is-flow-scroll {
  height: auto;
  min-height: 100%;
  overflow: visible;
}

.picker-page.is-flow-scroll .page-main,
.picker-page.is-flow-scroll .page-main > main,
.picker-page.is-flow-scroll .picker-shell,
.picker-page.is-flow-scroll .picker-shell > [data-stage],
.picker-page.is-flow-scroll .step-panel {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.picker-page.is-flow-scroll .picker-shell,
.picker-page.is-flow-scroll .picker-shell > [data-stage],
.picker-page.is-flow-scroll .step-panel {
  flex: 0 0 auto;
}

.picker-page.is-flow-scroll .step-panel {
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 100vh;
  background: rgba(28, 23, 16, 0.98);
  color: #fff;
  box-shadow: 2px 0 0 rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 0;
  padding: 22px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-link img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  background: rgba(255, 247, 238, 0.06);
  border: 1px solid rgba(255, 247, 238, 0.42);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 4px;
  flex: 1;
  min-height: 0;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 247, 238, 0.92);
}

.nav-links a {
  display: block;
  text-decoration: none;
  white-space: normal;
  padding: 11px 12px;
  border-radius: 10px;
  line-height: 1.25;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  background: rgba(255, 247, 238, 0.06);
}

.nav-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.nav-cta {
  padding: 12px 14px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--rust) 0%, var(--gold) 100%);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(177, 74, 42, 0.28);
}

.nav-billing {
  padding: 11px 14px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 247, 238, 0.42);
  border-radius: 10px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #fff8e9;
}

.page-main {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-main > main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.picker-hero {
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(42, 32, 22, 0.08);
  background: linear-gradient(180deg, rgba(251, 244, 227, 0.4), rgba(251, 244, 227, 0.95));
}

.picker-hero-inner {
  width: min(1400px, calc(100% - 28px));
  margin: 0 auto;
  padding: 10px 0 6px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.picker-hero h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: var(--ink);
}

.picker-hero p {
  max-width: 640px;
  margin: 6px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.picker-shell {
  width: min(1400px, calc(100% - 24px));
  margin: 0 auto;
  padding: 6px 0 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.picker-shell > [data-stage] {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex: 0 0 auto;
}

.progress-meta {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.progress-track {
  flex: 1;
  height: 6px;
  overflow: hidden;
  background: rgba(42, 32, 22, 0.08);
  border-radius: 999px;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  border-radius: inherit;
  transition: width 220ms ease;
}

.step-panel {
  padding: 12px 14px 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(237, 227, 207, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.step-panel[hidden] {
  display: none !important;
}

/* Fixed chrome: head and foot never move; body fills the middle. */
.step-head {
  flex: 0 0 auto;
  min-height: 58px;
}

.step-panel h2,
.step-head h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  scroll-margin-top: 16px;
}

.step-help {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  min-height: 1.35em;
  max-height: 1.35em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.step-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  overflow: hidden;
}

.step-body-free {
  overflow: auto;
}

.step-foot {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  min-height: 132px;
}

.step-note-slot {
  min-height: 72px;
  flex: 0 0 auto;
}

.choice-grid {
  display: grid;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  align-content: stretch;
}

/* Dual pick: two rows by default so Continue stays put. */
.choice-grid-dual {
  grid-template-rows: 1fr 1fr;
}

/* Page fullness + Movement: one row of four tall portrait cards. */
.choice-grid-dual[data-cols="4"],
.choice-grid-dual[data-rows="1"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr;
  align-content: stretch;
}

.choice-grid-dual[data-cols="4"] .choice-card,
.choice-grid-dual[data-rows="1"] .choice-card {
  min-height: 0;
  height: 100%;
}

.choice-grid-dual[data-cols="4"] .choice-visual,
.choice-grid-dual[data-rows="1"] .choice-visual {
  flex: 1 1 auto;
  min-height: 0;
}

.choice-card-spacer {
  min-height: 0;
  visibility: hidden;
  pointer-events: none;
}

.choice-grid[data-cols="3"],
.choice-grid-dual[data-cols="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid[data-cols="4"],
.choice-grid-dual[data-cols="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-grid[data-cols="2"],
.choice-grid-dual[data-cols="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-wrap {
  position: relative;
  min-height: 0;
  height: 100%;
  display: flex;
}

.choice-wrap .choice-card {
  width: 100%;
}

.choice-expand {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(42, 32, 22, 0.14);
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(42, 32, 22, 0.12);
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.choice-expand:hover,
.choice-expand:focus-visible {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(42, 32, 22, 0.16);
}

.choice-expand:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.choice-expand-icon {
  display: block;
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-align: left;
  background: #fff;
  border: 2px solid rgba(42, 32, 22, 0.12);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.choice-card:hover {
  box-shadow: 0 14px 28px rgba(42, 32, 22, 0.1);
}

.choice-card:active {
  box-shadow: 0 8px 18px rgba(42, 32, 22, 0.1);
}

.choice-card:focus-visible,
.chip:focus-visible,
.btn:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible,
.summary-edit:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.choice-card.is-selected {
  border-color: var(--rust);
  box-shadow: 0 0 0 1px var(--rust), 0 14px 28px rgba(177, 74, 42, 0.14);
}

.choice-card.is-second {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 14px 28px rgba(44, 122, 120, 0.14);
}

.choice-rank {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 3px 8px;
  color: #fff;
  background: var(--rust);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.choice-card.is-second .choice-rank {
  background: var(--teal);
}

.dual-hint {
  margin: 6px 0 0;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.choice-visual {
  flex: 1 1 auto;
  min-height: 0;
  padding: 6px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f8f3e8, #fff);
}

/* Thin label strip so previews own almost the full card. */
.choice-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  min-height: 52px;
  max-height: 52px;
  gap: 2px;
  padding: 6px 12px;
  text-align: center;
  color: var(--ink);
  background: #fdf9f1;
  border-top: 2px solid rgba(177, 74, 42, 0.18);
  overflow: hidden;
}

.choice-label:has(.choice-sub) {
  flex-basis: 42px;
  min-height: 42px;
  max-height: 42px;
  padding: 4px 10px 5px;
  gap: 1px;
}

.choice-label-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 100%;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  overflow: hidden;
}

.choice-sub {
  display: block;
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.choice-card.is-selected .choice-label {
  border-top-color: rgba(177, 74, 42, 0.2);
  background: rgba(255, 248, 240, 0.96);
}

.choice-card.is-second .choice-label {
  border-top-color: rgba(44, 122, 120, 0.2);
  background: rgba(244, 250, 249, 0.96);
}

/* Mini homepage previews */
.mini-site {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(42, 32, 22, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mini-site .ms-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 800;
  flex: 0 0 auto;
}

.mini-site .ms-hero {
  padding: 10px 10px 8px;
  flex: 1 1 auto;
}

.mini-site .ms-kicker {
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-site .ms-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
}

.mini-site .ms-body {
  margin: 4px 0 0;
  font-size: 10px;
  line-height: 1.3;
  opacity: 0.8;
}

.mini-site .ms-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 800;
}

.mini-site .ms-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 10px 10px;
  flex: 0 0 auto;
}

.mini-site .ms-card {
  height: 18px;
  border-radius: 4px;
}

.feel-warm {
  background: #fff8ef;
}

.feel-warm .ms-nav {
  background: #f3e2cf;
  color: #5a3a2a;
}

.feel-warm .ms-title {
  font-family: Georgia, "Times New Roman", serif;
  color: #4a2f24;
}

.feel-warm .ms-cta {
  color: #fff8ef;
  background: #b55b3d;
  border-radius: 999px;
}

.feel-warm .ms-card {
  background: #edd7c2;
}

.feel-clean {
  background: #f7faf9;
}

.feel-clean .ms-nav {
  background: #ffffff;
  color: #1f2a28;
  border-bottom: 1px solid #d7e3df;
}

.feel-clean .ms-title {
  color: #16312c;
}

.feel-clean .ms-cta {
  color: #fff;
  background: #2c7a78;
  border-radius: 6px;
}

.feel-clean .ms-card {
  background: #d7e8e4;
}

.feel-bold {
  background: #17131f;
  color: #f6f0ff;
}

.feel-bold .ms-nav {
  background: #221b2d;
  color: #f6f0ff;
}

.feel-bold .ms-title {
  color: #fff;
}

.feel-bold .ms-body {
  color: rgba(246, 240, 255, 0.78);
}

.feel-bold .ms-cta {
  color: #17131f;
  background: #ff6b3d;
  border-radius: 4px;
}

.feel-bold .ms-card {
  background: #3a2f4d;
}

.feel-classic {
  background: #f4efe6;
}

.feel-classic .ms-nav {
  background: #2f2a24;
  color: #f4efe6;
}

.feel-classic .ms-title {
  font-family: Georgia, "Times New Roman", serif;
  color: #2f2a24;
}

.feel-classic .ms-cta {
  color: #f4efe6;
  background: #2f2a24;
  border-radius: 2px;
}

.feel-classic .ms-card {
  background: #d8cfc0;
}

.feel-playful {
  background: #fff6fb;
}

.feel-playful .ms-nav {
  background: #ffe3f0;
  color: #7a2458;
}

.feel-playful .ms-title {
  color: #7a2458;
}

.feel-playful .ms-cta {
  color: #fff;
  background: #e4579b;
  border-radius: 999px;
}

.feel-playful .ms-card {
  background: #ffd0e6;
  border-radius: 12px;
}

.feel-minimal {
  background: #fafafa;
}

.feel-minimal .ms-nav {
  background: #fafafa;
  color: #444;
  border-bottom: 1px solid #e8e8e8;
}

.feel-minimal .ms-title {
  color: #222;
  font-weight: 600;
}

.feel-minimal .ms-body {
  opacity: 0.55;
}

.feel-minimal .ms-cta {
  color: #222;
  background: transparent;
  border: 1px solid #222;
  border-radius: 0;
}

.feel-minimal .ms-card {
  background: #ececec;
  height: 10px;
}

/* Color mood cards */
.palette {
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  align-content: stretch;
}

.palette-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 48px;
  height: 38%;
  overflow: hidden;
  border-radius: 12px;
}

.palette-ui {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(42, 32, 22, 0.08);
  flex: 1 1 auto;
  align-content: center;
}

.palette-ui .bar {
  height: 12px;
  border-radius: 999px;
}

.palette-ui .chip-row {
  display: flex;
  gap: 6px;
}

.palette-ui .dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.color-soft .palette-strip span:nth-child(1) { background: #f7ebe0; }
.color-soft .palette-strip span:nth-child(2) { background: #e8b7b0; }
.color-soft .palette-strip span:nth-child(3) { background: #8d3b4a; }
.color-soft .palette-ui { background: #fff7f2; }
.color-soft .bar { background: #8d3b4a; }
.color-soft .dot:nth-child(1) { background: #f7ebe0; border: 1px solid #e8d2c4; }
.color-soft .dot:nth-child(2) { background: #e8b7b0; }
.color-soft .dot:nth-child(3) { background: #8d3b4a; }

.color-fresh .palette-strip span:nth-child(1) { background: #ffffff; }
.color-fresh .palette-strip span:nth-child(2) { background: #9db89a; }
.color-fresh .palette-strip span:nth-child(3) { background: #7eb6d4; }
.color-fresh .palette-ui { background: #f4faf7; }
.color-fresh .bar { background: #3f6b4a; }
.color-fresh .dot:nth-child(1) { background: #ffffff; border: 1px solid #d7e3df; }
.color-fresh .dot:nth-child(2) { background: #9db89a; }
.color-fresh .dot:nth-child(3) { background: #7eb6d4; }

.color-rich .palette-strip span:nth-child(1) { background: #13233d; }
.color-rich .palette-strip span:nth-child(2) { background: #1f4a34; }
.color-rich .palette-strip span:nth-child(3) { background: #b0893f; }
.color-rich .palette-ui { background: #101820; color: #f4efe4; }
.color-rich .bar { background: #b0893f; }
.color-rich .dot:nth-child(1) { background: #13233d; }
.color-rich .dot:nth-child(2) { background: #1f4a34; }
.color-rich .dot:nth-child(3) { background: #b0893f; }

.color-bright .palette-strip span:nth-child(1) { background: #ffffff; }
.color-bright .palette-strip span:nth-child(2) { background: #ff5a36; }
.color-bright .palette-strip span:nth-child(3) { background: #2f6bff; }
.color-bright .palette-ui { background: #ffffff; }
.color-bright .bar { background: linear-gradient(90deg, #ff5a36, #2f6bff); }
.color-bright .dot:nth-child(1) { background: #ffffff; border: 1px solid #ddd; }
.color-bright .dot:nth-child(2) { background: #ff5a36; }
.color-bright .dot:nth-child(3) { background: #2f6bff; }

.color-earthy .palette-strip span:nth-child(1) { background: #e6d5b8; }
.color-earthy .palette-strip span:nth-child(2) { background: #7a8f4a; }
.color-earthy .palette-strip span:nth-child(3) { background: #c56a3c; }
.color-earthy .palette-ui { background: #f4ebdd; }
.color-earthy .bar { background: #7a8f4a; }
.color-earthy .dot:nth-child(1) { background: #e6d5b8; border: 1px solid #d4c2a2; }
.color-earthy .dot:nth-child(2) { background: #7a8f4a; }
.color-earthy .dot:nth-child(3) { background: #c56a3c; }

.color-dark .palette-strip span:nth-child(1) { background: #1c1c1c; }
.color-dark .palette-strip span:nth-child(2) { background: #2c2c2c; }
.color-dark .palette-strip span:nth-child(3) { background: #d9982e; }
.color-dark .palette-ui { background: #141414; color: #f5f0e6; }
.color-dark .bar { background: #d9982e; }
.color-dark .dot:nth-child(1) { background: #1c1c1c; border: 1px solid #444; }
.color-dark .dot:nth-child(2) { background: #2c2c2c; }
.color-dark .dot:nth-child(3) { background: #d9982e; }

/* Type mood: single line samples, never wrap */
.type-sample {
  display: grid;
  place-items: center;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  padding: 16px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(42, 32, 22, 0.08);
  text-align: center;
  overflow: hidden;
}

.type-sample .type-line {
  margin: 0;
  line-height: 1.15;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

.type-sample .type-accent {
  margin: 6px 0 0;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  color: var(--muted-strong);
}

.type-elegant .type-line {
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.type-friendly .type-line {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.type-strong .type-line {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.type-classic .type-line {
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.type-neutral .type-line {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.type-hand .type-line {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.type-hand .type-accent {
  font-family: "Segoe Script", "Comic Sans MS", cursive;
  font-size: 14px;
  font-weight: 600;
  color: var(--rust);
}

/* Picture style: photos fill the visual area edge to edge */
.imagery-art {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(42, 32, 22, 0.1);
  position: relative;
  background: #f0e8da;
}

.imagery-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
}

/* Bias crop toward the upper subject so faces and rooflines stay in frame. */
.imagery-photo[data-focus="top"] {
  object-position: center 18%;
}

.imagery-photo[data-focus="upper"] {
  object-position: center 28%;
}

.imagery-photo[data-focus="center"] {
  object-position: center center;
}

/* Give picture cards a slightly taller visual by tightening padding */
.choice-visual:has(.imagery-art) {
  padding: 4px;
}

/* Cards render the modal's full mini website at half scale, cropped from
   the top, so the thumbnail is literally the top of what the closer look
   opens. */
.choice-visual:has(.card-exp) {
  padding: 0;
  overflow: hidden;
}

.card-exp {
  display: block;
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.card-exp .exp-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: top left;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}

/* Larger preview overlay for any dual pick card */
body.preview-modal-open {
  overflow: hidden;
}

.preview-modal[hidden] {
  display: none !important;
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.preview-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 23, 16, 0.58);
}

.preview-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  /* Reese finding 2: the dialog can never exceed the viewport, no matter
     how wide its content wants to be. */
  max-width: calc(100vw - 24px);
  max-height: min(90vh, 900px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #fffaf2;
  border: 1px solid rgba(237, 227, 207, 0.95);
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(28, 23, 16, 0.28);
}

.preview-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  flex-wrap: wrap;
  row-gap: 4px;
  min-width: 0;
}

.preview-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.preview-modal-close {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(42, 32, 22, 0.16);
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.preview-modal-close:hover,
.preview-modal-close:focus-visible {
  border-color: var(--rust);
}

.preview-modal-close:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.preview-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: auto;
  border-radius: 14px;
  background: #f4ebe0;
  border: 1px solid rgba(42, 32, 22, 0.08);
}

.preview-modal-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: min(72vh, 760px);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.preview-modal-visual {
  width: min(100%, 520px);
  min-height: min(62vh, 520px);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.preview-modal-visual > * {
  flex: 1 1 auto;
  min-height: 280px;
  height: 100%;
}

.preview-modal-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

/* Density: real mini page layouts, not gray bars alone */
.density-layout {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(42, 32, 22, 0.1);
  background: #f7f2e8;
}

.mini-page {
  height: 100%;
  display: grid;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(42, 32, 22, 0.08);
}

.mp-nav {
  height: 12px;
  border-radius: 4px;
  background: #2a2016;
}

.mp-hero {
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f3e7d4, #e8d8c0);
}

.mp-hero.open {
  min-height: 78px;
}

.mp-hero.bal {
  min-height: 40px;
}

.mp-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
}

.mp-cta {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.mp-space {
  flex: 1;
  min-height: 24px;
}

.mp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mp-row span,
.mp-footer {
  height: 22px;
  border-radius: 5px;
  background: #e8dfd0;
}

.mp-footer {
  height: 10px;
}

.mp-section {
  display: grid;
  gap: 4px;
  padding: 6px;
  border-radius: 5px;
  background: #f4efe6;
}

.mp-line {
  height: 6px;
  border-radius: 999px;
  background: #cfc3ae;
}

.mp-line.short {
  width: 62%;
}

.mini-page.dense {
  gap: 5px;
}

.mp-dense-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  flex: 1;
}

.mp-dense-grid span {
  display: grid;
  place-items: center;
  min-height: 28px;
  border-radius: 4px;
  background: #e7dcc8;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

/* Movement demos: full height phone frames with CSS loops */
.move-demo {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  width: 100%;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(42, 32, 22, 0.1);
  background: #e8dfd2;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.move-page {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(42, 32, 22, 0.1);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(42, 32, 22, 0.08);
}

.move-nav {
  flex: 0 0 auto;
  height: 12px;
  border-radius: 6px;
  background: #2a2016;
  margin-bottom: 10px;
}

.move-hero {
  flex: 0 0 22%;
  min-height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0e2cc, #e2d0b4);
  margin-bottom: 10px;
}

.move-stack {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.move-block {
  flex: 0 0 auto;
  height: 18px;
  width: 70%;
  border-radius: 6px;
  background: #d9cbb6;
}

.move-block.wide {
  width: 92%;
  height: 26px;
}

.move-block.half {
  width: 48%;
}

.move-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 42px;
}

.move-row span {
  display: block;
  height: 100%;
  min-height: 42px;
  border-radius: 8px;
  background: #e7dcc8;
}

.move-footer {
  flex: 0 0 auto;
  height: 14px;
  border-radius: 6px;
  background: #cfc2ae;
}

.move-cta {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.move-still .move-block,
.move-still .move-cta,
.move-still .move-hero,
.move-still .move-row span,
.move-still .move-footer {
  opacity: 1;
  transform: none;
}

.move-gentle .fade-a,
.move-gentle .fade-b,
.move-gentle .fade-c,
.move-gentle .fade-d,
.move-gentle .fade-e,
.move-gentle .fade-f {
  animation: move-fade 4s ease-in-out infinite;
}

.move-gentle .fade-b { animation-delay: 0.25s; }
.move-gentle .fade-c { animation-delay: 0.5s; }
.move-gentle .fade-d { animation-delay: 0.75s; }
.move-gentle .fade-e { animation-delay: 1s; }
.move-gentle .fade-f { animation-delay: 1.25s; }

/* Elements soften, they never vanish: the mini page must read as a
   complete page at any frozen moment of the loop. */
@keyframes move-fade {
  0%,
  15% {
    opacity: 0.28;
    transform: translateY(5px);
  }
  40%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0.28;
    transform: translateY(5px);
  }
}

.move-lively .slide-a,
.move-lively .slide-b,
.move-lively .slide-c,
.move-lively .slide-d,
.move-lively .slide-e {
  animation: move-slide 4s ease-in-out infinite;
}

.move-lively .slide-b { animation-delay: 0.2s; }
.move-lively .slide-c { animation-delay: 0.4s; }
.move-lively .slide-d { animation-delay: 0.55s; }
.move-lively .slide-e { animation-delay: 0.7s; }

.move-lively .lift {
  animation: move-lift 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes move-slide {
  0%,
  12% {
    opacity: 0.35;
    transform: translateY(16px);
  }
  35%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0.35;
    transform: translateY(16px);
  }
}

@keyframes move-lift {
  0%,
  20% {
    transform: translateY(0);
  }
  40%,
  55% {
    transform: translateY(-11px) scale(1.05);
  }
  100% {
    transform: translateY(0);
  }
}

.move-playful {
  background: linear-gradient(180deg, #f6ead6, #f7efe2);
}

.move-playful .move-page {
  background: rgba(255, 255, 255, 0.55);
}

.move-layer {
  position: absolute;
  border-radius: 12px;
  border: 2px solid rgba(42, 32, 22, 0.16);
}

.move-playful .layer-a {
  top: 16%;
  left: 10%;
  width: 56%;
  height: 18%;
  background: #f2d6a8;
  animation: move-drift-a 5s ease-in-out infinite;
}

.move-playful .layer-b {
  top: 36%;
  right: 10%;
  width: 48%;
  height: 15%;
  background: #e3b7b0;
  animation: move-drift-b 5s ease-in-out infinite;
}

.move-playful .layer-c {
  top: 56%;
  left: 16%;
  width: 42%;
  height: 14%;
  background: #d9cbb6;
  animation: move-drift-c 5s ease-in-out infinite;
}

.move-playful .layer-d {
  bottom: 10%;
  right: 14%;
  width: 52%;
  height: 13%;
  background: #cf9a7c;
  animation: move-drift-d 5s ease-in-out infinite;
}

@keyframes move-drift-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(-2deg);
  }
  50% {
    transform: translate(16px, -14px) rotate(5deg);
  }
}

@keyframes move-drift-b {
  0%,
  100% {
    transform: translate(0, 0) rotate(2deg);
  }
  50% {
    transform: translate(-18px, 12px) rotate(-5deg);
  }
}

@keyframes move-drift-c {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(14px, -18px) rotate(6deg);
  }
}

@keyframes move-drift-d {
  0%,
  100% {
    transform: translate(0, 0) rotate(1deg);
  }
  50% {
    transform: translate(-15px, -12px) rotate(-4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .move-gentle .fade-a,
  .move-gentle .fade-b,
  .move-gentle .fade-c,
  .move-gentle .fade-d,
  .move-gentle .fade-e,
  .move-gentle .fade-f,
  .move-lively .slide-a,
  .move-lively .slide-b,
  .move-lively .slide-c,
  .move-lively .slide-d,
  .move-lively .slide-e,
  .move-lively .lift,
  .move-playful .layer-a,
  .move-playful .layer-b,
  .move-playful .layer-c,
  .move-playful .layer-d {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.sites-grid {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.step-note-field {
  margin-top: 0;
  flex: 0 0 auto;
  min-height: 72px;
}

.step-note-field textarea {
  min-height: 40px;
  max-height: 40px;
  height: 40px;
  padding: 8px 10px;
  resize: none;
}

.step-panel > .status-line,
.step-foot > .status-line {
  flex: 0 0 auto;
  min-height: 20px;
  margin: 4px 0 0;
}

/* Shape: tall mini UI samples filled with matching element types */
.shape-demo {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(42, 32, 22, 0.1);
  background: #fff;
  overflow: hidden;
}

.shape-demo.shape-soft {
  border-radius: 18px;
}

.shape-demo.shape-sharp,
.shape-demo.shape-links,
.shape-demo.shape-callout {
  border-radius: 0;
}

.shape-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: #f4efe6;
}

.shape-nav.soft {
  border-radius: 999px;
}

.shape-nav.sharp,
.shape-nav.links,
.shape-nav.callout {
  border-radius: 0;
}

.shape-brand {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
}

.shape-pill,
.shape-square {
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: var(--ink);
}

.shape-pill {
  border-radius: 999px;
}

.shape-square {
  border-radius: 0;
}

.shape-hero {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  background: linear-gradient(160deg, #f7efe2, #efe4d2);
}

.shape-hero.soft {
  border-radius: 18px;
}

.shape-hero.sharp,
.shape-hero.links,
.shape-hero.callout {
  border-radius: 0;
}

.shape-kicker {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
}

.shape-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}

.shape-body {
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted-strong);
}

.shape-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 14px;
  color: #fff;
  background: var(--rust);
  font-size: 11px;
  font-weight: 800;
}

.shape-btn.soft {
  border-radius: 999px;
}

.shape-btn.sharp {
  border-radius: 0;
}

.shape-btn.ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(42, 32, 22, 0.35);
}

.shape-samples {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 2px 2px 4px;
}

.shape-samples .callout-box {
  width: 100%;
}

.shape-samples .link-line {
  padding: 2px 0;
}

.link-line {
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-line.muted {
  color: var(--muted-strong);
}

.link-line.small {
  font-size: 11px;
}

.link-line.tiny {
  font-size: 10px;
}

.shape-callout .callout-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.shape-callout .callout-box.alt {
  background: var(--rust);
}

.shape-callout .callout-box.mini {
  width: auto;
  min-width: 0;
  padding: 6px 8px;
  font-size: 10px;
}

.shape-callout .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--gold);
}

/* Chip steps hold far less content than the card steps, and the panel
   height is deliberately fixed so Continue never moves. The chips become
   a grid of larger tiles and the chips plus note center vertically as one
   unit, so the fixed panel reads as composed rather than empty. */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  margin-bottom: auto;
  align-content: center;
}

/* Chip steps center in the fixed panel and the chips grow into tiles, so
   the space above and below reads as composed rather than empty. */
.step-body-chips {
  justify-content: center;
}

.step-body-chips .chip {
  min-height: 84px;
  padding: 14px 18px;
  font-size: 15px;
}

/* The avoid grid runs two wide columns so its eight tiles genuinely fill
   the fixed desktop panel instead of floating in it. The business step
   keeps its four column tile grid. */
.step-body-chips .chip-grid:not(.chip-grid-tiles) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.step-body-chips .chip-grid:not(.chip-grid-tiles) .chip {
  min-height: 92px;
}

.chip-grid-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.chip-grid ~ .step-note-field {
  margin-top: 20px;
  margin-bottom: auto;
}

.chip-tile {
  min-height: 88px;
  border-radius: 16px;
  padding: 18px 16px;
  font-size: 15px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chip-grid-tiles {
    grid-template-columns: 1fr;
  }
}

.business-describe-field {
  margin-top: 20px;
  margin-bottom: auto;
}

.business-describe-field textarea {
  min-height: 56px;
}

.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 64px;
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(42, 32, 22, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
}

.chip.is-selected {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.chip.is-selected::before {
  content: "\2713\00a0";
  font-weight: 900;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.field {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(42, 32, 22, 0.16);
  border-radius: 10px;
}

.field textarea {
  min-height: 56px;
  resize: vertical;
}

.field .hint {
  color: var(--muted);
  font-size: 13px;
}

.file-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.file-row input[type="file"] {
  max-width: 100%;
}

.image-preview {
  display: none;
  max-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(42, 32, 22, 0.12);
}

.image-preview.is-visible {
  display: block;
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  flex: 0 0 auto;
  min-height: 40px;
}

.submit-row {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.submit-row .step-actions {
  margin-top: 0;
}

.submit-privacy {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.submit-privacy a {
  color: var(--rust-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-privacy a:hover,
.submit-privacy a:focus-visible {
  color: var(--rust);
}

.step-actions-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 44px;
  padding: 8px 14px;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover,
a.btn:hover,
a.btn:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rust) 0%, var(--gold) 100%);
  box-shadow: 0 10px 22px rgba(177, 74, 42, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(42, 32, 22, 0.16);
}

.btn-ghost {
  color: var(--muted-strong);
  background: transparent;
  border: 1px solid transparent;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.summary-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(42, 32, 22, 0.1);
  border-radius: 14px;
}

.summary-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.summary-item p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.summary-edit {
  min-height: 44px;
  padding: 8px 12px;
  color: var(--rust-dark);
  background: transparent;
  border: 1px solid rgba(177, 74, 42, 0.28);
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.contact-grid .field.full {
  grid-column: 1 / -1;
}

.status-line {
  min-height: 20px;
  margin-top: 4px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.status-line.is-error {
  color: var(--rust-dark);
}

.confirm-card {
  text-align: center;
  padding: 18px 8px 8px;
}

.confirm-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.08;
}

.confirm-card p {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--muted-strong);
}

.confirm-ref {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(42, 32, 22, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.summary-stay {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 32, 22, 0.08);
  text-align: left;
}

.trap {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Compact picker footer so step cards keep full height. */
.site-footer {
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid rgba(42, 32, 22, 0.08);
  background: var(--green);
  color: rgba(255, 247, 238, 0.92);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

@media (max-width: 900px) {
  html,
  body {
    height: auto;
  }

  .choice-grid[data-cols="2"],
  .choice-grid[data-cols="3"],
  .choice-grid[data-cols="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-grid-dual {
    grid-template-rows: none;
    grid-auto-rows: minmax(180px, auto);
  }

  .picker-page {
    display: block;
    height: auto;
    overflow: visible;
  }

  .site-header {
    position: sticky;
    top: 0;
    height: auto;
    width: 100%;
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.05);
  }

  /* Keep focused step titles clear of the sticky phone header. */
  .step-panel h2,
  .step-head h2,
  .step-head {
    scroll-margin-top: 80px;
  }

  .nav-wrap {
    width: min(100% - 28px, var(--max));
    height: auto;
    min-height: 64px;
    margin: 0 auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
  }

  .nav-top {
    width: 100%;
    min-height: 64px;
    justify-content: space-between;
  }

  .brand-link img {
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 16px;
    background: rgba(28, 23, 16, 0.98);
    border-bottom: 1px solid rgba(255, 247, 238, 0.08);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 8px;
    min-height: 44px;
  }

  .nav-actions {
    margin-top: 8px;
    padding-top: 8px;
  }

  .page-main {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .page-main > main {
    overflow: visible;
  }

  .picker-shell,
  .picker-hero-inner {
    width: min(100% - 28px, 980px);
  }

  .picker-shell,
  .picker-shell > [data-stage],
  .step-panel,
  .step-body,
  .choice-grid {
    flex: none;
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .step-foot {
    min-height: 0;
  }

  .choice-card {
    min-height: 200px;
    height: auto;
  }

  .choice-visual {
    min-height: 160px;
    padding: 5px;
  }

  .choice-label {
    flex: 0 0 34px;
    min-height: 34px;
    max-height: 34px;
    padding: 5px 8px;
  }

  .choice-label:has(.choice-sub) {
    flex-basis: 52px;
    min-height: 52px;
    max-height: 52px;
  }

  .choice-label-text {
    font-size: 14px;
  }

  .mini-site,
  .density-layout,
  .move-demo,
  .type-sample,
  .shape-demo,
  .palette {
    min-height: 150px;
    height: auto;
  }

  .imagery-art {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
  }

  .choice-visual:has(.imagery-art) {
    min-height: 180px;
  }

  .step-panel {
    padding: 18px 16px;
    overflow: visible;
  }

  .step-help {
    max-height: none;
    white-space: normal;
    overflow: visible;
  }
}

@media (max-width: 720px) {
  .choice-grid[data-cols="2"],
  .choice-grid[data-cols="3"],
  .choice-grid[data-cols="4"] {
    grid-template-columns: 1fr;
  }

  .choice-grid-dual {
    grid-auto-rows: minmax(200px, auto);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column-reverse;
  }

  .step-actions .btn {
    width: 100%;
  }

  .type-elegant .type-line,
  .type-classic .type-line {
    font-size: 20px;
  }

  .type-friendly .type-line,
  .type-neutral .type-line,
  .type-hand .type-line {
    font-size: 18px;
  }

  .type-strong .type-line {
    font-size: 15px;
  }

  .type-hand .type-accent {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   Expanded modal previews. One full mini website per option,
   themed through the same class hooks the cards use, so the
   closer look answers what a site like this would feel like
   instead of enlarging a fragment. */

.exp-page {
  --xbg: #fffdf9;
  --xsurface: #f4efe6;
  --xink: #2a2016;
  --xmuted: #6e5c44;
  --xaccent: #b14a2a;
  --xaccent-ink: #fff;
  --xcard: #ece4d6;
  --xfooter: #2a2016;
  --xradius: 10px;
  --xbtn-radius: 8px;
  --xdisplay: inherit;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--xink);
  background: var(--xbg);
  border-radius: 12px;
  border: 1px solid rgba(42, 32, 22, 0.12);
  box-shadow: 0 14px 34px rgba(42, 32, 22, 0.14);
}

.xp-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: var(--xsurface);
  font-size: 11px;
  font-weight: 800;
}

.xp-links {
  display: flex;
  gap: 12px;
  color: var(--xmuted);
  font-weight: 700;
}

.xp-nav-cta {
  padding: 5px 11px;
  background: var(--xaccent);
  color: var(--xaccent-ink);
  border-radius: var(--xbtn-radius);
  font-size: 10px;
  font-weight: 800;
}

.xp-hero {
  flex: 1 0 auto;
  justify-content: center;
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.xp-kicker {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xaccent);
}

.xp-title {
  margin: 0;
  font-family: var(--xdisplay);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.08;
}

.xp-accent {
  margin: 0;
  font-family: "Segoe Script", "Comic Sans MS", cursive;
  font-size: 15px;
  font-weight: 600;
  color: var(--xaccent);
}

.xp-body {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--xmuted);
}

.xp-cta {
  width: fit-content;
  margin-top: 7px;
  padding: 8px 15px;
  background: var(--xaccent);
  color: var(--xaccent-ink);
  border-radius: var(--xbtn-radius);
  font-size: 11px;
  font-weight: 800;
}

.xp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 2px 18px;
}

.xp-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(42, 32, 22, 0.08);
  border-radius: var(--xradius);
}

.xp-thumb {
  height: 42px;
  border-radius: calc(var(--xradius) * 0.6);
  background: var(--xcard);
}

.xp-line {
  height: 6px;
  border-radius: 999px;
  background: var(--xcard);
}

.xp-line.short {
  width: 60%;
}

.xp-section {
  flex: 1 0 auto;
  justify-content: center;
  padding: 16px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.xp-h {
  margin: 0;
  font-family: var(--xdisplay);
  font-size: 16px;
  font-weight: 800;
}

.xp-dense {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 2px 18px;
}

.xp-dense span {
  padding: 8px 4px;
  text-align: center;
  background: var(--xsurface);
  border: 1px solid rgba(42, 32, 22, 0.1);
  border-radius: var(--xradius);
  font-size: 10px;
  font-weight: 800;
}

.xp-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 16px;
  background: var(--xfooter);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.xp-flinks {
  display: flex;
  gap: 12px;
  opacity: 0.85;
}

/* Overall feel themes */
.exp-page.feel-warm {
  --xbg: #fff8ef;
  --xsurface: #f3e2cf;
  --xaccent: #9c4a2f;
  --xcard: #edd7c2;
  --xink: #4a2f24;
  --xmuted: #7a5a48;
  --xfooter: #4a2f24;
  --xdisplay: Georgia, "Times New Roman", serif;
  --xbtn-radius: 999px;
  --xradius: 14px;
}

.exp-page.feel-clean {
  --xbg: #f7faf9;
  --xsurface: #ffffff;
  --xaccent: #2c7a78;
  --xcard: #d7e8e4;
  --xink: #16312c;
  --xmuted: #4e6660;
  --xfooter: #16312c;
  --xbtn-radius: 6px;
  --xradius: 8px;
}

.exp-page.feel-bold {
  --xbg: #17131f;
  --xsurface: #221b2d;
  --xaccent: #ff6b3d;
  --xaccent-ink: #17131f;
  --xcard: #3a2f4d;
  --xink: #f6f0ff;
  --xmuted: rgba(246, 240, 255, 0.72);
  --xfooter: #0e0b14;
  --xbtn-radius: 4px;
  --xradius: 6px;
}

.exp-page.feel-bold .xp-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(246, 240, 255, 0.12);
}

.exp-page.feel-classic {
  --xbg: #f4efe6;
  --xsurface: #2f2a24;
  --xaccent: #2f2a24;
  --xcard: #d8cfc0;
  --xink: #2f2a24;
  --xmuted: #6a6053;
  --xfooter: #2f2a24;
  --xdisplay: Georgia, "Times New Roman", serif;
  --xbtn-radius: 2px;
  --xradius: 4px;
}

.exp-page.feel-classic .xp-nav {
  color: #f4efe6;
}

.exp-page.feel-classic .xp-links {
  color: rgba(244, 239, 230, 0.75);
}

.exp-page.feel-classic .xp-nav-cta {
  background: #f4efe6;
  color: #2f2a24;
}

.exp-page.feel-playful {
  --xbg: #fff6fb;
  --xsurface: #ffe3f0;
  --xaccent: #b03372;
  --xcard: #ffd0e6;
  --xink: #7a2458;
  --xmuted: #99537b;
  --xfooter: #7a2458;
  --xbtn-radius: 999px;
  --xradius: 18px;
}

.exp-page.feel-minimal {
  --xbg: #fafafa;
  --xsurface: #fafafa;
  --xaccent: #222222;
  --xcard: #ececec;
  --xink: #222222;
  --xmuted: #6d6d6d;
  --xfooter: #222222;
  --xbtn-radius: 0;
  --xradius: 0;
}

.exp-page.feel-minimal .xp-nav {
  border-bottom: 1px solid #e8e8e8;
}

.exp-page.feel-minimal .xp-cta,
.exp-page.feel-minimal .xp-nav-cta {
  background: transparent;
  color: #222;
  border: 1px solid #222;
}

/* Color direction themes */
.exp-page.color-soft {
  --xbg: #fff7f2;
  --xsurface: #f7ebe0;
  --xaccent: #8d3b4a;
  --xcard: #e8b7b0;
  --xfooter: #8d3b4a;
}

.exp-page.color-fresh {
  --xbg: #ffffff;
  --xsurface: #f4faf7;
  --xaccent: #3f6b4a;
  --xcard: #9db89a;
  --xfooter: #3f6b4a;
}

.exp-page.color-rich {
  --xbg: #101820;
  --xsurface: #13233d;
  --xaccent: #b0893f;
  --xaccent-ink: #101820;
  --xcard: #1f4a34;
  --xink: #f4efe4;
  --xmuted: rgba(244, 239, 228, 0.72);
  --xfooter: #0a0f14;
}

.exp-page.color-rich .xp-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(244, 239, 228, 0.14);
}

.exp-page.color-bright {
  --xbg: #ffffff;
  --xsurface: #ffffff;
  --xaccent: #d63b16;
  --xcard: #dbe6ff;
  --xfooter: #1c1c1c;
}

.exp-page.color-bright .xp-nav {
  border-bottom: 1px solid #eeeeee;
}

.exp-page.color-bright .xp-nav-cta {
  background: #2456d6;
}

.exp-page.color-earthy {
  --xbg: #faf4ea;
  --xsurface: #efe4d2;
  --xaccent: #a1521f;
  --xcard: #cfc39f;
  --xfooter: #5c4a33;
}

.exp-page.color-dark {
  --xbg: #1d1b18;
  --xsurface: #26231f;
  --xaccent: #d9982e;
  --xaccent-ink: #1d1b18;
  --xcard: #3a352e;
  --xink: #f2ede4;
  --xmuted: rgba(242, 237, 228, 0.7);
  --xfooter: #121110;
}

.exp-page.color-dark .xp-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 237, 228, 0.12);
}

/* Text and font style themes */
.exp-page.type-elegant {
  --xdisplay: "Times New Roman", Times, serif;
}

.exp-page.type-classic {
  --xdisplay: Georgia, "Times New Roman", serif;
}

.exp-page.type-friendly {
  --xdisplay: "Trebuchet MS", "Segoe UI", sans-serif;
  --xbtn-radius: 999px;
}

.exp-page.type-strong {
  --xdisplay: "Arial Black", Arial, sans-serif;
}

.exp-page.type-strong .xp-title {
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 24px;
}

.exp-page.type-neutral {
  --xdisplay: "Segoe UI", system-ui, sans-serif;
}

.exp-page.type-neutral .xp-title {
  font-weight: 600;
}

.exp-page.type-hand {
  --xdisplay: Georgia, "Times New Roman", serif;
}

/* Page fullness themes */
.exp-page.density-very-open .xp-hero {
  padding: 44px 24px 30px;
  gap: 10px;
}

.exp-page.density-very-open .xp-card:nth-child(n + 2) {
  display: none;
}

.exp-page.density-very-open .xp-cards {
  grid-template-columns: 1fr;
  padding: 2px 24px;
}

.exp-page.density-very-open .xp-section {
  padding: 26px 24px 16px;
}

.exp-page.density-content .xp-hero {
  padding: 14px 18px 10px;
}

.exp-page.density-content .xp-title {
  font-size: 21px;
}

.exp-page.density-everything .xp-hero {
  padding: 10px 18px 8px;
  gap: 4px;
}

.exp-page.density-everything .xp-title {
  font-size: 18px;
}

.exp-page.density-everything .xp-cards {
  gap: 6px;
}

.exp-page.density-everything .xp-section {
  padding: 10px 18px 8px;
}

/* Movement themes reuse the card keyframes */
.exp-page.move-gentle .xp-hero,
.exp-page.move-gentle .xp-card,
.exp-page.move-gentle .xp-section {
  animation: move-fade 4s ease-in-out infinite;
}

.exp-page.move-gentle .xp-card:nth-child(2) { animation-delay: 0.3s; }
.exp-page.move-gentle .xp-card:nth-child(3) { animation-delay: 0.6s; }
.exp-page.move-gentle .xp-section { animation-delay: 0.9s; }

.exp-page.move-lively .xp-hero,
.exp-page.move-lively .xp-card,
.exp-page.move-lively .xp-section {
  animation: move-slide 4s ease-in-out infinite;
}

.exp-page.move-lively .xp-card:nth-child(2) { animation-delay: 0.2s; }
.exp-page.move-lively .xp-card:nth-child(3) { animation-delay: 0.4s; }
.exp-page.move-lively .xp-section { animation-delay: 0.6s; }

.exp-page.move-lively .xp-cta {
  animation: move-lift 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.exp-page.move-playful .xp-card:nth-child(1) {
  animation: move-drift-a 5s ease-in-out infinite;
}

.exp-page.move-playful .xp-card:nth-child(2) {
  animation: move-drift-b 5s ease-in-out infinite;
}

.exp-page.move-playful .xp-card:nth-child(3) {
  animation: move-drift-c 5s ease-in-out infinite;
}

.exp-page.move-playful .xp-cta {
  animation: move-lift 4s ease-in-out infinite;
}

/* Element shape themes */
.exp-page.shape-soft {
  --xradius: 18px;
  --xbtn-radius: 999px;
}

.exp-page.shape-sharp {
  --xradius: 0;
  --xbtn-radius: 0;
}

.exp-page.shape-links .xp-cta,
.exp-page.shape-links .xp-nav-cta {
  padding: 0;
  background: transparent;
  color: var(--xaccent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 12px;
}

.exp-page.shape-callout {
  --xradius: 0;
  --xbtn-radius: 0;
}

.exp-page.shape-callout .xp-cta::after,
.exp-page.shape-callout .xp-nav-cta::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--gold);
}

/* Modal short description beside the option name. One line, never wraps. */
.preview-modal-desc {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Presence step: the fictional owner appears progressively. */
.xp-sign {
  margin: 4px 0 0;
  font-family: "Segoe Script", "Comic Sans MS", cursive;
  font-size: 13px;
  font-weight: 600;
  color: var(--xaccent);
}

.xp-avatar {
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, #d8b49a 0 34%, transparent 35%),
    linear-gradient(180deg, transparent 55%, #b8886c 56%),
    #efe2d2;
  border: 2px solid rgba(42, 32, 22, 0.16);
  flex: 0 0 auto;
}

.xp-avatar-hero {
  width: 64px;
  height: 64px;
  margin-bottom: 4px;
}

.xp-about {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 18px;
  padding: 10px 12px;
  background: var(--xsurface);
  border-radius: var(--xradius);
}

.xp-about-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 auto;
  min-width: 0;
}

.xp-about-copy .xp-h {
  font-size: 13px;
}

/* Avoid chips carry a short plain explanation under the label. */
.chip-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.chip-sub {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--muted);
}

.chip.is-selected .chip-sub {
  color: rgba(255, 247, 238, 0.8);
}

/* Reese finding 2: at phone width the dialog fills the screen safely,
   Close stays visible in the top row, and the description drops to its
   own single ellipsis line under the title. */
@media (max-width: 720px) {
  .preview-modal {
    padding: 10px;
  }

  .preview-modal-dialog {
    width: 100%;
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    padding: 12px;
  }

  .preview-modal-title {
    font-size: 16px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .preview-modal-desc {
    order: 3;
    flex: 1 1 100%;
    margin-left: 0;
    font-size: 13px;
  }

  .preview-modal-visual {
    width: 100%;
    min-width: 0;
    padding: 10px;
  }
}
