:root {
  color-scheme: light;
  --canvas: #f6f4ee;
  --surface: #ffffff;
  --ink: #172622;
  --muted: #53625e;
  --brand: #145c53;
  --brand-deep: #0c413b;
  --brand-dark: #082f2b;
  --accent: #8b5a18;
  --coral: #b85c35;
  --sage-soft: #dce8e2;
  --sage-pale: #edf4f0;
  --clay-soft: #f0e1d1;
  --line: #cdd7d1;
  --focus: #b84b1f;
  --shadow: 0 18px 55px rgba(23, 38, 34, 0.08);
  --shadow-soft: 0 10px 32px rgba(23, 38, 34, 0.055);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --article: 760px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --sans: "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.3vw + 0.94rem, 1.125rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.19em;
}

a:hover {
  color: var(--brand-deep);
}

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

::selection {
  background: var(--clay-soft);
  color: var(--ink);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  line-height: 1.01;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

p,
li {
  max-width: 72ch;
}

strong {
  font-weight: 700;
}

.container {
  width: min(calc(100% - 2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.article-container {
  width: min(calc(100% - 2 * var(--gutter)), var(--article));
  margin-inline: auto;
}

.wide-container {
  width: min(calc(100% - 2 * var(--gutter)), 1040px);
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section-sm {
  padding-block: clamp(3rem, 6vw, 5rem);
}

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

.sage-section {
  background: var(--sage-pale);
}

.dark-section {
  background: var(--brand-deep);
  color: #f8f6ef;
}

.dark-section a {
  color: #d7eadf;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.dark-section .eyebrow {
  color: #efbb91;
}

.lead {
  max-width: 63ch;
  color: var(--muted);
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.dark-section .lead {
  color: #d9e6e1;
}

.measure {
  max-width: 62ch;
}

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

.small {
  font-size: 0.875rem;
  line-height: 1.55;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

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

.initiative-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--brand-dark);
  color: #e6f0eb;
  font-size: 0.79rem;
  line-height: 1.45;
}

.initiative-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.4rem;
}

.initiative-bar p {
  margin: 0;
}

.initiative-bar a {
  color: #fff;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(246, 244, 238, 0.94);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-scrolled] {
  border-color: var(--line);
  box-shadow: 0 4px 18px rgba(23, 38, 34, 0.04);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5.3rem;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.72rem;
  color: var(--brand-deep);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-link img {
  width: 2.6rem;
  height: 2.6rem;
}

.brand-link .tld {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.7vw, 1.6rem);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.4vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  content: "";
  transition: transform 170ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  transform: translateY(-0.39rem);
}

.nav-toggle span::after {
  position: absolute;
  transform: translateY(0.39rem);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.72rem 1.05rem;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-deep);
  color: #fff;
}

.button-secondary {
  border-color: var(--brand);
  background: transparent;
  color: var(--brand-deep);
}

.button-secondary:hover {
  background: var(--sage-soft);
  color: var(--brand-deep);
}

.button-light {
  background: #f8f6ef;
  color: var(--brand-deep);
}

.button-light:hover {
  background: #fff;
  color: var(--brand-deep);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.text-link::after {
  content: "→";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(0.2rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 9rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -12rem;
  right: -10rem;
  width: min(43vw, 38rem);
  height: min(43vw, 38rem);
  border: clamp(3rem, 7vw, 6rem) solid var(--sage-soft);
  border-radius: 50%;
  content: "";
  opacity: 0.78;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.65rem;
}

.hero .lead {
  margin-bottom: 2.15rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-art {
  position: relative;
  min-height: 28rem;
}

.city-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50% 44% 53% 47%;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
}

.city-orbit::before,
.city-orbit::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.city-orbit::before {
  inset: 12%;
}

.city-orbit::after {
  inset: 27%;
  background: var(--sage-soft);
}

.orbit-label {
  position: absolute;
  z-index: 2;
  display: flex;
  width: clamp(6rem, 10vw, 8.5rem);
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-deep);
  font-size: 0.85rem;
  font-weight: 730;
  box-shadow: var(--shadow-soft);
}

.orbit-label:nth-child(1) { top: 6%; left: 36%; }
.orbit-label:nth-child(2) { top: 34%; right: -2%; }
.orbit-label:nth-child(3) { right: 12%; bottom: 3%; }
.orbit-label:nth-child(4) { bottom: 7%; left: 4%; }
.orbit-label:nth-child(5) { top: 31%; left: -5%; }

.orbit-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 9rem;
  height: 9rem;
  transform: translate(-50%, -50%);
  place-items: center;
  border-radius: 50%;
  background: var(--brand-deep);
  color: #fff;
  padding: 1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 18px 40px rgba(12, 65, 59, 0.22);
}

.intro-grid {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.intro-grid > :first-child {
  position: sticky;
  top: 8rem;
}

.concept-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.concept-item {
  display: grid;
  gap: 1rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 3rem 1fr;
}

.concept-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.25;
}

.concept-item h3 {
  margin-bottom: 0.55rem;
}

.concept-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.domain-chain {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(5, 1fr);
}

.domain-item {
  position: relative;
  min-height: 12rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.domain-item:last-child {
  border-right: 0;
}

.domain-item::after {
  position: absolute;
  top: 50%;
  right: -0.55rem;
  z-index: 1;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  transform: translateY(-50%);
  place-items: center;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.domain-item:last-child::after {
  display: none;
}

.domain-item h3 {
  margin-bottom: 0.55rem;
  color: var(--brand-deep);
  font-size: 1.1rem;
}

.domain-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.core-statement {
  margin: clamp(2.5rem, 6vw, 5rem) auto 0;
  max-width: 28ch;
  color: var(--brand-deep);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.22;
  text-align: center;
}

.method-grid {
  display: grid;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: method;
}

.method-step {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.055);
  counter-increment: method;
}

.method-step::before {
  display: block;
  margin-bottom: 3.8rem;
  color: #efbb91;
  content: "0" counter(method);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.method-step::after {
  position: absolute;
  top: 3.35rem;
  right: -1rem;
  left: 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.method-step h3 {
  color: #fff;
}

.method-step p {
  margin-bottom: 0;
  color: #d9e6e1;
  font-size: 0.94rem;
}

.question-card {
  margin-top: 2rem;
  border-left: 4px solid #efbb91;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.question-card p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.35;
}

.level-grid,
.principle-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

.level-card,
.principle-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.level-card {
  position: relative;
  padding-top: 4.5rem;
}

.level-card::before {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 5px solid var(--sage-soft);
  border-radius: 50%;
  content: "";
}

.level-card:nth-child(2)::before { width: 1.8rem; height: 1.8rem; }
.level-card:nth-child(3)::before { width: 2.1rem; height: 2.1rem; }
.level-card:nth-child(4)::before { width: 2.4rem; height: 2.4rem; }

.level-card h3,
.principle-card h3,
.content-card h3 {
  margin-bottom: 0.65rem;
}

.level-card p,
.principle-card p,
.content-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.principle-card {
  border-top: 4px solid var(--brand);
}

.principle-card:nth-child(2n) {
  border-top-color: var(--accent);
}

.content-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
}

.content-card .text-link {
  margin-top: auto;
  padding-top: 1.5rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-panel {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  background: var(--brand-deep);
  color: #f8f6ef;
  padding: clamp(2rem, 6vw, 5rem);
  grid-template-columns: 1.3fr 0.7fr;
}

.cta-panel h2 {
  margin-bottom: 1rem;
}

.cta-panel p {
  margin-bottom: 0;
  color: #d9e6e1;
}

.cta-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-direction: column;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7.5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: max(-10rem, -10vw);
  width: 25rem;
  height: 25rem;
  transform: translateY(-50%);
  border: 4rem solid var(--sage-soft);
  border-radius: 50%;
  content: "";
  opacity: 0.68;
}

.page-hero h1 {
  max-width: 17ch;
  margin-bottom: 1.5rem;
}

.page-hero .lead {
  max-width: 66ch;
  margin-bottom: 0;
}

.breadcrumbs {
  margin-bottom: 2.5rem;
  font-size: 0.82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.65rem;
  color: var(--muted);
  content: "/";
}

.breadcrumbs a {
  color: var(--muted);
}

.article-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.32fr);
}

.article-body > * + * {
  margin-top: 1.35rem;
}

.article-body h2 {
  margin-top: clamp(3.25rem, 7vw, 5.5rem);
  margin-bottom: 1.25rem;
}

.article-body h3 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35rem;
}

.article-body li + li {
  margin-top: 0.65rem;
}

.article-body blockquote {
  margin: 2.5rem 0;
  border-left: 4px solid var(--accent);
  background: var(--clay-soft);
  padding: clamp(1.4rem, 4vw, 2.25rem);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.4;
}

.article-body blockquote p {
  margin: 0;
}

.article-aside {
  position: sticky;
  top: 8rem;
  border-top: 3px solid var(--brand);
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.article-aside h2,
.article-aside h3 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
}

.article-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-aside li + li {
  margin-top: 0.75rem;
}

.article-aside a {
  font-size: 0.88rem;
}

.definition {
  margin-block: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sage-pale);
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.definition dt {
  color: var(--brand-deep);
  font-size: 1.15rem;
  font-weight: 750;
}

.definition dd {
  margin: 0.55rem 0 0;
}

.source-box,
.notice-box,
.independence-box {
  margin-block: 2rem;
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.source-box {
  border: 1px solid var(--line);
  background: var(--surface);
}

.notice-box {
  border-left: 4px solid var(--accent);
  background: var(--clay-soft);
}

.independence-box {
  border: 1px solid var(--brand);
  background: var(--sage-pale);
}

.source-box > :last-child,
.notice-box > :last-child,
.independence-box > :last-child {
  margin-bottom: 0;
}

.source-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  max-width: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.source-list strong,
.source-list a {
  display: block;
}

.source-list span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(1.6rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
}

.email-address {
  display: inline-block;
  overflow-wrap: anywhere;
  color: var(--brand-deep);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.not-a-form {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.not-a-form ul {
  margin-bottom: 0;
}

.legal-index {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
}

.legal-index a {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0.85rem 1rem;
  font-weight: 650;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--brand-dark);
  color: #d9e6e1;
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.footer-grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: 1.15fr repeat(2, 0.55fr);
}

.footer-brand .brand-link {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand p {
  max-width: 42ch;
  margin-bottom: 0;
}

.footer-nav h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li + li {
  margin-top: 0.55rem;
}

.footer-nav a,
.cookie-settings-link {
  border: 0;
  background: transparent;
  color: #d9e6e1;
  padding: 0;
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.footer-nav a:hover,
.cookie-settings-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.35rem;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.consent-banner {
  position: fixed;
  z-index: 500;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  margin-inline: auto;
  max-width: 56rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(1.25rem, 3vw, 1.8rem);
  box-shadow: 0 20px 70px rgba(8, 47, 43, 0.22);
}

.consent-banner[hidden],
.consent-dialog[hidden] {
  display: none;
}

.consent-dialog[data-analytics-inactive] [data-consent-action] {
  display: none;
}

.consent-inner {
  display: grid;
  align-items: center;
  gap: 1.25rem;
  grid-template-columns: 1fr auto;
}

.consent-inner h2 {
  margin-bottom: 0.4rem;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: 0;
}

.consent-inner p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.consent-dialog {
  position: fixed;
  z-index: 600;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  background: rgba(8, 47, 43, 0.72);
  padding: 1rem;
}

.consent-dialog-panel {
  width: min(100%, 38rem);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(1.5rem, 5vw, 2.5rem);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.consent-dialog-panel h2 {
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.consent-dialog-panel .consent-actions {
  margin-top: 1.5rem;
}

.status-line {
  border-radius: var(--radius-sm);
  background: var(--sage-pale);
  padding: 0.8rem 1rem;
  color: var(--brand-deep);
  font-size: 0.9rem;
}

/* Living-city visual system */

body {
  transition: background-color 900ms ease;
}

:root[data-ambient="cream"] body { background-color: #f6f1e8; }
:root[data-ambient="sage"] body { background-color: #e5efe9; }
:root[data-ambient="mint"] body { background-color: #dcebe5; }
:root[data-ambient="clay"] body { background-color: #efe0d2; }
:root[data-ambient="deep"] body { background-color: var(--brand-dark); }

.hero--photo,
.page-hero,
.ambient-section,
.concept-stream {
  isolation: isolate;
}

.hero--photo {
  min-height: min(820px, calc(100svh - 7.7rem));
  padding-block: clamp(3.25rem, 7vw, 6.5rem);
  background:
    linear-gradient(128deg, rgba(248, 244, 234, 0.98) 0%, rgba(230, 240, 234, 0.96) 48%, rgba(240, 218, 198, 0.93) 100%);
}

.hero--photo::before {
  z-index: 0;
  inset: -28%;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 42%;
  background:
    radial-gradient(circle at 22% 35%, rgba(203, 229, 218, 0.9), transparent 34%),
    radial-gradient(circle at 78% 25%, rgba(224, 174, 132, 0.55), transparent 28%),
    radial-gradient(circle at 68% 78%, rgba(58, 132, 119, 0.24), transparent 34%);
  opacity: 0.78;
  pointer-events: none;
}

.hero--photo::after {
  position: absolute;
  z-index: 0;
  right: -7rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(12, 65, 59, 0.18);
  border-radius: 48% 52% 38% 62%;
  content: "";
  pointer-events: none;
}

.motion-ready .hero--photo::before {
  animation: ambient-drift 16s ease-in-out infinite alternate;
}

.hero--photo .hero-grid {
  position: relative;
  z-index: 1;
  gap: clamp(2.25rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero--photo h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.hero-media {
  position: relative;
  min-height: clamp(30rem, 48vw, 40rem);
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: clamp(1.4rem, 3vw, 2.5rem);
  background: #cbd9d1;
  box-shadow: 0 34px 90px rgba(8, 47, 43, 0.2);
  aspect-ratio: 5 / 4;
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 47, 43, 0.03) 35%, rgba(8, 47, 43, 0.72) 100%),
    linear-gradient(120deg, rgba(184, 92, 53, 0.12), transparent 46%);
  content: "";
  pointer-events: none;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: 51% center;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3vw, 1.7rem);
  bottom: clamp(1rem, 3vw, 1.7rem);
  left: clamp(1rem, 3vw, 1.7rem);
  max-width: 40ch;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-media figcaption span,
.editorial-photo figcaption span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.concept-stream {
  position: relative;
  overflow: hidden;
  min-height: 4.9rem;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--brand-dark);
  color: #fff;
}

.concept-stream::before {
  position: absolute;
  z-index: 0;
  inset: -30% -35%;
  background: linear-gradient(100deg, #082f2b 8%, #16665b 32%, #8f4f35 58%, #8b661d 77%, #0c413b 94%);
  content: "";
  opacity: 0.92;
  pointer-events: none;
}

.motion-ready .concept-stream::before {
  animation: stream-colour 18s ease-in-out infinite alternate;
}

.stream-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1600px);
  min-height: 4.9rem;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) auto;
}

.stream-viewport {
  overflow: hidden;
  padding-block: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.stream-track,
.stream-group {
  display: flex;
  width: max-content;
  align-items: center;
}

.stream-track {
  transform: translate3d(0, 0, 0);
}

.motion-ready .stream-track {
  animation: concept-flow 38s linear infinite;
}

:root[data-motion-paused] .stream-track,
:root[data-page-hidden] .stream-track {
  animation-play-state: paused;
}

:root[data-motion-paused] .hero--photo::before,
:root[data-motion-paused] .concept-stream::before,
:root[data-motion-paused] .page-hero::after,
:root[data-page-hidden] .hero--photo::before,
:root[data-page-hidden] .concept-stream::before,
:root[data-page-hidden] .page-hero::after {
  animation-play-state: paused;
}

:root[data-motion-paused] .hero-media img {
  transform: translate3d(0, 0, 0) scale(1.04);
}

.stream-group {
  flex: 0 0 auto;
  gap: 0;
}

.stream-group span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.stream-group span::after {
  width: 0.42rem;
  height: 0.42rem;
  margin: 0 1.25rem;
  border-radius: 50%;
  background: #efbb91;
  box-shadow: 0 0 0 0.28rem rgba(239, 187, 145, 0.12);
  content: "";
}

.motion-toggle {
  display: none;
  min-width: 10.7rem;
  min-height: 2.55rem;
  margin-right: var(--gutter);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(8, 47, 43, 0.74);
  color: #fff;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 720;
  cursor: pointer;
}

.motion-ready .motion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.motion-toggle:hover {
  background: #fff;
  color: var(--brand-dark);
}

.warm-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 241, 230, 0.95));
}

.clay-section {
  background: linear-gradient(135deg, #f7f1e8 0%, #f0dfcf 52%, #e8f0eb 100%);
}

.mint-section {
  background: linear-gradient(145deg, #edf5f1 0%, #dcebe5 62%, #f4e5d8 100%);
}

.ambient-section {
  position: relative;
  overflow: hidden;
}

.ambient-section::before {
  position: absolute;
  z-index: 0;
  top: -11rem;
  right: -9rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(20, 92, 83, 0.1);
  border-radius: 42% 58% 61% 39%;
  content: "";
  pointer-events: none;
}

.ambient-section > .container,
.ambient-section > .wide-container {
  position: relative;
  z-index: 1;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(184, 92, 53, 0.22), transparent 31%),
    radial-gradient(circle at 9% 85%, rgba(70, 151, 135, 0.2), transparent 28%),
    var(--brand-deep);
}

.dark-section::before {
  border-color: rgba(255, 255, 255, 0.11);
}

.editorial-photo {
  position: relative;
  overflow: hidden;
  margin: 2.75rem 0 3.25rem;
  border: 1px solid rgba(20, 92, 83, 0.2);
  border-radius: clamp(1rem, 2.5vw, 1.8rem);
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(23, 38, 34, 0.13);
}

.editorial-photo picture {
  display: block;
  overflow: hidden;
  background: #dce8e2;
  aspect-ratio: 3 / 2;
}

.editorial-photo--panorama picture {
  aspect-ratio: 16 / 9;
}

.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-photo figcaption {
  margin: 0;
  background: rgba(255, 255, 255, 0.97);
  color: var(--muted);
  padding: 0.9rem 1.1rem 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.editorial-photo figcaption span {
  color: var(--accent);
}

.editorial-photo--dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.2);
}

.editorial-photo--dark figcaption {
  background: rgba(8, 47, 43, 0.94);
  color: #d9e6e1;
}

.editorial-photo--dark figcaption span {
  color: #efbb91;
}

.editorial-photo--home {
  margin-block: clamp(2.5rem, 6vw, 4.5rem);
}

.domain-chain {
  border-color: rgba(20, 92, 83, 0.22);
  box-shadow: 0 26px 70px rgba(23, 38, 34, 0.1);
}

.domain-item:nth-child(1) { background: #fbf5e9; }
.domain-item:nth-child(2) { background: #e8f2ed; }
.domain-item:nth-child(3) { background: #f4e2d5; }
.domain-item:nth-child(4) { background: #eee8d5; }
.domain-item:nth-child(5) { background: #dcebe5; }

.method-step,
.level-card,
.principle-card,
.content-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.principle-card {
  background: linear-gradient(155deg, #fff 48%, rgba(220, 235, 229, 0.72));
}

.principle-card:nth-child(2n) {
  background: linear-gradient(155deg, #fff 48%, rgba(240, 225, 209, 0.76));
}

.level-card:nth-child(1),
.level-card:nth-child(4) { background: #f8f2e8; }
.level-card:nth-child(2) { background: #e8f2ed; }
.level-card:nth-child(3) { background: #f3e2d5; }

.content-card {
  background: linear-gradient(145deg, #fff 60%, rgba(237, 244, 240, 0.9));
  box-shadow: 0 15px 40px rgba(23, 38, 34, 0.055);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(184, 92, 53, 0.28), transparent 33%),
    linear-gradient(130deg, var(--brand-deep), #0b5149 62%, #183d38);
  box-shadow: 0 28px 70px rgba(8, 47, 43, 0.2);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.contact-finale {
  background: linear-gradient(145deg, #e8f1ec, #f1dfcf);
}

.page-hero {
  background:
    linear-gradient(128deg, rgba(247, 243, 233, 0.98), rgba(228, 239, 233, 0.96) 58%, rgba(240, 221, 204, 0.92));
}

.page-hero::after {
  z-index: 0;
  border-color: rgba(100, 159, 146, 0.23);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

/* Visual edition: cinematic homepage */

.hero--cinematic {
  display: grid;
  min-height: clamp(42rem, calc(100svh - 7.5rem), 58rem);
  align-items: end;
  isolation: isolate;
  padding: 0;
  background: var(--brand-dark);
  color: #fff;
}

.hero--cinematic::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(4, 31, 28, 0.91) 0%, rgba(6, 44, 39, 0.74) 39%, rgba(6, 44, 39, 0.22) 68%, rgba(6, 35, 32, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 25, 23, 0.74) 0%, transparent 43%);
  content: "";
  opacity: 1;
  pointer-events: none;
}

.hero-backdrop,
.hero-backdrop picture,
.hero-backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-backdrop {
  z-index: 0;
  overflow: hidden;
  margin: 0;
  background: #547067;
}

.hero-backdrop img {
  object-fit: cover;
  object-position: center 48%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
  filter: saturate(0.96) contrast(1.03);
  will-change: transform;
}

.hero-colourwash {
  position: absolute;
  z-index: 1;
  inset: -18%;
  border-radius: 44%;
  background:
    radial-gradient(circle at 78% 22%, rgba(241, 171, 111, 0.36), transparent 29%),
    radial-gradient(circle at 60% 74%, rgba(39, 151, 132, 0.32), transparent 33%),
    radial-gradient(circle at 18% 32%, rgba(7, 66, 58, 0.36), transparent 34%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.motion-ready .hero-backdrop img {
  animation: cinematic-zoom 19s ease-in-out infinite alternate;
}

.motion-ready .hero-colourwash {
  animation: cinematic-wash 15s ease-in-out infinite alternate;
}

.cinematic-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  padding-block: clamp(5.5rem, 10vw, 9rem) clamp(4.75rem, 7vw, 6.75rem);
}

.cinematic-copy {
  position: relative;
  width: min(100%, 49rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: clamp(1.25rem, 2vw, 2rem);
  background: linear-gradient(135deg, rgba(5, 45, 40, 0.84), rgba(5, 38, 34, 0.57));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  padding: clamp(1.5rem, 4vw, 3rem);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cinematic-copy::before {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: -1px;
  width: 4px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(#efb183, #63b7a6);
  content: "";
}

.hero--cinematic .eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5c8a7;
  padding: 0.48rem 0.8rem;
}

.hero--cinematic h1 {
  max-width: 10.5ch;
  margin-block: 1.2rem 1.35rem;
  color: #fff;
  font-size: clamp(3.55rem, 7vw, 6.75rem);
  line-height: 0.93;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.22);
}

.hero--cinematic .lead {
  max-width: 62ch;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.3vw, 1.23rem);
}

.hero-promise {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.55rem;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero-promise span[aria-hidden] {
  color: #efb183;
  font-size: 1.15rem;
}

.hero-visual-caption {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 1.15rem;
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: right;
}

.hero-visual-caption span {
  display: block;
  color: #f4c29d;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-story {
  background:
    radial-gradient(circle at 88% 14%, rgba(196, 104, 65, 0.2), transparent 26%),
    radial-gradient(circle at 10% 88%, rgba(52, 135, 119, 0.18), transparent 30%),
    linear-gradient(135deg, #f7efe5 0%, #e7eee9 52%, #ead7c5 100%);
}

.visual-story::before {
  top: -14rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
  border: 5rem solid rgba(255, 255, 255, 0.2);
  border-radius: 45% 55% 62% 38%;
}

.motion-ready .visual-story::before {
  animation: story-orbit 16s ease-in-out infinite alternate;
}

.visual-story-heading {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
}

.visual-story-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 5rem);
}

.visual-story-heading .lead {
  margin-bottom: 0;
}

.visual-mosaic {
  display: grid;
  gap: clamp(0.9rem, 1.7vw, 1.4rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  grid-template-rows: minmax(17rem, 1fr) auto;
}

.mosaic-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(1.1rem, 2.6vw, 2rem);
  background: #b8cbc1;
  box-shadow: 0 28px 75px rgba(23, 38, 34, 0.16);
}

.mosaic-photo--primary {
  min-height: clamp(31rem, 52vw, 43rem);
  grid-row: 1 / 3;
}

.mosaic-photo--secondary {
  min-height: 18rem;
}

.mosaic-photo picture,
.mosaic-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.mosaic-photo picture {
  position: absolute;
  inset: 0;
}

.mosaic-photo img {
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mosaic-photo--primary img {
  object-position: center;
}

.mosaic-photo--secondary img {
  object-position: 52% center;
}

.mosaic-photo::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  background: linear-gradient(0deg, rgba(5, 39, 35, 0.88), transparent);
  content: "";
  pointer-events: none;
}

.mosaic-photo figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1rem, 2vw, 1.5rem);
  color: #fff;
}

.mosaic-photo figcaption strong,
.mosaic-photo figcaption span {
  display: block;
}

.mosaic-photo figcaption strong {
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.mosaic-photo figcaption span {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  line-height: 1.5;
}

.mosaic-statement {
  display: flex;
  min-height: 14rem;
  align-items: end;
  margin: 0;
  border: 0;
  border-radius: clamp(1.1rem, 2.6vw, 2rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.19), transparent 31%),
    linear-gradient(145deg, #a95432, #7c452f 62%, #174f48);
  box-shadow: 0 24px 65px rgba(83, 48, 34, 0.2);
  color: #fff;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.mosaic-statement p {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  line-height: 1.16;
}

.visual-disclaimer {
  margin: 1.25rem 0 0 auto;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: right;
}

:root[data-motion-paused] .hero-backdrop img,
:root[data-motion-paused] .hero-colourwash,
:root[data-motion-paused] .visual-story::before,
:root[data-page-hidden] .hero-backdrop img,
:root[data-page-hidden] .hero-colourwash,
:root[data-page-hidden] .visual-story::before {
  animation-play-state: paused;
}

@keyframes cinematic-zoom {
  from { transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035); }
  to { transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.085); }
}

@keyframes cinematic-wash {
  from { transform: translate3d(-2%, -1%, 0) rotate(-1deg) scale(1); opacity: 0.72; }
  to { transform: translate3d(2%, 1.5%, 0) rotate(1.5deg) scale(1.05); opacity: 1; }
}

@keyframes story-orbit {
  from { transform: translate3d(-1%, -1%, 0) rotate(-2deg); }
  to { transform: translate3d(3%, 2%, 0) rotate(3deg); }
}

/* =========================================================
   V4 — unified green and white panel system
   ========================================================= */

.theme-v4 {
  --canvas: #eef6f2;
  --surface: #fdfcf8;
  --ink: #17322d;
  --muted: #5a6d67;
  --brand: #075b51;
  --brand-deep: #06463f;
  --brand-dark: #063f39;
  --accent: #a85e08;
  --coral: #a85e08;
  --sage-soft: #e4efe9;
  --sage-pale: #eef6f2;
  --clay-soft: #f4eee4;
  --line: #cbdad3;
  --shadow: 0 28px 70px rgba(6, 63, 57, 0.13);
  --shadow-soft: 0 14px 38px rgba(6, 63, 57, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1200px;
  background: var(--canvas);
}

:root[data-ambient] body.theme-v4 {
  background-color: #eef6f2;
}

.theme-v4 .site-header {
  border-bottom-color: rgba(6, 63, 57, 0.1);
  background: rgba(253, 252, 248, 0.94);
}

.theme-v4 .initiative-bar {
  background: var(--brand-dark);
}

.theme-v4 .eyebrow {
  align-items: center;
  gap: 0.62rem;
  color: var(--accent);
}

.theme-v4 .eyebrow::before {
  width: 1.7rem;
  height: 2px;
  background: currentColor;
  content: "";
}

/* Framed hero */

.theme-v4 .hero--framed {
  min-height: 0;
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--canvas);
  color: #fff;
}

.theme-v4 .hero--framed::before {
  display: none;
}

.theme-v4 .hero-panel {
  position: relative;
  display: grid;
  min-height: clamp(38rem, 64vw, 47rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, #06463f 0%, #075b51 60%, #354f42 100%);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
}

.theme-v4 .cinematic-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem);
}

.theme-v4 .cinematic-copy {
  width: 100%;
  max-width: 43rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.theme-v4 .cinematic-copy::before {
  display: none;
}

.theme-v4 .hero--framed .eyebrow {
  border: 0;
  background: transparent;
  color: #e0a04f;
  padding: 0;
}

.theme-v4 .hero--framed h1 {
  max-width: 10.5ch;
  margin-block: 1.25rem 1.5rem;
  color: #fff;
  font-size: clamp(3.25rem, 6vw, 6.25rem);
  line-height: 0.96;
}

.theme-v4 .hero--framed .lead {
  max-width: 58ch;
  margin-bottom: 1.8rem;
  color: rgba(244, 250, 247, 0.86);
}

.theme-v4 .hero-backdrop {
  position: relative;
  inset: auto;
  z-index: 0;
  width: auto;
  height: auto;
  min-height: 100%;
  overflow: hidden;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background: #789087;
}

.theme-v4 .hero-backdrop::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 70, 63, 0.78), transparent 28%),
    linear-gradient(0deg, rgba(5, 45, 40, 0.62), transparent 42%);
  content: "";
  pointer-events: none;
}

.theme-v4 .hero-backdrop picture,
.theme-v4 .hero-backdrop img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.theme-v4 .hero-backdrop img {
  object-fit: cover;
  object-position: 52% center;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
}

.theme-v4 .hero-colourwash {
  z-index: 1;
  inset: -15%;
  background:
    radial-gradient(circle at 78% 18%, rgba(225, 158, 76, 0.28), transparent 28%),
    radial-gradient(circle at 58% 78%, rgba(55, 151, 132, 0.3), transparent 35%);
  mix-blend-mode: soft-light;
}

.theme-v4 .hero-visual-caption {
  z-index: 3;
  right: 1.4rem;
  bottom: 1.25rem;
  left: 1.4rem;
  max-width: 37ch;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
}

.theme-v4 .hero-promise {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

/* Moving concept bar aligned to the panel grid */

.theme-v4 .concept-stream {
  min-height: 0;
  border: 0;
  background: var(--canvas);
  padding: 0 var(--gutter) clamp(4rem, 7vw, 7rem);
}

.theme-v4 .concept-stream::before {
  display: none;
}

.theme-v4 .stream-shell {
  width: min(100%, var(--container));
  min-height: 5.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(105deg, #063f39, #075b51 58%, #354f42);
  box-shadow: var(--shadow-soft);
}

.theme-v4 .stream-group span::after {
  background: #d58a2c;
  box-shadow: 0 0 0 0.28rem rgba(213, 138, 44, 0.13);
}

/* Alternating section shells and unified panels */

.theme-v4 .panel-section {
  position: relative;
  padding-block: clamp(5.5rem, 8vw, 7.5rem);
}

.theme-v4 .panel-section::before {
  display: none;
}

.theme-v4 .shell-mint {
  background: var(--canvas) !important;
}

.theme-v4 .shell-paper {
  background: var(--surface) !important;
}

.theme-v4 .panel-section > .container,
.theme-v4 .panel-section > .wide-container {
  width: min(calc(100% - 2 * var(--gutter)), var(--container));
  overflow: hidden;
  border: 1px solid rgba(6, 63, 57, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(3.25rem, 6vw, 5rem);
}

.theme-v4 .panel-light > .container,
.theme-v4 .panel-light > .wide-container {
  background: #fff;
  color: var(--ink);
}

.theme-v4 .panel-dark > .container,
.theme-v4 .panel-dark > .wide-container {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.09), transparent 30%),
    linear-gradient(110deg, #06463f 0%, #075b51 60%, #354f42 100%);
  color: #f7fbf8;
}

.theme-v4 .panel-dark h2,
.theme-v4 .panel-dark > .container > h3,
.theme-v4 .panel-dark > .wide-container > h3 {
  color: #fff;
}

.theme-v4 .panel-dark .eyebrow,
.theme-v4.content-page .page-hero .eyebrow,
.theme-v4 .cta-panel .eyebrow {
  color: #e0a04f;
}

.theme-v4 .panel-dark .lead,
.theme-v4 .panel-dark .measure > p,
.theme-v4 .panel-dark .visual-story-heading > p,
.theme-v4 .panel-dark .visual-disclaimer {
  color: rgba(239, 247, 243, 0.78);
}

.theme-v4 .panel-dark .text-link {
  color: #fff;
}

.theme-v4 .panel-dark .core-statement {
  color: #fff;
}

.theme-v4 .panel-dark .domain-chain {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow: none;
}

.theme-v4 .panel-dark .domain-item,
.theme-v4 .panel-dark .level-card,
.theme-v4 .panel-dark .content-card {
  border-color: rgba(6, 63, 57, 0.12);
  background: var(--surface);
  color: var(--ink);
}

.theme-v4 .panel-dark .domain-item:nth-child(2n),
.theme-v4 .panel-dark .level-card:nth-child(2n),
.theme-v4 .panel-dark .content-card:nth-child(2n) {
  background: var(--sage-pale);
}

.theme-v4 .panel-dark .domain-item h3,
.theme-v4 .panel-dark .level-card h3,
.theme-v4 .panel-dark .content-card h3 {
  color: var(--brand-deep);
}

.theme-v4 .panel-dark .domain-item p,
.theme-v4 .panel-dark .level-card p,
.theme-v4 .panel-dark .content-card p {
  color: var(--muted);
}

.theme-v4 .panel-dark .content-card .text-link {
  color: var(--brand);
}

.theme-v4 .panel-dark .mosaic-statement {
  background: var(--surface);
  color: var(--ink);
}

.theme-v4 .panel-dark .mosaic-statement p {
  color: var(--ink);
}

.theme-v4 .visual-story,
.theme-v4 .warm-section,
.theme-v4 .sage-section,
.theme-v4 .dark-section,
.theme-v4 .clay-section,
.theme-v4 .mint-section,
.theme-v4 .contact-finale {
  color: inherit;
}

.theme-v4 .visual-story-heading {
  align-items: center;
}

.theme-v4 .visual-story-heading h2 {
  color: inherit;
}

.theme-v4 .panel-light.dark-section h2,
.theme-v4 .panel-light.dark-section h3,
.theme-v4 .panel-light.dark-section p {
  color: inherit;
}

.theme-v4 .panel-light .method-step {
  border-color: var(--line);
  background: var(--sage-pale);
}

.theme-v4 .panel-light .method-step:nth-child(2n) {
  background: var(--surface);
}

.theme-v4 .panel-light .method-step::before {
  color: var(--accent);
}

.theme-v4 .panel-light .method-step::after {
  background: var(--line);
}

.theme-v4 .panel-light .method-step h3 {
  color: var(--brand-deep);
}

.theme-v4 .panel-light .method-step p {
  color: var(--muted);
}

.theme-v4 .panel-light .question-card {
  border-left-color: var(--accent);
  background: var(--brand-deep);
  color: #fff;
}

.theme-v4 .panel-light .editorial-photo--dark {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.theme-v4 .panel-light .editorial-photo--dark figcaption {
  background: var(--brand-deep);
  color: #e2eee9;
}

.theme-v4 .panel-light .principle-card,
.theme-v4 .panel-light .level-card,
.theme-v4 .panel-light .content-card {
  box-shadow: 0 10px 28px rgba(6, 63, 57, 0.06);
}

.theme-v4 .panel-light .principle-card:nth-child(2n),
.theme-v4 .panel-light .level-card:nth-child(2n),
.theme-v4 .panel-light .content-card:nth-child(2n) {
  background: var(--sage-pale);
}

.theme-v4 .panel-light .concept-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.theme-v4 .panel-light .concept-item {
  padding: 1.55rem;
}

.theme-v4 .panel-light .concept-item:nth-child(2n) {
  background: var(--sage-pale);
}

.theme-v4 .panel-light .concept-item:last-child {
  border-bottom: 0;
}

.theme-v4 .independence-box {
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.theme-v4 .panel-final > .container {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.theme-v4 .cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 91% 12%, rgba(255, 255, 255, 0.1), transparent 31%),
    linear-gradient(110deg, #06463f 0%, #075b51 60%, #354f42 100%);
  box-shadow: var(--shadow);
  padding: clamp(3.25rem, 6vw, 5rem);
}

/* Inner pages use the same framed language */

.theme-v4.content-page .page-hero {
  overflow: visible;
  border: 0;
  background: var(--canvas);
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.theme-v4.content-page .page-hero::after {
  display: none;
}

.theme-v4.content-page .page-hero > .container {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.1), transparent 31%),
    linear-gradient(110deg, #06463f 0%, #075b51 60%, #354f42 100%);
  box-shadow: var(--shadow);
  color: #fff;
  padding: clamp(3.25rem, 6vw, 5rem);
}

.theme-v4.content-page .page-hero h1 {
  color: #fff;
}

.theme-v4.content-page .page-hero .lead {
  color: rgba(239, 247, 243, 0.82);
}

.theme-v4.content-page .page-hero .breadcrumbs,
.theme-v4.content-page .page-hero .breadcrumbs a,
.theme-v4.content-page .page-hero .breadcrumbs li:not(:last-child)::after {
  color: rgba(239, 247, 243, 0.7);
}

.theme-v4.content-page .surface-section {
  background: var(--surface);
  padding-block: clamp(5.5rem, 8vw, 7.5rem);
}

.theme-v4.content-page .surface-section > .container {
  border: 1px solid rgba(6, 63, 57, 0.09);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: clamp(2.25rem, 5vw, 4.5rem);
}

.theme-v4.content-page .article-body h2 {
  position: relative;
  padding-top: 1.1rem;
  color: var(--brand-deep);
}

.theme-v4.content-page .article-body h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.2rem;
  height: 2px;
  background: var(--accent);
  content: "";
}

.theme-v4.content-page .article-body blockquote {
  border: 0;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--brand-deep);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.theme-v4.content-page .definition {
  border-color: var(--line);
  background: var(--sage-pale);
  box-shadow: 0 9px 25px rgba(6, 63, 57, 0.045);
}

.theme-v4.content-page .definition:nth-of-type(2n) {
  background: var(--surface);
}

.theme-v4.content-page .notice-box {
  border-left-color: var(--accent);
  background: var(--brand-deep);
  color: #fff;
}

.theme-v4.content-page .article-aside {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius-md);
  background: var(--sage-pale);
  box-shadow: var(--shadow-soft);
}

.theme-v4.content-page .section-sm.sage-section {
  background: var(--canvas);
  padding-block: clamp(5rem, 7vw, 7rem);
}

.theme-v4.content-page .section-sm.sage-section > .container {
  width: min(calc(100% - 2 * var(--gutter)), var(--container));
}

.theme-v4 .site-footer {
  background: #043b35;
}

@media (hover: hover) {
  .mosaic-photo:hover img {
    transform: scale(1.035);
  }

  .editorial-photo:hover img {
    transform: scale(1.018);
  }

  .method-step:hover,
  .level-card:hover,
  .principle-card:hover,
  .content-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 92, 83, 0.42);
    box-shadow: 0 22px 54px rgba(23, 38, 34, 0.11);
  }
}

@keyframes ambient-drift {
  from { transform: translate3d(-1.5%, -1%, 0) rotate(-1deg) scale(1); opacity: 0.72; }
  to { transform: translate3d(2%, 1.5%, 0) rotate(1.5deg) scale(1.04); opacity: 0.9; }
}

@keyframes stream-colour {
  from { transform: translate3d(-3%, 0, 0) scale(1); opacity: 0.88; }
  to { transform: translate3d(3%, 0, 0) scale(1.04); opacity: 1; }
}

@keyframes concept-flow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.error-page {
  display: grid;
  min-height: 72vh;
  place-items: center;
  text-align: center;
}

.error-code {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: 0.8;
}

[data-reveal],
[data-reveal-item],
[data-panel-reveal] {
  opacity: 1;
}

.motion-ready.reveal-ready [data-reveal],
.motion-ready.reveal-ready [data-reveal-item],
.motion-ready.reveal-ready [data-panel-reveal] {
  --reveal-x: 0px;
  --reveal-y: 1.15rem;
  --reveal-scale: 1;
  --reveal-duration: 680ms;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  opacity: 0;
  transition:
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--reveal-duration) ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready.reveal-ready [data-reveal][data-visible],
.motion-ready.reveal-ready [data-reveal-item][data-visible],
.motion-ready.reveal-ready [data-panel-reveal][data-visible] {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

[data-reveal-kind="eyebrow"] {
  --reveal-y: 0.75rem !important;
  --reveal-duration: 520ms !important;
}

[data-reveal-kind="title"] {
  --reveal-y: 1.75rem !important;
  --reveal-duration: 820ms !important;
}

[data-reveal-kind="copy"] {
  --reveal-y: 1.05rem !important;
  --reveal-duration: 660ms !important;
}

[data-reveal-kind="card"],
[data-reveal-item] {
  --reveal-y: 1.55rem !important;
  --reveal-scale: 0.985 !important;
  --reveal-duration: 740ms !important;
}

[data-reveal-kind="image"] {
  --reveal-x: var(--reveal-image-x, 2rem) !important;
  --reveal-y: 0.5rem !important;
  --reveal-scale: 0.992 !important;
  --reveal-duration: 940ms !important;
}

[data-reveal-side="left"] {
  --reveal-image-x: -2rem;
}

[data-reveal-kind="quote"] {
  --reveal-x: 1.25rem !important;
  --reveal-y: 0.5rem !important;
  --reveal-duration: 720ms !important;
}

[data-reveal-kind="aside"] {
  --reveal-x: 1.5rem !important;
  --reveal-y: 0 !important;
  --reveal-duration: 720ms !important;
}

[data-panel-reveal] {
  --reveal-y: 2rem !important;
  --reveal-scale: 0.985 !important;
  --reveal-duration: 860ms !important;
}

:root[data-motion-paused] [data-reveal],
:root[data-motion-paused] [data-reveal-item],
:root[data-motion-paused] [data-panel-reveal] {
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

@media (max-width: 1040px) {
  .hero--cinematic {
    min-height: 48rem;
  }

  .cinematic-copy {
    width: min(100%, 43rem);
  }

  .visual-story-heading {
    gap: 2.5rem;
  }

  .visual-mosaic {
    grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.85fr);
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-nav ul {
    gap: 0.7rem;
  }

  .site-nav a:not(.button) {
    font-size: 0.84rem;
  }

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

  .domain-chain {
    grid-template-columns: repeat(3, 1fr);
  }

  .domain-item:nth-child(3) {
    border-right: 0;
  }

  .domain-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 820px) {
  .hero--cinematic {
    min-height: max(44rem, 82svh);
    padding: 0;
  }

  .hero--cinematic::before {
    background:
      linear-gradient(0deg, rgba(4, 29, 26, 0.93) 0%, rgba(5, 39, 35, 0.68) 58%, rgba(5, 39, 35, 0.18) 100%),
      linear-gradient(90deg, rgba(5, 38, 34, 0.35), transparent);
  }

  .hero-backdrop img {
    object-position: 56% center;
  }

  .cinematic-content {
    padding-block: 9rem 4.5rem;
  }

  .cinematic-copy {
    width: 100%;
    background: linear-gradient(145deg, rgba(5, 45, 40, 0.78), rgba(5, 38, 34, 0.58));
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }

  .hero--cinematic h1 {
    max-width: 10.5ch;
    font-size: clamp(3.15rem, 11.5vw, 5rem);
  }

  .hero-visual-caption {
    display: none;
  }

  .visual-story-heading,
  .visual-mosaic {
    grid-template-columns: 1fr;
  }

  .visual-story-heading {
    align-items: start;
    gap: 1.4rem;
  }

  .visual-story-heading h2 {
    max-width: 15ch;
  }

  .mosaic-photo--primary,
  .mosaic-photo--secondary,
  .mosaic-statement {
    min-height: 25rem;
    grid-row: auto;
  }

  .mosaic-statement {
    min-height: 13rem;
  }

  .visual-disclaimer {
    text-align: left;
  }

  .initiative-bar .container {
    padding-block: 0.45rem;
  }

  .initiative-bar a {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 50%;
    display: none;
    width: 100vw;
    max-height: calc(100dvh - 5.3rem);
    align-items: stretch;
    overflow-y: auto;
    transform: translateX(-50%);
    border-top: 1px solid var(--line);
    background: var(--canvas);
    padding: 1.25rem var(--gutter) 2rem;
    flex-direction: column;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav a:not(.button) {
    display: block;
    border-bottom: 1px solid var(--line);
    padding-block: 1rem;
    font-size: 1.05rem;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 0.75rem;
  }

  .hero-grid,
  .intro-grid,
  .article-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero--photo {
    min-height: 0;
    padding-block: 3.5rem 4.25rem;
  }

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

  .hero--photo h1 {
    font-size: clamp(2.9rem, 10vw, 4.7rem);
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-media img {
    object-position: center 45%;
  }

  .stream-shell {
    grid-template-columns: 1fr;
  }

  .motion-toggle {
    min-width: 0;
    margin: 0 var(--gutter) 0.8rem auto;
  }

  .hero-art {
    width: min(100%, 32rem);
    min-height: 27rem;
    margin-inline: auto;
  }

  .intro-grid > :first-child,
  .article-aside {
    position: static;
  }

  .article-aside {
    order: -1;
  }

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

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

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero--cinematic {
    min-height: max(43rem, 86svh);
    padding: 0;
  }

  .cinematic-content {
    padding-block: 7.5rem 3.75rem;
  }

  .cinematic-copy {
    border-radius: 1.15rem;
    padding: 1.35rem;
  }

  .cinematic-copy::before {
    top: 1.35rem;
    bottom: 1.35rem;
  }

  .hero--cinematic h1 {
    margin-block: 1rem 1.15rem;
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .hero--cinematic .lead {
    font-size: 1rem;
    line-height: 1.55;
  }

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

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

  .hero-promise {
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.67rem;
    flex-direction: column;
  }

  .hero-promise span[aria-hidden] {
    display: none;
  }

  .visual-story-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .mosaic-photo--primary,
  .mosaic-photo--secondary {
    min-height: 21rem;
    border-radius: 1rem;
  }

  .mosaic-statement {
    min-height: 12rem;
    border-radius: 1rem;
  }

  .header-inner {
    min-height: 4.7rem;
  }

  .brand-link img {
    width: 2.3rem;
    height: 2.3rem;
  }

  .site-nav {
    top: 100%;
    max-height: calc(100dvh - 4.7rem);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero--photo {
    padding-top: 2.75rem;
  }

  .hero--photo h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero-media {
    border-radius: 1.2rem;
    aspect-ratio: 4 / 3;
  }

  .hero-media figcaption {
    font-size: 0.74rem;
  }

  .stream-group span {
    font-size: 1rem;
  }

  .stream-group span::after {
    margin-inline: 0.9rem;
  }

  .editorial-photo {
    margin-block: 2rem 2.6rem;
    border-radius: 1rem;
  }

  .editorial-photo picture,
  .editorial-photo--panorama picture {
    aspect-ratio: 4 / 3;
  }

  .hero-art {
    min-height: 22rem;
  }

  .orbit-label {
    width: 6.3rem;
    min-height: 3rem;
    font-size: 0.74rem;
  }

  .orbit-core {
    width: 7.4rem;
    height: 7.4rem;
    font-size: 1.05rem;
  }

  .domain-chain,
  .method-grid,
  .level-grid,
  .principle-grid,
  .card-grid,
  .legal-index,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .domain-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .domain-item:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .domain-item:last-child {
    border-bottom: 0;
  }

  .domain-item::after {
    top: auto;
    right: auto;
    bottom: -0.55rem;
    left: 1.5rem;
    transform: none;
  }

  .method-step {
    min-height: auto;
  }

  .method-step::before {
    margin-bottom: 2.6rem;
  }

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

  .footer-bottom,
  .consent-inner {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .consent-actions .button {
    flex: 1 1 100%;
  }
}

@media (max-width: 1040px) {
  .theme-v4 .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.82fr);
  }

  .theme-v4 .cinematic-content {
    padding: 3.25rem;
  }

  .theme-v4 .panel-section > .container,
  .theme-v4 .panel-section > .wide-container,
  .theme-v4.content-page .page-hero > .container {
    padding: clamp(2.75rem, 5vw, 4rem);
  }
}

@media (max-width: 820px) {
  .theme-v4 .hero--framed {
    padding-block: 3.5rem;
  }

  .theme-v4 .hero-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .theme-v4 .hero-backdrop {
    min-height: 28rem;
    order: -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .theme-v4 .hero-backdrop::before {
    background: linear-gradient(0deg, rgba(6, 70, 63, 0.68), transparent 45%);
  }

  .theme-v4 .hero-backdrop img {
    object-position: 53% center;
  }

  .theme-v4 .cinematic-content {
    padding: clamp(2.25rem, 7vw, 3.5rem);
  }

  .theme-v4 .hero--framed h1 {
    font-size: clamp(3.1rem, 11vw, 4.8rem);
  }

  .theme-v4 .concept-stream {
    padding-bottom: 3.5rem;
  }

  .theme-v4 .stream-shell {
    border-radius: 14px;
  }

  .theme-v4 .panel-section {
    padding-block: 4.5rem;
  }

  .theme-v4 .panel-section > .container,
  .theme-v4 .panel-section > .wide-container,
  .theme-v4.content-page .page-hero > .container,
  .theme-v4.content-page .surface-section > .container {
    padding: clamp(2.25rem, 7vw, 3.5rem);
  }

  .theme-v4.content-page .page-hero,
  .theme-v4.content-page .surface-section,
  .theme-v4.content-page .section-sm.sage-section {
    padding-block: 4.5rem;
  }

  [data-reveal-kind="image"],
  [data-reveal-kind="quote"],
  [data-reveal-kind="aside"] {
    --reveal-x: 0.75rem !important;
  }

  [data-reveal-side="left"] {
    --reveal-image-x: -0.75rem;
  }
}

@media (max-width: 620px) {
  .theme-v4 {
    --radius-lg: 18px;
    --radius-md: 14px;
  }

  .theme-v4 .hero--framed {
    padding-block: 2.5rem;
  }

  .theme-v4 .hero-panel {
    border-radius: var(--radius-lg);
  }

  .theme-v4 .hero-backdrop {
    min-height: 22rem;
  }

  .theme-v4 .cinematic-content {
    padding: 1.65rem;
  }

  .theme-v4 .hero--framed h1 {
    margin-block: 1rem 1.15rem;
    font-size: clamp(2.9rem, 13.5vw, 4rem);
  }

  .theme-v4 .hero--framed .lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .theme-v4 .hero--framed .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .theme-v4 .hero--framed .hero-actions .button {
    width: 100%;
  }

  .theme-v4 .hero-visual-caption {
    display: block;
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
    font-size: 0.66rem;
  }

  .theme-v4 .concept-stream {
    padding-inline: var(--gutter);
    padding-bottom: 2.5rem;
  }

  .theme-v4 .stream-shell {
    border-radius: 12px;
  }

  .theme-v4 .panel-section,
  .theme-v4.content-page .page-hero,
  .theme-v4.content-page .surface-section,
  .theme-v4.content-page .section-sm.sage-section {
    padding-block: 3.5rem;
  }

  .theme-v4 .panel-section > .container,
  .theme-v4 .panel-section > .wide-container,
  .theme-v4.content-page .page-hero > .container,
  .theme-v4.content-page .surface-section > .container {
    border-radius: var(--radius-lg);
    padding: 1.55rem;
  }

  .theme-v4 .cta-panel {
    border-radius: var(--radius-lg);
    padding: 1.75rem;
  }

  .theme-v4 .mosaic-photo,
  .theme-v4 .mosaic-statement {
    border-radius: 14px;
  }

  [data-reveal-kind="card"],
  [data-reveal-item] {
    --reveal-y: 1rem !important;
    --reveal-scale: 0.99 !important;
    --reveal-duration: 620ms !important;
  }

  [data-panel-reveal] {
    --reveal-y: 1.35rem !important;
    --reveal-scale: 0.99 !important;
    --reveal-duration: 720ms !important;
  }
}

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

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

  [data-reveal],
  [data-panel-reveal] {
    transform: none !important;
    opacity: 1 !important;
  }

  [data-reveal-item],
  .hero-backdrop img,
  .hero-colourwash,
  .visual-story::before,
  .hero-media img,
  .stream-track,
  .concept-stream::before,
  .hero--photo::before,
  .page-hero::after {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
}

@media print {
  .initiative-bar,
  .site-header,
  .site-footer,
  .consent-banner,
  .consent-dialog,
  .article-aside,
  .hero-art,
  .hero-backdrop,
  .hero-colourwash,
  .hero-media,
  .concept-stream,
  .visual-mosaic,
  .editorial-photo,
  .button-row,
  .hero-actions {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .section,
  .section-sm,
  .page-hero {
    padding-block: 1.5rem;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}
