@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --brand-dark: #102d49;
  --brand-dark-soft: #183e60;
  --brand-soft: #f0a15b;
  --brand-soft-ink: #27150a;
  --accent: #b84b16;
  --accent-hover: #92390e;
  --accent-ink: #fff;
  --paper: #fff8ef;
  --wash: #f8eadb;
  --surface: #fffdf9;
  --ink: #16283a;
  --muted: #66717c;
  --white: #fff;
  --line: #ddd4c9;
  --line-dark: #a69a8b;
  --lightline: rgba(255, 255, 255, .22);
  --navy: var(--brand-dark);
  --navy2: var(--brand-dark-soft);
  --teal: var(--accent);
  --cream: var(--paper);
  --warm: var(--wash);
  --gold: var(--brand-soft);
  --font-sans: "Manrope", Arial, sans-serif;
  --body-size: 16px;
  --body-line: 1.55;
  --max: 1180px;
  --container: min(calc(100% - 48px), var(--max));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--body-size);
  line-height: var(--body-line);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
site-header,
site-footer { display: block; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.02em;
}
h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
.container { width: var(--container); margin-inline: auto; }
.section-dark { color: var(--white); background: var(--brand-dark); }
.section-light { color: var(--ink); background: var(--paper); }
.section-warm { color: var(--ink); background: var(--wash); }
.reveal { opacity: 1; transform: none; }
.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--brand-soft);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.kicker {
  margin: 0 0 14px;
  color: var(--brand-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kicker.dark { color: var(--accent); }
.arrow-link,
.read-more {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.8;
}
.arrow-link::after { content: " →"; margin-left: 8px; }
.button-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 14px;
  font-weight: 700;
}
.button-link:hover { border-color: var(--accent-hover); background: var(--accent-hover); }

/* Shared compact header, based on the selected prototype header. */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  gap: 24px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--brand-dark);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.site-header .brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.45vw, 22px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}
.primary-nav > a,
.nav-item > a { position: relative; display: inline-flex; align-items: center; padding: 12px 0; white-space: nowrap; }
.primary-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.active::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.nav-item.active > a::after { transform: scaleX(1); }
.nav-item { position: relative; padding: 12px 0; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 240px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 8px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-dark);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-item:last-of-type .nav-dropdown,
.investor-menu-item .nav-dropdown { right: 0; left: auto; transform: translateY(8px); }
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.nav-item:last-of-type:hover .nav-dropdown,
.nav-item:last-of-type:focus-within .nav-dropdown,
.investor-menu-item:hover .nav-dropdown,
.investor-menu-item:focus-within .nav-dropdown { transform: translateY(0); }
.nav-dropdown a {
  display: block;
  padding: 10px 11px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.nav-dropdown a:last-child { border-bottom: 0; }
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a.active { color: var(--accent); background: var(--wash); }
.primary-nav > .nav-contact,
.site-header > .nav-contact {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid currentColor;
}
.nav-contact::after { display: none; }
.menu-button {
  display: none;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 9px 12px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.menu-button i { width: 18px; height: 10px; border-top: 2px solid currentColor; border-bottom: 2px solid currentColor; }

/* Page title banners. */
.page-hero {
  position: relative;
  padding: clamp(52px, 6vw, 74px) 0;
  border-bottom: 1px solid var(--line-dark);
  background: var(--brand-dark);
}
.page-hero h1 { max-width: 820px; margin-bottom: 0; font-size: clamp(32px, 4.2vw, 56px); }
.page-hero p:not(.kicker):not(.page-breadcrumb) {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}
.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.page-breadcrumb a { color: var(--white); }
.page-breadcrumb a::after { content: "/"; margin-left: 8px; opacity: .5; }
.page-breadcrumb span { color: var(--brand-soft); }

/* Shared editorial sections and card grids. */
.intro,
.business-cards,
.sector-detail,
.sector-expertise,
.investor-path,
.team-section,
.carousel-section,
.contact-section,
.major-investments-section,
.home-news,
main > .section-light:not(.page-hero):not(.about-document) { padding: 78px 0; }
.section-heading { max-width: 850px; margin-bottom: 38px; }
.section-heading > p:last-child { max-width: 680px; color: var(--muted); line-height: 1.65; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 120px); }
.intro-copy { padding-top: 8px; }
.intro-copy p { color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; }
.cards-four,
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.cards-six { grid-template-columns: repeat(3, 1fr); }
.cards-four article,
.expertise-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--ink);
  background: var(--surface);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.cards-four article > span { margin-bottom: auto; color: var(--accent); font-size: 14px; font-weight: 800; }
.cards-four article p,
.expertise-grid article p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.cards-four article a {
  display: inline-block;
  width: fit-content;
  margin-top: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cards-four article:hover { position: relative; z-index: 1; background: var(--brand-soft); }
.cards-four article:hover,
.cards-four article:hover p,
.cards-four article:hover span,
.cards-four article:hover a { color: var(--brand-soft-ink); }
.expertise-grid article { min-height: 260px; }
.expertise-grid h3 { font-size: 22px; }

/* Sector detail pages. */
.sector-detail-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(38px, 7vw, 92px); align-items: stretch; }
.sector-detail-copy p:not(.kicker) { color: var(--muted); font-size: 18px; line-height: 1.7; }
.sector-opportunity-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
  background: var(--brand-dark);
  border: 1px solid var(--line-dark);
}
.sector-opportunity-card > span {
  margin-bottom: auto;
  color: var(--brand-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sector-opportunity-card ul { margin: 18px 0 0; padding-left: 18px; color: rgba(255, 255, 255, .82); line-height: 1.65; }
.investor-path-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(38px, 7vw, 92px); align-items: start; }
.investor-path-grid > div:first-child > p { color: var(--muted); line-height: 1.7; }
.investor-actions { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.investor-actions a {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 22px;
  background: var(--surface);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.investor-actions span { color: var(--accent); font-size: 12px; font-weight: 800; }
.investor-actions strong { margin-top: auto; font-size: 18px; line-height: 1.3; }
.investor-actions small { margin-top: 8px; color: var(--muted); line-height: 1.5; }
.investor-actions a:hover { color: var(--white); background: var(--brand-dark); }
.investor-actions a:hover span { color: var(--brand-soft); }
.investor-actions a:hover small { color: rgba(255, 255, 255, .72); }

/* Editorial documents and utility content. */
.about-document { padding: clamp(64px, 8vw, 108px) 0; }
.about-document-wrap { max-width: none; }
.about-document-flow { max-width: 1120px; margin: 0; }
.about-document-section {
  display: grid;
  grid-template-columns: minmax(190px, 300px) 1fr;
  gap: clamp(26px, 6vw, 86px);
  padding: clamp(32px, 4.6vw, 56px) 0;
  border-top: 1px solid var(--line);
}
.about-document-section:first-child { padding-top: 0; border-top: 0; }
.about-document-section h2 { margin: 0; color: var(--brand-dark); font-size: clamp(22px, 2.2vw, 32px); line-height: 1.18; }
.about-document-section > :not(h2) { min-width: 0; }
.about-document-flow p,
.about-document-flow li { max-width: 780px; color: var(--muted); font-size: clamp(16px, 1.15vw, 18px); line-height: 1.82; }
.about-document-flow p { margin: 0; }
.about-document-flow p + p { margin-top: 22px; }
.about-document-flow a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.about-document-flow ul { margin: 18px 0 0; padding-left: 20px; }
.about-article-flow { max-width: 780px; }
.about-document-section.about-article-section {
  display: block;
  padding: 0 0 clamp(38px, 5vw, 58px);
  border: 0;
}
.about-document-section.about-article-section + .about-article-section { padding-top: clamp(38px, 5vw, 58px); }
.about-article-section h2 { margin: 0 0 20px; }
pre {
  max-width: 100%;
  overflow: auto;
  margin: 22px 0 0;
  padding: 18px;
  color: var(--white);
  background: var(--brand-dark);
  border: 1px solid var(--line-dark);
}
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9em; }

/* Chairman message. */
.chairman-message-layout { display: grid; grid-template-columns: minmax(240px, 330px) 1fr; gap: clamp(36px, 7vw, 90px); align-items: start; }
.chairman-message-profile { position: sticky; top: 104px; padding: 24px; background: var(--surface); border: 1px solid var(--line-dark); }
.chairman-message-profile figure { margin: 0 0 22px; border-bottom: 1px solid var(--line); }
.chairman-message-profile img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.chairman-message-profile h2 { margin-bottom: 8px; font-size: 24px; }
.chairman-message-profile p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.chairman-message-body { max-width: 760px; }
.chairman-message-body p { color: var(--muted); font-size: 17px; line-height: 1.82; }
.chairman-message-body p:first-child { color: var(--ink); font-weight: 700; }
.chairman-page-signature { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); }

/* Team profiles. */
.profile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.profile-card { min-height: 100%; padding: 28px; background: var(--surface); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.avatar { display: grid; width: 96px; height: 96px; place-items: center; overflow: hidden; margin-bottom: 28px; color: var(--white); background: var(--brand-dark); border: 1px solid var(--line-dark); font-weight: 800; letter-spacing: .08em; }
.avatar span { font-size: 24px; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.profile-meta span { padding: 6px 9px; border: 1px solid var(--line); color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.profile-card h3 { margin-bottom: 8px; }
.profile-title { margin: 0 0 18px; color: var(--brand-dark); font-size: 15px; font-weight: 800; }
.profile-bio { display: grid; gap: 14px; }
.profile-bio p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.72; }

/* Board of directors — prototype-aligned chair-led directory. */
.board-page { min-height: 100vh; }
.board-intro {
  padding: 82px 0 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.board-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
  gap: clamp(42px, 9vw, 128px);
  align-items: end;
}
.board-intro h1 { max-width: 900px; margin-bottom: 0; }
.board-intro-copy { max-width: 620px; margin-bottom: 0; color: var(--muted); }
.board-directory { padding: 78px 0; background: var(--paper); }
.board-directory-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}
.board-directory-heading .kicker,
.board-directory-heading .profile-title { margin-bottom: 0; }
.board-section-marker { display: flex; align-items: baseline; gap: 10px; }
.board-section-marker span { color: var(--ink); }
.board-member-portrait {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  background: var(--wash);
}
.board-member-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.board-chair-card {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  margin-bottom: 14px;
  background: var(--surface);
  border: 1px solid var(--line-dark);
  box-shadow: inset 0 5px 0 var(--accent);
}
.board-chair-card .board-member-portrait {
  min-height: 438px;
  border-right: 1px solid var(--line-dark);
}
.board-chair-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 62px);
}
.board-chair-label {
  width: fit-content;
  padding: 6px 8px;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--accent);
}
.board-member-focus {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.board-chair-copy .board-member-focus { margin-top: 28px; }
.board-member-focus .kicker { margin-bottom: 8px; }
.board-member-focus .profile-title { margin-bottom: 0; }
.board-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.board-member-card {
  display: flex;
  min-width: 0;
  min-height: 650px;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-dark);
}
.board-member-card .board-member-portrait {
  height: 350px;
  border-bottom: 1px solid var(--line);
}
.board-member-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.board-member-copy h3 { margin-bottom: 8px; }
.board-member-summary { margin-bottom: 24px; }
.board-bio-details { margin-top: 20px; border-top: 1px solid var(--line); }
.board-bio-toggle { margin-top: 0; padding-top: 18px; cursor: pointer; list-style: none; }
.board-bio-toggle::-webkit-details-marker { display: none; }
.board-bio-details[open] .board-bio-toggle::after { content: " ↑"; }
.board-bio-copy { padding-top: 18px; }
.board-next { padding: 0 0 120px; background: var(--paper); }
.board-next-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 48px;
  align-items: end;
  padding-top: 42px;
  border-top: 1px solid var(--line-dark);
}
.board-next h2 { margin-bottom: 0; }
.board-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.board-button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--ink);
}
.board-button-secondary:hover { color: var(--white); background: var(--brand-dark); border-color: var(--brand-dark); }

@media (max-width: 980px) {
  .board-intro-grid,
  .board-next-grid { grid-template-columns: 1fr; }
  .board-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .board-intro { padding: 54px 0; }
  .board-directory { padding: 55px 0; }
  .board-directory-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .board-chair-card { grid-template-columns: 1fr; }
  .board-chair-card .board-member-portrait {
    height: 430px;
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .board-chair-copy { padding: 30px 24px 38px; }
  .board-card-grid { grid-template-columns: 1fr; }
  .board-member-card { min-height: 0; }
  .board-member-card .board-member-portrait { height: 430px; }
  .board-next { padding-bottom: 105px; }
  .board-actions .button-link { width: 100%; }
}

/* Portfolio carousel. */
.carousel-section { overflow: hidden; }
.carousel-top { margin-bottom: 36px; }
.carousel { position: relative; width: var(--container); height: 600px; margin-inline: auto; border: 1px solid var(--line-dark); background: var(--surface); }
.slide { position: absolute; inset: 0; display: grid; grid-template-columns: 1.1fr .9fr; opacity: 0; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide-image { min-width: 0; background-position: center; background-size: cover; border-right: 1px solid var(--line-dark); }
.image-madi { background-image: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1200&q=80"); }
.image-lalu { background-image: url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1200&q=80"); }
.image-tourism { background-image: url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1200&q=80"); }
.slide-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 70px); }
.slide-copy p { margin-bottom: 14px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.slide-copy span { max-width: 520px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.carousel-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.carousel-actions button { padding: 12px 18px; border: 1px solid var(--ink); color: var(--ink); background: var(--surface); font-weight: 700; cursor: pointer; }
.carousel-actions button:hover { color: var(--white); background: var(--brand-dark); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button { width: 44px; height: 3px; padding: 0; border: 0; background: var(--line-dark); font-size: 0; }
.carousel-dots button.active { background: var(--accent); }

/* Major investments. */
.major-investments-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 78px); align-items: end; margin-bottom: 36px; }
.major-investments-intro h2 { margin-bottom: 0; }
.major-investments-intro > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.major-investment-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.major-investment-card { display: flex; min-height: 300px; flex-direction: column; padding: 24px; background: var(--surface); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.major-investment-card > span { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.major-investment-card h3 { margin: 22px 0 12px; overflow-wrap: anywhere; font-size: clamp(19px, 1.55vw, 24px); }
.major-investment-card p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.62; }
.major-investment-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; padding-top: 24px; }
.major-investment-links a { display: inline-flex; min-height: 36px; align-items: center; padding: 8px 11px; border: 1px solid var(--accent); color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.major-investment-links a:hover { color: var(--white); background: var(--accent); }

/* News cards. */
.news-section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 38px; }
.news-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.news-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; background: var(--surface); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.news-card-media { display: block; min-height: 190px; background-position: center; background-size: cover; border-bottom: 1px solid var(--line); }
.default-news-image { background: var(--brand-dark); }
.default-news-image.sectors { background: var(--brand-dark-soft); }
.news-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.news-meta { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-bottom: 14px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.news-meta time { color: var(--muted); }
.news-card h3 { margin-bottom: 12px; font-size: clamp(21px, 1.7vw, 26px); }
.news-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.read-more { margin-top: auto; color: var(--accent); }
.read-more::after { content: " →"; }

/* Contact and portal forms. */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 78px); align-items: start; }
.contact-card,
.contact-form,
.portal-login-placeholder fieldset { padding: clamp(26px, 4vw, 42px); background: var(--surface); border: 1px solid var(--line-dark); }
.contact-card p,
.contact-form p { color: var(--muted); line-height: 1.7; }
.contact-card a { color: var(--accent); font-weight: 800; }
.contact-form { display: grid; gap: 10px; }
.contact-form h2 { margin-bottom: 8px; }
.contact-form label,
.portal-login-placeholder label { color: var(--brand-dark); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea,
.portal-login-placeholder input { width: 100%; padding: 13px 14px; border: 1px solid var(--line-dark); color: var(--ink); background: var(--paper); }
.contact-form textarea { resize: vertical; }
.contact-form button,
.portal-login-placeholder button { margin-top: 10px; padding: 14px 18px; border: 1px solid var(--accent); color: var(--accent-ink); background: var(--accent); font-weight: 800; cursor: pointer; }
.contact-form button:hover { border-color: var(--accent-hover); background: var(--accent-hover); }
.portal-login-placeholder { max-width: 520px; margin: 36px auto 0; }
.portal-login-placeholder fieldset { opacity: .72; }
.portal-login-placeholder legend { padding: 0 10px; color: var(--brand-dark); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.portal-login-placeholder label { display: block; margin: 14px 0 6px; }
.portal-login-placeholder button { width: 100%; cursor: not-allowed; }
.portal-login-note { margin: 18px 0 0; color: var(--muted); text-align: center; line-height: 1.6; }
.portal-login-note a { color: var(--accent); font-weight: 700; }

/* Shared footer. */
.footer { padding: 0; color: var(--white); background: var(--brand-dark); border-top: 1px solid var(--line-dark); }
.footer-content { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 32px; align-items: start; padding: 58px 0 110px; }
.footer-company h2 { max-width: 430px; margin-bottom: 18px; font-size: 30px; font-weight: 400; line-height: 1.2; }
.footer-company p { max-width: 390px; margin: 0; color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.5; }
.footer-content h3 { margin: 0 0 14px; color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-link-group ul,
.footer-contact ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.footer-link-group a { display: block; margin: 9px 0; color: rgba(255, 255, 255, .72); font-size: 14px; font-weight: 400; }
.footer-link-group a:hover,
.footer-link-group a:focus-visible { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-contact { display: block; font-style: normal; }
.footer-contact li { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 12px; align-items: start; }
.footer-contact li > span { color: var(--brand-soft); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-contact a,
.footer-contact p { margin: 0; color: rgba(255, 255, 255, .82); font-size: 14px; font-weight: 700; line-height: 1.5; overflow-wrap: anywhere; }
.footer-copyright { border-top: 1px solid var(--lightline); }
.footer-copyright p { margin: 0; padding: 13px 0; color: rgba(255, 255, 255, .72); font-size: 11px; font-weight: 600; text-align: center; }

@media (max-width: 1000px) {
  .site-header { min-height: 70px; padding-inline: 24px; }
  .site-header .brand img { width: 48px; height: 48px; }
  .menu-button { display: inline-flex; }
  .primary-nav { display: none; }
  .site-header.open .primary-nav {
    position: fixed;
    z-index: 99;
    inset: 70px 0 0;
    display: flex;
    min-height: calc(100dvh - 70px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 24px;
    color: var(--ink);
    background: var(--paper);
  }
  .primary-nav > a,
  .nav-item > a { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); white-space: normal; }
  .primary-nav > a::after,
  .nav-item > a::after { display: none; }
  .nav-item { padding: 0; }
  .nav-dropdown,
  .nav-item:last-of-type .nav-dropdown,
  .investor-menu-item .nav-dropdown {
    position: static;
    min-width: 0;
    max-height: none;
    overflow: visible;
    padding: 4px 0 10px 18px;
    border: 0;
    color: var(--ink);
    background: transparent;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-dropdown a { padding: 11px 0; color: var(--muted); white-space: normal; }
  .nav-contact { margin-top: 14px; }
  .intro-grid,
  .sector-detail-grid,
  .investor-path-grid,
  .major-investments-intro,
  .contact-grid { grid-template-columns: 1fr; }
  .cards-four,
  .expertise-grid,
  .profile-grid,
  .major-investment-grid,
  .news-card-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-six { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-company { grid-column: 1 / -1; }
  .carousel { height: 760px; }
  .slide { grid-template-columns: 1fr; grid-template-rows: minmax(360px, 1fr) auto; }
  .slide-image { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .slide-copy { justify-content: flex-start; }
}

@media (max-width: 680px) {
  :root { --container: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 68px; padding-inline: 14px; }
  .site-header .brand img { width: 44px; height: 44px; }
  .site-header.open .primary-nav { inset-block-start: 68px; min-height: calc(100dvh - 68px); padding: 20px 18px; }
  .page-hero { padding: 44px 0; }
  .page-hero h1 { font-size: 32px; }
  .intro,
  .business-cards,
  .sector-detail,
  .sector-expertise,
  .investor-path,
  .team-section,
  .carousel-section,
  .contact-section,
  .major-investments-section,
  .home-news,
  main > .section-light:not(.page-hero):not(.about-document) { padding-block: 55px; }
  .cards-four,
  .cards-six,
  .expertise-grid,
  .profile-grid,
  .major-investment-grid,
  .news-card-grid,
  .investor-actions { grid-template-columns: 1fr; }
  .cards-four article,
  .expertise-grid article { min-height: 220px; }
  .sector-opportunity-card { min-height: 360px; }
  .about-document { padding: 42px 0 60px; }
  .about-document-section { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .about-document-flow p,
  .about-document-flow li { font-size: 15.5px; line-height: 1.72; }
  .chairman-message-layout { grid-template-columns: 1fr; }
  .chairman-message-profile { position: static; }
  .major-investment-card { min-height: 0; }
  .major-investment-links a { width: 100%; justify-content: center; }
  .news-section-head { align-items: start; flex-direction: column; }
  .carousel { height: 650px; }
  .slide { grid-template-rows: minmax(280px, 1fr) auto; }
  .slide-copy { padding: 26px; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; padding: 58px 0 110px; }
  .footer-company { grid-column: auto; }
  .footer-contact li { grid-template-columns: 1fr; gap: 4px; }
}

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

/* Homepage — prototype-aligned production layout. */
.home-redesign {
  --home-ink: var(--ink);
  --home-muted: var(--muted);
  --home-line: var(--line);
  --home-paper: var(--paper);
  --home-wash: var(--wash);
  --home-surface: var(--surface);
  --home-navy: var(--brand-dark);
  --home-orange: var(--accent);
  --home-orange-dark: var(--accent-hover);
  --home-max: 1180px;
  color: var(--home-ink);
  background: var(--home-paper);
  font-family: var(--font-sans);
}

.home-redesign * { box-sizing: border-box; }
.home-redesign .home-main { overflow: hidden; }
.home-redesign .home-shell { width: min(calc(100% - 48px), var(--home-max)); margin-inline: auto; }
.home-redesign .home-skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 14px; color: var(--white); background: var(--home-navy); transform: translateY(-150%); }
.home-redesign .home-skip-link:focus { transform: translateY(0); }
.home-redesign :where(a, button):focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.home-redesign .home-section { padding: 78px 0; border-top: 1px solid var(--home-line); }
.home-redesign .home-eyebrow,
.home-redesign .home-marker { color: var(--home-orange); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-redesign .home-eyebrow { margin: 0 0 14px; }
.home-redesign .home-marker { display: flex; align-items: baseline; gap: 10px; margin: 0 0 16px; color: var(--home-muted); }
.home-redesign .home-marker span { color: var(--home-ink); font-size: 13px; font-weight: 400; letter-spacing: 0; }
.home-redesign .home-section h2,
.home-redesign .home-proof h2 { max-width: 800px; margin-bottom: 0; color: var(--home-ink); font-size: clamp(31px, 4vw, 54px); font-weight: 500; line-height: 1.06; letter-spacing: -.02em; }
.home-redesign .home-section h3 { color: inherit; font-size: 20px; font-weight: 600; line-height: 1.2; letter-spacing: 0; }
.home-redesign .home-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.home-redesign .home-section-heading > :first-child { min-width: 0; }
.home-redesign .home-section-heading > p { max-width: 620px; margin: 0; color: var(--home-muted); font-size: 17px; line-height: 1.55; }
.home-redesign .home-section-heading--wide > .home-text-link { flex: none; align-self: end; }
.home-redesign .home-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 28px; }
.home-redesign .home-button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 12px 18px; border: 1px solid var(--home-orange); color: var(--accent-ink); background: var(--home-orange); font-size: 14px; font-weight: 700; }
.home-redesign .home-button:hover { border-color: var(--home-orange-dark); background: var(--home-orange-dark); }
.home-redesign .home-button--light { border-color: var(--surface); color: var(--brand-dark); background: var(--surface); }
.home-redesign .home-button--light:hover { border-color: var(--white); color: var(--brand-dark); background: var(--white); }
.home-redesign .home-text-link { display: inline-block; width: fit-content; margin-top: 20px; color: var(--home-ink); font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.home-redesign .home-text-link--light { color: var(--white); }
.home-redesign .home-media { position: relative; display: block; overflow: hidden; margin: 0; background: var(--wash); border: 1px solid var(--line-dark); }
.home-redesign .home-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.06); transition: transform .35s ease; }
.home-redesign .home-media:hover img { transform: scale(1.025); }

/* Prototype header: compact primary navigation followed by the audience ribbon. */
.home-redesign .home-header-stack { position: relative; z-index: 100; }
.home-redesign .site-header.primary-header,
.home-redesign .site-header.primary-header.scrolled,
.home-redesign .site-header.primary-header.open { position: relative; z-index: 2; inset: auto; min-height: 76px; padding: 0; color: var(--white); background: var(--brand-dark); border-bottom: 1px solid var(--line-dark); box-shadow: none; transform: none; }
.home-redesign .primary-header .container,
.home-redesign .audience-utility .container { display: flex; width: min(calc(100% - 48px), var(--home-max)); min-height: inherit; align-items: center; justify-content: space-between; gap: 24px; margin-inline: auto; }
.home-redesign .primary-header .brand { flex: 0 0 auto; gap: 11px; padding: 0; color: inherit; border: 0; }
.home-redesign .brand-mark { display: inline-flex; width: 28px; height: 28px; flex: none; align-items: center; justify-content: center; color: var(--brand-soft); }
.home-redesign .brand-mark svg { width: 100%; height: 100%; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: square; stroke-linejoin: miter; }
.home-redesign .brand-lockup { display: flex; flex-direction: column; gap: 1px; }
.home-redesign .brand-lockup strong { font-size: 18px; font-weight: 600; line-height: 1; letter-spacing: .18em; }
.home-redesign .brand-lockup small { font-size: 10px; font-weight: 500; line-height: 1.25; letter-spacing: .11em; text-transform: uppercase; opacity: .72; }
.home-redesign .nav-links { display: flex; align-self: stretch; align-items: center; justify-content: flex-end; gap: clamp(20px, 2.5vw, 34px); margin-left: auto; font-size: 14px; font-weight: 600; }
.home-redesign .nav-links a { white-space: nowrap; }
.home-redesign .nav-links a::after { content: ""; }
.home-redesign .home-nav-item { position: static; display: flex; align-self: stretch; align-items: center; }
.home-redesign .home-nav-item__top { display: flex; align-items: center; }
.home-redesign .home-nav-item__top > a { display: flex; min-height: 44px; align-items: center; }
.home-redesign .home-nav-toggle { display: inline-flex; width: 28px; min-height: 44px; align-items: center; justify-content: center; padding: 0 0 0 7px; color: inherit; background: transparent; border: 0; cursor: pointer; }
.home-redesign .home-nav-toggle svg { width: 11px; height: 8px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .18s ease; }
.home-redesign .home-nav-item.is-open .home-nav-toggle svg { transform: rotate(180deg); }
.home-redesign .home-mega-menu { position: absolute; top: 100%; right: 0; left: 0; max-height: calc(100vh - 76px); overflow-y: auto; padding: 26px 0 30px; color: var(--ink); background: var(--surface); border-bottom: 1px solid var(--line-dark); opacity: 0; transform: translateY(-8px); visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.home-redesign .home-nav-item.is-open .home-mega-menu { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.home-redesign .home-mega-menu__inner { display: grid; width: min(calc(100% - 48px), var(--home-max)); grid-template-columns: minmax(180px, .75fr) minmax(480px, 2fr) minmax(250px, .9fr); gap: clamp(28px, 4vw, 64px); align-items: start; margin-inline: auto; }
.home-redesign .home-mega-menu__intro { margin: 0; padding-right: 24px; border-right: 1px solid var(--line); }
.home-redesign .home-mega-menu__groups { display: grid; grid-template-columns: repeat(3, minmax(125px, 1fr)); gap: clamp(24px, 3vw, 48px); }
.home-redesign .home-mega-menu__group { display: flex; flex-direction: column; align-items: flex-start; }
.home-redesign .home-mega-menu__group > strong { display: block; margin-bottom: 10px; color: var(--muted); }
.home-redesign .home-mega-menu__group a { width: 100%; padding: 7px 0; white-space: normal; }
.home-redesign .home-mega-menu__group a:hover,
.home-redesign .home-mega-menu__group a:focus-visible { color: var(--accent); }
.home-redesign .nav-links a.home-mega-menu__feature { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 16px; align-items: center; min-height: 112px; padding: 8px; background: var(--wash); border: 1px solid var(--line); white-space: normal; }
.home-redesign .home-mega-menu__feature img { width: 112px; height: 96px; object-fit: cover; }
.home-redesign .home-mega-menu__feature span { display: flex; min-width: 0; flex-direction: column; gap: 12px; }
.home-redesign .home-mega-menu__feature small { color: var(--muted); }
.home-redesign .home-mega-menu__feature:hover { color: var(--accent); }
.home-redesign .home-menu-backdrop { position: fixed; z-index: 90; inset: 76px 0 0; display: block; width: 100%; padding: 0; background: var(--brand-dark); border: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, visibility .18s ease; }
.home-redesign.home-mega-open .home-menu-backdrop { opacity: .72; visibility: visible; pointer-events: auto; }
.home-redesign .primary-header-controls { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.home-redesign .portal-link { padding: 10px 14px; border: 1px solid currentColor; font-size: 14px; font-weight: 700; white-space: nowrap; }
.home-redesign .primary-header .menu-button { display: inline-flex; min-width: 40px; min-height: 40px; align-items: center; justify-content: center; padding: 8px; border: 1px solid currentColor; color: inherit; background: transparent; }
.home-redesign .primary-header .menu-button span { font-size: 13px; letter-spacing: 3px; }
.home-redesign .audience-utility { position: relative; z-index: 1; min-height: 48px; overflow-x: auto; color: var(--brand-dark); background: var(--wash); border-bottom: 1px solid var(--line-dark); font-size: 14px; }
.home-redesign .audience-utility .container { justify-content: flex-start; }
.home-redesign .audience-utility-label { flex: none; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-redesign .audience-utility .utility-links { display: flex; align-items: center; flex-wrap: nowrap; gap: 0; }
.home-redesign .audience-utility .utility-links a { padding: 5px 14px; border-left: 1px solid var(--line-dark); white-space: nowrap; }
.home-redesign .audience-utility .utility-links a:first-child { font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.home-redesign .audience-utility .utility-links .audience-route-helper { margin-left: 8px; border: 1px solid var(--brand-dark); color: var(--white); background: var(--brand-dark); font-weight: 700; text-decoration: none; }
.home-redesign .audience-utility-meta { margin-left: auto; color: var(--brand-dark); opacity: .72; white-space: nowrap; }
.home-redesign :where(#audiences, #strategies, #firm, #insights) { scroll-margin-top: 24px; }

/* Hero media treatment aligned with the shared brand palette. */
.home-redesign .home-hero { position: relative; isolation: isolate; display: flex; min-height: clamp(670px, calc(100svh - 124px), 850px); align-items: stretch; overflow: hidden; color: var(--white); background: var(--brand-dark); }
.home-redesign .home-hero__video { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: none; }
.home-redesign .home-hero__shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--brand-dark) 87%, transparent) 0%, color-mix(in srgb, var(--brand-dark) 42%, transparent) 62%, color-mix(in srgb, var(--brand-dark) 78%, transparent) 100%), linear-gradient(0deg, color-mix(in srgb, var(--brand-dark) 70%, transparent), transparent 60%); }
.home-redesign .home-hero__content { display: flex; min-height: inherit; flex-direction: column; justify-content: flex-end; padding: 64px 0 34px; }
.home-redesign .home-hero__intro { padding-bottom: 38px; }
.home-redesign .home-hero .home-eyebrow { color: inherit; opacity: .72; }
.home-redesign .home-hero h1 { max-width: 850px; margin: 0; color: var(--white); font-size: clamp(54px, 7.4vw, 102px); font-weight: 500; line-height: 1; letter-spacing: -.025em; }
.home-redesign .home-hero__copy { max-width: 560px; margin-top: 30px; }
.home-redesign .home-hero__copy > p { margin: 0; color: color-mix(in srgb, var(--white) 88%, transparent); font-size: 16px; line-height: 1.55; }
.home-redesign .home-hero__evidence { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border: 1px solid color-mix(in srgb, var(--white) 32%, transparent); background: color-mix(in srgb, var(--brand-dark) 70%, transparent); backdrop-filter: blur(9px); }
.home-redesign .home-hero__evidence > div,
.home-redesign .home-hero__evidence > a { display: flex; min-height: 132px; flex-direction: column; justify-content: space-between; padding: 20px; border-right: 1px solid color-mix(in srgb, var(--white) 22%, transparent); }
.home-redesign .home-hero__evidence > :last-child { border-right: 0; }
.home-redesign .home-hero__evidence span { color: color-mix(in srgb, var(--white) 72%, transparent); font-size: 12px; }
.home-redesign .home-hero__evidence small { color: color-mix(in srgb, var(--white) 72%, transparent); font-size: 14px; font-weight: 600; }
.home-redesign .home-hero__evidence strong { max-width: 190px; color: var(--white); font-size: 20px; line-height: 1.2; }
.home-redesign .home-hero__evidence-label span { letter-spacing: .1em; text-transform: uppercase; }
.home-redesign .home-hero__evidence-label strong { font-size: 15px; }
.home-redesign .home-hero__evidence a:hover { background: color-mix(in srgb, var(--white) 10%, transparent); }

/* Audience routes. */
.home-redesign .home-routes { background: var(--home-wash); }
.home-redesign .home-route-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 36px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.home-redesign .home-route-card { display: flex; min-height: 230px; flex-direction: column; padding: 22px; border-right: 1px solid var(--home-line); border-bottom: 1px solid var(--home-line); background: var(--home-surface); transition: background .18s ease, transform .18s ease; }
.home-redesign .home-route-card h3 { margin: 0; font-size: 23px; font-weight: 400; line-height: 1.1; }
.home-redesign .home-route-card p { margin: 14px 0 22px; color: var(--home-muted); font-size: 14px; line-height: 1.55; }
.home-redesign .home-route-card strong { margin-top: auto; font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.home-redesign .home-route-card:hover { position: relative; z-index: 1; transform: translateY(-3px); }
.home-redesign .home-route-card:hover,
.home-redesign .home-next__grid a:hover { color: var(--brand-soft-ink); background: var(--brand-soft); }
.home-redesign .home-route-card:hover :where(p, .home-eyebrow) { color: inherit; }

/* Image-led overview of the company’s evolving investment areas. */
.home-redesign .home-sectors { background: var(--home-paper); }
.home-redesign .home-sector-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0;
  border: 1px solid var(--home-line);
  background: var(--home-surface);
}
.home-redesign .home-sector-card > div { align-self: end; padding: 16px 20px; }
.home-redesign .home-sector-card p { margin: 0 0 8px; color: var(--home-muted); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-redesign .home-sector-card h3 { margin: 0; font-size: 20px; }
.home-redesign .home-sector-card b { align-self: end; padding: 16px 20px 16px 0; font-size: 22px; }
.home-redesign .home-sector-card:hover { background: var(--home-wash); }
.home-redesign .home-sector-image-card figure {
  grid-column: 1 / -1;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  margin: 0;
  border-bottom: 1px solid var(--home-line);
}
.home-redesign .home-sector-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease);
}
.home-redesign .home-sector-image-card:hover img { transform: scale(1.035); }
.home-redesign .home-sector-image-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
  margin-top: 36px;
}
.home-redesign .home-sector-image-mosaic .home-sector-image-card { min-height: 0; grid-template-rows: minmax(0, 1fr) auto; }
.home-redesign .home-sector-image-mosaic .home-sector-image-card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.home-redesign .home-sector-image-mosaic .home-sector-image-card:nth-child(2),
.home-redesign .home-sector-image-mosaic .home-sector-image-card:nth-child(3) { grid-column: span 5; }
.home-redesign .home-sector-image-mosaic .home-sector-image-card:nth-child(n + 4) { grid-column: span 4; }

/* Proof band. */
.home-redesign .home-proof { padding: 78px 0; color: var(--home-ink); background: var(--home-wash); border-top: 1px solid var(--line-dark); }
.home-redesign .home-proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: stretch; margin-top: 36px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.home-redesign .home-proof__intro { padding-right: 0; }
.home-redesign .home-proof .home-marker { color: var(--home-ink); }
.home-redesign .home-proof .home-marker span,
.home-redesign .home-proof h2 { color: var(--home-ink); }
.home-redesign .home-proof__intro > p:last-child { max-width: 410px; margin: 20px 0 0; color: var(--home-ink); font-size: 12px; line-height: 1.5; }
.home-redesign .home-proof__item { display: block; min-height: 150px; padding: 24px; background: color-mix(in srgb, var(--home-surface) 42%, transparent); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.home-redesign .home-proof__item strong { display: block; margin-bottom: 7px; font-size: clamp(30px, 4vw, 54px); font-weight: 400; line-height: 1; letter-spacing: 0; }
.home-redesign .home-proof__item p { margin: 0 0 12px; font-size: 16px; font-weight: 400; line-height: 1.4; }
.home-redesign .home-proof__item small { color: var(--home-ink); font-size: 12px; line-height: 1.5; }

/* Featured investment follows the prototype case-study split. */
.home-redesign .home-feature { background: var(--home-paper); }
.home-redesign .home-feature__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.home-redesign .home-feature__media { position: relative; height: clamp(360px, 42vw, 520px); }
.home-redesign .home-feature__media figcaption { position: absolute; right: 14px; bottom: 14px; padding: 7px 9px; color: var(--white); background: rgba(8,27,31,.8); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-redesign .home-feature__copy > .home-eyebrow { margin-top: 28px; }
.home-redesign .home-feature__copy > p:not([class]) { max-width: 590px; margin: 24px 0; color: var(--home-muted); font-size: 17px; line-height: 1.55; }
.home-redesign .home-feature__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 30px 0; border-top: 1px solid var(--line-dark); }
.home-redesign .home-feature__facts div { padding: 18px 14px 0 0; }
.home-redesign .home-feature__facts div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.home-redesign .home-feature__facts dt { margin-bottom: 8px; color: var(--home-muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-redesign .home-feature__facts dd { margin: 0; font-size: 14px; font-weight: 700; }
.home-redesign .home-feature__references { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 36px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.home-redesign .home-feature__references .home-route-card { min-height: 180px; }

/* Investment process. */
.home-redesign .home-approach { background: var(--home-wash); }
.home-redesign .home-process { display: grid; grid-template-columns: repeat(5, 1fr); margin: 30px 0 34px; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.home-redesign .home-process li { min-height: 230px; padding: 18px 14px 0 0; border-bottom: 1px solid var(--line); }
.home-redesign .home-process li + li { padding-left: 16px; border-left: 1px solid var(--line); }
.home-redesign .home-process span { color: var(--home-orange); font-size: 12px; font-weight: 700; }
.home-redesign .home-process h3 { margin: 0 0 12px; font-size: 20px; }
.home-redesign .home-process p { margin: 0; color: var(--home-muted); font-size: 14px; line-height: 1.6; }

/* Company differentiation. */
.home-redesign .home-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 36px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }

/* Current thinking uses prototype variant A. */
.home-redesign .home-insights { background: var(--home-paper); }
.home-redesign .home-insights__frame { margin-top: 35px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.home-redesign .home-insight-main { display: grid; min-height: 430px; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); }
.home-redesign .home-insight-main > .home-media { min-height: 360px; border-width: 0 1px 0 0; }
.home-redesign .home-insight-main > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(28px, 4vw, 54px); background: var(--home-surface); }
.home-redesign .home-insights h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.2; }
.home-redesign .home-insight-main > div > p:not(.home-eyebrow) { margin: 0 0 20px; color: var(--home-muted); font-size: 14px; line-height: 1.55; }
.home-redesign .home-insight-main .home-text-link { margin-top: 10px; }
.home-redesign .home-insight-support { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--home-line); }
.home-redesign .home-insight-support article { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 22px; align-items: center; padding: 22px; background: var(--home-surface); }
.home-redesign .home-insight-support article:first-child { border-right: 1px solid var(--home-line); }
.home-redesign .home-insight-support .home-media { height: 122px; }
.home-redesign .home-insight-support h3 { margin-bottom: 0; font-size: 20px; }
.home-redesign .home-insight-support .home-text-link { margin-top: 20px; font-size: 14px; }

/* Final contact routes mirror the prototype contact grid. */
.home-redesign .home-next { background: var(--home-wash); }
.home-redesign .home-next__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 32px; }
.home-redesign .home-next__grid a { display: grid; min-height: 205px; grid-template-columns: 1fr auto; align-content: space-between; padding: 22px; border: 1px solid var(--home-line); background: var(--home-surface); }
.home-redesign .home-next__grid span { grid-column: 1 / -1; color: var(--home-orange); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-redesign .home-next__grid strong { align-self: end; max-width: 220px; font-size: 17px; line-height: 1.3; }
.home-redesign .home-next__grid b { align-self: end; font-size: 20px; }
.home-redesign .home-next__grid a:hover span { color: inherit; }

.home-redesign .footer { color: var(--white); background: var(--home-navy); }
.home-redesign .footer h2,
.home-redesign .footer h3 { color: var(--white); }

@media (max-width: 1180px) {
  .home-redesign .primary-header .nav-links { display: none; }
  .home-redesign .primary-header.open .nav-links { position: fixed; inset: 76px 0 0; z-index: 3; display: flex; min-height: calc(100dvh - 76px); overflow: auto; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; margin: 0; padding: 24px; color: var(--brand-dark); background: var(--paper); font-size: 22px; }
  .home-redesign .primary-header.open .nav-links a { padding: 18px 0; border-bottom: 1px solid var(--line); white-space: normal; }
  .home-redesign .primary-header.open .nav-links a::after { display: none; }
  .home-redesign .home-nav-item { display: block; width: 100%; border-bottom: 1px solid var(--line); }
  .home-redesign .home-nav-item__top { width: 100%; }
  .home-redesign .primary-header.open .home-nav-item__top > a { flex: 1; padding: 18px 0; border-bottom: 0; }
  .home-redesign .home-nav-toggle { width: 48px; min-height: 62px; padding: 0; }
  .home-redesign .home-mega-menu { position: static; display: none; max-height: none; overflow: visible; padding: 0 0 20px; color: inherit; background: transparent; border: 0; opacity: 1; transform: none; visibility: visible; pointer-events: auto; transition: none; }
  .home-redesign .home-nav-item.is-open .home-mega-menu { display: block; }
  .home-redesign .home-mega-menu__inner { display: block; width: 100%; margin: 0; }
  .home-redesign .home-mega-menu__intro { margin-bottom: 18px; padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-redesign .home-mega-menu__groups { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .home-redesign .home-mega-menu__group > strong { margin-bottom: 5px; }
  .home-redesign .primary-header.open .home-mega-menu__group a { padding: 10px 0; border-bottom: 0; }
  .home-redesign .home-mega-menu__feature { margin-top: 20px; }
  .home-redesign.home-mega-open .home-menu-backdrop { display: none; }
}

@media (max-width: 980px) {
  .home-redesign .home-route-grid,
  .home-redesign .home-next__grid { grid-template-columns: repeat(2, 1fr); }
  .home-redesign .home-sector-image-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 320px; }
  .home-redesign .home-sector-image-mosaic .home-sector-image-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .home-redesign .home-sector-image-mosaic .home-sector-image-card:first-child { grid-column: span 2; }
  .home-redesign .home-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .home-redesign .home-feature__grid { grid-template-columns: 1fr; }
  .home-redesign .home-process { grid-template-columns: repeat(3, 1fr); }
  .home-redesign .home-insight-main { grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); }
  .home-redesign .home-insight-support article { grid-template-columns: 120px minmax(0, 1fr); }
}

@media (max-width: 680px) {
  .home-redesign .home-shell { width: min(calc(100% - 28px), var(--home-max)); }
  .home-redesign .site-header.primary-header,
  .home-redesign .site-header.primary-header.scrolled,
  .home-redesign .site-header.primary-header.open { min-height: 68px; }
  .home-redesign .primary-header .container { width: min(calc(100% - 28px), var(--home-max)); gap: 14px; }
  .home-redesign .primary-header .portal-link { display: none; }
  .home-redesign .primary-header.open .nav-links { inset-block-start: 68px; min-height: calc(100dvh - 68px); padding: 22px 20px; }
  .home-redesign .home-mega-menu__groups { grid-template-columns: 1fr; }
  .home-redesign .home-mega-menu__feature { grid-template-columns: 96px minmax(0, 1fr); }
  .home-redesign .home-mega-menu__feature img { width: 96px; height: 88px; }
  .home-redesign .brand-lockup small { max-width: 200px; white-space: nowrap; }
  .home-redesign .audience-utility .container { width: max-content; min-width: 100%; padding-inline: 14px; gap: 12px; }
  .home-redesign .audience-utility-meta { display: none; }
  .home-redesign .home-section { padding: 55px 0; }
  .home-redesign .home-section-heading { align-items: start; flex-direction: column; }
  .home-redesign .home-hero { min-height: auto; }
  .home-redesign .home-hero__content { display: block; padding: 0 0 82px; }
  .home-redesign .home-hero__intro { padding: 72px 0 30px; }
  .home-redesign .home-hero h1 { font-size: clamp(45px, 14vw, 68px); }
  .home-redesign .home-hero__evidence,
  .home-redesign .home-route-grid,
  .home-redesign .home-feature__references,
  .home-redesign .home-why__grid,
  .home-redesign .home-process,
  .home-redesign .home-insight-main,
  .home-redesign .home-insight-support { grid-template-columns: 1fr; }
  .home-redesign .home-hero__evidence > div,
  .home-redesign .home-hero__evidence > a { min-height: 112px; border-right: 0; border-bottom: 1px solid color-mix(in srgb, var(--white) 22%, transparent); }
  .home-redesign .home-hero__evidence > :last-child { border-bottom: 0; }
  .home-redesign .home-route-card { min-height: 185px; }
  .home-redesign .home-sector-image-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .home-redesign .home-sector-image-mosaic .home-sector-image-card { min-height: 280px; }
  .home-redesign .home-sector-image-mosaic .home-sector-image-card:first-child { grid-column: span 2; }
  .home-redesign .home-feature__media { height: 72vw; min-height: 320px; }
  .home-redesign .home-feature__facts { grid-template-columns: 1fr; }
  .home-redesign .home-feature__facts div,
  .home-redesign .home-feature__facts div + div { padding: 16px 0; border-left: 0; border-bottom: 1px solid var(--home-line); }
  .home-redesign .home-process li,
  .home-redesign .home-process li + li { min-height: 0; padding: 16px 0; border-left: 0; border-bottom: 1px solid var(--home-line); }
  .home-redesign .home-process h3 { margin-top: 28px; }
  .home-redesign .home-insight-main > .home-media { min-height: 270px; border-width: 0 0 1px; }
  .home-redesign .home-insight-support article { grid-template-columns: 108px minmax(0, 1fr); }
  .home-redesign .home-insight-support article:first-child { border-right: 0; border-bottom: 1px solid var(--home-line); }
  .home-redesign .home-insight-support .home-media { height: 108px; }
  .home-redesign .home-next__grid a { min-height: 170px; }
}

@media (max-width: 360px) {
  .home-redesign .brand-lockup small { display: none; }
  .home-redesign .home-proof__grid,
  .home-redesign .home-sector-image-mosaic,
  .home-redesign .home-next__grid { grid-template-columns: 1fr; }
  .home-redesign .home-sector-image-mosaic .home-sector-image-card:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .home-redesign .home-hero__video { display: none; }
  .home-redesign .home-route-card,
  .home-redesign .home-media img,
  .home-redesign .home-sector-image-card img { transition: none; }
}
