
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;900&family=Archivo+Black&display=swap');


  * { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --dark: #202022;
    --dark-2: #1A1A1C;
    --gold: #E8A849;
    --gold-hover: #d4963e;
    --cream: #F7F5F2;
    --text-muted: #9A9AA0;
    --teal: #17B8A6;
    --err: #C6362C;
    --body-text: #3A3A3C;
    --light-border: #E5E5E7;
    --gold-deep: #9A6A18;   /* gold is unreadable on cream at small sizes */
    --fin: 0.35s;
  }

  html, body {
    font-family: 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--cream);
    color: var(--dark);
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

  /* ── Stage ────────────────────────────────────────────────── */
  .stage {
    min-height: 100vh;
    padding: 48px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
  }

  /* ── Info columns ─────────────────────────────────────────── */
  .info {
    display: flex;
    flex-wrap: wrap;
    gap: 72px;
  }
  .info h2 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 12px;
  }
  .info p, .info a {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    text-decoration: none;
    display: block;
  }
  .info a { transition: color var(--fin); }
  .info a:hover, .info a:focus-visible { color: var(--gold-deep); }
  .info small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--body-text);
    line-height: 1.5;
  }

  /* ── Bottom band ──────────────────────────────────────────── */
  .band {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 48px;
  }
  .giant {
    /* Inter Bold (700), already in the font request. Tracking eased from
       -0.03em: bold strokes need marginally more air than black. */
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 10.9vw, 160px);
    line-height: 0.88;
    letter-spacing: -0.025em;
    color: var(--dark);
    user-select: none;
  }

  /* ── Form panel ───────────────────────────────────────────── */
  .panel { width: min(480px, 100%); }

  .card {
    background: var(--dark);
    color: var(--cream);
    border-radius: 10px;
    padding: 26px 28px;
    min-height: 214px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }
  .card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
  }
  .card-top h3 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    font-size: 20px;
  }
  .steps {
    font-size: 13px;
    color: rgba(247,245,242,0.5);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }
  .steps b { color: var(--cream); font-weight: 600; }

  .card-note {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(247,245,242,0.75);
  }
  .card-note a { color: var(--cream); text-decoration: underline; }

  /* Answers already given, echoed back so the person sees progress */
  .echo { display: flex; flex-wrap: wrap; gap: 6px; }
  .echo span {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(247,245,242,0.1);
    color: rgba(247,245,242,0.72);
  }

  /* ── Inputs ───────────────────────────────────────────────── */
  .step { display: none; }
  .step.on { display: block; }

  .row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
  }
  .ctrl { flex: 1; }
  .ctrl + .ctrl { margin-top: 12px; }

  .fld {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    background: transparent;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 15px 18px;
    transition: border-color var(--fin);
  }
  .fld::placeholder { color: #8A8A90; }
  .fld:focus { outline: none; border-color: var(--teal); }
  .fld:invalid { box-shadow: none; }
  textarea.fld { resize: vertical; min-height: 96px; line-height: 1.55; }
  select.fld { appearance: none; cursor: pointer; color: #8A8A90; }
  select.fld.filled { color: var(--dark); }
  select.fld option { background: var(--cream); color: var(--dark); }

  .fld.bad { border-color: var(--err); }
  .msg {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: var(--err);
  }
  .msg.on { display: block; }

  .go {
    flex: none;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid var(--light-border);
    background: transparent;
    color: var(--dark);
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background var(--fin), border-color var(--fin), color var(--fin);
  }
  .go:hover { background: var(--dark); border-color: var(--dark); color: var(--cream); }

  .back-step {
    margin-top: 14px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--body-text);
    cursor: pointer;
    padding: 4px 0;
    transition: color var(--fin);
  }
  .back-step:hover { color: var(--dark); }
  .back-step[hidden] { display: none; }

  .consent {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--body-text);
  }
  .consent a { color: var(--body-text); }

  /* Bot trap */
  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

  /* Success */
  .panel.sent form,
  .panel.sent .consent { display: none; }
  .done { display: none; }
  .panel.sent .done { display: block; }
  .done .card h3 { color: var(--cream); }

  /* ── Footer ───────────────────────────────────────────────── */
  /* Wrapper carries the dark to the viewport edge; .footer stays
     centred inside it exactly as on every other page. */
  .footer-band { background: var(--dark); color: var(--cream); }
  .footer {
    padding: 60px 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-wordmark { width: 150px; height: auto; display: block; margin-bottom: 16px; }
  .footer-addr { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  .footer-addr a { color: var(--text-muted); text-decoration: none; transition: color var(--fin); }
  .footer-addr a:hover, .footer-addr a:focus-visible { color: var(--teal); }
  .footer-links { display: flex; gap: 56px; }
  .footer-col h4 {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  }
  .footer-col a {
    display: block; font-size: 13px; color: var(--text-muted);
    text-decoration: none; margin-bottom: 10px; transition: color var(--fin);
  }
  .footer-col a:hover, .footer-col a:focus-visible { color: var(--cream); }
  .footer-copy {
    width: 100%; padding-top: 36px;
    border-top: 1px solid rgba(154,154,160,0.1);
    font-size: 12px; color: rgba(154,154,160,0.78);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .footer-copy a { color: rgba(154,154,160,0.78); text-decoration: none; transition: color var(--fin); }
  .footer-copy a:hover, .footer-copy a:focus-visible { color: var(--cream); }

  /* ── Responsive ───────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .band { grid-template-columns: 1fr; align-items: start; }
    .panel { width: 100%; }
    .giant { order: 2; }
  }
  @media (max-width: 700px) {
    .stage { padding: 32px 24px 56px; gap: 32px; }
    .info { gap: 32px; }
    .footer { padding: 48px 24px; }
    .footer-links { gap: 36px; }
  }
  @media (max-width: 560px) {
    .footer-links { flex-direction: column; gap: 28px; }
  }
  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: 0.01ms !important; }
  }

