﻿@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/Source_Sans_3/SourceSans3-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/Unbounded/Unbounded-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

:root {
    --font-main: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    --font-display: "Unbounded", "Source Sans 3", "Segoe UI", Arial, sans-serif;

  --ink: #233240;
  --muted: #5f6f73;
  --line: #d9dfdc;
  --paper: #fbfaf6;
  --paper-soft: #f3f5ef;
  --sage: #8aa180;
  --sage-dark: #607d64;
  --mint: #dfe9df;
  --gold: #d7cf79;
  --blue: #718298;
  --deep: #2f3e4c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(47, 62, 76, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  line-height: 1.48;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
blockquote {
  font-family: var(--font-main);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(24px, 6vw, 112px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(217, 223, 220, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  width: 260px;
}

.brand img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 54px);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--sage-dark);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(96, 125, 100, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle i::before {
  top: -6px;
}

.menu-toggle i::after {
  top: 6px;
}

.site-header.is-menu-open .menu-toggle {
  background: var(--deep);
  color: var(--white);
}

.language-switch {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.language-switch button {
  display: grid;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  gap: 1px;
  padding: 5px 7px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.72;
}

.language-switch button.is-active {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(96, 125, 100, 0.3);
  color: var(--deep);
  opacity: 1;
}

.flag-icon {
  font-size: 1.08rem;
  line-height: 1;
}

.language-name {
  font-size: 0.62rem;
  line-height: 1;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 82vh, 880px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
  90deg,
  rgba(251, 250, 246, 0.94) 0%,
  rgba(251, 250, 246, 0.82) 28%,
  rgba(251, 250, 246, 0.42) 55%,
  rgba(251, 250, 246, 0.10) 78%,
  rgba(251, 250, 246, 0.00) 100%
),
    linear-gradient(
  0deg,
  rgba(251, 250, 246, 0.42) 0%,
  rgba(251, 250, 246, 0.00) 42%
);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: min(1120px, 82vw);
  padding: clamp(78px, 10vw, 142px) clamp(28px, 8vw, 132px);
  transform: translateY(clamp(-140px, -12vh, -80px));
}

.hero-logo-landscape {
  position: absolute;
  z-index: 2;
  left: -60px;
  bottom: -225px;
  width: min(1400px, 76vw);
  height: auto;
  opacity: 0.90;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(0.98);
  transform: none;
  object-fit: contain;
  object-position: left bottom;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.82) 58%,
    rgba(0, 0, 0, 0.08) 100%
  );
}
.hero-subtitle {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero-copy h1,
.hero-title,
[data-i18n="hero.title"] {
  margin: 0;
  font-family: var(--font-display);
  color: var(--deep);
  font-size: clamp(3.1rem, 5.8vw, 6.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 1220px;
}

h2,
h3 {
  font-family: var(--font-main);
}

.hero-copy p:not(.hero-subtitle) {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.58;
  max-width: 780px;
}

.actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  min-width: 170px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
}

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

.button-secondary {
  border-color: #9ea9ad;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

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

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
}

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

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.data-card,
.callout {
  position: absolute;
  z-index: 3;
  color: var(--white);
  text-shadow: 0 1px 18px rgba(35, 50, 64, 0.35);
}

.data-card {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.data-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.data-card-chart {
  top: 72px;
  right: 11%;
  width: 240px;
}

.data-card-chart svg {
  width: 100%;
  height: auto;
}

.data-card-chart polyline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 4;
}

.data-card-chart circle {
  fill: var(--white);
}

.data-card-chart span,
.data-card-donut small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.data-card-donut {
  right: 9%;
  bottom: 84px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.donut {
  display: grid;
  width: 84px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 62%, rgba(255, 255, 255, 0.4) 62% 100%);
}

.donut::before {
  content: "";
  position: absolute;
  width: 52px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(47, 62, 76, 0.48);
}

.donut span {
  position: relative;
  font-weight: 700;
}

.callout {
  padding-left: 42px;
  font-weight: 800;
  font-size: 0.9rem;
}

.callout::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -62px;
  width: 1px;
  height: 84px;
  background: rgba(255, 255, 255, 0.72);
}

.callout::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
}

.callout-one {
  left: 38%;
  bottom: 88px;
}

.callout-two {
  right: 36%;
  top: 310px;
}

.section {
  padding: clamp(58px, 7vw, 96px) clamp(24px, 7vw, 112px);
}

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

.intro {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid var(--line);
}

.intro .section-heading {
  max-width: 1060px;
}

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

.principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  min-height: 132px;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.overview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(243, 245, 239, 0.82)),
    radial-gradient(circle at 88% 18%, rgba(215, 207, 121, 0.18), transparent 22rem);
  border-bottom: 1px solid var(--line);
}

.overview::after {
  content: "";
  position: absolute;
  right: clamp(22px, 7vw, 112px);
  top: 54px;
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  border: 1px solid rgba(113, 130, 152, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.overview-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  min-height: 225px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(217, 223, 220, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 56px rgba(47, 62, 76, 0.08);
}

.overview-card h3 {
  margin: 0;
  color: var(--deep);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.2;
}

.overview-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.56;
}

.overview-icon .line-icon {
  width: 68px;
  background: linear-gradient(145deg, rgba(223, 233, 223, 0.72), rgba(255, 255, 255, 0.9));
  border-color: rgba(96, 125, 100, 0.36);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.55);
}

.overview-icon .line-icon::before {
  width: 30px;
  height: 30px;
  border-width: 3px;
}

.seo-fallback {
  padding: 56px clamp(22px, 7vw, 112px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.seo-fallback h1,
.seo-fallback h2 {
  max-width: 880px;
  color: var(--deep);
}

.seo-fallback p,
.seo-fallback li {
  max-width: 960px;
  color: var(--muted);
  font-size: 1.04rem;
}

.principle h3,
.service-group h3,
.example-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.18;
}

.principle p,
.service-group li,
.example-card p,
.about-copy p {
  color: var(--muted);
}

.principle p {
  grid-column: 2;
  margin: -4px 0 0;
  font-size: 1rem;
}

.line-icon {
  display: inline-grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(96, 125, 100, 0.48);
  border-radius: 50%;
}

.line-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--sage);
  border-radius: 4px;
}

.line-icon-1::before {
  border-radius: 50% 50% 0 50%;
  transform: rotate(45deg);
}

.line-icon-2::before {
  width: 24px;
  height: 16px;
  border-width: 2px 0;
  border-radius: 0;
}

.line-icon-3::before {
  border-style: dashed;
  border-radius: 50%;
}

.line-icon-4::before {
  border-radius: 50%;
  border-top-color: transparent;
}

.line-icon-5::before {
  border-radius: 50%;
  box-shadow: inset 0 -7px 0 rgba(138, 161, 128, 0.3);
}

.line-icon-6::before {
  transform: rotate(45deg);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.approach-process {
  position: relative;
  overflow: hidden;
  padding: 0 0 clamp(58px, 7vw, 96px);
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, var(--paper-soft) 100%);
}

.approach-process h2 {
  color: var(--deep);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.approach-header {
  min-height: clamp(360px, 38vw, 520px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(24px, 7vw, 112px);
  border-bottom: 1px solid rgba(217, 223, 220, 0.9);
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.92) 0%, rgba(251, 250, 246, 0.75) 34%, rgba(251, 250, 246, 0.12) 62%, rgba(251, 250, 246, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(243, 245, 239, 0.12) 100%),
    var(--approach-bg) center / cover no-repeat;
}

.approach-copy {
  max-width: 820px;
}

.approach-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.56;
}

.approach-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 52px rgba(47, 62, 76, 0.11);
}

.approach-visual img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  opacity: 0.92;
}

.approach-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(35, 50, 64, 0.66);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 58px);
  padding-inline: clamp(24px, 7vw, 112px);
}

.process-step {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 14px;
  min-height: 258px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(217, 223, 220, 0.96);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(223, 233, 223, 0.72), rgba(215, 207, 121, 0.18));
  box-shadow: 0 14px 30px rgba(47, 62, 76, 0.055);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: auto -30px -72px auto;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(96, 125, 100, 0.18);
  border-radius: 50%;
  box-shadow:
    -22px -18px 0 -21px rgba(96, 125, 100, 0.16),
    -48px -40px 0 -47px rgba(215, 207, 121, 0.2);
  pointer-events: none;
}

.process-step::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--sage);
  opacity: 0.72;
}

.process-step p {
  max-width: none;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: left;
  color: var(--muted);
}

.process-step h3 {
  font-size: 1.12rem;
  text-align: left;
  color: var(--deep);
}

.approach {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(440px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.trajectory-copy h2 {
  color: var(--deep);
  font-size: clamp(2.15rem, 3.5vw, 3.5rem);
}

.trajectory-copy > p:not(.kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.question-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.question-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
}

.question-list span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint);
}

.question-list article:nth-child(2) span {
  background: var(--gold);
}

.question-list article:nth-child(3) span {
  background: #d6dee8;
}

.question-list h3 {
  margin: 0 0 6px;
  color: var(--sage-dark);
  font-weight: 500;
}

.trajectory-labels {
  gap: 14px;
}

.trajectory-labels article {
  align-items: center;
}

.trajectory-labels h3 {
  margin: 0;
  color: var(--deep);
}

.cone-figure {
  margin: 0;
  padding: clamp(12px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(47, 62, 76, 0.07);
}

.cone-figure img {
  width: 100%;
  border-radius: 10px;
}

.question-list p {
  margin: 0;
  color: var(--ink);
}

.trajectory-diagram {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.today {
  position: absolute;
  left: 0;
  top: 46%;
  z-index: 3;
  display: grid;
  width: 84px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--deep);
  font-weight: 800;
}

.future-shape {
  position: absolute;
  left: 70px;
  right: 180px;
  top: 38px;
  bottom: 42px;
  clip-path: polygon(0 49%, 24% 34%, 52% 22%, 100% 0, 88% 49%, 100% 100%, 54% 80%, 26% 66%);
  background:
    linear-gradient(180deg, rgba(215, 207, 121, 0.36), rgba(215, 207, 121, 0.18) 33%, rgba(138, 161, 128, 0.2) 34%, rgba(138, 161, 128, 0.3) 67%, rgba(113, 130, 152, 0.18) 68%);
  border-right: 2px dashed rgba(47, 62, 76, 0.35);
}

.future-line {
  position: absolute;
  left: 80px;
  right: 200px;
  top: 50%;
  height: 1px;
  background: rgba(47, 62, 76, 0.38);
  transform-origin: left;
}

.future-line.possible {
  transform: rotate(-18deg);
}

.future-line.plausible {
  transform: rotate(18deg);
}

.uncertainty,
.time {
  position: absolute;
  color: var(--deep);
  font-size: 0.85rem;
}

.uncertainty {
  left: 150px;
  top: 24px;
}

.time {
  left: 160px;
  bottom: 0;
}

.trajectory-diagram ul {
  position: absolute;
  right: 0;
  top: 80px;
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--deep);
  font-weight: 700;
}

.trajectory-diagram li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trajectory-diagram li span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.trajectory-diagram li:nth-child(2) span {
  background: var(--sage);
}

.trajectory-diagram li:nth-child(3) span {
  background: var(--blue);
}

.work {
  background: linear-gradient(180deg, var(--paper), var(--paper-soft));
  border-bottom: 1px solid var(--line);
}

.nbs {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  background: linear-gradient(180deg, #ffffff, var(--paper-soft));
  border-bottom: 1px solid var(--line);
}

.nbs-copy h2 {
  color: var(--deep);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.nbs-copy > p:not(.kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.nbs-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.nbs-copy li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.nbs-copy li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(138, 161, 128, 0.16);
}

.nbs-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.nbs-image img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

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

.section-heading.compact {
  margin-bottom: 18px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--deep);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.section-heading p:not(.kicker) {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.4vw, 1.24rem);
  line-height: 1.56;
}

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

.service-group {
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(47, 62, 76, 0.07);
}

.service-group ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  position: relative;
  padding-left: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.service-group li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.examples {
  padding: clamp(50px, 6vw, 84px) clamp(24px, 7vw, 112px);
  border-bottom: 1px solid var(--line);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 18px;
}

.example-card img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.example-card h3 {
  margin-top: 14px;
}

.example-card p {
  margin: 7px 0 0;
  font-size: 1rem;
  line-height: 1.48;
}

.about {
  display: grid;
  grid-template-columns: 180px minmax(320px, 1fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  background: linear-gradient(180deg, #ffffff, var(--paper-soft));
}

.about-image img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(47, 62, 76, 0.13);
}

.about-copy h2 {
  color: var(--deep);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.about-copy p {
  margin-top: 12px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.about-highlights {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-highlights li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 600;
}

.about-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(138, 161, 128, 0.16);
}

blockquote {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-style: italic;
  line-height: 1.35;
}

blockquote::before {
  content: "“";
  display: block;
  color: rgba(47, 62, 76, 0.22);
  font-size: 4rem;
  line-height: 0.5;
}

.contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  padding: clamp(52px, 7vw, 88px) clamp(24px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(35, 50, 64, 0.88), rgba(35, 50, 64, 0.58)),
    var(--contact-bg) center / cover no-repeat;
  color: var(--white);
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 50, 64, 0.04), rgba(35, 50, 64, 0.28));
  pointer-events: none;
}

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

.contact h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.contact p {
  max-width: 640px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-action {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 280px;
}

.contact-details {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--white);
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 20px clamp(24px, 7vw, 112px);
  background: var(--deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-meta {
  justify-self: center;
  text-align: center;
}

.footer-copyright {
  justify-self: end;
  text-align: right;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand strong {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 400;
}

.footer img {
  width: 142px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    flex-wrap: wrap;
  }

  .language-switch {
    justify-self: end;
  }

.approach,
.nbs {
  grid-template-columns: 1fr;
}

  .hero-visual {
  min-height: 100%;
}

.hero-visual img {
  min-height: 100%;
}

  .principle-row,
  .overview-row,
  .process-flow,
  .service-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 104px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 12px 18px;
  }

  .brand {
    width: 150px;
  }

  .brand img {
    height: 76px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .language-switch {
    justify-self: end;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(217, 223, 220, 0.9);
    font-size: 0.98rem;
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(217, 223, 220, 0.68);
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(251, 250, 246, 0.98) 0%,
        rgba(251, 250, 246, 0.96) 50%,
        rgba(251, 250, 246, 0.42) 64%,
        rgba(251, 250, 246, 0.04) 78%,
        rgba(251, 250, 246, 0.00) 100%
      );
  }

  .hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 34%;
    background: linear-gradient(
      180deg,
      rgba(251, 250, 246, 0.00) 0%,
      rgba(251, 250, 246, 0.22) 32%,
      rgba(251, 250, 246, 0.52) 72%,
      rgba(251, 250, 246, 0.34) 100%
    );
    pointer-events: none;
  }

  .hero-copy {
    max-width: 100%;
    padding: 76px 22px 64px;
    transform: translateY(-44px);
  }

  .hero-subtitle {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero h1,
  .hero-copy h1,
  .hero-title,
  [data-i18n="hero.title"] {
    font-size: clamp(2.45rem, 12vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .hero-copy p:not(.hero-subtitle) {
    margin-top: 20px;
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-logo-landscape {
    left: -96px;
    right: auto;
    bottom: -140px;
    width: 178vw;
    max-width: none;
    max-height: none;
    opacity: 0.72;
    filter: saturate(1.16) contrast(1.08);
    mix-blend-mode: normal;
    mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.92) 70%,
      rgba(0, 0, 0, 0.16) 100%
    );
  }

  .hero-visual {
    inset: auto 0 0;
    height: 50%;
    min-height: 0;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    display: block;
    height: 46%;
    background: linear-gradient(
      180deg,
      rgba(251, 250, 246, 1) 0%,
      rgba(251, 250, 246, 0.88) 24%,
      rgba(251, 250, 246, 0.42) 62%,
      rgba(251, 250, 246, 0) 100%
    );
    pointer-events: none;
  }

  .hero-visual img {
    min-height: 0;
    object-position: 50% 50%;
  }

  .data-card-chart,
  .callout {
    display: none;
  }

  .data-card-donut {
    right: 18px;
    bottom: 18px;
  }

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

  .hero .actions {
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }

  .hero .button {
    width: auto;
    flex: 1 1 0;
    min-height: 42px;
    min-width: 0;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .section {
    padding: 52px 22px;
  }

  .approach-process {
    padding: 0 0 52px;
  }

  .approach-header {
    min-height: 520px;
    padding: 70px 22px;
    background:
      linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.88) 56%, rgba(251, 250, 246, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(243, 245, 239, 0.14) 100%),
      var(--approach-bg) 58% center / cover no-repeat;
  }

  .principle-row,
  .overview-row,
  .approach-header,
  .process-flow,
  .service-groups,
  .example-grid,
  .about,
  .nbs {
    grid-template-columns: 1fr;
  }

  .principle {
    padding: 22px 0;
  }

  .approach-visual img {
    aspect-ratio: 1.4 / 1;
  }

  .process-step {
    min-height: 0;
  }

  .overview-card {
    grid-template-columns: 64px 1fr;
    min-height: 0;
    padding: 24px 20px;
  }

  .overview-icon .line-icon {
    width: 58px;
  }

  .overview-icon .line-icon::before {
    width: 26px;
    height: 26px;
  }

  .trajectory-diagram {
    min-height: 520px;
  }

  .future-shape {
    right: 40px;
  }

  .trajectory-diagram ul {
    top: auto;
    right: auto;
    bottom: 22px;
    left: 0;
  }

  .contact,
  .footer {
    align-items: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-meta,
  .footer-copyright {
    justify-self: center;
    text-align: center;
  }

  .contact-action {
    width: 100%;
    justify-items: stretch;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 8px;
    padding: 10px 14px;
  }

  .brand {
    width: 132px;
  }

  .brand img {
    height: 68px;
  }

  .menu-toggle {
    min-width: 42px;
    padding-inline: 10px;
  }

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

  .hero {
    min-height: 740px;
  }

  .hero-copy {
    padding: 66px 20px 56px;
    transform: translateY(-36px);
  }

  .hero h1,
  .hero-copy h1,
  .hero-title,
  [data-i18n="hero.title"] {
    font-size: clamp(2.25rem, 11.5vw, 3.7rem);
  }

  .hero-logo-landscape {
    left: -124px;
    bottom: -154px;
    width: 192vw;
    opacity: 0.72;
  }
}
