:root {
  --bg: #f6f6f3;
  --surface: #ffffff;
  --surface-muted: #eceeea;
  --ink: #1d211f;
  --muted: #606763;
  --line: #c8ceca;
  --line-strong: #9ba39e;
  --accent: #36483f;
  --accent-soft: #dce4df;
  --dark: #202723;
  --dark-soft: #2b3530;
  --placeholder: #e3e6e3;
  --warning: #72664e;
  --radius: 18px;
  --radius-small: 12px;
  --shadow: 0 18px 50px rgba(30, 36, 32, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(155, 163, 158, 0.7);
  background: rgba(246, 246, 243, 0.94);
  backdrop-filter: blur(14px);
}

.project-version-note {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #eef0ed;
  font-size: 12px;
}

.project-version-note .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-version-note strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-inner {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-name {
  font-size: 21px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.brand-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.mobile-menu {
  position: relative;
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(286px, calc(100vw - 24px));
  display: grid;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu nav a:hover {
  color: var(--ink);
  background: var(--surface-muted);
}

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

.section-muted {
  background: var(--surface-muted);
}

.section-dark {
  padding: 88px 0;
  color: #f7f8f7;
  background: var(--dark);
}

.wire-label,
.eyebrow,
.panel-label,
.mini-label,
.placeholder-index {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wire-label {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.brand-line {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-line > strong,
.brand-line > span {
  display: block;
}

.brand-line > span span {
  display: inline;
}

.brand-line strong {
  font-size: 16px;
  letter-spacing: 0.16em;
}

.brand-line > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(44px, 4.9vw, 68px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: -0.015em;
}

p {
  margin-top: 0;
}

.hero {
  min-height: calc(100vh - 114px);
  display: flex;
  align-items: center;
  padding: 36px 0 48px;
  background: var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero h1 {
  font-size: clamp(42px, 4.2vw, 60px);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 16px;
  color: #39403c;
  font-size: 19px;
  line-height: 1.48;
}

.outcome-note {
  max-width: 680px;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 15px;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  filter: brightness(0.92);
}

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

.button-small {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 13px;
}

.button-light {
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.button-full {
  width: 100%;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.trust-line li::before {
  content: "—";
  margin-right: 7px;
  color: var(--line-strong);
}

.media-placeholder {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(155, 163, 158, 0.22) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(155, 163, 158, 0.18) 50%, transparent 50.5%),
    var(--placeholder);
  background-size: 64px 64px;
}

.media-placeholder strong {
  max-width: 440px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.media-placeholder p {
  max-width: 500px;
  margin: 8px 0 0;
  font-size: 14px;
}

.media-placeholder small {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-media {
  min-height: 600px;
}

.hero-proof-slot {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(96, 103, 99, 0.4);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
}

.hero-proof-slot span,
.hero-proof-slot small {
  display: block;
}

.hero-proof-slot span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.hero-proof-slot small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

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

.section-heading > p,
.split-heading > p,
.centered-heading > p {
  color: var(--muted);
  font-size: 18px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 64px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 6px;
}

.centered-heading {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.scenario-card:nth-child(1) { grid-column: span 5; }
.scenario-card:nth-child(2) { grid-column: span 3; }
.scenario-card:nth-child(3) { grid-column: span 4; }
.scenario-card:nth-child(4) { grid-column: span 5; }
.scenario-card:nth-child(5) { grid-column: span 7; }

.scenario-card,
.principle-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.scenario-card h3,
.principle-card h3 {
  font-size: 18px;
}

.scenario-card p,
.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-number,
.principle-card > span {
  display: block;
  margin-bottom: 36px;
  color: var(--line-strong);
  font-size: 12px;
  font-weight: 850;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-weight: 780;
  text-decoration: none;
}

.format-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.format-brief > div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.format-brief strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
}

.confirmation-note {
  grid-column: 1 / -1;
  margin: 0;
}

.roles-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
}

.role-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.role-card-emphasis {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.role-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.role-kicker {
  display: block;
  margin-bottom: 40px;
  color: var(--line-strong);
  font-size: 12px;
  font-weight: 850;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--line-strong);
  font-size: 24px;
}

.inline-note {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  background: var(--accent-soft);
  font-size: 14px;
}

.inline-note strong {
  color: var(--ink);
}

.inline-note a {
  margin-left: 8px;
  color: var(--accent);
  font-weight: 750;
}

.official-path-slot {
  margin-top: 24px;
  padding: 26px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.slot-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 8px 36px;
}

.slot-heading .panel-label,
.slot-heading h3 {
  grid-column: 1;
}

.slot-heading h3 {
  margin-bottom: 0;
  font-size: 26px;
}

.slot-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.official-path-slot dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.official-path-slot dl > div {
  padding: 16px;
  border-right: 1px solid var(--line);
}

.official-path-slot dl > div:first-child { padding-left: 0; }
.official-path-slot dl > div:last-child { border-right: 0; }
.official-path-slot dt { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.official-path-slot dd { margin: 5px 0 0; font-size: 13px; font-weight: 700; }

.light-heading p,
.section-dark .eyebrow,
.section-dark .panel-label {
  color: #aeb9b3;
}

.support-journey {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.support-panel,
.journey-panel {
  padding: 26px;
  border: 1px solid #46524c;
  border-radius: var(--radius);
  background: var(--dark-soft);
}

.support-list,
.journey-steps,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  padding: 13px 0;
  border-top: 1px solid #46524c;
}

.support-list li:first-child {
  border-top: 0;
}

.support-list strong,
.support-list span {
  display: block;
}

.support-list span {
  margin-top: 4px;
  color: #b7c0bb;
  font-size: 14px;
}

.journey-steps {
  position: relative;
}

.journey-steps::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 19px;
  width: 1px;
  background: #536159;
  content: "";
}

.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 0 0 18px;
}

.journey-steps li:last-child {
  padding-bottom: 0;
}

.journey-steps li > span {
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #76847c;
  border-radius: 50%;
  color: #fff;
  background: var(--dark-soft);
  font-size: 12px;
  font-weight: 850;
}

.journey-steps strong {
  display: block;
  margin: 2px 0 4px;
}

.journey-steps p {
  margin-bottom: 0;
  color: #b7c0bb;
  font-size: 14px;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-small);
}

.light-cta {
  color: #fff;
  background: #111613;
}

.section-cta p {
  margin: 3px 0 0;
  color: #aeb9b3;
  font-size: 14px;
}

.cta-pair {
  display: flex;
  align-items: center;
  gap: 18px;
}

.text-link-light {
  color: #dce4df;
  font-size: 13px;
}

.conditional-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding: 13px 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.conditional-status strong {
  flex: 0 0 auto;
  color: var(--warning);
  letter-spacing: 0.08em;
}

.review-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  padding: 13px 15px;
  border-left: 3px solid var(--warning);
  border-radius: 0 9px 9px 0;
  color: var(--muted);
  background: #efeee9;
  font-size: 11px;
  line-height: 1.5;
}

.review-callout strong {
  flex: 0 0 auto;
  color: var(--warning);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-callout-dark {
  border-left-color: #9e9276;
  color: #c4ccc8;
  background: #333c37;
}

.review-callout-dark strong {
  color: #d6c9aa;
}

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

.format-card,
.specialist-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.format-card h3 {
  min-height: 50px;
}

.format-card dl {
  margin: 22px 0;
}

.format-card dl > div {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.format-card dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.format-card dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 680;
}

.media-function-slot {
  min-height: 90px;
  padding: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: 9px;
  color: var(--muted);
  background: var(--placeholder);
  font-size: 11px;
}

.commercial-model-slot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 16px;
  padding: 26px 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.commercial-model-slot h3,
.commercial-model-slot p:last-child {
  margin-bottom: 0;
}

.commercial-model-slot > strong {
  align-self: center;
  font-size: 15px;
  line-height: 1.45;
}

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

.portrait-placeholder {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  margin: -12px -12px 22px;
  padding: 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  color: var(--muted);
  background: var(--placeholder);
  font-size: 11px;
  font-weight: 750;
}

.specialist-card h3 {
  margin-bottom: 5px;
}

.specialist-role {
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
}

.specialist-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.specialist-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.community-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.community-main {
  min-height: 520px;
}

.community-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.media-small {
  min-height: 250px;
}

.media-small strong {
  font-size: 17px;
}

.community-formats {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 24px;
  border-bottom: 1px solid #eceeec;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--line-strong);
  content: "—";
}

.community-formats .panel-placeholder {
  border-color: var(--line);
  color: var(--warning);
}

.community-video {
  min-height: 340px;
}

.data-placeholder {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--surface-muted);
}

.data-placeholder span,
.data-placeholder small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.data-placeholder strong {
  font-size: 16px;
}

.data-placeholder small {
  margin-left: auto;
}

.testimonials-zone {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  margin-bottom: 24px;
}

.testimonials-heading h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.testimonials-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.testimonial-video {
  min-height: 440px;
}

.testimonial-stories {
  display: grid;
  gap: 10px;
}

.testimonial-stories article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface-muted);
}

.testimonial-stories span,
.testimonial-stories p {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.testimonial-stories blockquote {
  margin: 12px 0;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.4;
}

.testimonial-stories p {
  margin-bottom: 0;
}

.community-cta {
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.community-cta p {
  color: var(--muted);
}

.values-stage {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: stretch;
  gap: 48px;
}

.values-manifesto {
  padding: 24px 0;
}

.values-manifesto h2 {
  font-size: clamp(40px, 4.7vw, 66px);
}

.manifesto-lead {
  color: var(--muted);
  font-size: 19px;
}

.village-quote {
  margin: 34px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-strong);
}

.village-quote p {
  margin-bottom: 7px;
  font-size: 22px;
  font-weight: 750;
}

.village-quote footer {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.values-media {
  min-height: 650px;
}

.principles-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.principles-band article {
  min-height: 190px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.principles-band article:nth-child(odd) {
  padding-right: 36px;
  border-right: 1px solid var(--line);
}

.principles-band article:nth-child(even) {
  padding-left: 36px;
}

.principles-band article:nth-child(n+3) {
  border-bottom: 0;
}

.principles-band span {
  color: var(--line-strong);
  font-size: 11px;
  font-weight: 850;
}

.principles-band h3 {
  margin-bottom: 8px;
}

.principles-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.value-quote {
  max-width: 900px;
  margin: 54px 0 0 auto;
  padding: 30px 0 0 36px;
  border-top: 1px solid var(--line-strong);
  border-left: 0;
}

.value-quote p {
  margin-bottom: 12px;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.value-quote footer {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 24px;
}

.trust-main {
  min-width: 0;
}

.history-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.history-strip > div {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.history-strip > div:last-child {
  border-right: 0;
}

.history-strip span {
  display: block;
  margin-bottom: 30px;
  color: var(--line-strong);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.history-strip strong {
  display: block;
  line-height: 1.35;
}

.history-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.people-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.team-media {
  min-height: 400px;
}

.people-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.people-list > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--surface-muted);
}

.people-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.evidence-media {
  min-height: 250px;
}

.official-card {
  position: static;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.official-card h3 {
  font-size: 27px;
}

.official-card dl {
  margin: 26px 0;
}

.official-card dl > div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.official-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.official-card dd {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.document-list {
  display: grid;
  gap: 8px;
}

.document-list a {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.document-list > div {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 750;
}

.document-list span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.official-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.all-documents-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.all-documents-link:hover {
  text-decoration: underline;
}

.space-trust-slot {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  margin-top: 16px;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.space-trust-slot h3,
.space-trust-slot > div > p:last-child {
  margin-bottom: 0;
}

.space-trust-slot > div > p:last-child {
  color: var(--muted);
  font-size: 13px;
}

.space-trust-slot ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.space-trust-slot li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.space-trust-slot li:first-child {
  border-top: 0;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 23px 54px 23px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
}

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

.faq-list details p {
  max-width: 780px;
  margin: -6px 0 22px;
  color: var(--muted);
}

.final-cta {
  padding: 100px 0;
  background: var(--accent-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: start;
  gap: 80px;
}

.contact-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.conversation-preview {
  max-width: 720px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.55);
}

.conversation-preview ol {
  margin: 0;
  padding-left: 22px;
}

.conversation-preview li {
  padding: 6px 0;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-placeholder {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-placeholder span,
.contact-placeholder strong {
  display: block;
}

.contact-placeholder span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-placeholder strong {
  font-size: 14px;
}

.contact-card .button {
  margin-top: 18px;
}

.contact-card .button + .button {
  margin-top: 10px;
}

.contact-option-placeholder {
  margin: 8px 0 0;
  color: var(--warning);
  font-size: 10px;
  text-align: center;
}

.button-caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.contacts-section {
  background: var(--surface);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: start;
  gap: 24px;
}

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

.contact-primary-grid article,
.visit-card,
.channels-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface-muted);
}

.contact-primary-grid article {
  min-height: 138px;
}

.contact-primary-grid span,
.channels-card li span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-primary-grid strong,
.channels-card li strong {
  display: block;
  font-size: 14px;
  line-height: 1.42;
}

.visit-card,
.channels-card {
  margin-top: 10px;
}

.visit-card dl {
  margin: 0;
}

.visit-card dl > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.visit-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.visit-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.channels-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.channels-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.channels-card li span {
  margin-bottom: 3px;
}

.contacts-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.contacts-visuals {
  display: grid;
  gap: 12px;
}

.contact-map {
  min-height: 430px;
}

.contact-photo {
  min-height: 280px;
}

.site-footer {
  padding: 64px 0 0;
  color: #c6ceca;
  background: #121714;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.45fr;
  gap: 34px;
}

.footer-brand > strong:first-child {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 28px;
}

.footer-brand > span {
  display: block;
  margin-bottom: 16px;
  color: #d6ddd9;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p,
.footer-column span,
.footer-column a {
  overflow-wrap: anywhere;
}

.footer-brand p {
  margin: 0;
  color: #8f9a94;
  font-size: 12px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column > strong:first-child {
  margin: 0 0 16px;
  color: #f1f4f2;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #9ca7a1;
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contacts a,
.footer-contacts span {
  font-size: 11px;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  border-top: 1px solid #2e3732;
  color: #77817c;
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-bottom span,
.footer-bottom a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #dce2df;
}

/* Внутренние страницы: общий LOW-FI-каркас */
.inner-page-main {
  min-height: 60vh;
}

.page-hero {
  padding: 84px 0 68px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 56px;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
}

.page-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.breadcrumb:hover {
  color: var(--ink);
}

.content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.content-section-muted {
  background: var(--surface-muted);
}

.section-heading-compact {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading-compact p {
  margin-bottom: 0;
  color: var(--muted);
}

.event-groups {
  display: grid;
  gap: 72px;
}

.event-group > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.event-group > header h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.event-group > header p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.event-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.event-card-media {
  min-height: 220px;
  border-bottom: 1px dashed var(--line-strong);
  border-radius: 0;
}

.event-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.event-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.event-card .text-link {
  margin-top: auto;
}

.event-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: start;
  gap: 48px;
}

.event-body {
  display: grid;
  gap: 26px;
}

.event-body h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.event-body p {
  margin: 0;
  color: var(--muted);
}

.event-main-media {
  min-height: 480px;
}

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

.event-media-grid .media-placeholder {
  min-height: 260px;
}

.event-sidebar {
  position: sticky;
  top: 138px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.event-sidebar dl {
  margin: 0 0 22px;
}

.event-sidebar dl > div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.event-sidebar dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-sidebar dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-summary > div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.legal-summary dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-summary dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.document-page-list {
  display: grid;
  gap: 10px;
}

.document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.35fr) auto;
  align-items: center;
  gap: 24px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.document-row h3 {
  margin: 0 0 5px;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.document-row p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  overflow-wrap: anywhere;
}

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

.button-disabled {
  opacity: 0.58;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.75fr;
    gap: 36px;
  }

  .hero-media {
    min-height: 500px;
  }

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

  .scenario-card:nth-child(n) {
    grid-column: auto;
  }

  .scenario-card-wide {
    grid-column: span 2;
  }

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

  .official-path-slot dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-path-slot dl > div:nth-child(2) {
    border-right: 0;
  }

  .official-path-slot dl > div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

  .flow-arrow {
    display: none;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .contacts-visuals {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .contact-map,
  .contact-photo {
    min-height: 330px;
  }

  .official-card {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }

  .official-card > .panel-label,
  .official-card > h3,
  .official-note {
    grid-column: 1 / -1;
  }

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

  .footer-brand,
  .footer-contacts {
    grid-column: span 2;
  }

  .page-hero-grid,
  .event-page-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    gap: 28px;
  }

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

  .event-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 64px;
  }

  .project-version-note .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
  }

  .brand-note {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 72px;
  }

  .hero-grid,
  .split-heading,
  .support-journey,
  .community-layout,
  .contact-grid,
  .values-stage,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-media {
    min-height: 440px;
  }

  .split-heading {
    gap: 18px;
  }

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

  .scenario-card {
    min-height: 200px;
  }

  .scenario-card-wide {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .roles-flow {
    grid-template-columns: 1fr 1fr;
  }

  .role-card {
    min-height: 190px;
  }

  .support-journey {
    gap: 12px;
  }

  .slot-heading,
  .commercial-model-slot,
  .space-trust-slot,
  .testimonials-heading {
    grid-template-columns: 1fr;
  }

  .slot-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .cta-pair {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-main {
    min-height: 420px;
  }

  .community-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .community-video {
    min-height: 280px;
  }

  .testimonial-video {
    min-height: 360px;
  }

  .values-stage {
    gap: 20px;
  }

  .values-media {
    min-height: 480px;
  }

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

  .principles-band {
    grid-template-columns: 1fr;
  }

  .principles-band article,
  .principles-band article:nth-child(odd),
  .principles-band article:nth-child(even) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles-band article:last-child {
    border-bottom: 0;
  }

  .history-strip,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .history-strip > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .history-strip > div:last-child {
    border-bottom: 0;
  }

  .people-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .people-list > div {
    min-height: 120px;
  }

  .contact-grid {
    gap: 36px;
  }

  .conditional-status,
  .review-callout {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

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

  .content-section {
    padding: 64px 0;
  }

  .event-group > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-summary {
    grid-template-columns: 1fr;
  }

  .document-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .footer-brand,
  .footer-contacts {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header .button-small {
    min-height: 38px;
    padding: 8px 14px;
  }

  .header-inner {
    gap: 8px;
  }

  .brand-name {
    font-size: 19px;
  }

  .mobile-menu summary {
    min-height: 38px;
    padding: 7px 11px;
  }

  .mobile-menu nav {
    position: fixed;
    top: 63px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-lead,
  .contact-lead,
  .manifesto-lead {
    font-size: 17px;
  }

  .actions,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .actions .button,
  .section-cta .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-media {
    min-height: 310px;
  }

  .media-placeholder {
    padding: 20px;
  }

  .scenario-grid {
    gap: 8px;
  }

  .scenario-card {
    min-height: 180px;
    padding: 16px;
  }

  .scenario-card h3,
  .principle-card h3 {
    font-size: 16px;
  }

  .scenario-card p,
  .principle-card p {
    font-size: 12px;
  }

  .card-number,
  .principle-card > span {
    margin-bottom: 20px;
  }

  .format-brief,
  .roles-flow,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .formats-grid,
  .specialists-grid {
    width: calc(100% + 12px);
    display: flex;
    gap: 10px;
    padding: 0 12px 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .format-card,
  .specialist-card {
    min-width: min(86vw, 340px);
    scroll-snap-align: start;
  }

  .format-card {
    padding: 20px 18px;
  }

  .portrait-placeholder {
    min-height: 220px;
  }

  .official-path-slot {
    padding: 20px 18px;
  }

  .official-path-slot dl {
    grid-template-columns: 1fr;
  }

  .official-path-slot dl > div,
  .official-path-slot dl > div:first-child,
  .official-path-slot dl > div:nth-child(n+3) {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .role-card {
    min-height: auto;
    padding: 20px;
  }

  .role-kicker {
    margin-bottom: 18px;
  }

  .roles-flow .role-card {
    position: relative;
  }

  .roles-flow .role-card:not(:last-of-type)::after {
    position: absolute;
    bottom: -19px;
    left: 50%;
    z-index: 2;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--line-strong);
    background: var(--bg);
    content: "↓";
    transform: translateX(-50%);
  }

  .support-panel,
  .journey-panel {
    padding: 22px 18px;
  }

  .community-side {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .community-main {
    min-height: 340px;
  }

  .testimonials-zone {
    margin-top: 40px;
    padding-top: 34px;
  }

  .testimonial-video {
    min-height: 310px;
  }

  .testimonials-heading h3 {
    font-size: 25px;
  }

  .media-small {
    min-height: 190px;
    padding: 14px;
  }

  .media-small strong {
    font-size: 14px;
  }

  .community-formats {
    padding: 22px 18px;
  }

  .data-placeholder {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .data-placeholder small {
    margin-left: 0;
  }

  .principle-card,
  .principle-card-wide {
    min-height: auto;
    grid-column: auto;
  }

  .value-quote {
    margin-top: 36px;
    padding-left: 0;
  }

  .values-manifesto {
    padding-top: 0;
  }

  .values-media {
    min-height: 380px;
  }

  .village-quote p {
    font-size: 19px;
  }

  .principles-band article {
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }

  .space-trust-slot {
    padding: 22px 18px;
  }

  .faq-list summary {
    padding: 20px 44px 20px 0;
    font-size: 16px;
  }

  .faq-list summary::after {
    top: 16px;
  }

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

  .team-media {
    min-height: 320px;
  }

  .official-card {
    display: block;
    padding: 22px 18px;
  }

  .final-cta {
    padding: 64px 0;
  }

  .contact-card,
  .conversation-preview {
    padding: 20px 18px;
  }

  .contact-card .button {
    min-height: 54px;
  }

  .contact-primary-grid,
  .contacts-visuals {
    grid-template-columns: 1fr;
  }

  .contact-primary-grid article {
    min-height: auto;
    padding: 18px;
  }

  .visit-card,
  .channels-card {
    padding: 20px 18px;
  }

  .visit-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contacts-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contacts-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .contact-map {
    min-height: 340px;
  }

  .contact-photo {
    min-height: 280px;
  }

  .page-lead {
    font-size: 17px;
  }

  .events-grid,
  .event-media-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-main-media {
    min-height: 320px;
  }

  .event-card-media,
  .event-media-grid .media-placeholder {
    min-height: 220px;
  }

  .footer-brand,
  .footer-contacts {
    grid-column: auto;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom > div {
    flex-direction: column;
    gap: 8px;
  }
}

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