:root {
  --bg: #f7f1e8;
  --bg-deep: #efe5d8;
  --paper: rgba(255, 252, 247, 0.9);
  --paper-strong: #fffdf9;
  --line: rgba(28, 34, 31, 0.12);
  --line-strong: rgba(28, 34, 31, 0.2);
  --ink: #1a221f;
  --muted: #58635d;
  --forest: #27463d;
  --forest-deep: #17312a;
  --clay: #b86f49;
  --clay-soft: rgba(184, 111, 73, 0.14);
  --gold: #ba9d66;
  --shadow: 0 24px 64px rgba(31, 40, 36, 0.09);
  --shadow-soft: 0 14px 36px rgba(31, 40, 36, 0.07);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: 1200px;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2"),
       url("assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/prata-cyrillic.woff2") format("woff2"),
       url("assets/fonts/prata-latin.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 98px;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 111, 73, 0.12), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(39, 70, 61, 0.1), transparent 22%),
    radial-gradient(circle at 48% 100%, rgba(186, 157, 102, 0.09), transparent 34%),
    linear-gradient(180deg, #fbf7f1 0%, #f6efe5 52%, #f1e7da 100%);
}

body.subpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.page-shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.surface {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.surface-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0 0;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-radius: 26px;
  background: rgba(247, 241, 232, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(23, 49, 42, 0.18);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  text-align: center;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--forest) 0%, #30564a 100%);
  color: #fdfaf6;
  box-shadow: 0 18px 34px rgba(39, 70, 61, 0.22);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border: 1px solid rgba(26, 34, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.button-ghost {
  background: transparent;
  border-color: var(--line-strong);
}

.button-small {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-block {
  width: 100%;
}

.hero-section,
.section {
  padding: 76px 0;
}

.hero-section {
  padding-top: 42px;
}

.section-tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08));
}

.section-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 111, 73, 0.18), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #17352d 0%, #102821 100%);
  color: #f8f3ed;
}

.hero-layout,
.quiz-layout,
.editorial-grid,
.faq-layout {
  display: grid;
  gap: 28px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: start;
  gap: 20px;
}

.hero-copy {
  display: grid;
  align-content: start;
  max-width: 700px;
  padding-top: 24px;
}

.eyebrow,
.section-kicker,
.direction-tag,
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.step-badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(39, 70, 61, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
}

.eyebrow-soft {
  background: rgba(184, 111, 73, 0.12);
  border-color: rgba(184, 111, 73, 0.12);
  color: var(--clay);
}

.section-kicker-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f3dcc6;
}

.display-title,
.section-title,
.final-intro h3,
.quiz-question h3,
.thanks-card h1,
.policy-card h1,
.policy-section h2 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.display-title {
  margin-top: 20px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  max-width: 13.6ch;
  line-height: 0.97;
}

.display-title span {
  display: block;
  color: var(--forest);
}

.section-title,
.final-intro h3,
.quiz-question h3,
.thanks-card h1,
.policy-card h1 {
  font-size: clamp(2rem, 3.7vw, 3.45rem);
}

.section-title-light {
  color: #fcf7f1;
}

.hero-lead,
.section-copy,
.statement-card p,
.hero-note p,
.micro-list,
.direction-body p,
.editorial-card p,
.aside-card p,
.process-card p,
.faq-answer,
.audience-card p,
.legal-card p,
.footer-copy,
.footer-meta p,
.form-note,
.field input,
.field textarea,
.policy-copy,
.policy-section p,
.policy-list li,
.thanks-card p {
  color: var(--muted);
  line-height: 1.72;
}

.section-copy-light,
.section-dark .editorial-card p,
.section-dark .section-copy {
  color: rgba(248, 243, 237, 0.8);
}

.hero-lead {
  max-width: 610px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-actions,
.page-actions,
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.6;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--gold));
}

.hero-note {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 22px;
  max-width: 610px;
}

.hero-note strong,
.statement-card strong,
.direction-body strong,
.editorial-card strong,
.aside-card strong,
.audience-card strong,
.process-card strong,
.legal-card strong,
.footer-meta p:first-child {
  display: block;
}

.hero-note strong {
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-collage {
  position: relative;
  align-self: start;
  justify-self: end;
  width: min(100%, 500px);
  min-height: 560px;
  padding: 22px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-main-photo,
.hero-inset-photo,
.direction-photo,
.faq-photo,
.editorial-photo {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}

.hero-main-photo {
  height: 100%;
}

.hero-main-photo img {
  height: 520px;
  object-fit: cover;
  object-position: center 22%;
}

.hero-inset-photo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(54%, 290px);
  padding: 10px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.hero-inset-photo img {
  height: 170px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 34%;
}

.hero-inset-photo figcaption {
  padding: 12px 6px 4px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.hero-route-card {
  position: absolute;
  right: 18px;
  top: 18px;
  width: min(44%, 228px);
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.hero-route-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.hero-route-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 34, 31, 0.08);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.hero-route-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.section-head-split {
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.section-head-copy {
  display: grid;
  gap: 12px;
}

.section-copy {
  margin: 0;
  max-width: 760px;
}

#formats .section-title {
  max-width: 13.5ch;
}

#formats .section-copy {
  max-width: 45ch;
}

.section-side-note {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(244, 235, 223, 0.92));
  border: 1px solid rgba(45, 42, 36, 0.08);
  box-shadow: 0 18px 42px rgba(31, 40, 36, 0.06);
}

.section-side-note strong {
  display: block;
  font-size: 17px;
  line-height: 1.45;
}

.side-note-list,
.editorial-note-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-note-list li,
.editorial-note-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.side-note-list li::before,
.editorial-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--gold));
}

.statement-grid,
.audience-grid,
.process-grid,
.legal-grid,
.policy-meta,
.policy-sections {
  display: grid;
  gap: 18px;
}

.statement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.statement-card,
.editorial-card,
.aside-card,
.audience-card,
.process-card,
.legal-card,
.quiz-aside,
.quiz-shell,
.thanks-card,
.policy-card,
.policy-section {
  border-radius: var(--radius-xl);
}

.statement-card,
.direction-card,
.editorial-card,
.aside-card,
.audience-card,
.process-card,
.legal-card,
.quiz-aside,
.quiz-shell,
.thanks-card,
.policy-card {
  padding: 28px;
}

.statement-card strong,
.direction-body strong,
.editorial-card strong,
.aside-card strong,
.audience-card strong,
.process-card strong,
.legal-card strong {
  font-size: 22px;
  line-height: 1.42;
}

.statement-card p,
.direction-body p,
.editorial-card p,
.aside-card p,
.audience-card p,
.process-card p,
.legal-card p {
  margin: 10px 0 0;
  font-size: 15px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.direction-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(45, 42, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(246, 238, 227, 0.92));
  box-shadow: 0 24px 50px rgba(36, 40, 37, 0.08);
}

.direction-card .direction-body strong {
  font-size: 20px;
  line-height: 1.34;
}

.direction-photo {
  padding: 14px 14px 0;
}

.direction-photo img {
  height: 248px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.direction-card-inline {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 264px;
}

.direction-card-inline .direction-photo {
  height: 100%;
  padding: 14px 0 14px 14px;
}

.direction-card-inline .direction-photo img {
  height: 100%;
  min-height: 236px;
  border-radius: 24px 18px 18px 24px;
  object-position: center;
}

.direction-card-inline .direction-body {
  align-content: start;
  padding: 20px 22px 20px 18px;
}

.direction-card-inline .direction-body p {
  font-size: 14px;
}

.direction-card-cta {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 28px;
  background: linear-gradient(135deg, #1f4338 0%, #30584c 100%);
  border: 0;
  box-shadow: 0 30px 60px rgba(21, 42, 36, 0.18);
}

.direction-card-cta::before {
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.78), rgba(255, 250, 243, 0.28));
}

.direction-card-cta-copy {
  display: grid;
  gap: 12px;
}

.direction-card-cta strong {
  display: block;
  color: #fffaf3;
  font-size: 24px;
  line-height: 1.28;
}

.direction-card-cta p {
  margin: 0;
  color: rgba(248, 243, 237, 0.82);
  font-size: 15px;
  line-height: 1.68;
}

.direction-tag-light {
  color: #f4dcc5;
}

.direction-card-cta .button-primary {
  min-width: 0;
  width: fit-content;
  background: #fffaf3;
  color: var(--forest);
  box-shadow: none;
}

.direction-body {
  display: grid;
  gap: 12px;
  padding: 20px 22px 24px;
}

.direction-tag {
  color: var(--clay);
}

.direction-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(184, 111, 73, 0.95), rgba(186, 157, 102, 0.78));
}

.direction-support {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.micro-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.micro-list li {
  position: relative;
  padding: 10px 0 0 16px;
  border-top: 1px solid rgba(45, 42, 36, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.micro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
}

.editorial-grid {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: 38px;
}

.editorial-copy {
  display: grid;
  gap: 22px;
  align-content: start;
  max-width: 470px;
}

.editorial-note {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.1), rgba(255, 251, 246, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.editorial-note strong {
  display: block;
  color: #fffaf3;
  font-size: 17px;
  line-height: 1.45;
}

.editorial-note-list li {
  color: rgba(248, 243, 237, 0.8);
}

.editorial-photo {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  max-width: 450px;
}

.editorial-photo img {
  height: 318px;
  border-radius: 26px;
  object-fit: cover;
  object-position: center 52%;
  box-shadow: 0 26px 52px rgba(7, 15, 13, 0.28);
}

.editorial-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.editorial-steps::before {
  display: none;
}

.editorial-card span,
.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(184, 111, 73, 0.14);
  color: var(--clay);
  font-size: 14px;
  font-weight: 800;
}

.section-dark .section-title-light {
  max-width: 9ch;
  font-size: clamp(2.45rem, 4vw, 4.25rem);
  line-height: 0.95;
}

.section-dark .editorial-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.11), rgba(255, 252, 247, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.section-dark .editorial-card span {
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 20px;
  background: rgba(184, 111, 73, 0.22);
  color: #ffd7bf;
}

.editorial-card-copy {
  display: grid;
  gap: 8px;
}

.section-dark .editorial-card strong {
  color: #fffaf3;
  font-size: 21px;
  line-height: 1.3;
}

.section-dark .editorial-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.quiz-layout {
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: 34px;
}

.quiz-aside {
  position: sticky;
  top: 98px;
  padding: 8px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.quiz-aside .section-title {
  max-width: 7.1ch;
  font-size: clamp(1.95rem, 3vw, 3.1rem);
  line-height: 0.96;
}

.quiz-aside .section-copy {
  max-width: 34ch;
}

.quiz-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.quiz-meta-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 42, 36, 0.08);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aside-cards {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.aside-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(45, 42, 36, 0.08);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.aside-card strong {
  font-size: 15px;
  line-height: 1.35;
}

.aside-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.quiz-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.quiz-shell {
  position: relative;
  padding: 32px 34px 36px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(248, 242, 233, 0.97));
  border: 1px solid rgba(45, 42, 36, 0.08);
  box-shadow: 0 32px 72px rgba(36, 40, 37, 0.1);
}

.quiz-shell::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--forest), var(--clay));
}

.progress-track {
  margin-top: 18px;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(26, 34, 31, 0.08);
}

.progress-fill {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest), var(--clay), var(--gold));
  transition: width 0.3s ease;
}

.quiz-stage {
  margin-top: 26px;
}

.quiz-question,
.quiz-finish {
  display: grid;
  gap: 18px;
}

.quiz-question h3 {
  max-width: 9.4ch;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 0.97;
}

.option-list {
  display: grid;
  gap: 12px;
  counter-reset: option;
}

.option-button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px 18px 18px 68px;
  border: 1px solid rgba(45, 42, 36, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.option-button::before {
  counter-increment: option;
  content: counter(option, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(39, 70, 61, 0.08);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.option-button:hover,
.option-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
  border-color: rgba(39, 70, 61, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(39, 70, 61, 0.08));
}

.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.lead-form.is-hidden {
  display: none;
}

.final-intro {
  display: grid;
  gap: 10px;
}

.final-intro p {
  margin: 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.summary-card {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.summary-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
}

.field textarea {
  min-height: 140px;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid rgba(39, 70, 61, 0.24);
  outline-offset: 2px;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.form-note a {
  color: var(--forest);
}

.audience-grid,
.legal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-layout {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.faq-aside {
  display: grid;
  gap: 18px;
}

.faq-photo {
  padding: 12px;
}

.faq-photo img {
  height: 340px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 26%;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--clay);
  font-size: 24px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  padding: 18px 0 58px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(220px, 0.8fr) minmax(220px, 0.72fr);
  gap: 32px;
  align-items: start;
  padding: 30px 32px;
  border-radius: 30px;
}

.brand-footer .brand-mark {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}

.footer-copy {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 15px;
}

.footer-meta,
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-meta p {
  margin: 0;
}

.subpage-main {
  flex: 1;
  padding: 40px 0 34px;
}

.thanks-card,
.policy-card {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
}

.thanks-card,
.policy-card {
  padding: 34px;
}

.thanks-card {
  text-align: center;
}

.thanks-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(39, 70, 61, 0.12), rgba(184, 111, 73, 0.14));
  color: var(--forest);
  font-size: 28px;
  font-weight: 800;
}

.thanks-card p {
  max-width: 680px;
  margin: 12px auto 0;
}

.policy-copy {
  margin-top: 16px;
}

.policy-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.policy-meta-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.policy-meta-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-sections {
  margin-top: 28px;
}

.policy-section {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.policy-section h2 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.policy-section p {
  margin: 0;
}

.policy-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.policy-list li + li {
  margin-top: 8px;
}

.page-actions {
  margin-top: 26px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .header-inner,
  .footer-inner,
  .hero-layout,
  .quiz-layout,
  .editorial-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 560px;
    width: 100%;
    justify-self: stretch;
  }

  .statement-grid,
  .process-grid,
  .policy-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .editorial-steps,
  .audience-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .editorial-copy {
    max-width: none;
  }

  .quiz-aside {
    position: static;
  }

  .section-dark .editorial-card {
    grid-template-columns: 56px 1fr;
  }
}

@media (max-width: 860px) {
  .hero-section,
  .section {
    padding: 56px 0;
  }

  .page-shell,
  .thanks-card,
  .policy-card {
    width: min(calc(100% - 20px), var(--shell));
  }

  .statement-grid,
  .editorial-steps,
  .audience-grid,
  .process-grid,
  .legal-grid,
  .policy-meta,
  .summary-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .direction-card {
    grid-column: auto;
  }

  .direction-card-inline {
    grid-template-columns: 1fr;
  }

  .direction-card-inline .direction-photo {
    padding: 14px 14px 0;
  }

  .direction-card-inline .direction-photo img {
    border-radius: 22px;
  }

  .direction-card-inline .direction-body {
    padding: 20px 22px 24px;
  }

  .direction-photo img {
    height: 240px;
  }

  .editorial-steps::before {
    display: none;
  }

  .section-dark .editorial-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-dark .editorial-card span {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 10px;
  }

  .header-inner,
  .hero-collage,
  .statement-card,
  .section-side-note,
  .quiz-aside,
  .quiz-shell,
  .audience-card,
  .process-card,
  .legal-card,
  .thanks-card,
  .policy-card,
  .policy-section,
  .footer-inner {
    border-radius: 24px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero-actions,
  .page-actions,
  .thanks-actions {
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero-collage {
    min-height: 520px;
    padding: 16px;
  }

  .hero-main-photo img {
    height: 430px;
  }

  .hero-inset-photo {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .hero-inset-photo img {
    height: 140px;
  }

  .hero-route-card {
    right: 16px;
    top: 16px;
    width: 190px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .section-side-note {
    padding: 20px 20px 18px;
  }

  .quiz-aside,
  .quiz-shell {
    padding: 24px;
  }

  .quiz-aside {
    padding: 0;
  }

  .quiz-meta-strip span {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .option-button {
    min-height: 68px;
    padding: 16px 16px 16px 62px;
  }

  .option-button::before {
    width: 34px;
    height: 34px;
    left: 14px;
  }

  .thanks-card,
  .policy-card {
    padding: 24px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
