:root {
  --bg: #faf8f5;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #d8d4cc;
  --accent: #2a2a2a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 720px; margin: 0 auto; padding: 80px 32px; }
.container--wide { max-width: 880px; }
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 32px; border-bottom: 1px solid var(--line);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
}
nav a { color: var(--ink); text-decoration: none; margin-left: 24px; }
nav a:hover { color: var(--muted); }
.brand {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  text-transform: none; letter-spacing: 0.02em; margin-left: 0;
}
h1 {
  font-size: 56px; font-weight: 500; line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 24px;
}
h2 { font-size: 32px; font-weight: 500; margin: 56px 0 20px; line-height: 1.25; }
h3 {
  font-family: 'Inter', sans-serif; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 13px; color: var(--muted);
  margin: 32px 0 12px; font-weight: 500;
}
p { margin-bottom: 20px; max-width: 60ch; }
.lede { font-size: 24px; line-height: 1.45; color: var(--ink); margin-bottom: 32px; }
.btn {
  display: inline-block; padding: 18px 36px;
  background: var(--ink); color: var(--bg);
  text-decoration: none; font-family: 'Inter', sans-serif;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 64px 0; }
.tier { padding: 32px 0; border-top: 1px solid var(--line); }
.tier:last-child { border-bottom: 1px solid var(--line); }
.tier-name { font-size: 24px; margin-bottom: 6px; }
.tier-price {
  font-family: 'Inter', sans-serif; font-size: 14px;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px;
}
footer {
  border-top: 1px solid var(--line); margin-top: 96px;
  padding: 40px 32px; font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--muted); text-align: center;
}
footer a { color: var(--muted); margin: 0 12px; text-decoration: none; }
footer a:hover { color: var(--ink); }
.lang-switch { font-size: 12px; letter-spacing: 0.1em; }

/* Intake form */
.intake-step { display: none; }
.intake-step.active { display: block; }
.intake-progress {
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 32px;
}
.prompt { margin-bottom: 40px; }
.prompt-label {
  font-size: 20px; line-height: 1.4; margin-bottom: 16px; display: block;
}
.prompt-options label {
  display: block; padding: 14px 18px; margin-bottom: 8px;
  border: 1px solid var(--line); cursor: pointer;
  font-size: 17px; transition: all 0.15s;
}
.prompt-options label:hover { border-color: var(--ink); background: #fff; }
.prompt-options input { margin-right: 12px; }
.prompt-options label:has(input:checked) {
  border-color: var(--ink); background: #fff;
}
.prompt textarea, .prompt input[type=email], .prompt input[type=text] {
  width: 100%; padding: 14px 18px; border: 1px solid var(--line);
  background: #fff; font-family: inherit; font-size: 17px;
  resize: vertical; min-height: 80px;
}
.prompt input[type=email], .prompt input[type=text] { min-height: 0; }
.prompt-note {
  font-size: 14px; color: var(--muted); margin-top: 8px;
  font-family: 'Inter', sans-serif; letter-spacing: 0.02em;
}
.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; font-size: 15px; }
.consent input { margin-top: 6px; }
.step-nav { display: flex; justify-content: space-between; margin-top: 48px; }
.divider {
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin: 56px 0 32px;
  font-style: italic;
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  h1 { font-size: 38px; }
  h2 { font-size: 26px; }
  .container { padding: 48px 24px; }
  nav { padding: 20px 24px; flex-wrap: wrap; gap: 12px; }
  nav a { margin-left: 0; margin-right: 16px; }
}

/* Explicit refusal option, set slightly apart from the substantive choices */
.prompt-options label.opt-none {
  margin-top: 14px;
  border-style: dashed;
  color: var(--muted);
}
.prompt-options label.opt-none:hover { color: var(--ink); }

/* Shown when a required group has no answer yet */
.group-error {
  font-size: 14px;
  color: #8a4b2a;
  margin-top: 10px;
}
.group-error[hidden] { display: none; }

/* Live word count under each written prompt */
.word-count {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.word-count--short,
.word-count--over { color: #8a4b2a; }
.word-count--ok { color: var(--muted); }

/* Stated reason shown when a written answer is not yet acceptable */
.field-error {
  font-size: 14px;
  line-height: 1.5;
  color: #8a4b2a;
  border-left: 2px solid #8a4b2a;
  padding-left: 12px;
  margin-top: 10px;
}
.field-error[hidden] { display: none; }
