:root {
  --bg: #f4f4f4;
  --surface: #ffffff;
  --surface-muted: #f6f6f6;
  --surface-strong: #e7e7e7;
  --ink: #0f1112;
  --ink-soft: #5f656b;
  --line: #d6dadd;
  --brand: #111111;
  --brand-strong: #000000;
  --accent: #2f3337;
  --accent-soft: rgba(17, 17, 17, 0.08);
  --hero-bg: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.07);
  --topbar-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.94);
  --button-bg: #000000;
  --button-text: #ffffff;
  --button-hover-bg: #24272a;
  --button-hover-text: #ffffff;
  --skip-bg: #ffffff;
  --skip-text: #000000;
  --panel-muted: #f8f8f8;
  --placeholder: #87958f;
  --focus-outline: rgba(17, 17, 17, 0.18);
  --hero-overlay: linear-gradient(90deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.54) 52%, rgba(10, 10, 10, 0.28) 100%);
  --hero-grid-line: rgba(255, 255, 255, 0.14);
  --success: #2c3237;
  --error: #b33d2f;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --max-width: 1360px;
}

html[data-theme="dark"] {
  --bg: #0b0c0d;
  --surface: #111315;
  --surface-muted: #171a1d;
  --surface-strong: #1e2227;
  --ink: #f3f4f5;
  --ink-soft: #b4bcc4;
  --line: #2b3138;
  --brand: #f3f4f5;
  --brand-strong: #ffffff;
  --accent: #d6dbe0;
  --accent-soft: rgba(255, 255, 255, 0.1);
  --hero-bg: linear-gradient(180deg, #121417 0%, #0a0b0d 100%);
  --shadow-sm: 0 14px 30px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 24px 56px rgba(0, 0, 0, 0.42);
  --topbar-bg: #0f1113;
  --header-bg: rgba(15, 17, 19, 0.92);
  --button-bg: #ffffff;
  --button-text: #0f1112;
  --button-hover-bg: #d9dde1;
  --button-hover-text: #0f1112;
  --skip-bg: #ffffff;
  --skip-text: #000000;
  --panel-muted: #14181b;
  --placeholder: #8d98a4;
  --focus-outline: rgba(255, 255, 255, 0.18);
  --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 56%, rgba(0, 0, 0, 0.34) 100%);
  --hero-grid-line: rgba(255, 255, 255, 0.12);
  --success: #d5dce2;
  --error: #ff9383;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  color-scheme: light;
  line-height: 1.65;
  overflow-x: hidden;
}
html[data-theme="dark"] body { color-scheme: dark; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: 0; }
p { margin: 0; }
figure { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }
a[href],
button,
[role="button"] { cursor: pointer; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1200;
  padding: 12px 16px;
  border: 1px solid var(--skip-text);
  border-radius: var(--radius-sm);
  background: var(--skip-bg);
  box-shadow: var(--shadow-sm);
  color: var(--skip-text);
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
}

.site-shell { min-height: 100vh; }
.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--topbar-bg);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.topbar-inner,
.nav-inner,
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-inner {
  padding: 12px 0;
  flex-wrap: wrap;
}
.topbar-list,
.inline-links,
.footer-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  flex-wrap: wrap;
}
.topbar-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
}
.topbar a,
.footer a,
.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
}
.nav-inner { padding: 18px 0; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 190px; height: auto; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--brand);
  background: var(--surface-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  position: relative;
  color: var(--ink);
  font-weight: 700;
  transition: opacity 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  opacity: 0.82;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lang-switch a,
.lang-switch .active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 30px;
  padding: 0 10px;
}
.lang-switch a {
  color: var(--ink-soft);
}
.lang-switch a:hover,
.lang-switch a:focus-visible {
  background: var(--surface-muted);
  color: var(--ink);
}
.lang-switch .active {
  background: var(--button-bg);
  color: var(--button-text);
}
.topbar .lang-switch {
  padding: 4px;
}
.topbar .inline-links {
  justify-content: flex-end;
  gap: 10px;
}
.topbar .inline-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 600;
}
.topbar .inline-links a:hover,
.topbar .inline-links a:focus-visible {
  border-color: var(--line);
  background: var(--surface-muted);
  color: var(--ink);
}
.topbar-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 14px;
  height: 14px;
  line-height: 0;
  color: var(--ink-soft);
  flex: 0 0 auto;
}
.topbar-link-icon svg {
  display: block;
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.topbar-link-label {
  line-height: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--brand);
  background: var(--surface-muted);
}
.theme-toggle-label {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.theme-toggle-track {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  overflow: hidden;
}
.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: var(--button-bg);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.theme-toggle.is-dark .theme-toggle-thumb {
  transform: translateX(20px);
}
.theme-toggle.is-dark .theme-toggle-label-dark,
.theme-toggle:not(.is-dark) .theme-toggle-label-light {
  color: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--ink);
}
.page-hero {
  border-bottom: 1px solid var(--line);
  background-position: calc(50% + var(--hero-shift-x, 0px)) calc(50% + var(--hero-shift-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position:
    calc(50% + var(--hero-shift-x, 0px))
    calc(50% + var(--hero-shift-y, 0px));
  opacity: 0.28;
  pointer-events: none;
}
.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 88px 0 80px;
}
.page-hero-enhanced .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: end;
  gap: 40px;
}
.page-hero-copy {
  max-width: 840px;
}
.page-hero-sidecar {
  justify-self: end;
  align-self: end;
  width: min(100%, 360px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 9, 10, 0.34);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translate3d(var(--hero-panel-shift-x, 0px), var(--hero-panel-shift-y, 0px), 0);
  transition: transform 0.18s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.page-hero-sidecar-eyebrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
}
.page-hero-sidecar p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}
.hero-consulting {
  background-image: none !important;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: stretch;
  gap: 44px;
}
.hero-copy {
  max-width: 720px;
  padding-top: 18px;
}
.hero-copy h1,
.page-hero h1 {
  font-size: clamp(3.1rem, 5.2vw, 5.4rem);
  line-height: 0.96;
}
.hero-consulting .hero-copy h1 {
  font-size: clamp(2.7rem, 4.5vw, 4.55rem);
  line-height: 0.98;
}
.hero-copy p,
.page-hero p {
  margin-top: 24px;
  max-width: 700px;
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.page-hero p,
.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.page-hero .eyebrow {
  color: #ffffff;
}
.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
}
.hero-visual {
  display: block;
}
.hero-panel {
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.hero-panel h2 {
  margin-top: 6px;
  font-size: 1.48rem;
  line-height: 1.15;
}
.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.hero-stat {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.hero-stat strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--brand-strong);
}
.hero-stat span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.cta-row-paired {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.cta-row-paired > a,
.cta-row-paired > button {
  width: 100%;
  min-width: 0;
}
.hero-panel-actions {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.button,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 184px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.button {
  background: var(--button-bg);
  border-color: var(--button-bg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  color: var(--button-text);
}
.button:hover,
.button:focus-visible {
  background: var(--button-hover-bg);
  border-color: var(--button-hover-bg);
  color: var(--button-hover-text);
  transform: translateY(-1px);
}
.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--brand);
  background: var(--surface-muted);
  color: var(--brand);
  transform: translateY(-1px);
}
.button-link {
  min-width: 0;
  padding-inline: 0;
  color: var(--brand);
}
.button-link:hover,
.button-link:focus-visible {
  color: var(--brand-strong);
  text-decoration: underline;
}

section { padding: 88px 0; }
.section-intro {
  max-width: none;
  margin-bottom: 36px;
}
.section-intro-wide {
  max-width: 1240px;
}
.section-intro h2 {
  margin-top: 8px;
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  line-height: 1.04;
}
.section-intro p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}
.section-intro-wide p {
}
.section-intro-tight { margin-bottom: 24px; }

.legal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 32px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 20px;
}
.legal-card,
.legal-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.legal-card {
  padding: 28px;
}
.legal-content {
  display: grid;
  gap: 22px;
}
.legal-section {
  padding: 34px;
}
.legal-section h2 {
  font-size: 1.42rem;
  line-height: 1.08;
}
.legal-section h3 {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.2;
}
.legal-section p,
.legal-section li {
  color: var(--ink-soft);
}
.legal-section p + p,
.legal-section p + ul,
.legal-section ul + p,
.legal-section ul + ul,
.legal-section .legal-note,
.legal-section h3 + p,
.legal-section h3 + ul {
  margin-top: 14px;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.legal-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.legal-list li {
  position: relative;
  padding-left: 18px;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}
.legal-nav {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.legal-nav a {
  font-weight: 700;
  text-decoration: none;
}
.legal-nav a:hover,
.legal-nav a:focus-visible {
  text-decoration: underline;
}
.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  background: var(--surface-muted);
}
.legal-contact {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.legal-contact a {
  font-weight: 700;
  text-decoration: none;
}
.legal-contact a:hover,
.legal-contact a:focus-visible {
  text-decoration: underline;
}

body.cookie-banner-open {
  padding-bottom: 208px;
}
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1150;
  width: min(460px, calc(100% - 28px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(17, 17, 17, 0.98);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}
.cookie-banner-title {
  font-size: 1.08rem;
}
.cookie-banner-close {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  cursor: pointer;
}
.cookie-banner p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.cookie-banner .button {
  min-width: 0;
  box-shadow: none;
}
.cookie-banner .button-secondary {
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
}
.cookie-banner .button-secondary:hover,
.cookie-banner .button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
}
.cookie-banner-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
.cookie-banner-link:hover,
.cookie-banner-link:focus-visible {
  text-decoration: underline;
}
.footer-legal-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.footer-legal-button:hover,
.footer-legal-button:focus-visible {
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(17, 17, 17, 0.94);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  background: #000000;
}
.back-to-top-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.back-to-top-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.back-to-top-label {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

body.cookie-banner-open .back-to-top {
  bottom: 236px;
}

.stats-grid,
.services-grid,
.values-grid,
.contact-grid,
.story-grid,
.two-up,
.detail-grid,
.timeline,
.contact-form-wrap,
.form-grid,
.footer-columns,
.advisory-grid,
.summary-strip {
  display: grid;
  gap: 24px;
}

.service-card,
.value-card,
.contact-card,
.panel,
.timeline-item,
.stat,
.summary-card,
.quote-panel,
.form-panel {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.service-card,
.value-card,
.contact-card,
.panel,
.timeline-item,
.summary-card {
  display: flex;
  flex-direction: column;
}

.value-card,
.contact-card,
.panel,
.timeline-item {
  border-top: 4px solid var(--brand);
}

.section-split { background: var(--surface-muted); }
.executive-band { background: var(--surface-muted); }
.accent-band { background: var(--surface-strong); }
.section-frame {
  border-top: 1px solid var(--line);
}
.cta-banner {
  background: linear-gradient(135deg, #101112 0%, #1a1c1f 100%);
  color: #ffffff;
}
.cta-banner .eyebrow,
.cta-banner h2,
.cta-banner p { color: #ffffff; }
.cta-banner p { color: rgba(255, 255, 255, 0.84); }

.story-grid,
.two-up {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}
.story-grid-wide {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
}
.story-copy h2,
.story-copy h3,
.panel h3,
.service-card h3,
.value-card h3,
.contact-card h3,
.timeline-item h3 {
  line-height: 1.12;
}
.story-copy p,
.panel p,
.service-card p,
.value-card p,
.contact-card p,
.timeline-item p,
.footer p,
.footer address,
.lede,
.checklist li,
.summary-card p { color: var(--ink-soft); }
.panel h3 + p,
.value-card h3 + p,
.contact-card h3 + p,
.timeline-item h3 + p {
  margin-top: 14px;
}

.story-media {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story-grid,
.about-credentials-grid {
  align-items: stretch;
  gap: 36px;
}
.about-story-copy,
.about-credentials-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}
.about-credentials-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 44px;
}
.about-credentials-copy {
  gap: 22px;
}
.about-story-copy .eyebrow,
.about-credentials-copy .eyebrow {
  margin-bottom: 0;
}
.about-summary-list,
.about-summary-icons {
  max-width: 620px;
  margin-top: 4px;
}
.about-summary-icons li {
  color: var(--ink-soft);
}
.about-summary-icons .list-icon {
  color: var(--brand-strong);
}
.about-credentials-icons {
  max-width: 660px;
  margin-top: 2px;
}
.about-credentials-icons li {
  color: var(--ink-soft);
}
.about-credentials-icons .list-icon {
  color: var(--brand-strong);
}
.about-summary-list {
  gap: 12px;
}
.about-story-media,
.about-credentials-media {
  min-height: 500px;
  background: #111111;
}
.about-principles .section-intro,
.about-capabilities .section-intro {
  margin-bottom: 40px;
}
.about-principles-grid {
  gap: 28px;
  align-items: stretch;
}
.about-principles .panel,
.about-capabilities .service-card,
.about-values-grid .value-card {
  padding: 32px;
}
.about-capabilities-grid,
.about-values-grid {
  gap: 28px;
}
.about-credentials-copy h2 {
}
.about-credentials-copy p {
  max-width: 62ch;
}
.about-credentials-grid {
  margin-bottom: 38px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
}
.feature-band-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.feature-band-spotlight {
  border-color: #111111;
  background: #111111;
  box-shadow: none;
}
.feature-band-spotlight .eyebrow,
.feature-band-spotlight h3 {
  color: #ffffff;
}
.feature-band-spotlight p {
  color: rgba(255, 255, 255, 0.74);
}
.feature-band-spotlight .button {
  border-color: rgba(255, 255, 255, 0.5);
  background: #ffffff;
  color: #111111;
  box-shadow: none;
}
.feature-band-spotlight .button:hover,
.feature-band-spotlight .button:focus-visible {
  background: #e7e7e7;
  border-color: #e7e7e7;
}
.feature-band-spotlight .button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
}
.feature-band-spotlight .button-secondary:hover,
.feature-band-spotlight .button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}
.feature-band-copy h3 {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1.04;
}
.feature-band-copy p {
  margin-top: 18px;
  color: var(--ink-soft);
}
.feature-band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.image-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.image-feature-media {
  aspect-ratio: 16 / 10;
  min-height: 240px;
}
.image-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-feature-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  flex: 1;
  padding: 22px 22px 24px;
}
.image-feature-copy h3 {
  min-height: 2.65rem;
  margin: 0;
  font-size: 1.2rem;
}
.image-feature-copy p {
  margin-top: 0;
  min-height: 3.4rem;
  color: var(--ink-soft);
}

.panel {
  padding: 30px;
  background: var(--surface);
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  padding: 30px;
  border-top: 4px solid var(--brand);
}
.service-card-head {
  display: grid;
  gap: 18px;
}
.service-card-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--brand-strong);
}
.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.service-card .eyebrow { margin-bottom: 14px; }
.service-card p {
  margin-top: 14px;
  flex: 1;
}
.services-grid-note {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 840px;
}
.service-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}
.service-link {
  margin-top: auto;
  color: var(--brand);
  font-weight: 700;
}

.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f3f3f3);
}
.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-strong);
}
.stat span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
}

.checklist,
.capability-list,
.summary-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.checklist li,
.capability-list li,
.summary-list li {
  position: relative;
  padding-left: 20px;
}
.checklist li::before,
.capability-list li::before,
.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}
.capability-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.icon-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.icon-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.icon-list .list-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--brand);
}
.icon-list .list-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
.process-list {
  max-width: 760px;
}
.capability-icon-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.timeline-item { padding: 28px; }
.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--brand-strong);
  font-weight: 700;
}

.values-grid,
.contact-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contact-routes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.value-card,
.contact-card { padding: 26px; }
.contact-card {
  gap: 18px;
}
.contact-card p { margin-top: 10px; }
.contact-card-head {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.contact-card-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--brand-strong);
}
.contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.contact-card-copy {
  display: grid;
  gap: 8px;
}
.contact-card-copy p {
  margin-top: 0;
}
.contact-card-links {
  display: grid;
  gap: 12px;
  margin-top: auto;
}
.contact-method-group {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.contact-method-group:first-child {
  padding-top: 0;
  border-top: 0;
}
.contact-method-label {
  display: inline-block;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-card .contact-method-link {
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}
.contact-card .contact-method-link:hover,
.contact-card .contact-method-link:focus-visible {
  text-decoration: underline;
}
.contact-card .contact-method-subtext {
  margin-top: 0;
  font-size: 0.95rem;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--ink); }
.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.advisory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.related-support-stack {
  display: grid;
  gap: 24px;
}
.related-support-media {
  min-height: 320px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.related-support-media img {
  object-position: center;
}
.services-support-icons {
  max-width: 780px;
}
.quote-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border-left: 4px solid var(--brand);
}
.quote-panel-wide {
  margin-bottom: 28px;
}
.quote-panel blockquote {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.3;
  color: var(--ink);
}

.summary-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.summary-card {
  padding: 24px;
  border-top: 4px solid var(--brand);
  background: linear-gradient(180deg, var(--surface), var(--surface-muted));
}
.summary-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-form-wrap {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: 28px;
}
.contact-hero {
  background-position: center 30%;
}
.form-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
}
.contact-alert {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  background: var(--panel-muted);
}
.contact-alert strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.12;
}
.contact-alert p {
  margin-top: 8px;
  color: var(--ink-soft);
}
.contact-alert-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--brand-strong);
}
.contact-alert-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
form[data-contact-form] {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.field-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field,
.field-full {
  display: grid;
  gap: 8px;
}
.field-full { grid-column: 1 / -1; }
label {
  font-weight: 700;
  color: var(--ink);
}
input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}
select {
  appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--placeholder) 50%),
    linear-gradient(135deg, var(--placeholder) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
select:invalid {
  color: var(--placeholder);
}
select option {
  color: var(--ink);
}
input::placeholder,
textarea::placeholder { color: var(--placeholder); }
textarea {
  min-height: 180px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
}
.form-note,
.status-message {
  margin-top: 2px;
  font-size: 0.95rem;
}
.status-message {
  min-height: 1.5em;
  font-weight: 700;
}
.status-message[data-state] {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.status-message[data-state="success"] { color: var(--success); }
.status-message[data-state="error"] { color: var(--error); }
.sidebar-stack {
  display: grid;
  gap: 20px;
}
.sidebar-stack .icon-list {
  margin-top: 18px;
}
.sidebar-stack .panel p + p {
  margin-top: 12px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #111111;
  color: rgba(255, 255, 255, 0.7);
}
.footer a:hover,
.footer a:focus-visible {
  color: #ffffff;
}

.cta-banner .button {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}
.cta-banner .button:hover,
.cta-banner .button:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: #1b1d20;
}
.cta-banner .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
}
.cta-banner .button-secondary:hover,
.cta-banner .button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}
.footer-top {
  padding: 52px 0 34px;
  align-items: start;
  gap: 56px;
}
.footer-brand {
  max-width: 340px;
}
.footer-brand img {
  width: 210px;
  margin-bottom: 18px;
}
.footer-social-list {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  line-height: 0;
  transition: color 0.2s ease;
}
.footer-social-link:hover {
  color: #ffffff;
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-columns {
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.footer-columns > div {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer h3 {
  color: #ffffff;
  font-size: 1rem;
}
.footer a,
.footer address,
.footer p {
  color: inherit;
}
.footer-link-list {
  display: grid;
  gap: 10px;
}
.footer-contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.footer-contact-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.92);
}
.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.footer-contact-list address,
.footer-contact-list a {
  color: inherit;
}
.footer-contact-list address {
  margin: 0;
}
.footer address { font-style: normal; }
.footer-bottom {
  padding: 18px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.button-secondary:focus-visible,
.button-link:focus-visible,
.site-nav a:focus-visible,
.lang-switch a:focus-visible,
.theme-toggle:focus-visible,
.topbar .inline-links a:focus-visible,
.footer-legal-button:focus-visible,
.cookie-banner-close:focus-visible,
.back-to-top:focus-visible,
.footer a:focus-visible,
.breadcrumb a:focus-visible {
  outline: 3px solid var(--focus-outline);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .hero-layout,
  .feature-band,
  .story-grid-wide,
  .story-grid,
  .two-up,
  .contact-form-wrap,
  .advisory-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
  }
  .services-grid,
  .timeline,
  .values-grid,
  .contact-grid,
  .detail-grid,
  .summary-strip,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-media { min-height: 340px; }
  .about-story-grid,
  .about-credentials-grid {
    gap: 24px;
  }
  .about-story-media,
  .about-credentials-media {
    min-height: 380px;
  }
  .page-hero-enhanced .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-hero-sidecar {
    justify-self: start;
    width: min(100%, 440px);
  }
}

@media (max-width: 1260px) {
  .contact-routes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container { width: min(var(--max-width), calc(100% - 28px)); }
  body.cookie-banner-open {
    padding-bottom: 224px;
  }
  .nav-inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 6px 0 10px;
  }
  .site-nav.open { display: flex; }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .site-nav a::after {
    bottom: -4px;
  }
  .topbar-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .topbar-meta {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
  }
  .topbar .inline-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: flex-start;
  }
  .topbar .inline-links li {
    min-width: 0;
  }
  .topbar .inline-links a {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    justify-content: flex-start;
  }
  .topbar .lang-switch {
    padding: 4px;
  }
  .theme-toggle {
    align-self: flex-start;
  }
  .hero-inner,
  .page-hero-inner {
    padding: 70px 0 62px;
  }
  .page-hero-sidecar {
    width: 100%;
    padding: 20px;
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
    line-height: 1;
  }
  .section-intro h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.06;
  }
  .hero-actions,
  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cta-row-paired {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 16px;
  }
  .back-to-top {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 14px;
  }
  body.cookie-banner-open .back-to-top {
    bottom: 238px;
  }
  .cookie-banner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .button,
  .button-secondary,
  button.button {
    width: 100%;
  }
  .hero-stat-strip,
  .feature-band-grid,
  .stats-grid,
  .services-grid,
  .values-grid,
  .contact-grid,
  .detail-grid,
  .timeline,
  .summary-strip,
  .footer-columns,
  .form-grid,
  .capability-list-columns,
  .capability-icon-list {
    grid-template-columns: 1fr;
  }
  section { padding: 72px 0; }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }
  .footer-top {
    gap: 28px;
  }
  .legal-section,
  .legal-card {
    padding: 24px;
  }
}
