:root {
  --bg-deep: #0a0c0f;
  --bg-elevated: #12161c;
  --bg-card: #161b22;
  --text: #e8eaef;
  --text-muted: #9aa3b2;
  --accent: #4e90a8;
  --accent-soft: rgba(78, 144, 168, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #6aadc4;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(10, 12, 15, 0.92),
    rgba(10, 12, 15, 0.65),
    transparent
  );
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 12, 15, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--text);
}

.logo__img {
  height: 2.96rem;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav__cta {
  padding: 0.55rem 1rem;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: 999px;
}

.site-nav__cta:hover {
  background: var(--accent-soft);
  color: #7bbad0 !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
}

.nav-toggle__bar {
  width: 1rem;
  height: 1px;
  background: var(--text);
  box-shadow: 0 4px 0 var(--text), 0 -4px 0 var(--text);
}

.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
}

.hero__layers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050608;
}

.hero__slide {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 24s;
  animation-fill-mode: both;
}

.hero__slide--a {
  animation-name: heroFadeA;
}

.hero__slide--b {
  animation-name: heroFadeB;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: heroKen 32s ease-in-out infinite alternate;
}

.hero__slide--b .hero__photo {
  object-position: 55% 40%;
  animation-duration: 38s;
  animation-direction: alternate-reverse;
}

.hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(78, 144, 168,0.14), transparent 52%),
    radial-gradient(circle at 85% 20%, rgba(90, 140, 220, 0.1), transparent 42%),
    linear-gradient(165deg, rgba(6, 8, 12, 0.5) 0%, transparent 45%, rgba(6, 8, 12, 0.35) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--bg-deep) 0%,
    rgba(10, 12, 15, 0.72) 42%,
    rgba(10, 12, 15, 0.35) 72%,
    rgba(10, 12, 15, 0.2) 100%
  );
}

.hero__rule {
  position: absolute;
  left: 1.5rem;
  bottom: 5.5rem;
  width: min(6rem, 18vw);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.85;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero__rule {
    left: max(1.5rem, calc(50vw - 450px));
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: heroEnter 1.1s var(--ease) both;
}

@keyframes heroFadeA {
  0%,
  36% {
    opacity: 1;
  }
  44%,
  86% {
    opacity: 0;
  }
  94%,
  100% {
    opacity: 1;
  }
}

@keyframes heroFadeB {
  0%,
  36% {
    opacity: 0;
  }
  44%,
  86% {
    opacity: 1;
  }
  94%,
  100% {
    opacity: 0;
  }
}

@keyframes heroKen {
  0% {
    transform: scale(1.06) translate(0, 0);
  }
  100% {
    transform: scale(1.14) translate(-0.8%, 0.6%);
  }
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0 0 1rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.hero__title-accent {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 500;
}

.hero__lede {
  max-width: 36rem;
  color: #b4bcc9;
  font-size: 1.05rem;
  margin: 0 0 2rem;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn--ghost {
  background: rgba(8, 10, 14, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #3d7f96;
  border-color: #3d7f96;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn--quiet {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-inline: 0.5rem;
}

.btn--quiet:hover {
  color: var(--text);
}

.pullquote {
  position: relative;
  padding: 4rem 1.5rem;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
}

.pullquote--visual .pullquote__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=70");
  background-size: cover;
  background-position: 50% 60%;
  transform: scale(1.05);
  filter: saturate(1.05) brightness(0.35);
  opacity: 0.45;
}

.pullquote--visual .pullquote__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 12, 15, 0.92) 0%,
    rgba(10, 12, 15, 0.78) 45%,
    rgba(10, 12, 15, 0.88) 100%
  );
}

.pullquote__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.pullquote--visual .pullquote__inner {
  padding-inline: 0.25rem;
}

.pullquote--visual blockquote p {
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.pullquote blockquote {
  margin: 0;
}

.pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.45;
  font-style: italic;
  color: #cfd5e0;
}

.visual-strip {
  padding: 0;
  border-block: 1px solid var(--border);
  background: #080a0d;
}

.visual-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--border);
}

@media (min-width: 700px) {
  .visual-strip__grid {
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
    min-height: min(52vh, 520px);
  }
}

.visual-strip__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a0c0f;
  min-height: 220px;
}

@media (min-width: 700px) {
  .visual-strip__cell--tall {
    grid-row: span 1;
    min-height: 100%;
  }
}

.visual-strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: brightness(0.92) contrast(1.02);
}

.visual-strip__cell:hover img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.03);
}

.visual-strip__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(to top, rgba(5, 7, 10, 0.92), transparent);
}

.labels-row {
  padding: 4rem 1.5rem;
}

.labels-row__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .labels-row__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.label-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.label-body {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.metric-band {
  position: relative;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.metric-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 45%,
    transparent 90%
  );
  animation: metricShine 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes metricShine {
  0% {
    transform: translateX(-45%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  55% {
    transform: translateX(45%);
    opacity: 0.85;
  }
  100% {
    transform: translateX(55%);
    opacity: 0;
  }
}

.metric-band__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem 2rem;
}

.metric-band__label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.metric-band__value {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  flex: 1;
}

.metric-band__link {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.metric-band__link:hover {
  color: #6aadc4;
}

.stats {
  padding: 4rem 1.5rem 3rem;
}

.stats__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats__grid--single {
  grid-template-columns: 1fr !important;
  max-width: 720px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.stat-card:hover {
  border-color: rgba(78, 144, 168,0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.stat-card__value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

.stat-card__note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.stats__disclaimer {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.section {
  padding: 4.5rem 1.5rem;
}

.section--tight {
  padding-bottom: 2rem;
}

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

.section--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 18, 25, 0.88) 0%,
    rgba(10, 18, 25, 0.65) 60%,
    rgba(10, 18, 25, 0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.section--bg .section__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  z-index: 0;
}

.section--bg > *:not(.section__bg-img) {
  position: relative;
  z-index: 2;
}

.section__kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section__intro {
  max-width: 40rem;
  color: var(--text-muted);
  margin: 0 0 2.75rem;
  font-size: 1.05rem;
}

.section__intro:last-child {
  margin-bottom: 0;
}

.section--wide .section__intro,
.section--wide .section__title,
.section--wide .section__kicker {
  max-width: 1100px;
}

.pillars {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: grid;
  gap: 0.65rem;
}


.pillar {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.5rem 1rem 1.25rem;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pillar:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.pillar__index {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.pillar__icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.3rem;
}

.pillar__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.fund-card {
  padding: 0 1.5rem 4rem;
}

.fund-card__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(78, 144, 168,0.35);
  background: linear-gradient(
    135deg,
    rgba(78, 144, 168,0.1) 0%,
    var(--bg-card) 45%,
    var(--bg-deep) 100%
  );
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 900px) {
  .fund-card__inner {
    grid-template-columns: minmax(200px, 280px) 1fr;
    align-items: stretch;
  }
}

.fund-card__visual {
  display: none;
  position: relative;
  min-height: 200px;
}

@media (min-width: 900px) {
  .fund-card__visual {
    display: block;
  }
}

.fund-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.fund-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(18, 22, 28, 0.75) 100%);
  pointer-events: none;
}

.fund-card__body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.fund-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.fund-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 1rem;
}

.fund-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fund-card__meta strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 0.35rem;
}

.fund-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.phases {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  counter-reset: phase;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .phases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .phases {
    grid-template-columns: repeat(4, 1fr);
  }
}

.phase {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.phase__step {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.phase__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.phase__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.network {
  position: relative;
  padding: 4.5rem 1.5rem;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.network::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: radial-gradient(
    ellipse 70% 80% at 50% 0%,
    rgba(78, 144, 168,0.07),
    transparent 70%
  );
  pointer-events: none;
}

.network__header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.network__intro {
  margin-left: auto;
  margin-right: auto;
}

.network__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .network__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .network__list--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
  }
}

.network__list--2col li {
  padding: 1.75rem;
}

.network__list--2col h3 {
  font-size: 1.3rem;
}

.network__list--2col p {
  font-size: 1rem;
}

.network__list li {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.network__list h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.network__list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.contact--visual .contact__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=75");
  background-size: cover;
  background-position: 50% 35%;
  filter: brightness(0.28) saturate(0.85);
  transform: scale(1.03);
}

.contact--visual .contact__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 80% 70% at 50% 20%,
      rgba(78, 144, 168,0.12),
      transparent 55%
    ),
    linear-gradient(to bottom, rgba(10, 12, 15, 0.2), rgba(10, 12, 15, 0.92));
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact__text {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.contact__address {
  font-style: normal;
  margin: 0 0 2rem;
  line-height: 1.8;
  color: var(--text);
}

.contact__address a {
  font-weight: 500;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.testimonials {
  padding: 4.5rem 1.5rem;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card__quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #cfd5e0;
  line-height: 1.65;
  flex: 1;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.2rem;
}

.testimonial-card__company {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.site-footer__meta {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.75;
}

.site-footer__photos {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.85;
}

.site-footer__photos a {
  color: var(--text-muted);
}

.site-footer__photos a:hover {
  color: var(--accent);
}

.legal-body {
  max-width: 860px;
}

.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2.5rem 0 0.5rem;
  color: var(--text);
}

.legal-body p,
.legal-body address {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  font-style: normal;
}

.legal-body address a {
  color: var(--accent);
}

/* ── Inner page hero ── */
.page-hero {
  padding: calc(var(--header-h) + 4.5rem) 1.5rem 4.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 0% 60%, rgba(78, 144, 168, 0.09), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.1;
  mix-blend-mode: luminosity;
  z-index: 0;
}

/* Full-bleed hero variant — image fills section, dark overlay, text on top */
.page-hero--full-bg {
  background: #0a1219;
}

.page-hero--full-bg .page-hero__bg {
  opacity: 0.38;
  mix-blend-mode: normal;
}

.page-hero--full-bg::before {
  background: linear-gradient(
    to right,
    rgba(10, 18, 25, 0.72) 0%,
    rgba(10, 18, 25, 0.45) 60%,
    rgba(10, 18, 25, 0.25) 100%
  );
  z-index: 2;
}

.page-hero--full-bg .page-hero__inner {
  z-index: 3;
}

.page-hero--lighter .page-hero__bg {
  opacity: 0.55;
}

.page-hero--lighter::before {
  background: linear-gradient(
    to right,
    rgba(10, 18, 25, 0.50) 0%,
    rgba(10, 18, 25, 0.30) 60%,
    rgba(10, 18, 25, 0.15) 100%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 860px) {
  .page-hero__cols {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.page-hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.page-hero__lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
  line-height: 1.65;
}

/* ── Services split (home) ── */
.services-split {
  padding: 4.5rem 1.5rem;
}

.services-split__header {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.services-split__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-split__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.service-card:hover {
  border-color: rgba(78, 144, 168, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: var(--text);
  transform: translateY(-2px);
}

.service-card__kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.service-card__body {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

/* ── Benefit list ── */
.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 1100px;
}

@media (min-width: 760px) {
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.benefit-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── Service includes tags ── */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ── Industries grid ── */
.industries-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 600px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  background: var(--bg-card);
}

/* ── Highlight band (inner pages) ── */
.highlight-band {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
}

.highlight-band__inner {
  max-width: 820px;
  margin: 0 auto;
}

.highlight-band__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  color: #cfd5e0;
  margin: 0 0 0.85rem;
}

.highlight-band__attr {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* ── Active nav link ── */
.site-nav a[aria-current="page"] {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__photo,
  .hero__content {
    animation: none !important;
  }

  .hero__slide {
    opacity: 1;
  }

  .hero__slide--b {
    display: none;
  }

  .hero__photo {
    transform: none;
  }

  .metric-band::before {
    animation: none;
    opacity: 0;
  }

  .visual-strip__cell img {
    transition: none;
  }

  .stat-card:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(10, 12, 15, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: none;
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero__scroll-hint {
    display: none;
  }
}
