/* ============================================================
   Hazel — public site stylesheet
   Tokens and values come from the Hazel design system
   (hazel-design-system: colors.css / typography.css / spacing.css).
   Light (day) is the default; .hz-dark re-maps the palette for night
   and for the dark bands on the landing page.
   ============================================================ */

/* ---------- color tokens ---------- */
:root {
  color-scheme: light;
  /* surfaces */
  --hz-bg: #F5F1E8;            /* cream — the page */
  --hz-panel: #F5F2E9;         /* raised card */
  --hz-sunken: #EBE7DF;        /* recessed well */
  --hz-bubble: #E9E5DC;        /* user-speech surface */
  /* ink */
  --hz-ink: #1F2326;
  --hz-ink-strong: #181B1E;    /* headlines, pull quotes */
  --hz-ink-soft: rgba(31,35,38,.66);
  --hz-ink-faint: rgba(31,35,38,.46);
  --hz-ink-ghost: rgba(31,35,38,.28);
  /* hairlines */
  --hz-line: rgba(31,35,38,.12);
  --hz-line-soft: rgba(31,35,38,.07);
  --hz-raised-line: rgba(31,35,38,.10);
  /* brass */
  --hz-accent: #C9A66B;        /* brass — marks, rules, cursors */
  --hz-accent-ink: #A18556;    /* brass dark enough to read as text on cream */
  --hz-glow: #E3C88A;          /* candle glow — needle tips, center dot */
  --hz-glow-soft: rgba(201,166,107,.16);
  /* elevation */
  --hz-shadow: 0 24px 60px rgba(31,35,38,.10);
}
.hz-dark {
  color-scheme: dark;
  --hz-bg: #121417;
  --hz-panel: #1B1E22;
  --hz-sunken: #0C0E10;
  --hz-bubble: #24282D;
  --hz-ink: #F5F1E8;
  --hz-ink-strong: #FCF9F3;
  --hz-ink-soft: rgba(245,241,232,.70);
  --hz-ink-faint: rgba(245,241,232,.48);
  --hz-ink-ghost: rgba(245,241,232,.28);
  --hz-line: rgba(245,241,232,.14);
  --hz-line-soft: rgba(245,241,232,.07);
  --hz-raised-line: rgba(245,241,232,.09);
  --hz-accent: #C9A66B;
  --hz-accent-ink: #E3C489;    /* brass reads lighter on charcoal */
  --hz-glow: #E7CE98;
  --hz-glow-soft: rgba(201,166,107,.22);
  --hz-shadow: 0 24px 70px rgba(0,0,0,.46);
}

/* ---------- typography + spacing tokens ---------- */
:root {
  --hz-font-display: 'Cormorant', 'EB Garamond', Georgia, serif;
  --hz-font-serif: 'EB Garamond', Georgia, serif;
  --hz-font-ui: 'Instrument Sans', system-ui, sans-serif;

  --hz-text-meta: 11.5px;
  --hz-text-label: 12px;
  --hz-text-kicker: 11px;

  --hz-track-kicker: .22em;
  --hz-track-tag: .16em;
  --hz-track-wordmark: .4em;

  --hz-radius: 2px;
  --hz-radius-round: 50%;
  --hz-ease: cubic-bezier(.23, 1, .32, 1);
}

/* ---------- base ---------- */
html, body { margin: 0; padding: 0; background: #F5F1E8; }
html.hz-dark, html.hz-dark body { background: #121417; }
body {
  min-height: 100vh;
  background: var(--hz-bg);
  color: var(--hz-ink);
  font-family: var(--hz-font-serif);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--hz-accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
::selection { background: rgba(201,166,107,.28); }

@keyframes hzRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes hzBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes hzOrient { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- compass mark ---------- */
.hz-mark { position: relative; display: flex; align-items: center; justify-content: center; flex: none; }
.hz-mark-halo { position: absolute; inset: -28%; border-radius: 50%;
  background: radial-gradient(circle, var(--hz-glow-soft), transparent 68%); }
.hz-mark > svg { position: relative; width: 100%; height: 100%; }
.hz-mark--breathing > svg { animation: hzOrient 6s ease-in-out infinite; }
.hz-mark-ring { fill: none; stroke: var(--hz-accent); stroke-width: .6; opacity: .32; }
.hz-mark-ticks line { stroke: var(--hz-accent); stroke-width: 1; stroke-linecap: round; }
.hz-mark-short { fill: var(--hz-accent); opacity: .45; }
.hz-mark-long { fill: var(--hz-accent); }
.hz-mark-eye { fill: var(--hz-glow); }

/* ---------- lockup ---------- */
.hz-lockup { display: flex; align-items: center; gap: 13px; }
.hz-lockup .hz-wordmark {
  font-family: var(--hz-font-serif);
  font-weight: 500;
  letter-spacing: var(--hz-track-wordmark);
  text-transform: uppercase;
  color: var(--hz-accent-ink);
  padding-left: .4em;
}

/* ---------- top bar ---------- */
.hz-header { border-bottom: 1px solid var(--hz-line-soft); }
.hz-topbar {
  padding: 20px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.hz-topbar-nav { display: flex; align-items: center; gap: 28px; }
.hz-navlink { font-family: var(--hz-font-ui); font-size: 12.5px; color: var(--hz-ink-faint); }
.hz-navlink:hover { color: var(--hz-ink); text-decoration: none; }
.hz-textlink {
  font-family: var(--hz-font-ui); font-size: 12.5px; color: var(--hz-accent-ink);
  border-bottom: 1px solid var(--hz-accent); padding-bottom: 2px;
}
.hz-textlink:hover { color: var(--hz-ink); border-bottom-color: var(--hz-ink); text-decoration: none; }
.hz-theme-toggle {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  padding: 0; background: transparent;
  border: 1px solid var(--hz-line); border-radius: var(--hz-radius-round);
  color: var(--hz-ink-soft); cursor: pointer;
}
.hz-theme-toggle:hover { color: var(--hz-ink); border-color: var(--hz-ink-faint); }
.hz-theme-toggle .hz-icon-sun { display: none; }
.hz-dark .hz-theme-toggle .hz-icon-sun { display: block; }
.hz-dark .hz-theme-toggle .hz-icon-moon { display: none; }
/* no JS → no toggle */
html:not(.js) .hz-theme-toggle { display: none; }

/* ---------- buttons ---------- */
.hz-btn {
  display: inline-flex; align-items: center; padding: 13px 28px;
  background: transparent; border: 1px solid var(--hz-ink); border-radius: var(--hz-radius);
  font-family: var(--hz-font-ui); font-size: 13px; font-weight: 500; letter-spacing: .04em;
  color: var(--hz-ink); cursor: pointer;
}
.hz-btn:hover { background: var(--hz-sunken); text-decoration: none; }
.hz-btn--accent { padding: 14px 34px; border-color: var(--hz-accent); color: var(--hz-accent-ink); }
.hz-btn--accent:hover { background: rgba(201,166,107,.10); }

/* ---------- shared bits ---------- */
.hz-kicker {
  font-family: var(--hz-font-ui); font-size: var(--hz-text-kicker);
  letter-spacing: var(--hz-track-kicker); text-transform: uppercase; color: var(--hz-ink-ghost);
}
.hz-kicker--brass { color: var(--hz-accent-ink); }
.hz-divider { width: 60px; height: 1px; background: var(--hz-line); border: 0; margin: 0; }
.hz-caret {
  display: inline-block; width: 2px; height: .85em; background: var(--hz-accent);
  margin-left: 6px; vertical-align: -0.08em; animation: hzBlink 1.1s step-end infinite;
}

/* ---------- journey dial ---------- */
.hz-journey { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 40; }
.hz-journey [data-jd-rotor] { transform-origin: 32px 32px; }
.hz-journey [data-jd-ticks] line { stroke: var(--hz-line); stroke-linecap: round; }
.hz-journey [data-jd-ticks] line.lit { stroke: var(--hz-accent); }
html:not(.js) .hz-journey { display: none; }

/* ---------- hero ---------- */
.hz-hero {
  padding: 96px 30px 88px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hz-rise { animation: hzRise .8s var(--hz-ease) both; }
.hz-hero-title { margin: 0; display: contents; }
.hz-hero-brand {
  display: block; margin: 20px 0 0;
  font-family: var(--hz-font-serif); font-weight: 500; font-size: 15px;
  letter-spacing: var(--hz-track-wordmark); text-transform: uppercase; color: var(--hz-accent-ink);
}
.hz-hero-headline {
  display: block; margin: 26px auto 0; max-width: 17ch;
  font-family: var(--hz-font-display); font-weight: normal;
  font-size: clamp(38px, 4.6vw, 56px); line-height: 1.12; letter-spacing: -0.012em;
  color: var(--hz-ink-strong); text-wrap: balance;
}
.hz-hero-sub {
  margin: 28px 0 0; max-width: 52ch; font-size: 18px; line-height: 1.68;
  color: var(--hz-ink-soft); text-wrap: pretty;
}
.hz-hero-cta { margin-top: 38px; display: flex; align-items: center; gap: 30px; }
.hz-hero-meta {
  margin: 26px 0 0; font-family: var(--hz-font-ui); font-size: var(--hz-text-meta);
  letter-spacing: .05em; color: var(--hz-ink-ghost);
}
.hz-hero .hz-divider { margin-top: 64px; }
.hz-scribe {
  margin: 56px 0 0; font-family: var(--hz-font-display); font-weight: 500; font-style: italic;
  font-size: clamp(27px, 3.2vw, 36px); color: var(--hz-ink);
}
.hz-scribe-wrap { position: relative; display: inline-block; white-space: nowrap; }
.hz-scribe-ghost { visibility: hidden; }
.hz-scribe-live { position: absolute; left: 0; top: 0; white-space: nowrap; }

/* ---------- sections ---------- */
.hz-sec { padding: 88px 30px 96px; }
.hz-sec--ruled { border-top: 1px solid var(--hz-line-soft); }
.hz-sec--dark { background: var(--hz-bg); color: var(--hz-ink); }
.hz-sec-inner { max-width: 880px; margin: 0 auto; }
.hz-sec-inner--narrow { max-width: 620px; }
.hz-sec-inner--conv { max-width: 640px; }
.hz-h2 {
  margin: 0; font-family: var(--hz-font-display); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 42px); line-height: 1.16; letter-spacing: -0.01em;
  color: var(--hz-ink-strong); text-wrap: balance;
}

/* features */
.hz-features { display: flex; flex-direction: column; gap: 64px; }
.hz-features .hz-h2 { max-width: 22ch; font-size: clamp(32px, 3.8vw, 44px); line-height: 1.14; }
.hz-cols-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hz-line-soft);
  border-top: 1px solid var(--hz-line-soft); border-bottom: 1px solid var(--hz-line-soft);
}
.hz-cell { background: var(--hz-bg); display: flex; flex-direction: column; gap: 16px; }
.hz-cell--l { padding: 40px 40px 44px 0; }
.hz-cell--r { padding: 40px 0 44px 40px; }
.hz-cell h3 {
  margin: 0; font-family: var(--hz-font-display); font-weight: 600;
  font-size: 26px; line-height: 1.2; color: var(--hz-ink-strong);
}
.hz-cell h3.hz-balance { max-width: 24ch; text-wrap: balance; }
.hz-cell p { margin: 0; font-size: 16px; line-height: 1.68; color: var(--hz-ink-soft); text-wrap: pretty; }
.hz-cell p.hz-em {
  font-family: var(--hz-font-display); font-style: italic; font-weight: 500;
  font-size: 19px; line-height: 1.4; color: var(--hz-accent-ink);
}
.hz-center-cta { display: flex; justify-content: center; }

/* dark band — the question */
.hz-question { padding: 104px 30px 110px; }
.hz-question .hz-sec-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hz-question .hz-h2 { margin: 34px 0 0; font-size: clamp(36px, 4.4vw, 52px); line-height: 1.1; letter-spacing: -0.012em; }
.hz-question-lede { margin: 26px 0 0; font-size: 17.5px; line-height: 1.7; color: var(--hz-ink-soft); }
.hz-nots { margin: 40px 0 0; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.hz-not { margin: 0; font-size: 17px; line-height: 1.6; color: var(--hz-ink-faint); white-space: nowrap; }
.hz-not .hz-not-label {
  font-family: var(--hz-font-ui); font-size: 11px; letter-spacing: var(--hz-track-kicker);
  text-transform: uppercase; color: var(--hz-ink-ghost); margin-right: 12px;
}
.hz-not em { font-style: italic; }
.hz-question .hz-divider { margin-top: 44px; }
.hz-question-pull {
  margin: 40px 0 0; max-width: 30ch; font-family: var(--hz-font-display);
  font-weight: 500; font-style: italic; font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.3; color: var(--hz-accent-ink); text-wrap: balance;
}
.hz-question-close { margin: 30px 0 0; max-width: 46ch; font-size: 17px; line-height: 1.7; color: var(--hz-ink-soft); text-wrap: pretty; }

/* triad + flow */
.hz-triad-sec { padding: 92px 30px 96px; }
.hz-triad-sec .hz-sec-inner { display: flex; flex-direction: column; align-items: center; }
.hz-triad-sec .hz-h2 { text-align: center; }
.hz-triad-lede { margin: 22px 0 0; font-size: 17px; line-height: 1.68; color: var(--hz-ink-soft); text-align: center; }
.hz-cols-3 { margin-top: 56px; width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.hz-triad {
  border-top: 2px solid var(--hz-accent); padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.hz-triad h3 { margin: 0; font-family: var(--hz-font-display); font-weight: 600; font-size: 24px; color: var(--hz-ink-strong); }
.hz-triad p { margin: 0; font-size: 16px; line-height: 1.66; color: var(--hz-ink-soft); text-wrap: pretty; }
.hz-flow { margin-top: 80px; display: flex; flex-direction: column; align-items: center; }
.hz-flow-step { margin: 0; font-size: 18px; font-style: italic; color: var(--hz-ink-soft); }
.hz-flow-start {
  margin: 0; font-family: var(--hz-font-ui); font-size: 12px;
  letter-spacing: var(--hz-track-kicker); text-transform: uppercase; color: var(--hz-ink-faint);
}
.hz-flow-end {
  margin: 0; font-family: var(--hz-font-display); font-weight: 600; font-style: italic;
  font-size: 27px; color: var(--hz-accent-ink);
}
.hz-flow-link { display: flex; flex-direction: column; align-items: center; padding: 14px 0; }
.hz-flow-link .hz-flow-line { width: 1px; height: 22px; background: var(--hz-line); }
.hz-flow-link .hz-flow-dot { width: 5px; height: 5px; background: var(--hz-accent); transform: rotate(45deg); margin-top: 6px; }

/* sample conversation */
.hz-conv { display: flex; flex-direction: column; gap: 44px; }
.hz-conv .hz-h2 { margin-bottom: 8px; text-align: center; }
.hz-turn { display: flex; flex-direction: column; gap: 8px; }
.hz-turn-label {
  font-family: var(--hz-font-ui); font-size: var(--hz-text-kicker);
  letter-spacing: var(--hz-track-kicker); text-transform: uppercase; color: var(--hz-ink-ghost);
}
.hz-turn--you { align-self: flex-end; max-width: 44ch; border-right: 2px solid var(--hz-line); padding-right: 22px; text-align: right; }
.hz-turn--you p { margin: 0; font-size: 17.5px; line-height: 1.66; color: var(--hz-ink); text-wrap: pretty; }
.hz-turn--hazel { align-self: flex-start; max-width: 44ch; border-left: 2px solid var(--hz-accent); padding-left: 22px; }
.hz-turn--hazel .hz-turn-label { color: var(--hz-accent-ink); }
.hz-turn--hazel .hz-turn-q {
  margin: 0; font-family: var(--hz-font-display); font-weight: 500; font-style: italic;
  font-size: 21px; line-height: 1.42; color: var(--hz-ink-strong); text-wrap: pretty;
}
.hz-turn--reflection { max-width: 48ch; }
.hz-reflection {
  font-family: var(--hz-font-serif); font-size: 17.5px; line-height: 1.72;
  color: var(--hz-ink-soft); text-wrap: pretty; max-width: 48ch; margin: 0;
}
.hz-dropcap {
  float: left; font-family: var(--hz-font-display); font-weight: 600;
  font-size: 3.5em; line-height: .72; margin: 7px 10px 0 0; color: var(--hz-accent-ink);
}
.hz-invitation {
  align-self: stretch; background: var(--hz-panel); border: 1px solid var(--hz-raised-line);
  border-radius: var(--hz-radius); box-shadow: var(--hz-shadow); padding: 26px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.hz-invitation-head { display: flex; align-items: center; gap: 12px; }
.hz-invitation p { margin: 0; font-size: 17px; line-height: 1.68; color: var(--hz-ink); text-wrap: pretty; }
.hz-conv-coda { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: 12px; }
.hz-conv-coda-title { margin: 0; font-family: var(--hz-font-display); font-weight: 500; font-size: 21px; color: var(--hz-ink-strong); text-align: center; }
.hz-conv-coda-sub { margin: 0; max-width: 44ch; font-size: 16.5px; line-height: 1.68; color: var(--hz-ink-soft); text-align: center; text-wrap: pretty; }
/* typing enhancement (JS builds the overlay) */
.hz-type-wrap { position: relative; }
.hz-type-ghost { visibility: hidden; }
.hz-type-live { position: absolute; inset: 0; }
.hz-type-live .hz-caret { margin-left: 4px; opacity: 0; }

/* prose sections (not-the-destination, why) */
.hz-prose { display: flex; flex-direction: column; gap: 26px; }
.hz-prose p { margin: 0; font-size: 17.5px; line-height: 1.7; color: var(--hz-ink-soft); text-wrap: pretty; }
.hz-prose p.hz-em-lead {
  font-family: var(--hz-font-display); font-weight: 500; font-style: italic;
  font-size: 22px; line-height: 1.42; color: var(--hz-ink);
}
.hz-prose p strong { font-weight: 500; color: var(--hz-ink-strong); }
.hz-prose .hz-more { margin-top: 8px; }

/* moments */
.hz-moments { display: flex; flex-direction: column; gap: 40px; }
.hz-moments-head { display: flex; flex-direction: column; gap: 18px; }
.hz-moments-head .hz-h2 { max-width: 24ch; }
.hz-moments-lede { margin: 0; font-size: 17px; line-height: 1.68; color: var(--hz-ink-soft); }
.hz-moments-list {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 60px;
}
.hz-moments-list li {
  border-top: 1px solid var(--hz-line-soft); padding: 18px 0;
  font-size: 17px; line-height: 1.6; color: var(--hz-ink);
}
.hz-moments-list li::before { content: "—"; color: var(--hz-accent); margin-right: 12px; }
.hz-moments-coda {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  border-top: 1px solid var(--hz-line-soft); padding-top: 34px;
}
.hz-moments-coda .hz-conv-coda-title { text-align: left; }
.hz-moments-coda p { margin: 0; font-size: 16.5px; line-height: 1.68; color: var(--hz-ink-soft); }
.hz-moments-coda .hz-btn { margin-top: 12px; }

/* final CTA */
.hz-final { padding: 104px 30px 96px; }
.hz-final .hz-sec-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hz-final .hz-h2 { margin: 34px 0 0; max-width: 18ch; font-size: clamp(34px, 4.2vw, 48px); line-height: 1.14; }
.hz-final-line { margin: 26px 0 0; font-size: 17.5px; line-height: 1.7; color: var(--hz-ink-soft); }
.hz-final-line + .hz-final-line { margin-top: 10px; }
.hz-final .hz-btn--accent { margin-top: 40px; }
.hz-final-signin { margin: 30px 0 0; font-family: var(--hz-font-ui); font-size: 12.5px; color: var(--hz-ink-faint); white-space: nowrap; }
.hz-final-rule { width: 100%; height: 1px; background: var(--hz-line-soft); border: 0; margin: 76px 0 0; }
.hz-footer { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hz-footer-links { display: flex; align-items: baseline; gap: 24px; }
.hz-ghostlink { font-family: var(--hz-font-ui); font-size: var(--hz-text-meta); letter-spacing: .04em; color: var(--hz-ink-ghost); }
.hz-ghostlink:hover { color: var(--hz-ink-soft); text-decoration: none; }

/* ---------- document pages (privacy / terms) ---------- */
.hz-doc { max-width: 640px; margin: 0 auto; padding: 88px 30px 110px; animation: hzRise .8s var(--hz-ease) both; }
.hz-doc-kicker {
  margin: 0; font-family: var(--hz-font-ui); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--hz-ink-faint);
}
.hz-doc h1 {
  margin: 18px 0 0; font-family: var(--hz-font-display); font-weight: 600;
  font-size: clamp(36px, 4.4vw, 48px); line-height: 1.12; letter-spacing: -0.01em;
  color: var(--hz-ink-strong);
}
.hz-doc-updated { margin: 16px 0 0; font-family: var(--hz-font-ui); font-size: var(--hz-text-meta); letter-spacing: .05em; color: var(--hz-ink-ghost); }
.hz-doc .hz-divider { margin: 40px 0 44px; }
.hz-doc-lede { margin: 0 0 40px; font-size: 17.5px; line-height: 1.75; color: var(--hz-ink-soft); text-wrap: pretty; }
.hz-doc section { margin: 0 0 40px; }
.hz-doc section:last-of-type { margin-bottom: 0; }
.hz-doc h2 {
  margin: 0 0 14px; font-family: var(--hz-font-display); font-weight: 600;
  font-size: 24px; line-height: 1.25; color: var(--hz-ink-strong);
}
.hz-doc h3 {
  margin: 26px 0 10px; font-family: var(--hz-font-display); font-weight: 600;
  font-size: 19px; line-height: 1.3; color: var(--hz-ink-strong);
}
.hz-doc p { margin: 0 0 14px; font-size: 16.5px; line-height: 1.75; color: var(--hz-ink-soft); text-wrap: pretty; }
.hz-doc p:last-child { margin-bottom: 0; }
.hz-doc ul { margin: 0 0 14px; padding-left: 22px; }
.hz-doc li { margin: 0 0 8px; font-size: 16.5px; line-height: 1.7; color: var(--hz-ink-soft); text-wrap: pretty; }
.hz-doc-foot-rule { width: 60px; height: 1px; background: var(--hz-line); border: 0; margin: 56px 0 0; }
.hz-doc-footlinks { margin-top: 30px; display: flex; align-items: baseline; gap: 24px; }
.hz-doc-footlinks a { font-family: var(--hz-font-ui); font-size: 12.5px; color: var(--hz-ink-faint); }
.hz-doc-footlinks a:hover { color: var(--hz-ink); text-decoration: none; }
address { font-style: normal; }

/* ---------- contact page ---------- */
.hz-page { min-height: 100vh; display: flex; flex-direction: column; }
.hz-contact { flex: 1; padding: 96px 30px 110px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hz-contact h1 {
  margin: 30px 0 0; font-family: var(--hz-font-display); font-weight: 600;
  font-size: clamp(34px, 4.2vw, 48px); line-height: 1.14; letter-spacing: -0.01em;
  color: var(--hz-ink-strong);
}
.hz-contact-lede { margin: 22px 0 0; max-width: 44ch; font-size: 17.5px; line-height: 1.7; color: var(--hz-ink-soft); text-wrap: pretty; }
.hz-form { margin-top: 52px; width: 100%; max-width: 460px; display: flex; flex-direction: column; gap: 26px; text-align: left; }
.hz-field { display: flex; flex-direction: column; gap: 9px; }
.hz-field label {
  font-family: var(--hz-font-ui); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--hz-ink-faint);
}
.hz-field input, .hz-field textarea {
  width: 100%; box-sizing: border-box; padding: 13px 14px; background: transparent;
  border: 1px solid var(--hz-line); border-radius: var(--hz-radius);
  font-family: var(--hz-font-serif); font-size: 16.5px; color: var(--hz-ink);
}
.hz-field textarea { line-height: 1.6; resize: vertical; }
.hz-field input:focus, .hz-field textarea:focus { outline: none; border-color: var(--hz-accent); }
input::placeholder, textarea::placeholder { color: var(--hz-ink-ghost); font-style: italic; }
.hz-form-actions { display: flex; justify-content: center; margin-top: 6px; }
.hz-form-alt { margin: 26px 0 0; font-family: var(--hz-font-ui); font-size: var(--hz-text-meta); letter-spacing: .05em; color: var(--hz-ink-ghost); }
.hz-sent { margin-top: 56px; display: none; flex-direction: column; align-items: center; gap: 18px; animation: hzRise .8s var(--hz-ease) both; }
.hz-sent-title { margin: 0; font-family: var(--hz-font-display); font-weight: 500; font-style: italic; font-size: clamp(24px, 2.8vw, 30px); color: var(--hz-ink); }
.hz-sent-meta { margin: 0; font-family: var(--hz-font-ui); font-size: var(--hz-text-meta); letter-spacing: .05em; color: var(--hz-ink-ghost); }
.hz-contact .hz-divider { margin-top: 72px; }
.hz-backlink { margin-top: 34px; font-family: var(--hz-font-ui); font-size: 12.5px; color: var(--hz-ink-faint); }
.hz-backlink:hover { color: var(--hz-ink); text-decoration: none; }

/* ---------- responsive ---------- */
@media (max-width: 1260px) { .hz-journey { display: none !important; } }
@media (max-width: 760px) {
  .hz-topbar { padding: 16px 22px; }
  .hz-hero { padding: 72px 22px; }
  .hz-sec, .hz-question, .hz-triad-sec, .hz-final { padding: 68px 22px 76px; }
  .hz-cols-2, .hz-cols-3, .hz-moments-list { grid-template-columns: 1fr; }
  .hz-cell--l, .hz-cell--r { padding: 34px 0 38px; }
  .hz-not { white-space: normal; }
  .hz-doc, .hz-contact { padding: 64px 22px 80px; }
}
