:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --surface-soft: #f1ece5;
  --text: #171a1f;
  --muted: #4e555d;
  --quiet: #6a7078;
  --line: #ded8ce;
  --line-soft: rgba(222, 216, 206, 0.68);
  --accent: #9b663b;
  --dark: #171a1f;
  --dark-muted: rgba(255, 255, 255, 0.76);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

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

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: 72px;
  font-weight: 760;
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 720;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.22;
}

p {
  color: var(--muted);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 62px;
  padding: 14px 48px;
  background: rgba(248, 246, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition:
    transform 0.42s ease,
    box-shadow 0.32s ease,
    background-color 0.32s ease,
    border-color 0.32s ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(248, 246, 242, 0.98);
  border-color: rgba(222, 216, 206, 0.86);
  box-shadow: 0 12px 34px rgba(31, 36, 42, 0.08);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1px));
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
}

.brand-mark span {
  width: 2px;
  height: 24px;
  background: var(--accent);
}

.brand-name,
.nav,
.header-contact,
.section-kicker,
.eyebrow,
.footer {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name {
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav a {
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  transition:
    color 0.24s ease,
    border-color 0.24s ease;
}

.nav a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.header-contact {
  justify-self: end;
  font-size: 12px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

.hero,
.page-hero,
.section,
.contact-section,
.footer {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 96px;
  align-items: center;
  min-height: min(690px, calc(100vh - 64px));
  padding: 98px 0 92px;
}

.page-hero {
  max-width: 1160px;
  padding: 104px 0 84px;
  border-bottom: 1px solid var(--line);
}

.about-hero,
.contact-hero {
  padding-bottom: 96px;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.eyebrow {
  margin-bottom: 18px;
}

.lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 22px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--text);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.button.primary {
  color: var(--surface);
  background: var(--text);
}

.button.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(155, 102, 59, 0.16);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--text);
  background: transparent;
}

.button.secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.analysis-card {
  position: relative;
  align-self: center;
  padding: 40px;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  box-shadow: 0 24px 70px rgba(23, 26, 31, 0.08);
  transition:
    transform 0.36s ease,
    box-shadow 0.36s ease,
    border-color 0.36s ease;
}

.analysis-card:hover {
  box-shadow: 0 30px 86px rgba(23, 26, 31, 0.11);
  transform: translateY(-2px);
}

.analysis-card::before {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 42px;
  height: 1px;
  background: var(--line);
  content: "";
}

.card-label {
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-route {
  max-width: 480px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: 34px;
  font-weight: 740;
  line-height: 1.07;
}

.analysis-lines {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
}

.analysis-lines span {
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}

.section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.page-hero + .section {
  border-top: 0;
}

.section-kicker {
  margin-bottom: 22px;
}

.section-header {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-header.two-column,
.editorial-grid,
.format-layout,
.split,
.page-columns,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 86px;
  align-items: start;
}

.editorial-copy p,
.section-header p,
.split p,
.quiet-panel p {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 18px;
}

.editorial-copy p:last-child,
.section-header p:last-child,
.quiet-panel p:last-child {
  margin-bottom: 0;
}

.fit-strip {
  max-width: 930px;
  margin-top: 42px;
  padding: 22px 28px;
  color: var(--text);
  background: rgba(155, 102, 59, 0.09);
  border-left: 3px solid var(--accent);
  font-size: 17px;
}

.process-section {
  background: var(--dark);
  color: var(--surface);
}

.process-inner {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.process-section h2,
.process-section h3 {
  color: var(--surface);
}

.process-section p {
  color: var(--dark-muted);
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
}

.steps-line::before {
  position: absolute;
  top: 23px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.steps-line article {
  position: relative;
  padding: 58px 30px 0 0;
}

.steps-line span,
.practice-card span {
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--accent);
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.steps-line.compact {
  margin-top: 34px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.practice-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.practice-card {
  position: relative;
  min-height: 270px;
  padding: 76px 28px 30px;
  background: rgba(255, 255, 255, 0.54);
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.practice-card:hover {
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(23, 26, 31, 0.08);
  transform: translateY(-2px);
}

.practice-card span {
  top: 28px;
  color: var(--accent);
  background: var(--surface);
  border-color: var(--line);
}

.compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.compact-links a,
.tag-list span {
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  font-size: 14px;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.compact-links a:hover {
  color: var(--text);
  background: var(--surface);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  font-size: 15px;
  font-weight: 800;
  transition:
    color 0.22s ease,
    border-color 0.22s ease;
}

.text-link:hover {
  color: var(--accent);
}

.result-grid,
.feature-list,
.card-grid,
.three-columns,
.principle-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

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

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

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

.principle-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.result-grid article,
.feature-list article,
.card-grid article,
.three-columns article,
.principle-list span {
  background: rgba(255, 255, 255, 0.54);
}

.result-grid article,
.feature-list article,
.card-grid article,
.three-columns article {
  min-height: 170px;
  padding: 28px;
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.result-grid article:hover,
.feature-list article:hover,
.card-grid article:hover,
.three-columns article:hover {
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(23, 26, 31, 0.07);
  transform: translateY(-2px);
}

.card-grid article h2,
.three-columns article h2,
.quiet-panel h2 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.18;
}

.result-grid p,
.feature-list p,
.card-grid p,
.three-columns p,
.practice-card p {
  margin-bottom: 0;
}

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

.article-grid.featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.article-card:hover {
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(23, 26, 31, 0.07);
  transform: translateY(-2px);
}

.article-card.compact {
  min-height: 230px;
}

.article-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.16;
}

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

.article-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.article-category {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-actions {
  margin-top: 30px;
}

.article-page .page-hero {
  max-width: 980px;
}

.article-hero h1 {
  max-width: 920px;
}

.article-summary {
  max-width: 820px;
  margin-top: 26px;
  padding: 24px 28px;
  background: rgba(155, 102, 59, 0.09);
  border-left: 3px solid var(--accent);
}

.article-summary p {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.article-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
}

.article-section {
  border-top: 0;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.68;
}

.article-body h2 {
  margin: 52px 0 18px;
  font-size: 30px;
}

.article-body ul {
  display: grid;
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.article-body li {
  padding: 13px 0 13px 28px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
  position: relative;
}

.article-body li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 52px;
  color: var(--surface);
  background: var(--dark);
  border-top: 0;
}

.article-cta h2,
.article-cta .section-kicker {
  color: var(--surface);
}

.article-cta p {
  max-width: 640px;
  color: var(--dark-muted);
}

.article-disclaimer {
  padding-top: 34px;
}

.article-disclaimer p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--quiet);
  font-size: 14px;
}

.principle-list span {
  min-height: 132px;
  padding: 24px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.note {
  max-width: 720px;
  margin: 34px 0 0;
  padding: 22px 28px;
  color: var(--text);
  background: rgba(155, 102, 59, 0.09);
  border-left: 3px solid var(--accent);
  font-size: 20px;
  font-weight: 800;
}

.quiet-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.56);
  border-top: 2px solid var(--accent);
}

.quiet-panel.wide {
  max-width: 920px;
}

.number-list,
.evidence-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.number-list li,
.evidence-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
}

.number-list span,
.evidence-list span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 52px;
  color: var(--surface);
  background: var(--dark);
  border-top: 0;
}

.cta-band h2,
.cta-band .section-kicker {
  color: var(--surface);
}

.cta-band .button.primary {
  border-color: var(--surface);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 96px;
  align-items: center;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  margin-bottom: 18px;
}

.contact-section p {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 18px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
}

.contact-links a {
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
}

.contact-links.large a {
  font-size: 24px;
}

.contact-links a:hover {
  color: var(--accent);
}

.qr-block {
  justify-self: end;
  width: 190px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.qr-block img {
  width: 100%;
}

.qr-block p {
  margin: 10px 0 0;
  color: var(--quiet);
  font-size: 12px;
  text-align: center;
}

.contact-qr {
  justify-self: start;
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr);
  gap: 28px 56px;
  padding: 34px 0 44px;
  color: var(--quiet);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.footer-main {
  display: grid;
  gap: 8px;
}

.footer-main a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer p {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .motion-ready .reveal-item.is-visible {
    opacity: 1;
    transform: none;
  }

  .motion-ready .hero-copy.reveal-item {
    transform: translateY(18px);
  }

  .motion-ready .analysis-card.reveal-item {
    transform: translateY(26px) scale(0.985);
  }

  .motion-ready .analysis-card.reveal-item.is-visible {
    transform: none;
  }

  .motion-ready .reveal-line::before {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.12s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .motion-ready .reveal-line.is-visible::before {
    transform: scaleX(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .site-header.is-hidden {
    transform: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto;
    padding: 14px 24px;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 38px;
    padding: 9px;
    background: transparent;
    border: 1px solid var(--line);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--text);
  }

  .nav {
    position: absolute;
    top: 61px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(23, 26, 31, 0.08);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .section-header.two-column,
  .editorial-grid,
  .format-layout,
  .split,
  .page-columns,
  .contact-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 54px;
    min-height: auto;
  }

  .analysis-card {
    max-width: 660px;
  }

  .steps-line,
  .result-grid,
  .practice-grid,
  .practice-grid.five,
  .article-grid,
  .article-grid.featured,
  .principle-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps-line article {
    padding-top: 58px;
  }

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

  .contact-section,
  .contact-layout {
    gap: 34px;
  }

  .article-cta {
    display: grid;
    padding: 42px 34px;
  }

  .qr-block {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 56px;
    padding: 12px 18px;
  }

  .brand-name {
    display: none;
  }

  .nav {
    top: 55px;
    right: 18px;
    left: 18px;
  }

  .hero,
  .page-hero,
  .section,
  .contact-section,
  .footer,
  .process-inner {
    width: min(342px, calc(100vw - 48px));
  }

  .hero,
  .page-hero {
    padding: 48px 0 58px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 17px;
  }

  .lead,
  .editorial-copy p,
  .section-header p,
  .split p,
  .quiet-panel p,
  .contact-section p {
    font-size: 17px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .analysis-card,
  .quiet-panel {
    padding: 24px;
  }

  .card-route {
    font-size: 25px;
  }

  .section {
    padding: 58px 0;
  }

  .process-inner {
    padding: 58px 0;
  }

  .steps-line,
  .result-grid,
  .practice-grid,
  .practice-grid.five,
  .article-grid,
  .article-grid.featured,
  .feature-list,
  .card-grid.three,
  .three-columns,
  .principle-list {
    grid-template-columns: 1fr;
  }

  .steps-line {
    gap: 26px;
  }

  .practice-card,
  .article-card,
  .result-grid article,
  .feature-list article,
  .card-grid article,
  .three-columns article,
  .principle-list span {
    min-height: auto;
    padding: 22px;
  }

  .practice-card {
    padding-top: 70px;
  }

  .number-list li,
  .evidence-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    font-size: 15px;
  }

  .note {
    padding: 18px 20px;
    font-size: 18px;
  }

  .article-summary {
    padding: 20px;
  }

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

  .article-body h2 {
    margin-top: 38px;
    font-size: 25px;
  }

  .article-body li {
    font-size: 15px;
  }

  .article-cta {
    padding: 34px 24px;
  }

  .cta-band {
    display: grid;
    padding: 34px 24px;
  }

  .contact-section {
    padding: 58px 0;
  }

  .contact-links.large a,
  .contact-links a {
    font-size: 18px;
  }

  .qr-block {
    width: 180px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: var(--bg) !important;
  }

  .site-header {
    position: static;
    transform: none !important;
    box-shadow: none !important;
  }

  .motion-ready .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .motion-ready .reveal-line::before {
    transform: none !important;
    transition: none !important;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 42px 0;
  }

  .section,
  .process-inner,
  .contact-section {
    padding: 46px 0;
  }

  .nav-toggle {
    display: none !important;
  }

  .hero,
  .page-hero,
  .section,
  .process-section,
  .process-inner,
  .contact-section,
  .footer,
  .analysis-card,
  .practice-card,
  .article-card,
  .article-body,
  .article-summary,
  .article-cta,
  .article-disclaimer,
  .quiet-panel,
  .qr-block,
  .cta-band,
  .result-grid,
  .feature-list,
  .card-grid,
  .article-grid,
  .three-columns,
  .principle-list,
  .steps-line,
  article {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  h1,
  h2,
  h3,
  .section-kicker {
    break-after: avoid;
    page-break-after: avoid;
  }

  .process-section p {
    color: rgba(255, 255, 255, 0.88);
  }

  .qr-block {
    width: 170px;
  }

  .analysis-card,
  .practice-card,
  .article-card,
  .result-grid article,
  .feature-list article,
  .card-grid article,
  .three-columns article {
    box-shadow: none !important;
    transform: none !important;
  }

  .article-body p {
    font-size: 16px;
    line-height: 1.55;
  }

  .article-body h2 {
    font-size: 26px;
    margin-top: 28px;
  }

  .article-cta {
    padding: 28px 32px;
  }

  .footer {
    break-before: auto;
    font-size: 11px;
  }

  .contacts-page .page-hero {
    padding: 28px 0 24px;
  }

  .contacts-page .section {
    padding: 28px 0;
  }

  .contacts-page h1 {
    font-size: 46px;
    margin-bottom: 16px;
  }

  .contacts-page .lead {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .contacts-page .contact-links {
    margin-top: 18px;
  }

  .contacts-page .number-list li {
    padding: 10px 0;
    font-size: 15px;
  }

  .contacts-page .qr-block {
    width: 130px;
    padding: 10px;
  }

  .contacts-page .qr-block p {
    font-size: 10px;
  }

  .contacts-page .quiet-panel {
    padding: 18px 22px;
  }
}
