@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #111827;
  --ink-deep: #0a101b;
  --graphite: #1f2937;
  --muted: #4b5563;
  --muted-light: #9ca3af;
  --line: #e5e7eb;
  --line-dark: #374151;
  --soft: #f5f6f7;
  --white: #ffffff;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --focus: #fb923c;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

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

.container {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 78px;
  gap: 34px;
}

.logo,
.footer-logo {
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.logo span,
.footer-logo span {
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--orange);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease;
}

.header-contact:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-ink {
  color: var(--white);
  background: var(--ink-deep);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  min-height: 610px;
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  align-items: center;
  gap: 86px;
  min-height: 610px;
  padding-top: 46px;
  padding-bottom: 46px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: 66px;
  font-weight: 900;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--ink);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.hero-principle {
  border-top: 5px solid var(--orange);
  border-bottom: 1px solid var(--line);
}

.principle-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.principle-number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.principle-row h2 {
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}

.principle-row p,
.principle-end {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.principle-end {
  padding: 24px 0;
  color: var(--ink);
  font-weight: 700;
}

.meaning-section,
.objections-section,
.research-section,
.steps-section,
.map-section,
.helper-section,
.companies-section,
.book-section,
.contact-section {
  padding: 110px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 64px;
}

.section-heading h2,
.meaning-section h2,
.map-section h2,
.helper-section h2,
.book-section h2,
.contact-section h2 {
  margin-bottom: 22px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
}

.section-heading > p:last-child,
.map-copy > p:last-child,
.contact-layout > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading-light {
  margin-bottom: 58px;
}

.section-heading-light h2 {
  color: var(--white);
}

.meaning-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 90px;
  align-items: start;
  padding-top: 54px;
  border-top: 1px solid var(--line-dark);
}

.meaning-lead {
  margin-bottom: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
}

.meaning-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.meaning-points h3 {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.meaning-points p {
  margin-bottom: 0;
  color: var(--muted-light);
}

.meaning-statement {
  margin: 74px 0 0;
  padding: 30px 0 0;
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.35;
}

.objections-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.objections-path > div {
  min-width: 0;
  padding: 34px 44px 38px 0;
}

.objections-path > div + div {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.objections-path span {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.objections-path h3 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.2;
}

.objections-path p,
.objections-note {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.objections-note {
  max-width: 850px;
  margin: 34px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.research-section {
  background: var(--ink);
}

.research-heading {
  max-width: 900px;
}

.research-heading h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
}

.research-heading > p:last-child {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 19px;
  line-height: 1.7;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.research-grid article {
  min-width: 0;
  padding: 36px 38px 40px;
}

.research-grid article:first-child {
  padding-left: 0;
}

.research-grid article:last-child {
  padding-right: 0;
}

.research-grid article + article {
  border-left: 1px solid var(--line-dark);
}

.research-step {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.research-label {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
}

.research-grid p {
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.7;
}

.research-note {
  max-width: 900px;
  margin: 32px 0 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.steps-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  min-height: 230px;
  padding: 36px 34px 36px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:nth-child(odd) {
  padding-right: 52px;
  border-right: 1px solid var(--line);
}

.steps-list li:nth-child(even) {
  padding-left: 52px;
}

.step-number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.steps-list h3 {
  max-width: 470px;
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps-list strong {
  color: var(--ink);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: 100px;
  align-items: start;
}

.map-copy {
  position: sticky;
  top: 130px;
}

.map-copy > p:last-child {
  color: var(--muted-light);
}

.map-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.map-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 94px;
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 17px;
  font-weight: 700;
}

.map-list li:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.map-list li:nth-child(even) {
  padding-left: 24px;
}

.map-list span {
  color: var(--orange);
  font-size: 12px;
}

.helper-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 96px;
  align-items: start;
}

.helper-copy {
  padding-top: 8px;
  border-top: 5px solid var(--orange);
}

.helper-copy p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.helper-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.company-grid article {
  min-height: 275px;
  padding: 34px 34px 34px 0;
}

.company-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.company-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.company-grid h3 {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
}

.company-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.company-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  margin-top: 42px;
}

.company-action p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.book-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  justify-content: center;
  gap: 100px;
  align-items: center;
}

.book-image-wrap {
  position: relative;
}

.book-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line-dark);
}

.book-image-wrap img {
  position: relative;
  width: 240px;
  height: auto;
  border: 1px solid var(--line-dark);
}

.book-copy > p:not(.eyebrow, .book-author) {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.75;
}

.book-copy .book-name {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.book-author {
  margin: 36px 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.book-author span {
  color: var(--muted-light);
  font-size: 14px;
  font-weight: 400;
}

.contact-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 80px;
  align-items: start;
}

.contact-layout--email-only {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-layout--email-only .contact-intro {
  position: static;
  max-width: none;
}

.contact-intro {
  position: sticky;
  top: 130px;
  max-width: 560px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-direct span {
  color: var(--muted);
  font-size: 13px;
}

.contact-email {
  color: var(--ink);
  border-bottom: 5px solid var(--orange);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--orange);
}

.contact-form {
  padding-top: 30px;
  border-top: 5px solid var(--orange);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: block;
  margin-bottom: 22px;
}

.form-field > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.form-field b {
  color: var(--orange);
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input {
  min-height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 150px;
  padding: 12px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.14);
}

.consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 2px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.consent-check a,
.form-status a {
  color: var(--ink);
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-success {
  color: #166534;
}

.form-status.is-error {
  color: #991b1b;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer {
  color: var(--muted-light);
  background: var(--ink-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 110px;
}

.footer-logo {
  color: var(--white);
}

.footer p {
  margin-bottom: 0;
  font-size: 13px;
}

.footer p:last-child {
  text-align: right;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-legal a,
.footer-legal button {
  color: var(--muted-light);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 22px max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: var(--ink-deep);
  border-top: 4px solid var(--orange);
}

.cookie-banner__copy {
  max-width: 720px;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.cookie-banner__copy p {
  margin-bottom: 4px;
  color: var(--muted-light);
  font-size: 13px;
}

.cookie-banner__copy a {
  color: var(--white);
  font-size: 12px;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 11px;
}

.cookie-banner .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: var(--muted-light);
}

.legal-page {
  background: var(--soft);
}

.legal-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.legal-header__inner > a:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-main {
  padding: 78px 0 100px;
}

.legal-layout {
  max-width: 820px;
}

.legal-layout h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
}

.legal-updated {
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 14px;
}

.legal-layout section {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-layout h2 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.legal-layout p,
.legal-layout li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-layout ul {
  padding-left: 22px;
}

.draft-notice {
  margin-bottom: 42px;
  padding: 18px 20px;
  color: var(--ink) !important;
  background: #fff7ed;
  border-left: 5px solid var(--orange);
  font-size: 14px !important;
}

.legal-footer .footer-inner {
  min-height: 96px;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100% - 64px), 1080px);
  }

  .header-inner {
    gap: 24px;
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 11px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
    gap: 62px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .meaning-layout,
  .map-layout,
  .helper-layout {
    gap: 70px;
  }

  .map-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
  }
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 48px), 880px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .nav a:nth-child(3),
  .nav a:nth-child(5) {
    display: none;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 74px;
    padding-bottom: 82px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 56px;
  }

  .hero-principle {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .principle-row:first-child {
    padding-right: 28px;
    border-right: 1px solid var(--line);
  }

  .principle-row:nth-child(2) {
    padding-left: 28px;
  }

  .principle-end {
    grid-column: 1 / -1;
  }

  .meaning-section,
  .objections-section,
  .research-section,
  .steps-section,
  .map-section,
  .helper-section,
  .companies-section,
  .book-section,
  .contact-section {
    padding: 88px 0;
  }

  .section-heading h2,
  .meaning-section h2,
  .objections-section h2,
  .research-heading h2,
  .map-section h2,
  .helper-section h2,
  .book-section h2,
  .contact-section h2 {
    font-size: 42px;
  }

  .meaning-layout,
  .helper-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .research-grid article,
  .research-grid article:first-child,
  .research-grid article:last-child {
    padding: 30px 0;
  }

  .research-grid article + article {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .map-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .map-copy {
    position: static;
    max-width: 720px;
  }

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

  .company-grid article {
    min-height: auto;
    padding: 30px 0;
  }

  .company-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .company-grid span {
    margin-bottom: 24px;
  }

  .book-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 70px;
  }

  .book-image-wrap img {
    width: 210px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contact-intro {
    position: static;
  }

  .contact-form {
    max-width: 720px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 36px), 640px);
  }

  .objections-path {
    grid-template-columns: 1fr;
  }

  .objections-path > div,
  .objections-path > div + div {
    padding: 28px 0;
    border-left: 0;
  }

  .objections-path > div + div {
    border-top: 1px solid var(--line);
  }

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

  .research-grid article,
  .research-grid article + article {
    padding: 32px 0;
    border-left: 0;
  }

  .research-grid article + article {
    border-top: 1px solid var(--line-dark);
  }

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

  .site-header {
    position: static;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .nav a:nth-child(3),
  .nav a:nth-child(5) {
    display: block;
  }

  .header-contact {
    min-height: 40px;
  }

  .hero-layout {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.06;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-principle {
    grid-template-columns: 1fr;
  }

  .principle-row:first-child {
    padding-right: 0;
    border-right: 0;
  }

  .principle-row:nth-child(2) {
    padding-left: 0;
  }

  .meaning-section,
  .objections-section,
  .research-section,
  .steps-section,
  .map-section,
  .helper-section,
  .companies-section,
  .book-section,
  .contact-section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .meaning-section h2,
  .research-heading h2,
  .map-section h2,
  .helper-section h2,
  .book-section h2,
  .contact-section h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .meaning-layout {
    padding-top: 40px;
  }

  .meaning-lead {
    font-size: 21px;
  }

  .meaning-points {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .meaning-statement {
    margin-top: 54px;
    font-size: 23px;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list li,
  .steps-list li:nth-child(odd),
  .steps-list li:nth-child(even) {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
  }

  .map-list {
    grid-template-columns: 1fr;
  }

  .map-list li,
  .map-list li:nth-child(odd),
  .map-list li:nth-child(even) {
    min-height: 76px;
    padding: 16px 0;
    border-right: 0;
  }

  .helper-copy p {
    font-size: 18px;
  }

  .company-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .book-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 62px;
  }

  .book-image-wrap img {
    width: 190px;
  }

  .contact-email {
    font-size: 21px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-submit {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .footer p:last-child {
    text-align: left;
  }

  .footer-legal {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    padding: 18px;
  }

  .cookie-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .legal-main {
    padding: 58px 0 72px;
  }

  .legal-layout h1 {
    font-size: 36px;
  }

  .legal-layout section {
    margin-top: 36px;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 32px), 440px);
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
  }

  .nav a {
    white-space: normal;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .principle-row,
  .steps-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .section-heading h2,
  .meaning-section h2,
  .map-section h2,
  .helper-section h2,
  .book-section h2,
  .contact-section h2 {
    font-size: 31px;
  }

  .steps-list h3,
  .company-grid h3 {
    font-size: 21px;
  }

  .book-image-wrap img {
    width: 170px;
  }

  .contact-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .legal-layout h1 {
    font-size: 31px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Brand and editorial pages */
.inner-hero {
  padding: 96px 0 78px;
  border-bottom: 1px solid var(--line);
}

.inner-hero--dark {
  color: var(--white);
  background: var(--ink);
  border-bottom-color: var(--line-dark);
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 88px;
  align-items: end;
}

.inner-hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.04;
}

.inner-hero__lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.inner-hero--dark .inner-hero__lead {
  color: var(--muted-light);
}

.inner-hero__aside {
  padding: 28px 0 4px;
  border-top: 5px solid var(--orange);
}

.inner-hero__aside p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.inner-hero--dark .inner-hero__aside p {
  color: var(--muted-light);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a {
  color: inherit;
  text-underline-offset: 3px;
}

.article-section,
.brand-section,
.materials-section {
  padding: 86px 0;
}

.article-shell {
  width: min(calc(100% - 80px), 820px);
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
}

.article-body h2 {
  margin: 58px 0 18px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
}

.article-body h3 {
  margin: 34px 0 12px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
}

.article-body p,
.article-body li {
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.82;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 30px;
  padding-left: 26px;
}

.article-body a {
  color: var(--orange-dark);
  text-underline-offset: 4px;
}

.article-callout {
  margin: 42px 0;
  padding: 28px 30px;
  background: var(--soft);
  border-left: 5px solid var(--orange);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
}

.article-callout p {
  margin-bottom: 0;
  font-size: 16px;
}

.article-conclusion {
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.editorial-card {
  min-width: 0;
  padding: 34px;
  background: var(--white);
}

.editorial-card__type {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.editorial-card h2,
.editorial-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.editorial-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.editorial-card a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.brand-grid .book-image-wrap {
  width: 240px;
  max-width: calc(100% - 18px);
}

.brand-grid .book-image-wrap img {
  width: 100%;
}

.brand-copy h2 {
  margin-bottom: 26px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
}

.brand-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.brand-facts {
  border-top: 5px solid var(--orange);
}

.brand-fact {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.brand-fact strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.brand-fact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.page-cta {
  padding: 72px 0;
  color: var(--white);
  background: var(--ink);
}

.page-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.page-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
}

.page-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-links a {
  color: var(--muted-light);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .inner-hero__grid,
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .page-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .inner-hero {
    padding: 62px 0 54px;
  }

  .inner-hero h1 {
    font-size: 42px;
  }

  .inner-hero__lead {
    font-size: 18px;
  }

  .article-section,
  .brand-section,
  .materials-section {
    padding: 58px 0;
  }

  .article-shell {
    width: min(calc(100% - 36px), 640px);
  }

  .article-body h2 {
    margin-top: 46px;
    font-size: 29px;
  }

  .article-body h3 {
    font-size: 21px;
  }

  .article-body p,
  .article-body li {
    font-size: 17px;
  }

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

  .editorial-card {
    padding: 28px;
  }

  .brand-copy h2,
  .page-cta h2 {
    font-size: 31px;
  }

  .page-cta {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .inner-hero h1 {
    font-size: 36px;
  }

  .article-shell {
    width: min(calc(100% - 32px), 440px);
  }

  .article-callout {
    padding: 24px 22px;
  }
}
