@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

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

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #0d1010;
  --green: #009c74;
  --green-deep: #006e53;
  --green-soft: #87c8b5;
  --brass: #b68a4a;
  --paper: #f3f0e9;
  --surface: #121616;
  --surface-2: #181d1c;
  --surface-3: #202624;
  --text: #f3f0e9;
  --muted: #a6aaa7;
  --line: rgba(243, 240, 233, 0.14);
  --line-strong: rgba(182, 138, 74, 0.42);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --display: "Cormorant Garamond", "Bodoni 72", "Bodoni MT", "Didot", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --brand-sans: "Montserrat", "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --max: 1600px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --surface: #f7f5ef;
  --surface-2: #ffffff;
  --surface-3: #e9e5dc;
  --text: #0d1010;
  --muted: #626864;
  --line: rgba(13, 16, 16, 0.14);
  --line-strong: rgba(138, 99, 42, 0.36);
  --shadow: 0 24px 70px rgba(40, 36, 30, 0.09);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background:
    repeating-linear-gradient(117deg, transparent 0 3px, rgba(255, 255, 255, 0.016) 4px),
    repeating-linear-gradient(31deg, transparent 0 5px, rgba(255, 255, 255, 0.012) 6px);
}

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

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

button {
  color: inherit;
}

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

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5.8rem);
}

h3 {
  line-height: 1.2;
}

::selection {
  background: var(--green);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--green);
  color: white;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 91%, transparent);
  backdrop-filter: blur(18px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  font-family: var(--brand-sans);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.12);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
}

.header-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  width: min(100% - 4rem, 1740px);
  min-height: 100px;
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  position: relative;
  display: block;
  width: 194px;
  height: 50px;
}

.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__light {
  opacity: 0;
}

html[data-theme="light"] .brand__dark {
  opacity: 0;
}

html[data-theme="light"] .brand__light {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.4rem, 2.2vw, 3rem);
}

.nav-link {
  position: relative;
  padding: 2.25rem 0 2.1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  bottom: 1.65rem;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--green);
  transition: transform 0.35s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-service {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  visibility: hidden;
  grid-template-columns: 0.75fr 1fr;
  width: 760px;
  border: 1px solid var(--line);
  opacity: 0;
  background: var(--surface-2);
  box-shadow: var(--shadow);
  transform: translate(-50%, 14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.nav-service:hover .mega-menu,
.nav-service:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mega-menu > div {
  padding: 2.5rem;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, transparent 0 53%, color-mix(in srgb, var(--green) 10%, transparent) 53% 54%, transparent 54%),
    var(--surface-3);
}

.mega-menu > div p {
  max-width: 18rem;
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.2;
}

.mega-menu nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mega-menu nav a {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

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

.mega-menu nav a:hover {
  color: var(--green-soft);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 42px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.language-switch a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}

.language-switch a:hover,
.language-switch a[aria-current="page"] {
  color: var(--text);
}

.language-switch a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--green);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, var(--green) var(--scroll, 0%), transparent 0);
  pointer-events: none;
}

.theme-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.theme-icon,
.theme-icon::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.theme-icon {
  top: 12px;
  left: 12px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--brass);
}

.theme-icon::after {
  top: -4px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: var(--surface);
  transition: transform 0.3s ease;
}

html[data-theme="light"] .theme-icon {
  background: var(--brass);
}

html[data-theme="light"] .theme-icon::after {
  transform: translate(8px, -8px);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-family: var(--brand-sans);
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.button::before {
  position: absolute;
  top: -120%;
  left: -35%;
  width: 20%;
  height: 340%;
  content: "";
  opacity: 0;
  background: rgba(255, 255, 255, 0.13);
  transform: rotate(18deg);
  transition: left 0.7s ease, opacity 0.2s ease;
}

.button:hover::before {
  left: 125%;
  opacity: 1;
}

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

.button--primary:hover {
  border-color: var(--green-deep);
  background: var(--green-deep);
}

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

.button--outline:hover {
  border-color: var(--brass);
  background: color-mix(in srgb, var(--brass) 8%, transparent);
}

.arrow {
  display: inline-block;
  color: var(--brass);
  font-size: 1.25em;
  font-weight: 300;
  transition: transform 0.3s ease;
}

a:hover .arrow,
button:hover .arrow {
  transform: translateX(6px);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: 670px;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 930px;
  padding:
    clamp(3rem, 4vw, 4.5rem)
    clamp(1.75rem, 3.2vw, 3.7rem)
    clamp(3rem, 4vw, 4.5rem)
    clamp(2rem, 4.6vw, 5.25rem);
  margin-left: max(0px, calc((100vw - 1760px) / 2));
}

.eyebrow {
  color: var(--green-soft);
  font-family: var(--brand-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 1.8rem 0 1.7rem;
  font-size: clamp(3.5rem, 4.15vw, 4.8rem);
  line-height: 0.96;
}

.hero-copy > p {
  max-width: 690px;
  margin-bottom: 1.7rem;
  color: #b5b7b4;
  font-size: clamp(1rem, 1.1vw, 1.22rem);
  line-height: 1.6;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.25rem 0 2rem;
  color: var(--green-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-family: var(--brand-sans);
}

.hero-trust i {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .button {
  min-width: 238px;
}

.hero-visual {
  --mx: 50%;
  --my: 42%;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  isolation: isolate;
  background: #111413;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(0, 156, 116, 0.07), transparent 24%),
    linear-gradient(90deg, rgba(13, 16, 16, 0.38), transparent 20%),
    linear-gradient(180deg, rgba(13, 16, 16, 0.04), rgba(13, 16, 16, 0.18));
}

@keyframes hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.045); }
}

.hero-brand-lockup {
  position: absolute;
  top: 50%;
  left: 61%;
  z-index: 3;
  width: min(34vw, 430px);
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-brand-lockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.54));
}

.hero-brand-lockup span {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 1rem auto 0;
  color: rgba(243, 240, 233, 0.7);
  font-family: var(--brand-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual-meta {
  position: absolute;
  right: 2rem;
  bottom: 1.6rem;
  left: 2rem;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  color: rgba(243, 240, 233, 0.43);
  font-family: var(--brand-sans);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--paper);
  font-family: var(--brand-sans);
}

.service-strip a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  min-height: 112px;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2.3vw, 2.6rem);
  border-right: 1px solid rgba(243, 240, 233, 0.12);
  transition: background 0.3s ease;
}

.service-strip a:last-child {
  border-right: 0;
}

.service-strip a:hover {
  background: #151b1a;
}

.service-strip strong {
  font-size: 0.93rem;
  font-weight: 500;
}

.service-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid var(--brass);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
  border: 1px solid var(--brass);
}

.service-icon::before {
  top: 6px;
  left: 6px;
  width: 7px;
  height: 7px;
}

.service-icon::after {
  right: 5px;
  bottom: 5px;
  width: 9px;
  height: 13px;
  border-width: 0 0 1px 1px;
}

.service-icon[data-service-icon="2"] {
  border-radius: 50% 50% 0 0;
}

.service-icon[data-service-icon="3"] {
  border-width: 0 0 1px 1px;
  transform: skewY(12deg);
}

.service-icon[data-service-icon="4"] {
  border: 0;
  border-bottom: 1px solid var(--brass);
}

.service-icon[data-service-icon="4"]::before {
  top: auto;
  bottom: 0;
  left: 2px;
  width: 6px;
  height: 15px;
  box-shadow: 9px -7px 0 -1px var(--surface), 9px -7px 0 0 var(--brass), 18px -14px 0 -1px var(--surface), 18px -14px 0 0 var(--brass);
}

.service-icon[data-service-icon="5"] {
  border-radius: 50% 50% 25% 25%;
}

.section {
  position: relative;
  width: min(100% - 4rem, var(--max));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 11rem) 0;
}

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

.section-label {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--brand-sans);
}

.section-label span {
  color: var(--brass);
}

.section-label p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.section-label p::before {
  width: 36px;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(4rem, 9vw, 11rem);
}

.intro-grid h2 {
  max-width: 930px;
  margin: 0;
}

.intro-grid > div:not(.k-motif) {
  padding-top: 1.2rem;
}

.lead {
  color: var(--text);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.45;
}

.intro-grid p:not(.lead),
.section-heading p,
.sticky-copy p,
.reporting-showcase > div > p,
.page-hero p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.5rem;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.k-motif {
  position: absolute;
  right: 30%;
  bottom: -11rem;
  z-index: -1;
  width: 370px;
  height: 280px;
  opacity: 0.09;
  overflow: hidden;
}

.k-motif span {
  position: absolute;
  width: 1px;
  height: 170%;
  background: var(--green);
}

.k-motif span:first-child {
  left: 18%;
}

.k-motif span:nth-child(2),
.k-motif span:nth-child(3) {
  left: 55%;
  transform-origin: top;
  transform: rotate(52deg);
}

.k-motif span:nth-child(3) {
  top: 43%;
  transform: rotate(128deg);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 10rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-heading h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 0.3rem;
}

.service-modules {
  border-top: 1px solid var(--line);
}

.service-module {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 0;
  padding: clamp(2.8rem, 4vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.service-module:nth-child(even) {
  padding-left: 0;
}

.service-number {
  color: var(--brass);
  font-family: var(--display);
  font-size: 1.5rem;
}

.service-module > div:last-child {
  display: grid;
  grid-template-areas:
    "title description"
    "link details";
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.5rem clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.service-module h3 {
  grid-area: title;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.service-module p,
.service-module ul {
  color: var(--muted);
}

.service-module > div:last-child > p:not(.service-use) {
  grid-area: description;
  margin: 0;
  line-height: 1.65;
}

.service-module ul {
  grid-area: details;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-module li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.service-module .text-link {
  grid-area: link;
  width: max-content;
  align-self: end;
}

.service-modules--compact .service-module > div:last-child {
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
}

.service-use {
  grid-area: details;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.why-section {
  width: 100%;
  max-width: none;
  padding-right: max(2rem, calc((100vw - var(--max)) / 2));
  padding-left: max(2rem, calc((100vw - var(--max)) / 2));
  background: var(--surface-2);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(4rem, 10vw, 12rem);
}

.sticky-copy {
  align-self: start;
  position: sticky;
  top: 150px;
}

.sticky-copy h2 {
  font-size: clamp(3rem, 4.8vw, 5.7rem);
}

.reason-list {
  border-top: 1px solid var(--line);
}

.reason-list article {
  display: grid;
  grid-template-columns: 70px 0.6fr 1fr;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1.4rem;
}

.reason-list span {
  color: var(--brass);
  font-family: var(--display);
}

.reason-list h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

.reason-list p {
  color: var(--muted);
}

.reason-list h3,
.reason-list p {
  margin: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-grid a {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  transition: color 0.3s ease, background 0.3s ease;
}

.audience-grid a:hover {
  background: var(--green);
  color: white;
}

.audience-grid span:first-child {
  color: var(--brass);
  font-family: var(--display);
}

.audience-grid strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.audience-grid .arrow {
  align-self: flex-end;
  margin-top: 1.5rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.timeline li {
  position: relative;
  padding: 3.5rem 3rem 0 0;
}

.timeline li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  content: "";
  background: var(--surface);
}

.timeline span {
  color: var(--brass);
  font-size: 0.75rem;
}

.timeline h3 {
  margin: 0.7rem 0;
  font-size: 1.2rem;
}

.timeline p {
  color: var(--muted);
  font-size: 0.9rem;
}

.reporting-showcase {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.reporting-showcase .section-label {
  margin-bottom: 3rem;
}

.reporting-showcase h2 {
  font-size: clamp(3.2rem, 4.7vw, 5.5rem);
}

.data-visual {
  min-height: 520px;
  padding: 2rem;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(0, 156, 116, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 156, 116, 0.035) 1px, transparent 1px),
    var(--black);
  background-size: 42px 42px;
  color: var(--paper);
  box-shadow: var(--shadow);
}

.data-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(243, 240, 233, 0.16);
  color: #8b9490;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.data-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
  border: 1px solid rgba(243, 240, 233, 0.12);
}

.data-kpis div {
  padding: 1.4rem;
  border-right: 1px solid rgba(243, 240, 233, 0.12);
}

.data-kpis div:last-child {
  border-right: 0;
}

.data-kpis small {
  display: block;
  color: #8b9490;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.data-kpis strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.chart {
  position: relative;
  display: flex;
  height: 230px;
  align-items: flex-end;
  justify-content: space-around;
  overflow: hidden;
  border-bottom: 1px solid rgba(243, 240, 233, 0.18);
}

.chart i {
  position: relative;
  z-index: 1;
  width: 7%;
  height: var(--h);
  border-top: 1px solid var(--brass);
  background: linear-gradient(180deg, rgba(0, 156, 116, 0.75), rgba(0, 156, 116, 0.08));
}

.chart span {
  position: absolute;
  top: 54%;
  left: -5%;
  width: 110%;
  height: 80px;
  border-top: 1px solid var(--brass);
  transform: skewY(-9deg);
}

.data-lines {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

.data-lines i {
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 240, 233, 0.14) 70%, transparent 70%);
}

.data-lines i:nth-child(2) {
  width: 82%;
}

.data-lines i:nth-child(3) {
  width: 55%;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.faq-layout > h2 {
  font-size: clamp(3rem, 4.2vw, 5rem);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--brass);
  transition: transform 0.3s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 3rem 1.8rem 0;
  color: var(--muted);
}

.contact-cta {
  display: flex;
  min-height: 690px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(243, 240, 233, 0.14);
  background:
    linear-gradient(135deg, transparent 0 39%, rgba(182, 138, 74, 0.22) 39% 39.1%, transparent 39.1%),
    linear-gradient(45deg, transparent 0 65%, rgba(0, 156, 116, 0.12) 65% 65.1%, transparent 65.1%),
    var(--black);
  color: var(--paper);
  text-align: center;
}

.contact-cta h2 {
  max-width: 1100px;
  margin: 2rem auto;
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.contact-cta p {
  max-width: 650px;
  margin-bottom: 2rem;
  color: #aeb1ae;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.7fr);
  min-height: 640px;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--paper);
}

.page-hero > div:first-child {
  padding: clamp(5rem, 9vw, 9rem) max(2rem, calc((100vw - var(--max)) / 2));
  padding-right: clamp(3rem, 7vw, 8rem);
}

.page-hero .section-label {
  margin-bottom: 4rem;
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 2rem;
  font-size: clamp(4.2rem, 7vw, 8.6rem);
}

.page-hero p {
  max-width: 760px;
  color: #afb2af;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.page-hero__art {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-left: 1px solid rgba(243, 240, 233, 0.14);
  background:
    repeating-linear-gradient(90deg, transparent 0 13px, rgba(255, 255, 255, 0.03) 14px 15px),
    linear-gradient(135deg, #151918, #090b0b);
}

.page-hero__art i {
  position: absolute;
  top: -20%;
  left: 14%;
  width: 1px;
  height: 150%;
  background: var(--brass);
  opacity: 0.7;
}

.page-hero__art i:nth-child(2),
.page-hero__art i:nth-child(3) {
  top: 50%;
  left: 47%;
  width: 100%;
  height: 1px;
  transform-origin: left;
  transform: rotate(-42deg);
}

.page-hero__art i:nth-child(3) {
  transform: rotate(42deg);
}

.page-hero__art span {
  position: absolute;
  right: 10%;
  bottom: 4%;
  color: rgba(0, 156, 116, 0.17);
  font-family: var(--display);
  font-size: clamp(16rem, 28vw, 34rem);
  line-height: 0.78;
}

.split-editorial > div:last-child,
.service-detail-intro > div:last-child,
.decision-panel > div:last-child {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(4rem, 10vw, 12rem);
}

.split-editorial h2,
.service-detail-intro h2,
.decision-panel h2 {
  margin: 0;
}

.editorial-cards,
.three-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.editorial-cards article,
.three-steps article {
  min-height: 350px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.editorial-cards span,
.three-steps span {
  color: var(--brass);
  font-family: var(--display);
}

.editorial-cards h3,
.three-steps h3 {
  margin-top: 8rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.editorial-cards p,
.three-steps p {
  color: var(--muted);
}

.value-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-bar span {
  padding: 2.8rem 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.use-case-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 10vw, 12rem);
  padding-right: clamp(2rem, 6vw, 6rem);
  padding-left: clamp(2rem, 6vw, 6rem);
  border: 1px solid var(--line-strong) !important;
  background: var(--surface-2);
}

.use-case-panel h2 {
  margin: 1rem 0 0;
  font-size: clamp(3rem, 4.3vw, 5rem);
}

.use-case-panel > p {
  align-self: center;
  color: var(--muted);
  font-size: 1.15rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.activity-grid article {
  min-height: 230px;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.activity-grid span {
  color: var(--brass);
  font-family: var(--display);
}

.activity-grid h3 {
  max-width: 320px;
  margin: 6rem 0 0;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
}

.mini-report {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 3rem;
}

.mini-report .section-label {
  align-self: start;
}

.mini-report .data-visual {
  min-height: 400px;
}

.segments-section .section-label {
  margin-bottom: 2rem;
}

.segment-list {
  border-top: 1px solid var(--line);
}

.segment-list article {
  display: grid;
  grid-template-columns: 18% 1fr;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}

.segment-list article:nth-child(even) {
  padding-left: 18%;
}

.segment-list span {
  color: var(--brass);
  font-family: var(--display);
}

.segment-list div {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 5rem;
}

.segment-list h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.3vw, 5rem);
}

.segment-list p {
  color: var(--muted);
}

.decision-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-panel li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.decision-panel li::before {
  margin-right: 1rem;
  color: var(--green);
  content: "—";
}

.pillar-list {
  border-top: 1px solid var(--line);
}

.pillar-list article {
  display: grid;
  grid-template-columns: 12% 0.7fr 1fr;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
}

.pillar-list span {
  color: var(--brass);
  font-family: var(--display);
}

.pillar-list h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0;
}

.pillar-list p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.architecture-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--line-strong) !important;
}

.architecture-art {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, #111514 0 18px, #181c1b 19px 21px),
    var(--black);
}

.architecture-art i {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 110%;
  height: 1px;
  background: var(--brass);
  transform: rotate(-42deg);
  transform-origin: left;
}

.architecture-art i:nth-child(2) {
  transform: rotate(42deg);
}

.architecture-art span {
  position: absolute;
  bottom: -5rem;
  left: 6%;
  color: rgba(0, 156, 116, 0.22);
  font-family: var(--display);
  font-size: 30rem;
  line-height: 1;
}

.architecture-statement > div:last-child {
  align-self: center;
  padding: clamp(3rem, 7vw, 8rem);
}

.architecture-statement h2 {
  margin: 2rem 0;
  font-size: clamp(3rem, 4vw, 5rem);
}

.architecture-statement p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(4rem, 10vw, 12rem);
}

.contact-layout > div:last-child > h2 {
  margin: 1.5rem 0 3rem;
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.contact-person h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0;
}

.role {
  color: var(--green-soft);
}

.contact-person dl {
  margin-top: 4rem;
}

.contact-person dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-person dt {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-person dd {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 1.4rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
}

.contact-form label > span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  transition: border-color 0.25s ease;
}

.contact-form input,
.contact-form select {
  height: 56px;
}

.contact-form textarea {
  min-height: 140px;
  padding-top: 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form select option {
  background: var(--surface-2);
  color: var(--text);
}

.contact-form .checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 0.9rem;
}

.contact-form .checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--green);
}

.contact-form .checkbox span {
  text-transform: none;
  letter-spacing: 0;
}

.contact-form .checkbox a {
  border-bottom: 1px solid var(--line-strong);
}

.contact-form .button {
  width: max-content;
  margin-top: 1rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.75rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.map-section {
  width: 100%;
  max-width: none;
  padding-right: max(2rem, calc((100vw - var(--max)) / 2));
  padding-left: max(2rem, calc((100vw - var(--max)) / 2));
  background: var(--surface-2);
}

.map-consent {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--black);
  color: var(--paper);
}

.map-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    linear-gradient(27deg, transparent 46%, var(--brass) 46% 46.2%, transparent 46.2%),
    linear-gradient(143deg, transparent 61%, var(--green) 61% 61.2%, transparent 61.2%),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255, 255, 255, 0.08) 81px),
    repeating-linear-gradient(0deg, transparent 0 80px, rgba(255, 255, 255, 0.08) 81px);
}

.map-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 4rem, 720px);
  padding: clamp(3rem, 7vw, 7rem);
}

.map-copy h2 {
  margin: 2rem 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.map-copy p {
  color: #aeb1ae;
}

.map-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.map-consent iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.legal-content {
  max-width: 960px;
}

.legal-content h2 {
  margin: 4rem 0 1.2rem;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
}

.legal-note {
  margin-top: 4rem;
  padding: 1.5rem;
  border-left: 2px solid var(--brass);
  background: var(--surface-2);
}

.thank-you {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 5rem 2rem;
  background:
    linear-gradient(135deg, transparent 0 59%, rgba(182, 138, 74, 0.18) 59% 59.1%, transparent 59.1%),
    var(--black);
  color: var(--paper);
  text-align: center;
}

.thank-you div {
  max-width: 900px;
}

.thank-you h1 {
  margin: 2rem 0;
  font-size: clamp(4rem, 8vw, 8rem);
}

.thank-you p {
  color: #afb2af;
}

.site-footer {
  border-top: 1px solid rgba(243, 240, 233, 0.14);
  background: #090b0b;
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.85fr 0.9fr;
  width: min(100% - 4rem, var(--max));
  margin: 0 auto;
  padding: 6rem 0;
  gap: clamp(2.5rem, 6vw, 7rem);
}

.footer-brand .brand {
  margin-bottom: 2rem;
}

.footer-brand > p {
  max-width: 390px;
  color: #9da19e;
}

.footer-main h2 {
  margin-bottom: 1.5rem;
  color: #7e8480;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) > a {
  display: block;
  padding: 0.36rem 0;
  color: #c7cac7;
  font-size: 0.88rem;
}

.footer-main > div:not(.footer-brand) > p {
  color: #c7cac7;
  font-size: 0.88rem;
}

.footer-main span {
  color: #7e8480;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: min(100% - 4rem, var(--max));
  margin: 0 auto;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(243, 240, 233, 0.1);
  color: #737976;
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1500px) {
  .header-inner {
    grid-template-columns: 210px 1fr auto;
    width: min(100% - 2.5rem, 1740px);
    gap: 1.3rem;
  }

  .brand {
    width: 170px;
    height: 44px;
  }

  .desktop-nav {
    gap: 1.15rem;
  }

  .header-cta {
    min-height: 50px;
    gap: 1.2rem;
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 0.82rem;
  }

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

  .hero-actions .button {
    min-width: 210px;
  }

  .audience-grid strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .desktop-nav,
  .header-tools > .language-switch,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    height: 42px;
    align-items: center;
    gap: 0.8rem;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 24px;
    height: 1px;
    content: "";
    background: currentColor;
  }

  .menu-toggle i::after {
    transform: translateY(7px);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    visibility: hidden;
    grid-template-rows: auto auto auto auto;
    align-content: start;
    padding: 1.5rem 2rem 2rem;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--black);
    color: var(--paper);
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu .brand__dark {
    opacity: 1;
  }

  .mobile-menu .brand__light {
    opacity: 0;
  }

  .mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(243, 240, 233, 0.14);
  }

  .mobile-menu__head button {
    min-height: 42px;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(243, 240, 233, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu > nav {
    display: flex;
    flex-direction: column;
    padding: 2rem 0 1.5rem;
  }

  .mobile-menu > nav a {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    font-family: var(--display);
    font-size: clamp(2.3rem, 6vw, 4.3rem);
    line-height: 1.05;
  }

  .mobile-menu__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(243, 240, 233, 0.14);
  }

  .mobile-menu__services a {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem 0.8rem 0;
    border-bottom: 1px solid rgba(243, 240, 233, 0.14);
    color: #b6bab6;
    font-size: 0.85rem;
  }

  .mobile-menu__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding-top: 1.5rem;
    color: #b6bab6;
    font-size: 0.8rem;
  }

  .mobile-menu__foot button {
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(0, 156, 116, 0.7);
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu__foot .language-switch {
    padding: 0 0.8rem;
    border: 1px solid rgba(243, 240, 233, 0.2);
    color: #b6bab6;
  }

  .mobile-menu__foot .language-switch a:hover,
  .mobile-menu__foot .language-switch a[aria-current="page"] {
    color: #fff;
  }

  body.menu-open {
    overflow: hidden;
  }

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

  .hero-copy {
    padding-right: 3rem;
    padding-left: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 5.5vw, 5.2rem);
  }

  .service-strip {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(240px, 1fr));
  }

  .section,
  .footer-main,
  .footer-bottom {
    width: min(100% - 3rem, var(--max));
  }

  .intro-grid,
  .why-layout,
  .reporting-showcase,
  .faq-layout {
    gap: 4rem;
  }

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

  .audience-grid a {
    min-height: 250px;
  }

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

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

@media (max-width: 900px) {
  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    max-width: none;
    padding: 6rem 1.5rem 4rem;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.5rem, 9vw, 6rem);
  }

  .hero-visual {
    min-height: 520px;
    border-top: 1px solid rgba(243, 240, 233, 0.14);
    border-left: 0;
  }

  .hero-brand-lockup {
    left: 57%;
    width: min(66vw, 460px);
  }

  .intro-grid,
  .section-heading,
  .why-layout,
  .reporting-showcase,
  .faq-layout,
  .split-editorial > div:last-child,
  .service-detail-intro > div:last-child,
  .decision-panel > div:last-child,
  .use-case-panel,
  .contact-layout,
  .architecture-statement {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .service-module,
  .service-module:nth-child(even) {
    grid-template-columns: 90px 1fr;
    padding-left: 0;
  }

  .service-module > div:last-child,
  .service-modules--compact .service-module > div:last-child {
    grid-template-areas:
      "title"
      "description"
      "details"
      "link";
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline li {
    padding: 0 2rem 0 1.8rem;
    border-left: 1px solid var(--line-strong);
  }

  .timeline li::before {
    top: 0;
    left: -6px;
  }

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

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

  .segment-list article,
  .segment-list article:nth-child(even) {
    grid-template-columns: 90px 1fr;
    padding-left: 0;
  }

  .segment-list div {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .architecture-art {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .page-hero__art {
    min-height: 320px;
    border-top: 1px solid rgba(243, 240, 233, 0.14);
    border-left: 0;
  }

  .page-hero > div:first-child {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .mini-report {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    width: calc(100% - 2rem);
  }

  .header-tools {
    gap: 0.4rem;
  }

  .header-tools .theme-toggle {
    display: block;
    width: 38px;
    height: 38px;
  }

  .header-tools > .language-switch {
    display: flex;
    min-height: 38px;
    padding: 0 0.45rem;
    border: 1px solid var(--line);
    gap: 0.32rem;
    font-size: 0.65rem;
  }

  .brand {
    width: 132px;
    height: 40px;
  }

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

  .mobile-menu {
    padding: 1.2rem 1rem 1.5rem;
  }

  .mobile-menu > nav a {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .mobile-menu__services {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 4.5rem;
  }

  .hero h1 {
    margin-top: 1.4rem;
    font-size: clamp(3.2rem, 14vw, 4.7rem);
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-trust {
    align-items: flex-start;
    font-size: 0.73rem;
  }

  .hero-trust i {
    flex: 0 0 30px;
    margin-top: 0.7rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-brand-lockup {
    left: 54%;
    width: min(78vw, 390px);
  }

  .hero-brand-lockup span {
    font-size: 0.57rem;
    letter-spacing: 0.13em;
  }

  .hero-visual-meta {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .service-strip {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
  }

  .service-strip a {
    min-height: 88px;
  }

  .section,
  .footer-main,
  .footer-bottom {
    width: calc(100% - 2rem);
  }

  .section {
    padding: 5.5rem 0;
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .section-label {
    grid-template-columns: 55px 1fr;
    margin-bottom: 3rem;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .service-module,
  .service-module:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 3rem 0;
    gap: 1.2rem;
  }

  .service-module h3 {
    font-size: 2.8rem;
  }

  .service-module .text-link {
    grid-area: link;
  }

  .reason-list article {
    grid-template-columns: 50px 1fr;
  }

  .reason-list p {
    grid-column: 2;
  }

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

  .audience-grid a {
    min-height: 190px;
  }

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

  .reporting-showcase {
    gap: 2rem;
  }

  .data-visual {
    min-height: 420px;
    padding: 1rem;
  }

  .data-kpis div {
    padding: 0.9rem;
  }

  .chart {
    height: 190px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .contact-cta {
    min-height: 610px;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contact-cta h2 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero > div:first-child {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .page-hero h1 {
    font-size: clamp(3.8rem, 16vw, 5.8rem);
  }

  .page-hero .section-label {
    margin-bottom: 3rem;
  }

  .page-hero__art {
    min-height: 240px;
  }

  .editorial-cards,
  .three-steps,
  .activity-grid,
  .value-bar {
    grid-template-columns: 1fr;
  }

  .editorial-cards article,
  .three-steps article {
    min-height: 280px;
  }

  .editorial-cards h3,
  .three-steps h3 {
    margin-top: 5rem;
  }

  .use-case-panel {
    width: calc(100% - 2rem);
    padding: 3rem 1.4rem;
  }

  .activity-grid article {
    min-height: 190px;
  }

  .activity-grid h3 {
    margin-top: 4rem;
  }

  .segment-list article,
  .segment-list article:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-list article {
    grid-template-columns: 45px 1fr;
  }

  .pillar-list p {
    grid-column: 2;
  }

  .architecture-statement {
    width: calc(100% - 2rem);
  }

  .architecture-statement > div:last-child {
    padding: 3rem 1.5rem;
  }

  .architecture-art {
    min-height: 300px;
  }

  .architecture-art span {
    bottom: -2rem;
    font-size: 19rem;
  }

  .contact-person dl div {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

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

  .contact-form .button {
    width: 100%;
  }

  .map-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .map-consent {
    min-height: 620px;
  }

  .map-copy {
    width: 100%;
    padding: 4rem 1.4rem;
  }

  .map-copy .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 4.5rem 0;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
