:root {
  --bg: #f0efeb;
  --paper: #f7f5f1;
  --surface: #ffffff;
  --ink: #131719;
  --muted: #5d666a;
  --line: rgba(19, 23, 25, 0.12);
  --soft: rgba(255, 255, 255, 0.72);
  --accent: #0f2f38;
  --accent-2: #1e5b67;
  --accent-3: #dfe7e6;
  --shadow: 0 24px 70px rgba(19, 23, 25, 0.08);
  --radius: 0;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(30, 91, 103, 0.07), transparent 28%),
    radial-gradient(circle at top left, rgba(15, 47, 56, 0.05), transparent 28%),
    linear-gradient(180deg, #f7f5f1 0%, #efede8 100%);
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 241, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(19, 23, 25, 0.08);
}

.site-header__inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 360px;
  max-width: 100%;
  border-radius: 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 0;
  content: "";
}

.nav-toggle span::before {
  top: -6px;
  position: absolute;
}

.nav-toggle span::after {
  top: 6px;
  position: absolute;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav a {
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 0;
  transition: background 180ms ease, color 180ms ease;
}

.nav-item--dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-item--dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  line-height: 1;
  transform: translateY(1px);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 340px;
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(247, 245, 241, 0.98);
  border: 1px solid rgba(19, 23, 25, 0.08);
  box-shadow: 0 20px 44px rgba(19, 23, 25, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  background: transparent;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.82);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 0;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--dark {
  background: var(--accent);
  color: #f8f7f4;
  box-shadow: var(--shadow);
}

.button--light {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

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

main section {
  padding: 34px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  font-weight: 600;
}

h1 {
  font-size: clamp(4.5rem, 10vw, 8rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
  line-height: 1.7;
}

.lede,
.section-copy,
.panel p,
.service-card p,
.profile-card p,
.manifest p,
.contact-card p,
.form-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero {
  padding-top: 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  align-items: end;
}

.hero-grid--aligned {
  align-items: start;
}

.hero-grid--aligned .hero-copy {
  padding-top: 0;
  margin-top: -6px;
}

.hero-copy {
  padding: 22px 0 10px;
}

.hero-copy h1 {
  max-width: 10ch;
}

.hero-copy .lede {
  max-width: 58ch;
  margin-top: 24px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-meta article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 23, 25, 0.08);
  border-radius: 0;
}

.hero-meta strong,
.stat strong {
  display: block;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
}

.photo-panel,
.panel,
.service-card,
.profile-card,
.quote-panel,
.manifest,
.contact-card,
.form-card,
.office-card,
.story-card,
.cta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.photo-panel {
  overflow: hidden;
  min-height: 100%;
}

.photo-panel img,
.photo-grid img,
.story-photo img {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 18px solid #fff;
  border-bottom-width: 0;
  box-sizing: border-box;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.02);
  background: #fff;
}

.photo-panel figcaption,
.photo-grid figcaption,
.story-photo figcaption {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(19, 23, 25, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.photo-panel__body {
  position: relative;
  padding-bottom: 78px;
}

.hero-offer {
  position: relative;
  padding: 0 18px 64px;
}

.hero-offer p {
  color: var(--muted);
  max-width: 38ch;
}

.hero-offer strong {
  color: var(--ink);
}

.hero-offer + .hero-offer {
  border-top: 1px solid rgba(19, 23, 25, 0.08);
  padding-top: 22px;
}

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

.photo-grid figure,
.story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-grid figure img {
  aspect-ratio: 0.95;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head--wide {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.section-head--editorial {
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
}

.section-head--editorial > :first-child {
  grid-column: 1 / -1;
}

.section-head--editorial h2 {
  max-width: 18ch;
  font-size: clamp(3.6rem, 7vw, 5.7rem);
  line-height: 0.92;
}

.section-head--editorial-wide h2 {
  max-width: 26ch;
}

.section-head--editorial .section-copy,
.section-head--editorial .button {
  justify-self: end;
  max-width: 52ch;
}

.section-head--editorial .section-copy {
  justify-self: start;
}

.section-head--stacked {
  grid-template-columns: 1fr;
  gap: 18px;
}

.section-head--stacked > :first-child {
  grid-column: auto;
}

.section-head--stacked .section-copy {
  max-width: 72ch;
  justify-self: start;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

.panel,
.service-card,
.profile-card,
.quote-panel,
.manifest,
.contact-card,
.form-card,
.office-card,
.story-card,
.cta-panel {
  padding: 30px;
}

.consultant-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  position: relative;
  padding-bottom: 82px;
}

.consultant-intro {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 14px;
  min-height: 214px;
}

.consultant-intro h3,
.consultant-intro p {
  margin: 0;
}

.consultant-intro p {
  min-height: 8.6rem;
}

.consultant-media {
  position: relative;
  overflow: hidden;
  background: #d9d9d9;
  aspect-ratio: 3 / 4;
  min-height: 420px;
  color: inherit;
  text-decoration: none;
}

.consultant-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(100%) contrast(1.04);
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.consultant-media--petri .consultant-photo {
  object-position: center 18%;
}

.consultant-media--jarkko .consultant-photo {
  object-position: center 14%;
}

.consultant-media--ole .consultant-photo {
  object-position: center top;
  transform: translateY(-44px) scale(1.08);
}

.consultant-media--ole {
  background: #000;
}

.consultant-overlay {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(15, 47, 56, 0.84);
  color: #f5f1eb;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
  transform: translateY(8px);
}

.consultant-overlay::before {
  content: "↗";
  font-size: 0.9rem;
  line-height: 1;
}

.consultant-card:hover .consultant-photo,
.consultant-card:focus-within .consultant-photo {
  filter: grayscale(0%) contrast(1.02);
  transform: scale(1.05);
}

.consultant-card:hover .consultant-media--petri .consultant-photo,
.consultant-card:focus-within .consultant-media--petri .consultant-photo {
  filter: grayscale(100%) contrast(1.02);
  transform: scale(1.05);
}

.consultant-card:hover .consultant-media--ole .consultant-photo,
.consultant-card:focus-within .consultant-media--ole .consultant-photo {
  transform: translateY(-44px) scale(1.12);
}

.consultant-card:hover .consultant-overlay,
.consultant-card:focus-within .consultant-overlay {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.panel--service-link {
  position: relative;
  padding-bottom: 78px;
}

.service-readme {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-readme::before {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.service-card--dark .service-readme {
  color: rgba(248, 247, 244, 0.76);
}

.charity-card {
  display: grid;
  align-content: start;
}

.charity-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  margin-bottom: 8px;
  text-align: center;
}

.charity-logo {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
}

.charity-logo--wide {
  width: min(100%, 360px);
}

.quote-panel {
  background: linear-gradient(135deg, var(--accent) 0%, #163b46 100%);
  color: #f8f7f4;
}

.quote-panel p,
.quote-panel li {
  color: rgba(248, 247, 244, 0.76);
}

.quote-text {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.service-card ul,
.profile-card ul,
.manifest ul,
.office-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.service-card li,
.profile-card li,
.manifest li,
.office-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.service-card li strong,
.profile-card li strong,
.office-card li strong {
  color: var(--ink);
}

.service-card--dark,
.manifest {
  background: linear-gradient(135deg, #11171a 0%, #18363f 100%);
  color: #f8f7f4;
}

.service-card--dark p,
.service-card--dark li,
.manifest p,
.manifest li {
  color: rgba(248, 247, 244, 0.74);
}

.roadmap-section {
  padding-top: 18px;
}

.roadmap {
  display: grid;
  gap: 32px;
}

.roadmap-intro {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.roadmap-intro h2 {
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(560px, 1.34fr);
  gap: 22px;
  align-items: start;
}

.roadmap-steps {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 30px;
  justify-items: start;
}

.roadmap-track {
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: rgba(19, 23, 25, 0.08);
}

.roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: start;
  width: min(100%, 360px);
  justify-self: start;
  padding: 20px 16px 18px 16px;
  margin: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(19, 23, 25, 0.04);
  box-shadow: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.roadmap-step:hover {
  transform: translateY(-1px);
}

.roadmap-step.is-active {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(19, 31, 52, 0.76);
  box-shadow: 0 18px 36px rgba(19, 23, 25, 0.08);
}

.roadmap-step__icon {
  position: absolute;
  left: -10px;
  top: 24px;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #d5dde6;
  color: #59667b;
}

.roadmap-step.is-active .roadmap-step__icon {
  background: #172744;
  color: #f8f7f4;
}

.roadmap-step__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-step__body {
  display: grid;
  gap: 8px;
}

.roadmap-step__meta {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8c99ad;
}

.roadmap-step__body strong {
  font-size: clamp(1.02rem, 1.15vw, 1.28rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.roadmap-step__body span:last-child {
  color: #8491a6;
  font-size: 0.82rem;
  line-height: 1.3;
}

.roadmap-step__chevron {
  align-self: center;
  color: #a1adc0;
  font-size: 2rem;
  line-height: 1;
}

.roadmap-detail {
  display: grid;
  gap: 18px;
}

.roadmap-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 34px 32px 28px;
  background: linear-gradient(180deg, #1c2a44 0%, #18253e 100%);
  color: #f8f7f4;
}

.roadmap-panel::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(118, 142, 191, 0.12);
}

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

.roadmap-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(237, 241, 247, 0.64);
}

.roadmap-panel__label::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.roadmap-panel__icon {
  margin-top: 28px;
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 247, 244, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f7f4;
}

.roadmap-panel__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-panel h3 {
  margin-top: 28px;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.15rem, 3vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.06;
}

.roadmap-panel p {
  margin-top: 26px;
  color: rgba(237, 241, 247, 0.82);
  font-size: 1.1rem;
  line-height: 1.62;
}

.roadmap-panel__footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(237, 241, 247, 0.14);
}

.roadmap-panel__footer p {
  margin-top: 0;
  color: rgba(237, 241, 247, 0.68);
  font-size: 0.96rem;
  line-height: 1.4;
}

.roadmap-experts {
  display: inline-flex;
}

.roadmap-experts span {
  width: 40px;
  height: 40px;
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(147, 164, 200, 0.28);
  color: #f8f7f4;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 2px solid #1c2a44;
}

.roadmap-experts span:first-child {
  margin-left: 0;
}

.roadmap-badge {
  padding: 22px 28px;
  border: 1px dashed rgba(125, 142, 169, 0.34);
  color: #8f9cb2;
  font-size: 0.98rem;
  font-style: italic;
  text-align: center;
  background: rgba(255, 255, 255, 0.36);
}

.comparison-wrap {
  overflow-x: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table th {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 52%;
}

.comparison-table th:first-child {
  width: 52%;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  width: 24%;
}

.comparison-table.comparison-table--profile td:first-child,
.comparison-table.comparison-table--profile th:first-child {
  width: 38%;
}

.comparison-table.comparison-table--profile td:nth-child(2),
.comparison-table.comparison-table--profile th:nth-child(2) {
  width: 62%;
  text-align: left !important;
  padding-left: 54px !important;
}

.comparison-table.comparison-table--profile td:nth-child(2) a,
.comparison-table.comparison-table--profile th:nth-child(2) a {
  display: inline-block;
  text-align: left;
}

.comparison-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 6px 10px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.comparison-mark--yes {
  background: rgba(30, 91, 103, 0.12);
  color: var(--accent-2);
}

.comparison-mark--mid {
  background: rgba(177, 143, 57, 0.14);
  color: #8b6f17;
}

.comparison-mark--no {
  background: rgba(19, 23, 25, 0.08);
  color: var(--muted);
}

.comparison-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-note strong {
  color: var(--ink);
}

.about-comparison {
  background: transparent;
  border: 0;
  box-shadow: none;
  max-width: 1260px;
  margin-inline: auto;
}

.about-principles-table {
  width: 100%;
  min-width: 0;
  background: transparent;
  border-collapse: collapse;
  table-layout: fixed;
}

.about-principles-table th,
.about-principles-table td {
  padding: 24px 0;
  border-bottom: 1px solid rgba(19, 23, 25, 0.2);
  text-align: left;
  vertical-align: top;
}

.about-principles-table th {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
}

.about-principles-table td {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.45vw, 2.45rem);
  line-height: 1.23;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.about-principles-table td:first-child,
.about-principles-table th:first-child,
.about-principles-table td:last-child,
.about-principles-table th:last-child {
  width: 50%;
}

.about-principles-table th:first-child,
.about-principles-table td:first-child {
  padding-right: 30px;
}

.about-principles-table th:nth-child(2),
.about-principles-table td:nth-child(2) {
  text-align: left;
  padding-left: 30px;
}

.regulations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.regulations span {
  padding: 11px 14px;
  border-radius: 0;
  border: 1px solid rgba(19, 23, 25, 0.1);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  color: var(--ink);
}

.stat-line {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.stat {
  min-width: 130px;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 20px;
  align-items: stretch;
}

.story-layout--services {
  align-items: stretch;
}

.story-photo--services {
  align-self: stretch;
  height: 100%;
  background: #fff;
}

.story-photo--services img {
  display: block;
  height: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.story-photo--consultants {
}

.story-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.story-photo--consultants img {
  display: block;
  min-height: 0;
  height: auto;
  aspect-ratio: 1.12;
  object-fit: contain;
}

.story-photo img {
  display: block;
  min-height: 100%;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 20px;
  align-items: start;
}

.vciso-overview {
  padding: 10px 0 72px;
}

.vciso-intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 42px;
}

.vciso-intro h2 {
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.vciso-intro .section-copy {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  line-height: 1.5;
  color: #566577;
}

.vciso-mandate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px 42px;
  margin-bottom: 40px;
  background: linear-gradient(180deg, #111a2f 0%, #141d31 100%);
  color: #f6f7fb;
  box-shadow: var(--shadow);
}

.vciso-mandate .eyebrow {
  color: #f6f7fb;
}

.vciso-mandate .eyebrow::before {
  background: #3a77f0;
}

.vciso-mandate p {
  margin: 0;
  font-size: clamp(1.52rem, 2.2vw, 2.12rem);
  line-height: 1.62;
  font-style: italic;
  color: rgba(246, 247, 251, 0.86);
}

.vciso-mandate__mark {
  color: rgba(246, 247, 251, 0.1);
}

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

.vciso-card {
  padding: 34px 32px 32px;
  background: #fff;
  border: 1px solid rgba(147, 164, 200, 0.26);
  box-shadow: 0 10px 26px rgba(20, 28, 43, 0.06);
}

.vciso-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: #3467e8;
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

.vciso-card:hover .vciso-card__icon,
.vciso-card:focus-within .vciso-card__icon {
  transform: translateY(-2px) scale(1.12);
  color: #173c95;
}

.vciso-card h3 {
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.28rem, 1.75vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.vciso-card p {
  margin: 0;
  color: #566577;
  font-size: 1.02rem;
  line-height: 1.62;
}

.vciso-advantage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px 30px;
  margin-top: 34px;
  background: #eef5ff;
  border: 1px solid #d3e4ff;
}

.vciso-advantage h3 {
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 2.4vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.vciso-advantage p {
  margin: 0;
  max-width: 900px;
  color: #435366;
  font-size: 1.02rem;
  line-height: 1.6;
}

.vciso-advantage__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  border: 2px solid #b7d3ff;
  border-radius: 999px;
  background: #fff;
  color: #2e5fe0;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.vciso-advantage__cta:hover {
  color: #163c97;
  border-color: #7ba9ff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(19, 23, 25, 0.14);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(30, 91, 103, 0.36);
  box-shadow: 0 0 0 4px rgba(30, 91, 103, 0.12);
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  margin-top: 32px;
  padding: 0;
  background: #0b0d0f;
  color: #f4f1eb;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.7fr;
  gap: 28px;
  padding: 48px 0 28px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(244, 241, 235, 0.72);
}

.footer-links a,
.footer-meta a {
  color: inherit;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: #ffffff;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand img {
  width: 260px;
  max-width: 100%;
}

.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.5);
}

.footer-copy,
.footer-meta,
.footer-col p {
  color: rgba(244, 241, 235, 0.72);
}

.footer-col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(244, 241, 235, 0.5);
  padding: 18px 0 30px;
  border-top: 1px solid rgba(244, 241, 235, 0.12);
}

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .two-column,
  .three-column,
  .story-layout,
  .contact-layout,
  .photo-grid {
    grid-template-columns: 1fr;
  }

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

  .roadmap-layout {
    grid-template-columns: 1fr;
  }

  .roadmap-panel {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 84px;
  }

  .brand img {
    width: 260px;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(19, 23, 25, 0.08);
    border-radius: 0;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a,
  .nav .button {
    width: 100%;
    text-align: center;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item--dropdown > a {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    margin-top: 4px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown a {
    padding: 10px 16px;
    color: var(--muted);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .section-head,
  .site-footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

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

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

  .roadmap-steps {
    padding-left: 24px;
  }

  .roadmap-track {
    left: 22px;
  }

  .roadmap-step {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 22px 18px 20px 24px;
  }

  .roadmap-step__icon {
    left: -14px;
    width: 40px;
    height: 40px;
  }

  .roadmap-step__body {
    grid-column: 1 / 2;
    padding-left: 34px;
  }

  .roadmap-step__chevron {
    grid-column: 2 / 3;
  }

  .roadmap-panel {
    padding: 28px 22px 24px;
  }

  .roadmap-panel h3 {
    font-size: 2.2rem;
  }

  .roadmap-panel__footer {
    grid-template-columns: 1fr;
  }

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

  .vciso-mandate,
  .vciso-advantage {
    grid-template-columns: 1fr;
  }

  .vciso-advantage__cta {
    justify-content: center;
  }
}
