:root {
  color-scheme: light;
  --ink: #13211e;
  --soft-ink: #43514c;
  --paper: #f5f1e7;
  --paper-2: #e9eee6;
  --white: #fffdf7;
  --forest: #213f36;
  --deep: #0e1a18;
  --river: #356273;
  --moss: #748b5e;
  --clay: #a9603c;
  --gold: #d9aa73;
  --line: rgba(19, 33, 30, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep);
  transform: translateY(-140%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--white);
}

.site-header.solid {
  position: static;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.brand,
.nav-links { display: flex; align-items: center; }

.brand {
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  filter:
    drop-shadow(0 1px 0 rgba(255, 253, 247, 0.28))
    drop-shadow(0 5px 11px rgba(0, 0, 0, 0.26));
}

.solid .brand-mark {
  filter:
    brightness(0) saturate(100%)
    drop-shadow(0 1px 0 rgba(255, 253, 247, 0.5))
    drop-shadow(0 5px 10px rgba(19, 33, 30, 0.18));
}

.nav-links {
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 0.93rem;
}

.nav-links a {
  flex: 0 0 auto;
  text-decoration: none;
  opacity: 0.88;
}

.nav-links a[aria-current="page"],
.nav-links a:hover,
.nav-links a:focus-visible { opacity: 1; }

.site-header > .mobile-nav {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  inline-size: 0 !important;
  block-size: 0 !important;
  overflow: hidden !important;
}

.mobile-nav summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 760;
  list-style: none;
}

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

.mobile-nav summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mobile-nav[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.mobile-nav-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 12px);
  right: 0;
  width: min(72vw, 270px);
  display: grid;
  gap: 4px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.98);
  border: 1px solid rgba(19, 33, 30, 0.18);
  box-shadow: 0 22px 54px rgba(10, 18, 17, 0.24);
}

.mobile-nav-panel a {
  padding: 11px 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 680;
}

.mobile-nav-panel a[aria-current="page"] {
  color: var(--deep);
  background: rgba(233, 242, 143, 0.42);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: clip;
  background: var(--deep);
}

.hero picture,
.hero img,
.hero::after { position: absolute; inset: 0; }

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 22, 19, 0.94), rgba(10, 22, 19, 0.68) 42%, rgba(10, 22, 19, 0.14) 76%),
    linear-gradient(0deg, rgba(10, 22, 19, 0.32), rgba(10, 22, 19, 0.05));
}

.energy-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: screen;
}

.energy-network svg {
  width: 100%;
  height: 100%;
  display: block;
}

.network-base path,
.network-flow path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.network-base path {
  stroke: rgba(117, 214, 238, 0.32);
  stroke-width: 1.15;
  filter: drop-shadow(0 0 6px rgba(86, 196, 230, 0.42));
}

.network-flow path {
  stroke: rgba(185, 245, 255, 0.92);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 20 220;
  filter: drop-shadow(0 0 8px rgba(94, 218, 255, 0.92));
  animation: current-flow 5.8s linear infinite;
}

.network-flow .flow-two {
  animation-duration: 7.2s;
  animation-delay: -2.1s;
  stroke-dasharray: 16 250;
}

.network-flow .flow-three {
  animation-duration: 6.4s;
  animation-delay: -3.4s;
  stroke-dasharray: 12 210;
}

.network-nodes circle {
  fill: rgba(207, 249, 255, 0.96);
  stroke: rgba(98, 219, 255, 0.88);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: node-pulse 3.6s ease-in-out infinite;
}

.network-nodes circle:nth-child(2n) { animation-delay: -1.2s; }
.network-nodes circle:nth-child(3n) { animation-delay: -2.3s; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  padding: 132px clamp(20px, 6vw, 76px) 78px;
  color: var(--white);
}

.page-hero {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14, 26, 24, 0.98), rgba(33, 63, 54, 0.94)),
    var(--deep);
}

.page-hero.light-hero {
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero .band-inner { display: grid; gap: 22px; }

.visual-hero .band-inner {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  align-items: center;
  gap: clamp(26px, 6vw, 78px);
}

.page-hero-graphic {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px solid rgba(31, 59, 51, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 241, 65, 0.08), transparent 39%),
    linear-gradient(145deg, #102522, #173b35);
  box-shadow: 0 24px 60px rgba(19, 33, 30, 0.13);
}

.page-hero-graphic img {
  width: min(82%, 330px);
  height: auto;
  filter:
    drop-shadow(0 0 20px rgba(233, 242, 143, 0.18))
    drop-shadow(0 20px 34px rgba(0, 0, 0, 0.24));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.model .eyebrow,
.place .eyebrow { color: var(--gold); }

.light-hero .eyebrow { color: var(--clay); }

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.65rem);
  line-height: 0.95;
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.05rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
  line-height: 1.25;
}

p { color: var(--soft-ink); }

.hero-copy,
.page-hero p {
  max-width: 690px;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.light-hero p { color: var(--soft-ink); }

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

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 760;
  text-decoration: none;
}

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

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

.button.secondary {
  color: var(--white);
  background: rgba(255, 253, 247, 0.08);
}

.band {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.band-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.light { background: var(--paper-2); }

.split,
.section-head,
.model-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(290px, 0.96fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.section-head {
  align-items: end;
  margin-bottom: 46px;
}

.lead {
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
}

.lead p:last-child,
article p:last-child { margin-bottom: 0; }

.grid-4,
.grid-3,
.process-list,
.note-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.grid-4 article,
.grid-3 article,
.panel,
.process-list article,
.note-list article {
  padding: 26px;
  background: var(--paper);
}

.grid-4 article { min-height: 284px; }

.index {
  display: block;
  margin-bottom: 52px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 820;
}

.thesis-panel,
.layer-list {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.thesis-panel article,
.layer-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  background: var(--paper);
}

.layer-row { grid-template-columns: 96px minmax(150px, 0.34fr) minmax(0, 1fr); }

.thesis-panel strong,
.layer-row span,
.process-list strong,
.note-list strong {
  color: var(--river);
  font-size: 0.82rem;
  font-weight: 820;
}

.process-list {
  margin-top: 42px;
}

.graphic-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.28fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.56);
}

.graphic-feature h2,
.graphic-feature h3 {
  max-width: 760px;
  margin-bottom: 0;
}

.graphic-feature img {
  width: min(100%, 220px);
  height: auto;
  justify-self: end;
  filter:
    drop-shadow(0 1px 0 rgba(255, 253, 247, 0.72))
    drop-shadow(0 18px 30px rgba(19, 33, 30, 0.16));
}

.graphic-feature-dark {
  overflow: hidden;
  border-color: rgba(232, 236, 215, 0.18);
  background:
    radial-gradient(circle at 78% 42%, rgba(233, 242, 143, 0.16), transparent 28%),
    linear-gradient(135deg, #102522, #183b34 62%, #0f2522);
  color: var(--cream);
}

.graphic-feature-dark h3 {
  color: var(--cream);
}

.graphic-feature-dark .section-kicker {
  color: var(--signal);
}

.graphic-feature-dark img {
  width: min(100%, 320px);
  filter:
    drop-shadow(0 0 18px rgba(233, 242, 143, 0.18))
    drop-shadow(0 22px 42px rgba(0, 0, 0, 0.24));
}

.coordination-field {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(220px, 0.3fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(31, 59, 51, 0.14);
  background:
    linear-gradient(90deg, rgba(232, 236, 215, 0.42), transparent 52%),
    rgba(255, 253, 247, 0.62);
}

.coordination-field h3 {
  max-width: 760px;
  margin-bottom: 0;
}

.field-diagram {
  position: relative;
  justify-self: end;
  width: min(100%, 230px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 59, 51, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(233, 242, 143, 0.34) 0 4px, transparent 5px),
    conic-gradient(from 45deg, transparent 0 18%, rgba(63, 101, 239, 0.22) 19% 21%, transparent 22% 48%, rgba(233, 242, 143, 0.38) 49% 51%, transparent 52% 100%);
}

.field-diagram::before,
.field-diagram::after {
  content: "";
  position: absolute;
  inset: 19%;
  border: 1px solid rgba(63, 101, 239, 0.36);
  transform: rotate(45deg);
}

.field-diagram::after {
  inset: 31%;
  border-color: rgba(233, 242, 143, 0.64);
  transform: rotate(-18deg);
}

.field-diagram span {
  position: absolute;
  width: 13px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(233, 242, 143, 0.42);
}

.field-diagram span:nth-child(1) { top: 12%; left: 46%; }
.field-diagram span:nth-child(2) { top: 46%; right: 12%; }
.field-diagram span:nth-child(3) { bottom: 12%; left: 46%; }
.field-diagram span:nth-child(4) { top: 46%; left: 12%; }

.process-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
}

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

.model,
.place,
.contact-band {
  color: var(--white);
  background: var(--forest);
}

.model {
  background:
    linear-gradient(135deg, rgba(33, 63, 54, 0.98), rgba(14, 26, 24, 0.96)),
    var(--forest);
}

.model p,
.place p,
.contact-band p { color: rgba(255, 253, 247, 0.8); }

.coordination-map {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 247, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  overflow: hidden;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 170, 115, 0.42);
  transform: translate(-50%, -50%) rotate(var(--start-angle));
  transform-origin: center;
  animation: orbit-square var(--orbit-speed) linear infinite;
  animation-delay: var(--orbit-delay);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(217, 170, 115, 0.56);
}

.orbit-ring::before {
  top: -4px;
  left: calc(50% - 4px);
}

.orbit-ring::after {
  right: -4px;
  top: calc(50% - 4px);
}

.ring-one {
  width: 76%;
  --start-angle: 18deg;
  --orbit-speed: 28s;
  --orbit-delay: 0s;
}

.ring-two {
  width: 59%;
  border-color: rgba(255, 253, 247, 0.34);
  --start-angle: -14deg;
  --orbit-speed: 23s;
  --orbit-delay: -4s;
  animation-name: orbit-square-reverse;
}

.ring-three {
  width: 43%;
  border-color: rgba(117, 214, 238, 0.34);
  --start-angle: 28deg;
  --orbit-speed: 19s;
  --orbit-delay: -8s;
}

.ring-four {
  width: 27%;
  border-color: rgba(217, 170, 115, 0.56);
  --start-angle: -32deg;
  --orbit-speed: 15s;
  --orbit-delay: -11s;
  animation-name: orbit-square-reverse;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(217, 170, 115, 0.13);
}

.node.one { top: 22%; left: 22%; }
.node.two { top: 24%; right: 23%; }
.node.three { left: 18%; bottom: 24%; }
.node.four { right: 18%; bottom: 22%; }
.node.core {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255, 253, 247, 0.14);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.principles article {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border-top: 4px solid var(--moss);
}

.place {
  background:
    linear-gradient(135deg, rgba(33, 63, 54, 0.97), rgba(53, 98, 115, 0.92)),
    var(--forest);
}

.tags,
.client-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags { align-self: end; }

.tags span,
.client-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.9rem;
}

.client-row { margin-top: 36px; }

.client-row span {
  color: var(--forest);
  background: rgba(255, 253, 247, 0.6);
}

.partners-page .grid-3 article,
.partners-page .note-list article,
.partners-page .client-row span {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.9);
}

.partners-page .grid-3 article p,
.partners-page .note-list article p {
  color: #26332f;
}

.partners-page .grid-3 article h3,
.partners-page .note-list article strong {
  color: #102522;
}

.partners-page .client-row span {
  border-color: rgba(19, 33, 30, 0.28);
  font-weight: 720;
}

.contact-band { background: var(--deep); }
.contact-band .split { align-items: end; }

.contact-link {
  justify-self: end;
  color: var(--white);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.reach-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.reach-form.compact {
  padding: 0;
  background: transparent;
  border: 0;
}

.reach-form label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 780;
}

.reach-form input,
.reach-form select,
.reach-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(19, 33, 30, 0.24);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.reach-form textarea {
  resize: vertical;
}

.reach-form .button {
  margin-top: 8px;
  cursor: pointer;
}

.form-note {
  margin: 4px 0 0;
  color: var(--soft-ink);
  font-size: 0.9rem;
}

.form-note a {
  font-weight: 760;
  text-underline-offset: 4px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.contact-modal:target {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 26, 24, 0.92), rgba(33, 63, 54, 0.82)),
    rgba(14, 26, 24, 0.88);
}

.modal-window {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(720px, calc(100vw - 44px));
  min-width: 0;
  box-sizing: border-box;
  max-height: min(88svh, 820px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 253, 247, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.modal-window h2 {
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1;
  overflow-wrap: anywhere;
  word-break: normal;
}

.modal-window > *,
.modal-window .reach-form {
  min-width: 0;
}

.modal-close {
  justify-self: end;
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

@keyframes current-flow {
  from { stroke-dashoffset: 260; }
  to { stroke-dashoffset: -260; }
}

@keyframes node-pulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.86);
  }
  45% {
    opacity: 1;
    transform: scale(1.22);
  }
  60% {
    opacity: 0.86;
    transform: scale(1);
  }
}

@keyframes orbit-square {
  from { transform: translate(-50%, -50%) rotate(var(--start-angle)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 360deg)); }
}

@keyframes orbit-square-reverse {
  from { transform: translate(-50%, -50%) rotate(var(--start-angle)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--start-angle) - 360deg)); }
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 253, 247, 0.72);
  background: #0a1211;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .split,
  .section-head,
  .model-layout { grid-template-columns: 1fr; }
  .grid-4,
  .grid-3,
  .principles,
  .note-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 article:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .contact-link { justify-self: start; }
}

@media (max-width: 700px) {
  .site-header {
    align-items: center;
    gap: 12px;
  }
  .nav-links {
    display: none;
  }
  .site-header > .mobile-nav {
    position: relative;
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
    inline-size: auto !important;
    block-size: auto !important;
    overflow: visible !important;
    margin-left: auto;
  }
  .hero { min-height: 88svh; }
  .band-inner,
  .page-hero .band-inner {
    width: min(100%, 340px);
    margin-inline: 0;
  }
  .page-hero h1 {
    max-width: 10ch;
    font-size: 2.65rem;
    line-height: 1;
    overflow-wrap: normal;
  }
  .page-hero p,
  .lead {
    max-width: 32ch;
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(10, 22, 19, 0.95), rgba(10, 22, 19, 0.55)),
      linear-gradient(0deg, rgba(10, 22, 19, 0.62), rgba(10, 22, 19, 0.12));
  }
  .energy-network {
    opacity: 0.46;
    transform: translateX(-18%) scale(1.22);
    transform-origin: center;
  }
  .hero-content {
    width: 100%;
    max-width: 390px;
    padding: 146px 30px 78px;
  }
  h1,
  .hero-copy,
  .actions { max-width: calc(100vw - 60px); }
  .actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
  .button { width: 100%; }
  .grid-4,
  .grid-3,
  .principles,
  .note-list { grid-template-columns: 1fr; }
  .grid-4 article { min-height: auto; }
  .index { margin-bottom: 28px; }
  .thesis-panel article,
  .layer-row,
  .process-list article,
  .graphic-feature,
  .coordination-field,
  .visual-hero .band-inner { grid-template-columns: 1fr; gap: 18px; }
  .graphic-feature img {
    width: min(100%, 190px);
    justify-self: start;
  }
  .page-hero-graphic {
    min-height: 250px;
  }
  .page-hero-graphic img {
    width: min(78%, 240px);
  }
  .field-diagram {
    width: min(100%, 190px);
    justify-self: start;
  }
  .coordination-map { min-height: 320px; }
  .footer { flex-direction: column; }
  .contact-modal {
    display: block;
    padding: 52px 14px;
    overflow-y: auto;
  }
  .modal-window {
    left: auto;
    right: auto;
    width: min(100%, 330px);
    max-width: calc(100vw - 40px);
    max-height: none;
    margin: 0;
    padding: 22px;
  }
  .modal-window h2 {
    font-size: 1.54rem;
    line-height: 1.06;
  }
  .modal-window .lead {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-flow path,
  .network-nodes circle,
  .orbit-ring {
    animation: none;
  }

  .network-flow path {
    stroke-dasharray: none;
    opacity: 0.28;
  }
}
