:root {
  --bg: #f3efe7;
  --paper: rgba(255, 250, 242, 0.78);
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --line: rgba(17, 17, 17, 0.12);
  --accent: #b14d32;
  --accent-soft: rgba(177, 77, 50, 0.14);
  --shadow: 0 30px 80px rgba(34, 20, 10, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(177, 77, 50, 0.16), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(41, 61, 52, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f3eb 0%, #efe7db 100%);
  color: var(--ink);
  font-family: var(--sans);
}

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

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

.site-shell {
  overflow: clip;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.2rem, 2vw, 2.4rem);
  backdrop-filter: blur(16px);
  background: rgba(243, 239, 231, 0.68);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.nav {
  display: inline-flex;
  gap: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.menu-toggle,
.menu-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.2rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle-lines {
  display: inline-grid;
  gap: 0.28rem;
}

.menu-toggle-lines i {
  display: block;
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  align-items: stretch;
  pointer-events: none;
}

.menu-panel-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(177, 77, 50, 0.18), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(35, 55, 47, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(18, 18, 18, 0.98));
  opacity: 0;
  transform: scaleY(0.96);
  transform-origin: top;
  transition: opacity 360ms ease, transform 360ms ease;
}

.menu-panel-inner {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  padding: 1.35rem clamp(1rem, 2vw, 2.4rem) 2rem;
  color: #f6efe7;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 260ms ease 80ms, transform 260ms ease 80ms;
}

.menu-panel.is-open {
  pointer-events: auto;
}

.menu-panel.is-open .menu-panel-backdrop {
  opacity: 1;
  transform: scaleY(1);
}

.menu-panel.is-open .menu-panel-inner {
  opacity: 1;
  transform: translateY(0);
}

.menu-panel-top,
.menu-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 239, 231, 0.62);
}

.menu-close {
  color: rgba(246, 239, 231, 0.82);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-links {
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 2rem 0;
}

.menu-links a {
  display: grid;
  gap: 0.35rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(246, 239, 231, 0.12);
}

.menu-links span {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.menu-links small,
.menu-panel-footer p {
  color: rgba(246, 239, 231, 0.62);
  font-size: 0.95rem;
  line-height: 1.5;
}

.menu-panel-footer p {
  margin: 0;
  max-width: 28rem;
}

.transition-screen {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  pointer-events: none;
}

.transition-band {
  background: #111111;
  transform: scaleY(0);
  transform-origin: top;
}

.transition-screen.is-active .transition-band-1 {
  animation: band-in 760ms cubic-bezier(0.77, 0, 0.175, 1);
}

.transition-screen.is-active .transition-band-2 {
  animation: band-in 760ms cubic-bezier(0.77, 0, 0.175, 1) 60ms;
}

.transition-screen.is-active .transition-band-3 {
  animation: band-in 760ms cubic-bezier(0.77, 0, 0.175, 1) 120ms;
}

.hover-preview {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 22;
  width: min(54rem, calc(100vw - 3rem));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hover-preview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hover-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 0;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 18px 42px rgba(34, 20, 10, 0.08);
}

.hover-preview-kicker {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hover-preview-link {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  font-size: 0.9rem;
}

.hover-preview-frame {
  height: min(34rem, 62vh);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 28px 60px rgba(34, 20, 10, 0.14);
}

.hover-preview-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f7f4ef;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  min-height: calc(100svh - 4.8rem);
  padding: 8rem clamp(1.2rem, 2.2vw, 2.6rem) 2rem;
  gap: clamp(2rem, 4vw, 5rem);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.9;
}

.hero-orb-left {
  left: -8vw;
  bottom: 8vh;
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(177, 77, 50, 0.32), rgba(177, 77, 50, 0));
}

.hero-orb-right {
  right: -6vw;
  top: 14vh;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(33, 52, 44, 0.24), rgba(33, 52, 44, 0));
}

.hero-grid {
  position: absolute;
  inset: 12vh 5vw 10vh;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 90%);
}

.hero-copy,
.hero-panel,
.section,
.marquee {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(70%, 980px);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 10vw, 8.8rem);
}

.hero h1.hero-headline-inline {
  display: block;
  width: 100%;
  max-width: none;
  white-space: normal;
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  line-height: 0.94;
}

.hero-text {
  max-width: 36rem;
  margin: 1.6rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions,
.button {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  gap: 0.9rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #f6efe7;
}

.button-secondary {
  border-color: rgba(17, 17, 17, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
}

.hero-panel {
  justify-self: end;
  width: min(100%, 460px);
  padding: 1.4rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(255, 249, 239, 0.52));
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin: 0 0 1rem;
  color: var(--muted);
}

.signal-list {
  display: grid;
  gap: 1rem;
}

.signal-list article,
.approach-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.signal-list span,
.approach-item span {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

.signal-list h2,
.approach-item h3,
.intro-columns h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.signal-list p,
.approach-item p,
.intro-columns p,
.closing p,
.intro-statement p,
.brand-card p,
.project-card p {
  margin: 0.7rem 0 0;
  line-height: 1.75;
  color: var(--muted);
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  padding: 1rem 0;
  min-width: max-content;
  animation: drift 26s linear infinite;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.58);
}

.horizontal-story {
  position: relative;
  height: 900vh;
  margin: 0;
}

.horizontal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(177, 77, 50, 0.14), transparent 28%),
    radial-gradient(circle at 82% 25%, rgba(35, 55, 47, 0.18), transparent 24%),
    linear-gradient(180deg, #f6f0e6 0%, #ece1d2 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.horizontal-track {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.story-panel {
  width: 100vw;
  min-width: 100vw;
  min-height: 100vh;
  padding: 7rem clamp(1rem, 3vw, 2.6rem) 2rem;
  display: grid;
  align-content: center;
  gap: 1.4rem;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.story-panel h2,
.story-panel h3 {
  margin: 0;
}

.story-panel-intro h2,
.story-panel-sectors h2 {
  max-width: 9ch;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.story-copy {
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.story-display {
  display: grid;
  gap: 0.1rem;
  font-family: var(--sans);
  font-size: clamp(3.2rem, 8.4vw, 7.4rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.story-display span {
  color: rgba(17, 17, 17, 0.48);
  white-space: nowrap;
}

.story-display-primary {
  color: var(--ink) !important;
}

.holdings-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 2rem;
  align-items: center;
  min-height: 100%;
}

.story-display-holdings {
  align-self: center;
}

.story-display-holdings [data-holding-name] {
  transition: color 240ms ease, transform 240ms ease, opacity 240ms ease;
}

.story-display-holdings [data-holding-name].is-active {
  color: var(--ink);
  transform: translateX(0);
  opacity: 1;
}

.story-display-holdings [data-holding-name]:not(.is-active) {
  color: rgba(17, 17, 17, 0.38);
}

.holdings-logo-stage {
  position: relative;
  min-height: 19rem;
  padding: 1.4rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(246, 238, 228, 0.6)),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 20px 48px rgba(34, 20, 10, 0.08);
  display: grid;
  place-items: center;
  align-self: center;
}

.holdings-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  max-height: 120px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 260ms ease, transform 260ms ease;
  mix-blend-mode: multiply;
}

.holdings-logo.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: brightness(0.5);
}

.global-list {
  display: grid;
  gap: 0.3rem;
}

.global-list span {
  font-family: var(--sans);
  font-size: clamp(3rem, 9vw, 7.6rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.global-stage {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.global-route-list {
  display: grid;
  gap: 0.8rem;
}

.global-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(68vh, 620px);
  padding: clamp(1.4rem, 2.2vw, 2rem);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.82), rgba(247, 239, 228, 0.56)),
    rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 42px rgba(34, 20, 10, 0.06);
}

.global-stop {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "index title"
    ". subtitle";
  align-items: end;
  column-gap: 1rem;
  row-gap: 0.2rem;
  color: rgba(17, 17, 17, 0.26);
  transition: color 240ms ease, transform 240ms ease, opacity 240ms ease;
}

.global-stop.is-active {
  color: var(--ink);
  transform: translateX(8px);
}

.global-stop-index {
  grid-area: index;
  align-self: start;
  color: var(--accent);
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.global-stop h3,
.global-stop p {
  margin: 0;
}

.global-stop h3 {
  grid-area: title;
  font-size: clamp(2.8rem, 5.6vw, 4.9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.global-stop p {
  grid-area: subtitle;
  max-width: 17rem;
  color: inherit;
  line-height: 1.45;
  opacity: 0.72;
}

.global-support {
  max-width: 20rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.global-map-shell {
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(246, 238, 228, 0.62)),
    rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 48px rgba(34, 20, 10, 0.08);
}

.world-map {
  min-height: 22rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f7f4ef;
}

.world-map-story {
  position: relative;
  overflow: hidden;
  min-height: clamp(22rem, 46vw, 32rem);
}

.leaflet-map-frame {
  position: absolute;
  inset: 1rem;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 20% 15%, rgba(177, 77, 50, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.9), rgba(247, 244, 239, 0.94));
}

.leaflet-map-stage {
  width: 100%;
  height: 100%;
}

.leaflet-map-stage .leaflet-control-attribution,
.leaflet-map-stage .leaflet-control-container {
  font-family: var(--sans);
}

.leaflet-map-stage .leaflet-control-attribution {
  background: rgba(247, 244, 239, 0.92);
  color: rgba(17, 17, 17, 0.48);
}

.leaflet-map-stage .leaflet-control-zoom {
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 26px rgba(34, 20, 10, 0.08);
}

.leaflet-map-stage .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  line-height: 32px;
  border: 0;
  background: rgba(255, 252, 246, 0.96);
  color: var(--ink);
}

.leaflet-route-marker {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(177, 77, 50, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.leaflet-route-marker.is-active {
  box-shadow: 0 0 0 10px rgba(177, 77, 50, 0.2);
}

.leaflet-route-line {
  stroke: rgba(177, 77, 50, 0.55);
  stroke-width: 3;
  stroke-dasharray: 8 10;
}

.world-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  display: grid;
  gap: 0.25rem;
  max-width: 16rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 252, 246, 0.88);
  box-shadow: 0 18px 42px rgba(34, 20, 10, 0.08);
}

.world-caption-label,
.world-caption small {
  color: var(--muted);
}

.world-caption-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.world-caption strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 54rem;
}

.sector-tags span {
  padding: 0.72rem 0.92rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.sector-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(640px, 1.38fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.sector-overview-copy {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.4rem, 2.2vw, 2rem);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.82), rgba(247, 239, 228, 0.56)),
    rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 42px rgba(34, 20, 10, 0.06);
}

.sector-gallery-shell {
  position: relative;
  height: min(74vh, 720px);
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(246, 238, 228, 0.62)),
    rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 48px rgba(34, 20, 10, 0.08);
}

.sector-gallery-shell::before,
.sector-gallery-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4.5rem;
  z-index: 2;
  pointer-events: none;
}

.sector-gallery-shell::before {
  top: 0;
  background: linear-gradient(180deg, rgba(245, 239, 229, 0.98), rgba(245, 239, 229, 0));
}

.sector-gallery-shell::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(245, 239, 229, 0), rgba(245, 239, 229, 0.98));
}

.sector-gallery-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  will-change: transform;
}

.sector-gallery-card {
  display: grid;
  gap: 0.8rem;
  padding: 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 252, 246, 0.84);
  box-shadow: 0 12px 28px rgba(34, 20, 10, 0.06);
}

.sector-gallery-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 25vw, 340px);
  object-fit: contain;
  object-position: center center;
  background: rgba(245, 239, 229, 0.58);
}

.sector-gallery-meta {
  display: grid;
  gap: 0.35rem;
}

.sector-gallery-meta span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
}

.sector-gallery-meta strong {
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 600;
}

.sector-panel {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 2rem;
}

.sector-copy h3 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.sector-copy p:last-child {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.8;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.logo-wall-featured {
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 860px;
  justify-items: center;
}

.logo-wall span {
  display: grid;
  place-items: center;
  min-height: 7.6rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(248, 240, 231, 0.62)),
    rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
  overflow: hidden;
  isolation: isolate;
}

.logo-tile-image {
  padding: 1.1rem;
}

.logo-tile-image img {
  display: block;
  width: 100%;
  max-width: 170px;
  max-height: 64px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  mix-blend-mode: multiply;
  margin-inline: auto;
}

.medtech-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.72fr);
  gap: 0.9rem;
  align-items: center;
  width: min(100%, 760px);
  margin-inline: auto;
  padding: 0.95rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(248, 240, 231, 0.62)),
    rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 42px rgba(34, 20, 10, 0.08);
}

.medtech-block {
  display: grid;
  place-items: center;
  padding: 0.5rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(245, 239, 229, 0.62);
}

.medtech-block-main {
  min-height: 320px;
}

.medtech-side-stack {
  display: grid;
  gap: 0.9rem;
}

.medtech-block-small {
  min-height: 150px;
}

.medtech-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 320ms ease, transform 320ms ease;
}

.medtech-block img.is-swapping {
  opacity: 0;
  transform: scale(1.02);
}

.medtech-grid-meta {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0.2rem 0;
}

.medtech-grid-meta span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.medtech-grid-meta strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.medtech-grid-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.medtech-grid-meta a {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
}

.edtech-showcase {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 820px);
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(248, 240, 231, 0.62)),
    rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 42px rgba(34, 20, 10, 0.08);
}

.edtech-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.edtech-showcase-logo {
  display: block;
  max-width: 214px;
  max-height: 44px;
  object-fit: contain;
}

.edtech-showcase-head a {
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
}

.edtech-stage {
  position: relative;
  min-height: 500px;
}

.edtech-frame {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 0.6rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.edtech-frame.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.edtech-frame-copy {
  display: grid;
  gap: 0.35rem;
}

.edtech-frame-copy span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.edtech-frame-copy h4 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.18;
  max-width: 32rem;
}

.edtech-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.edtech-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.edtech-use-case-card {
  display: grid;
  gap: 0.9rem;
  min-height: 260px;
  padding: 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.edtech-use-case-image {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 0.55rem 0.25rem 0.9rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.edtech-use-case-image img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 92px;
  object-fit: contain;
}

.edtech-use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: start;
}

.edtech-use-case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1;
  color: rgba(17, 17, 17, 0.84);
}

.edtech-card,
.edtech-team article {
  display: grid;
  gap: 0.45rem;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.edtech-card strong,
.edtech-team strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

.edtech-card p,
.edtech-team small {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.edtech-integrations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.edtech-integration-tile {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.edtech-integration-tile img {
  display: block;
  width: 100%;
  max-width: 180px;
  max-height: 78px;
  object-fit: contain;
}

.edtech-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.edtech-team article {
  align-content: start;
}

.edtech-team article img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  margin-bottom: 0.55rem;
}

.section {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 7rem 0;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 56rem;
}

.section h2 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2.5rem;
  align-items: start;
}

.intro-statement p {
  margin: 0;
  max-width: 24rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
}

.intro-columns {
  display: grid;
  gap: 2rem;
}

.frame-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.92), rgba(242, 231, 217, 0.68)),
    var(--paper);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.frame-copy h2 {
  max-width: 12ch;
}

.frame-metrics {
  display: grid;
  gap: 1rem;
  align-self: end;
}

.frame-metrics div {
  padding: 1rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.frame-metrics span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.frame-metrics strong {
  font-size: 1.3rem;
  font-weight: 500;
}

.brands-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.brand-card,
.project-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  min-height: 100%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.84), rgba(247, 239, 228, 0.6)),
    rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 42px rgba(34, 20, 10, 0.08);
}

.brand-visual {
  display: grid;
  place-items: center;
  min-height: 8rem;
  padding: 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(247, 239, 228, 0.66)),
    rgba(255, 255, 255, 0.4);
}

.brand-visual-image img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-visual-badge {
  align-content: center;
  justify-items: start;
  gap: 0.4rem;
}

.brand-visual-badge span {
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.brand-visual-badge small {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-card-top {
  display: grid;
  gap: 0.45rem;
}

.brand-label,
.project-card span {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.brand-card h3,
.project-card h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.08;
}

.brand-card a {
  margin-top: auto;
  width: fit-content;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  font-size: 0.95rem;
}

.partners-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.partner-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.2rem;
  min-height: 7.4rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.88), rgba(247, 239, 228, 0.58)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 42px rgba(34, 20, 10, 0.06);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.partner-row:hover {
  transform: translateX(6px);
  border-color: rgba(17, 17, 17, 0.14);
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.96), rgba(236, 243, 249, 0.8)),
    rgba(255, 255, 255, 0.56);
}

.partner-mark {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  padding: 0.7rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.partner-mark img {
  display: block;
  width: 100%;
  max-width: 3.6rem;
  max-height: 3.6rem;
  object-fit: contain;
}

.partner-row strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.inline-link {
  border-bottom: 1px solid rgba(17, 17, 17, 0.24);
}

.closing {
  display: grid;
  gap: 2rem;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 8rem;
}

.closing-copy {
  max-width: 46rem;
}

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

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes band-in {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  45% {
    transform: scaleY(1);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 980px) {
  .hero,
  .intro-layout,
  .frame-card,
  .brands-grid,
  .projects-grid,
  .approach-grid,
  .closing {
    grid-template-columns: 1fr;
  }

  .horizontal-story {
    height: auto;
  }

  .horizontal-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .horizontal-track {
    display: grid;
    width: 100%;
    transform: none !important;
  }

  .story-panel,
  .sector-panel {
    width: 100%;
    min-width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 5rem 1.2rem;
  }

  .holdings-stage {
    grid-template-columns: 1fr;
  }

  .global-stage {
    grid-template-columns: 1fr;
  }

  .global-copy {
    min-height: auto;
    gap: 1.5rem;
  }

  .sector-gallery-shell {
    height: min(64vh, 560px);
  }

  .global-stop-index,
  .global-stop h3 {
    font-size: clamp(2.6rem, 11vw, 4.4rem);
  }

  .global-map-shell {
    padding: 0.8rem;
  }

  .sector-overview {
    grid-template-columns: 1fr;
  }

  .medtech-showcase {
    grid-template-columns: 1fr;
  }

  .medtech-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edtech-cards,
  .edtech-use-cases-grid,
  .edtech-team {
    grid-template-columns: 1fr;
  }

  .edtech-integrations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    align-items: center;
    padding-top: 7rem;
  }

  .hover-preview {
    right: 1rem;
    bottom: 1rem;
    width: min(40rem, calc(100vw - 2rem));
  }

  .hero h1.hero-headline-inline {
    font-size: clamp(2.2rem, 6vw, 4rem);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-panel {
    justify-self: stretch;
  }

  .section h2,
  .frame-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .topbar {
    gap: 0.8rem;
  }

  .topbar {
    padding: 1rem 1rem;
  }

  .nav {
    display: none;
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 6.4rem 1rem 1.5rem;
  }

  .hero-grid {
    inset: 9rem 1rem 6rem;
    background-size: 48px 48px;
  }

  .section {
    width: min(var(--max), calc(100% - 2rem));
    padding: 5rem 0;
  }

  .story-panel {
    padding-inline: 1rem;
  }

  .hover-preview {
    display: none;
  }

  .global-stop {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "index title"
      "subtitle subtitle";
  }

  .global-stop p {
    margin-top: 0.2rem;
  }

  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-wall-featured {
    grid-template-columns: 1fr;
  }

  .medtech-showcase {
    grid-template-columns: 1fr;
  }

  .medtech-side-stack {
    grid-template-columns: 1fr;
  }

  .medtech-block-main,
  .medtech-block-small {
    min-height: 220px;
  }

  .edtech-integrations {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .menu-panel-inner {
    padding-inline: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-delay,
  .reveal-delay-2,
  .button,
  .marquee-track,
  .menu-panel-backdrop,
  .menu-panel-inner {
    transition: none;
    animation: none;
  }

  .horizontal-track {
    transform: none !important;
  }

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