/* Bright warm editorial — /put/ */
:root {
  --bg: #fffcf7;
  --bg-warm: #fbf3e4;
  --ink: #1a1612;
  --muted: #5c5348;
  --line: #efe6d6;
  --line-strong: #e2d5bf;
  --gold: #d4a84b;
  --gold-ink: #b8892e;
  --surface: #ffffff;
  --hover: #fbf3e4;
  --selected: transparent;
  --r-sm: 8px;
  --r-md: 8px;
  --r-lg: 16px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --red: #b91c1c;
  --yellow: #a16207;
  --green: #0f766e;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html { height: 100%; }
body {
  font-family: "Mulish", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, rgba(212, 168, 75, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(251, 243, 228, 0.9), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  min-height: 100dvh;
}
body.menu-open {
  overflow: hidden;
}

.shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px clamp(22px, 5vw, 64px) 40px;
  padding-top: max(28px, env(safe-area-inset-top));
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}
.shell > .top,
.shell > .step-meta,
.shell > .progress,
.shell > .panel,
.shell > .foot {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 390px) {
  .shell { padding-left: 20px; padding-right: 20px; }
}

.top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  padding-left: 52px;
  position: relative;
  z-index: 20;
}

/* Fixed burger — top left, above fullscreen menu */
.menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: max(10px, env(safe-area-inset-top));
  left: max(10px, env(safe-area-inset-left));
  z-index: 80;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transition: background 0.25s var(--ease);
}
.menu-toggle:hover {
  background: rgba(26, 22, 18, 0.05);
}
.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.25s;
}
.menu-bars {
  position: relative;
}
.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-bars::before { top: -8px; }
.menu-bars::after { top: 8px; }
.menu-toggle[aria-expanded="true"] .menu-bars {
  background: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-bars::before,
.menu-toggle[aria-expanded="true"] .menu-bars::after {
  background: var(--ink);
}
.menu-toggle[aria-expanded="true"] .menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Spreading fullscreen menu */
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: max(88px, calc(env(safe-area-inset-top) + 72px)) clamp(28px, 8vw, 96px) 48px;
  background:
    radial-gradient(circle at 28px 36px, #f0c96a 0%, #e8b84f 18%, #fbf3e4 42%, #fffcf7 70%);
  clip-path: circle(0 at 36px 36px);
  transition: clip-path 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  visibility: hidden;
}
.site-menu.is-open,
.site-menu:not([hidden]) {
  visibility: visible;
  pointer-events: auto;
  clip-path: circle(160% at 36px 36px);
}
.site-menu[hidden] {
  display: flex !important;
  visibility: hidden;
  pointer-events: none;
  clip-path: circle(0 at 36px 36px);
}
.site-menu-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.site-menu-brand {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: var(--gold-ink);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
}
.site-menu.is-open .site-menu-brand {
  opacity: 1;
  transform: none;
}
.site-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-menu li {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(0.1s + var(--i, 0) * 0.06s);
}
.site-menu.is-open li {
  opacity: 1;
  transform: none;
}
.site-menu a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  border-bottom: 1px solid rgba(26, 22, 18, 0.08);
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.site-menu a:hover {
  color: var(--gold-ink);
  text-decoration: none;
  padding-left: 8px;
}
.site-menu li:last-child a { border-bottom: 0; }

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand:hover { opacity: 0.7; text-decoration: none; }

.shell.is-intro .progress,
.shell.is-intro .step-meta {
  display: none;
}
.shell.is-intro .top {
  opacity: 0;
  pointer-events: none;
  height: 0;
  margin: 0;
  overflow: hidden;
}
.shell.is-intro .panel {
  flex: 1;
  padding-top: clamp(56px, 14vh, 140px);
  padding-bottom: 24px;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 880px;
}
.shell.is-intro .foot {
  max-width: 880px;
  text-align: center;
}
.shell.is-intro h1 {
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  max-width: 10ch;
  line-height: 1.05;
  margin: 0 auto 28px;
}
.shell.is-intro .lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 36ch;
  line-height: 1.65;
  margin: 0 auto 18px;
}
.shell.is-intro .intro-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  max-width: 38ch;
  margin: 0 auto;
}
.shell.is-intro .actions {
  margin-top: clamp(28px, 5vh, 48px);
  padding-top: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.shell.is-intro .btn-cta {
  width: min(100%, 480px);
  max-width: none;
  min-height: 76px;
  padding: 22px 32px;
  font-size: clamp(1.28rem, 3.6vw, 1.7rem);
  font-weight: 700;
  border-radius: 16px;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 28px rgba(184, 137, 46, 0.28);
}
.shell.is-intro .btn-more {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  border-color: var(--line-strong);
  background: transparent;
}
.shell.is-intro .btn-more:hover {
  color: var(--ink);
  background: var(--hover);
}

.mission-label {
  margin: 0 auto 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.intro-lead {
  margin: -12px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 34ch;
}

.step-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 22px 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}
.step-meta strong {
  color: var(--ink);
  font-weight: 500;
}

.progress {
  height: 2px;
  background: var(--line);
  border-radius: 0;
  margin: 12px 0 0;
  overflow: hidden;
}
.progress > i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 0;
  transition: width 0.25s var(--ease);
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 36px;
}
.panel.is-in {
  animation: rise 0.25s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.kicker {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.reaction { display: none; }

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 6.5vw, 2.4rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}
h1.ink {
  color: var(--ink);
  font-size: clamp(1.5rem, 5.2vw, 2rem);
  max-width: 18ch;
  line-height: 1.2;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
}
.prompt {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin: -4px 0 32px;
  line-height: 1.5;
}

.result-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-bottom: 8px;
  box-shadow: none;
}
.result-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 5vw, 2.05rem);
  font-weight: 500;
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 16ch;
  color: var(--ink);
}
.result-card .body {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 36ch;
}
.result-card .soft {
  margin: 0 0 20px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}
.result-card .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-ink);
  margin: 0 0 8px;
}

.score-bars {
  display: flex;
  flex-direction: column;
  margin: 4px 0 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--line-strong);
}
.score-row {
  display: grid;
  grid-template-columns: 88px 1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.score-row:last-child { border-bottom: 0; }
.score-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.score-track {
  height: 2px;
  background: var(--line);
  border-radius: 0;
  overflow: hidden;
}
.score-track > i {
  display: block;
  height: 100%;
  background: var(--ink);
  border-radius: 0;
}
.score-row:first-child .score-track > i { background: var(--gold); }
.score-num {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.score-row:first-child .score-num { color: var(--gold-ink); }
.zone-score { font-weight: 500; }

/* Answers = list rows, not cards */
.choices {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
  border-top: 1px solid var(--line-strong);
}
.choice {
  appearance: none;
  width: 100%;
  text-align: left;
  font: inherit;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.4;
  padding: 16px 4px 16px 12px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.choice:hover {
  background: var(--hover);
}
.choice.is-on {
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  box-shadow: inset 2px 0 0 var(--gold);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 32px;
}
.btn {
  appearance: none;
  border: 1px solid var(--line-strong);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 11px 16px;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s var(--ease), background 0.2s var(--ease), opacity 0.2s;
  background: transparent;
  color: var(--ink);
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover:not(:disabled) {
  filter: brightness(0.97);
  text-decoration: none;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--hover); text-decoration: none; color: var(--ink); }
a.btn-ghost { color: var(--ink); }

.zones {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0 20px;
  border-top: 1px solid var(--line-strong);
}
.zone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.9rem;
}
.zone .name {
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 500;
}
.zone.is-red .name { color: var(--red); }
.zone.is-yellow .name { color: var(--yellow); }
.zone.is-green .name { color: var(--green); }

.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 12px 0;
  border-top: 1px solid var(--line-strong);
}
.ops-cell {
  padding: 14px 12px 14px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 500;
  font-size: 0.85rem;
}
.ops-cell small {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: none;
}

.channel {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.channel .choice {
  width: auto;
  flex: 1 1 30%;
  text-align: left;
  padding: 14px 8px 14px 12px;
  font-size: 0.9rem;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 2px;
}
.consent a { color: var(--gold-ink); font-weight: 500; }
.consent + .consent { margin-top: 10px; }
.consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.err { color: #be123c; font-size: 0.88rem; margin: 0; }
.ok { color: var(--green); font-size: 0.92rem; font-weight: 500; margin: 0; }

.foot {
  margin-top: 36px;
  text-align: left;
  font-size: 0.7rem;
  color: #a39e94;
}
.foot a { color: #a39e94; }

@media (max-width: 380px) {
  .ops-grid { grid-template-columns: 1fr; }
  .choice { font-size: 0.95rem; padding: 15px 4px 15px 12px; }
}
