/* =========================================================
   Goldenstone Partners — Brand Stylesheet
   Palette: Navy + Gold (matched to IM cover)
   ========================================================= */

:root {
  /* Deep navy for fund-style professionalism */
  --navy-900: #0a1929;
  --navy-800: #132f4c;
  --navy-700: #1e4976;
  --navy-600: #2c5f8d;
  --navy-500: #3a7aad;
  /* Refined gold - capital, not jewelry */
  --gold-500: #c9a961;
  --gold-600: #b89d5f;
  --gold-400: #d4b76e;
  --gold-100: #f5ecd6;
  --cream:    #f8f5ee;
  --paper:    #fbfaf6;
  --ink:      #1c1d22;
  --ink-soft: #4a4c54;
  --line:     rgba(201, 169, 97, 0.22);
  --line-dark:rgba(255, 255, 255, 0.12);
  --shadow-lg: 0 32px 64px -20px rgba(10, 25, 41, 0.38);
  --shadow-sm: 0 10px 28px -12px rgba(10, 25, 41, 0.28);
  /* Typography */
  --serif: 'Cormorant Garamond', 'Source Han Serif SC', 'Noto Serif SC', 'Songti SC', Georgia, serif;
  --sans:  'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
}

/* Reset --------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-600); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography - Premium Institutional Hierarchy ----------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy-800);
  line-height: 1.12;
}
h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  margin-bottom: 0.35em;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  margin-bottom: 0.6em;
  font-weight: 500;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
  font-weight: 500;
  letter-spacing: 0;
}
p  {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.05rem;
}
.lead {
  font-size: 1.28rem;
  color: var(--ink);
  line-height: 1.8;
  font-weight: 300;
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 12px;
}

/* Layout - Premium Spacing -------------------------------- */
.container { width: min(1320px, 90%); margin: 0 auto; }
.container-narrow { width: min(980px, 88%); margin: 0 auto; }
section { padding: clamp(120px, 14vw, 200px) 0; }
.section-white {
  background: #fff;
}
.section-dark {
  background: linear-gradient(135deg, #0a1929 0%, #132f4c 100%);
  color: #e6e8ee;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: #b8becc; }
.section-cream { background: var(--cream); }

/* Approach Grid (replaces fund-overview-grid) ----------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.approach-card {
  padding: 48px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover {
  box-shadow: 0 16px 48px rgba(10, 25, 41, 0.08);
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

.approach-number {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  margin-bottom: 24px;
  font-weight: 500;
}

.approach-card h3 {
  font-size: 1.35rem;
  color: var(--navy-800);
  margin-bottom: 18px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.approach-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* AIP Content Simple ------------------------------------ */
.aip-content-simple {
  max-width: 820px;
  margin: 0 auto 36px;
}

.aip-content-simple p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  text-align: left;
}

/* Navigation --------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(5, 15, 42, 0);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(5, 15, 42, 0.96);
  padding: 12px 0;
  box-shadow: 0 6px 20px rgba(5, 15, 42, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  height: 42px;
  width: auto;
  transition: transform .3s ease;
}
.brand:hover .brand-icon {
  transform: translateY(-2px);
}
.brand-logo {
  height: 48px;
  width: auto;
  transition: transform .3s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-2px);
}
.brand-mark {
  width: 38px; height: 38px;
  border: 1.4px solid var(--gold-500);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0;
}
.brand-text {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand-text span { color: var(--gold-500); display:block; font-size: .65rem; letter-spacing: .35em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  letter-spacing: .04em;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-400); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-500);
}

.nav-actions {
  display: flex; gap: 14px; align-items: center;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  color: #fff;
  padding: 6px 12px;
  font-size: 0.78rem;
  letter-spacing: .08em;
  background: transparent;
  transition: all .25s ease;
}
.lang-switch button.active {
  background: var(--gold-500);
  color: var(--navy-800);
  font-weight: 600;
}
/* Buttons - Premium Institutional ------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 40px;
  border: 1px solid var(--gold-500);
  border-radius: 1px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn-primary:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}

.btn-ghost-dark:hover {
  background: var(--navy-800);
  color: #fff;
  transform: translateY(-1px);
}
  color: var(--gold-500);
  background: transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-500);
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.25);
}

.btn-solid {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn-solid::before {
  background: var(--gold-400);
  left: 0;
}

.btn-solid:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline::before {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

.btn-ghost-dark {
  color: var(--navy-800);
  border-color: var(--navy-800);
}

.btn-ghost-dark::before {
  background: var(--navy-800);
}

.btn-ghost-dark:hover {
  color: var(--gold-400);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  position: relative;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.menu-toggle::before { transform: translate(-50%, calc(-50% - 5px)); }
.menu-toggle::after  { transform: translate(-50%, calc(-50% + 5px)); }

/* Hero - Full-Screen Immersive (ARC Capital Style) ------ */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1929;
}

/* Full-screen background image with parallax */
.hero-background {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
  will-change: transform;
  /* Parallax applied via JS for smooth scroll-linked motion */
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: subtleZoom 25s ease-out forwards;
}

@keyframes subtleZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12);
  }
}

/* Layered atmospheric overlays */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 41, 0.75) 0%,
    rgba(10, 25, 41, 0.85) 50%,
    rgba(10, 25, 41, 0.92) 100%
  );
}

/* Hero content - refined institutional spacing */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content-refined {
  max-width: 820px;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: #fff;
}

.hero-content p {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Base institutional overlay */
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 41, 0.88) 0%,
    rgba(19, 47, 76, 0.80) 50%,
    rgba(10, 25, 41, 0.85) 100%
  );
  z-index: 1;
}

/* Breathing atmospheric layer */
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 40%,
    rgba(201, 169, 97, 0.08) 0%,
    transparent 60%
  );
  animation: atmosphericBreathing 12s ease-in-out infinite;
  z-index: 2;
}

@keyframes atmosphericBreathing {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) translate(3%, -2%);
  }
}

/* Premium texture grain */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
  opacity: 0.4;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Cinematic vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 20%,
    rgba(10, 25, 41, 0.3) 80%,
    rgba(10, 25, 41, 0.6) 100%
  );
  z-index: 4;
  pointer-events: none;
}

/* Content floats above imagery */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding: 0;
  text-align: center;
  margin: 0 auto;
}

.hero .eyebrow {
  color: var(--gold-400);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero h1 {
  color: #fff;
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 36px;
  letter-spacing: -0.025em;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 780px;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-actions .btn {
  min-width: 240px;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  }

  .hero p {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: unset;
    justify-content: center;
  }
}


/* Fund Summary Strip ------------------------------------ */
.fund-summary-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.summary-item:last-child {
  border-right: none;
}

.summary-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

.summary-value {
  font-size: 0.95rem;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .summary-item:nth-child(3n) {
    border-right: none;
  }
  .summary-item:not(:nth-child(3n)) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .summary-item:nth-child(2n) {
    border-right: none;
  }
  .summary-item:not(:nth-child(2n)) {
    border-right: 1px solid var(--line);
  }
}

/* Section header simple --------------------------------- */
/* Section Headers - Premium Editorial ------------------- */
.section-head-simple {
  margin-bottom: 88px;
  text-align: left;
}

.section-head-simple .eyebrow {
  margin-bottom: 24px;
}

.section-head-simple h2 {
  margin-top: 0;
  max-width: 880px;
  line-height: 1.2;
}

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

.section-head .lead {
  max-width: 62ch;
  line-height: 1.8;
  font-size: 1.18rem;
}

@media (max-width: 880px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  .section-head-simple {
    margin-bottom: 64px;
  }
}

/* Factsheet Table --------------------------------------- */
.factsheet-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.factsheet-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.factsheet-row:last-child {
  border-bottom: none;
}

.factsheet-row:hover {
  background: var(--cream);
}

.factsheet-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.01em;
  align-self: start;
  padding-top: 2px;
}

.factsheet-value {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .factsheet-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 20px;
  }
}

/* Investment Process Flow ------------------------------- */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  padding: 40px 0;
}

.process-step {
  flex: 1;
  min-width: 180px;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  border-radius: 2px;
  transition: all .3s ease;
}

.process-step:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.process-number {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 300;
}

.process-step h4 {
  font-size: 1rem;
  color: var(--navy-800);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 600;
}

.process-step p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--gold-500);
  flex-shrink: 0;
  padding-top: 48px;
}

@media (max-width: 1024px) {
  .process-flow {
    flex-direction: column;
  }
  .process-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
  .process-step {
    min-width: 100%;
  }
}

/* Section header ----------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 68px;
}
.section-head .lead {
  max-width: 62ch;
  line-height: 1.75;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

/* Pillar cards ------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  padding: 38px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  opacity: 0;
  transition: opacity .35s ease;
}
.pillar:hover::before { opacity: 1; }

/* Fund structure cards ----------------------------------- */
.fund-structure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fund-card {
  padding: 42px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}
.fund-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.fund-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-600);
}
.fund-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--navy-800);
}
.fund-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Capital flow diagram ----------------------------------- */
.capital-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 60px 0 80px;
  padding: 48px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.flow-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.flow-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.flow-item h4 {
  font-size: 1.05rem;
  color: var(--navy-800);
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
}

.flow-item p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.flow-arrow {
  font-size: 1.8rem;
  color: var(--gold-500);
  flex-shrink: 0;
  font-weight: 300;
}

/* Target sectors -----------------------------------------*/
.target-sectors {
  margin-top: 60px;
}

.sectors-title {
  font-size: 1.8rem;
  color: var(--navy-800);
  margin-bottom: 36px;
  text-align: center;
  font-weight: 500;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sector-item {
  padding: 36px 32px;
  background: #fff;
  border-left: 3px solid var(--gold-500);
  border-radius: 2px;
  transition: all .3s ease;
}

.sector-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.sector-item h4 {
  font-size: 1.15rem;
  color: var(--navy-800);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 600;
}

.sector-item p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .capital-flow {
    flex-direction: column;
    gap: 32px;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

.pillar:hover::before { transform: scaleX(1); }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-500);
  font-size: 1.1rem;
  margin-bottom: 22px;
  letter-spacing: .08em;
}
.pillar h3 { color: var(--navy-800); }

/* Portfolio - Premium Editorial Layout ------------------- */
.portfolio-institutional {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 80px;
}

.portfolio-institutional-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Alternating layout for visual rhythm */
.portfolio-institutional-card:nth-child(even) {
  grid-template-columns: 1fr 420px;
}

.portfolio-institutional-card:nth-child(even) .portfolio-inst-image {
  order: 2;
}

.portfolio-institutional-card:nth-child(even) .portfolio-inst-body {
  order: 1;
}

.portfolio-inst-header {
  margin-bottom: 32px;
}

.portfolio-inst-image {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 25, 41, 0.12);
}

.portfolio-inst-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.8s ease;
  opacity: 0.94;
}

.portfolio-institutional-card:hover .portfolio-inst-image img {
  transform: scale(1.06);
  opacity: 1;
}

.portfolio-inst-meta {
  padding: 48px 0;
}

.portfolio-sector {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 20px;
  font-weight: 500;
}

.portfolio-inst-meta h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: var(--navy-800);
  margin-bottom: 32px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.portfolio-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin-bottom: 36px;
}

.data-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.data-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 500;
}

.data-value {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}

.portfolio-description {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.portfolio-description p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .portfolio-institutional-card,
  .portfolio-institutional-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portfolio-institutional-card:nth-child(even) .portfolio-inst-image,
  .portfolio-institutional-card:nth-child(even) .portfolio-inst-body {
    order: initial;
  }

  .portfolio-inst-image {
    height: 400px;
  }

  .portfolio-inst-meta {
    padding: 0;
  }

  .portfolio-data-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.portfolio-inst-header {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  padding: 36px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.portfolio-inst-image {
  width: 240px;
  height: 160px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10,25,41,0.08);
}

.portfolio-inst-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  opacity: 0.96;
}

.portfolio-institutional-card:hover .portfolio-inst-image img {
  transform: scale(1.05);
  opacity: 1;
}

.portfolio-inst-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portfolio-sector {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

.portfolio-inst-meta h3 {
  font-size: 1.6rem;
  color: var(--navy-800);
  margin: 0;
  font-weight: 500;
}

.portfolio-inst-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.portfolio-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.data-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.data-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

.data-value {
  font-size: 0.98rem;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.45;
}

.portfolio-description {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.portfolio-description p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

.portfolio-link {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  transition: color .25s ease;
  display: inline-block;
}

.portfolio-institutional-card:hover .portfolio-link {
  color: var(--gold-500);
}

@media (max-width: 1024px) {
  .portfolio-inst-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .portfolio-inst-image {
    width: 100%;
    height: 200px;
  }
  .portfolio-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portfolio-data-grid {
    grid-template-columns: 1fr;
  }
}

/* Flagship project cards (legacy - keep for other pages) */
.flagships {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.flagship-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding: 32px;
  background: var(--navy-800);
  transition: transform .4s ease;
}
.flagship-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .9s ease;
}
.flagship-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(5,15,42,0.05) 30%, rgba(5,15,42,0.85) 100%);
}
.flagship-card:hover img { transform: scale(1.06); }
.flagship-card .tag {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.flagship-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 12px; }
.flagship-card p { color: rgba(255,255,255,0.8); font-size: .95rem; }
.flagship-card .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-400);
}
.flagship-card .arrow::after {
  content: "→"; font-size: 1rem;
  transition: transform .3s ease;
}
.flagship-card:hover .arrow::after { transform: translateX(6px); }

/* CTA block ---------------------------------------------- */
.cta-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  color: #fff;
  margin-bottom: 24px;
}
.cta-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.disclaimer {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.55) !important;
  font-style: italic;
  margin-top: 24px;
  margin-bottom: 0 !important;
}

/* Fund highlights grid - institutional metrics ----------- */
.fund-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-card:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-500);
}

.highlight-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

.highlight-value {
  font-size: 1.35rem;
  color: var(--navy-800);
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.highlight-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 1024px) {
  .fund-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fund-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* Governance institutional cards -------------------------- */
.governance-institutional {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.governance-inst-card {
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: 2px;
  transition: all .35s ease;
}

.governance-inst-card:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-left-color: var(--gold-600);
  transform: translateX(4px);
}

.gov-inst-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 300;
  opacity: 0.9;
}

.governance-inst-card h3 {
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: 14px;
  font-family: var(--sans);
  font-weight: 600;
}

.governance-inst-card p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* Why NZ cards ------------------------------------------- */
.why-nz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-nz-card {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all .35s ease;
}

.why-nz-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

.why-nz-card h3 {
  font-size: 1.3rem;
  color: var(--navy-800);
  margin-bottom: 16px;
  font-family: var(--sans);
  font-weight: 600;
}

.why-nz-card p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* AIP Alignment section ---------------------------------- */
.aip-alignment-section {
  max-width: 920px;
  margin: 0 auto;
}

.aip-content {
  text-align: left;
}

.aip-content h2 {
  margin-bottom: 24px;
}

.aip-content > p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.aip-criteria {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink);
}

.criteria-check {
  color: var(--gold-600);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.aip-disclaimer {
  padding: 28px 32px;
  background: #fff9f0;
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 2px;
}

.aip-disclaimer p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.aip-disclaimer strong {
  color: var(--navy-800);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .governance-institutional,
  .why-nz-grid {
    grid-template-columns: 1fr;
  }
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.governance-card {
  padding: 36px 32px;
  background: var(--cream);
  border-left: 4px solid var(--gold-500);
  border-radius: 4px;
  transition: all .35s ease;
}
.governance-card:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-left-color: var(--gold-600);
  transform: translateX(4px);
}
.gov-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 300;
}
.governance-card h3 {
  font-size: 1.2rem;
  color: var(--navy-800);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 600;
}
.governance-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .governance-grid {
    grid-template-columns: 1fr;
  }
}

/* Risk Management section -------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.flip > :first-child { order: 2; }
.split-media img {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split-text h2 { margin-bottom: 28px; }

/* Stats / Key Terms table ------------------------------- */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-top: 1px solid var(--line);
}
.terms-grid > div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.terms-grid .label {
  color: var(--gold-600);
  font-weight: 500;
  letter-spacing: .04em;
  font-size: .88rem;
  text-transform: uppercase;
}
.terms-grid .value { color: var(--ink); }

/* Timeline ---------------------------------------------- */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--gold-500);
}
.timeline li {
  position: relative;
  padding-bottom: 22px;
  color: var(--ink-soft);
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -28px; top: 8px;
  width: 9px; height: 9px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2);
}
.timeline li strong { color: var(--navy-800); display: block; margin-bottom: 4px; }
.section-dark .timeline li strong { color: #fff; }
.section-dark .timeline li { color: rgba(255,255,255,0.78); }

/* People grid ------------------------------------------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
}
.person {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
}
.person .avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
.person h4 { font-size: 1.2rem; color: var(--navy-800); }
.person .role {
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.person p { font-size: 0.92rem; line-height: 1.6; }

/* Image gallery ----------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery a, .gallery div {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery a:hover img, .gallery div:hover img { transform: scale(1.06); }

/* CTA banner -------------------------------------------- */
.cta-banner {
  background: transparent;
  color: #fff;
  padding: 70px 60px;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,97,0.2);
}

/* Dark text on cream background */
.section-cream .cta-banner {
  color: var(--navy-900);
}

.section-cream .cta-banner h2 {
  color: var(--navy-900);
}

.section-cream .cta-banner p {
  color: var(--ink-soft);
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  opacity: .25;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  opacity: .35;
}
.cta-banner h2 { color: inherit; margin: 0; }
.cta-banner p { color: inherit; opacity: 0.8; margin-top: 6px; }

/* Page header ------------------------------------------- */
.page-header {
  position: relative;
  min-height: 56vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1929;
}

.page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowZoom 20s ease-out forwards;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 41, 0.90) 0%,
    rgba(19, 47, 76, 0.85) 50%,
    rgba(10, 25, 41, 0.88) 100%
  );
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: #fff;
  max-width: 760px;
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 20px;
}

.page-header p {
  color: rgba(255,255,255,0.82);
  margin-top: 18px;
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .page-header {
    min-height: 48vh;
  }
}

@media (max-width: 768px) {
  .page-header {
    min-height: 42vh;
  }

  .page-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .page-header p {
    font-size: 1.05rem;
  }
}
.crumbs {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}
.crumbs a { color: rgba(255,255,255,0.6); }
.crumbs a:hover { color: var(--gold-400); }

/* Footer ------------------------------------------------ */
.site-footer {
  background: #0a1929;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 30px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid h4 {
  color: var(--gold-400);
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid ul li { padding: 6px 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-size: .8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: .04em;
}
.footer-bottom .disclaimer { max-width: 70%; line-height: 1.5; }

/* Forms ------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.form-grid .field label[data-lang="zh"] {
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .25s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.18);
}

/* Premium Animations & Motion ---------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll reveal - subtle and slow */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for cards */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }

/* Premium hover effects */
.hover-lift {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 25, 41, 0.15);
}

/* Image scale on hover - subtle */
.image-scale-wrapper {
  overflow: hidden;
}

.image-scale-wrapper img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.8s ease;
}

.image-scale-wrapper:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Responsive adjustments ------------------------------- */
@media (max-width: 1024px) {
  .fund-structure,
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-meta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .fund-structure,
  .pillars,
  .governance-grid,
  .strategy-sectors {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split.flip > :first-child {
    order: 1;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

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

/* i18n - hide other language by default ----------------- */
[data-lang]:not([data-lang="en"]):not([data-lang="zh"]) { display:none; }
html[lang="en"] [data-lang="zh"] { display: none !important; }
html[lang="zh"] [data-lang="en"] { display: none !important; }

/* Responsive ------------------------------------------- */

/* Tablet and below - 980px */
@media (max-width: 980px) {
  .pillars, .flagships { grid-template-columns: 1fr; }
  .split, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .split.flip > :first-child { order: 0; }
  .people-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 50px 32px; }
  .hero-meta-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
  .terms-grid .label { padding-bottom: 0; }
  .terms-grid > div:nth-child(odd) { padding-bottom: 4px; border-bottom: none; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .footer-bottom .disclaimer { max-width: 100%; }

  /* Fix investor enquiry section on tablet */
  .cta-investor {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 40px;
  }

  .fund-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .aip-checklist {
    grid-template-columns: 1fr;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* Navigation */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    padding: 24px;
    gap: 18px;
    z-index: 1000;
  }
  .menu-toggle { display: block; }

  /* Hero adjustments */
  .hero-content { padding: 120px 0 80px; }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    line-height: 1.15;
  }
  .hero p {
    font-size: 1.05rem;
  }

  /* HOMEPAGE HERO - Full-screen immersive experience on mobile */
  /* Target homepage hero specifically using .home-hero class */
  .home-hero {
    min-height: 112svh !important;
    height: 112svh !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Fallback for browsers that don't support svh */
  @supports not (height: 112svh) {
    .home-hero {
      min-height: 112vh !important;
      height: 112vh !important;
    }
  }

  /* Ensure homepage hero background fills the full hero area */
  .home-hero .hero-background {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none !important;
  }

  .home-hero .hero-background img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
  }

  /* Reduce overlay darkness on mobile for better image visibility */
  .home-hero .hero-overlay::before {
    background: linear-gradient(
      180deg,
      rgba(5, 15, 31, 0.68) 0%,
      rgba(8, 25, 43, 0.58) 50%,
      rgba(5, 15, 31, 0.72) 100%
    );
  }

  /* Disable parallax transforms on mobile */
  .home-hero .hero-background,
  .home-hero .hero-background img,
  .home-hero .hero-overlay {
    transform: none !important;
  }

  /* Tighten spacing for mobile homepage hero content */
  .home-hero .hero-content {
    padding: 0 20px;
    max-width: 100%;
    transform: translateY(-3vh);
  }

  .home-hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    margin-bottom: 20px;
  }

  .home-hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .home-hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero .hero-actions {
    margin-bottom: 0;
    gap: 12px;
  }

  .home-hero .hero-actions .btn {
    padding: 14px 28px;
    font-size: 0.75rem;
  }

  /* Ensure next section starts cleanly after hero */
  .home-hero + section {
    margin-top: 0;
  }

  /* PROJECT DETAIL PAGES ONLY - single column layout */
  /* Only apply to hero sections that contain .hero-media */
  .hero:has(.hero-media) {
    min-height: auto !important;
    display: block;
    padding-top: 80px;
  }

  /* Hero media (video/image) - full width on mobile */
  .hero-media {
    position: relative;
    width: 100%;
    height: auto;
    order: 2;
    margin-top: 24px;
  }

  .hero-media video,
  .hero-media img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: cover;
  }

  /* Hero content in project pages - single column, full width */
  .hero:has(.hero-media) .hero-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px 32px;
    order: 1;
    z-index: 10;
  }

  /* Breadcrumb - ensure not covered by header */
  .hero .crumbs,
  .crumbs {
    font-size: 0.7rem;
    margin-bottom: 16px;
    line-height: 1.6;
    word-wrap: break-word;
    letter-spacing: 0.03em;
  }

  /* Eyebrow/category */
  .hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
  }

  /* Project title - reduce size on mobile */
  .hero:has(.hero-media) h1 {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }

  /* Project description */
  .hero:has(.hero-media) p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
  }

  /* Page header mobile */
  .page-header {
    min-height: 45vh;
  }
  .page-header-content h1 {
    font-size: 2rem;
  }

  /* Section spacing */
  section {
    padding: 48px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* CTA Banner - fix text contrast */
  .cta-banner {
    padding: 40px 24px;
  }
  .cta-banner h2 {
    font-size: 1.5rem;
    color: var(--navy-900) !important; /* Dark text on cream background */
  }
  .cta-banner p {
    color: var(--ink-soft) !important; /* Dark text on cream background */
  }

  /* Investor enquiry section - CRITICAL FIX */
  .cta-investor {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px;
  }

  .cta-investor h2 {
    font-size: 1.6rem;
  }

  .cta-investor p {
    font-size: 0.95rem;
  }

  /* CTA actions - fix button overflow */
  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.75rem;
  }

  /* Split layouts - single column */
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split.flip > :first-child {
    order: 0;
  }

  /* Gallery */
  .gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Typography */
  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding: 48px 0 32px;
  }

  /* Fund highlights */
  .fund-highlights-grid {
    grid-template-columns: 1fr;
  }

  /* Pillars */
  .pillars {
    gap: 32px;
  }

  .pillar {
    padding: 28px 24px;
  }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
  /* Hero title even smaller on small screens */
  .hero h1 {
    font-size: 1.75rem !important;
    letter-spacing: -0.005em;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero .eyebrow {
    font-size: 0.65rem;
  }

  .hero .crumbs {
    font-size: 0.65rem;
  }

  .page-header-content h1 {
    font-size: 1.6rem;
  }

  .cta-banner h2,
  .cta-investor h2 {
    font-size: 1.3rem;
  }

  .btn {
    font-size: 0.7rem;
    padding: 13px 24px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 24px 16px 32px;
  }

  section {
    padding: 40px 0;
  }

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

/* Fund Snapshot Grid */
.fund-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.snapshot-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: 2px;
  transition: all .3s ease;
}

.snapshot-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.snapshot-card h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--navy-800);
}

.snapshot-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* CTA Investor */
.cta-investor {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 56px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.cta-investor h2 {
  margin-bottom: 16px;
}

.cta-investor p {
  font-size: 1rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* AIP Checklist */
.aip-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 42px 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.checklist-item svg {
  flex-shrink: 0;
  color: var(--gold-500);
}

.checklist-item span {
  font-size: 0.95rem;
  color: var(--ink);
}

/* Disclaimer Box */
.disclaimer-box {
  padding: 28px 32px;
  background: rgba(201, 169, 97, 0.08);
  border-left: 3px solid var(--gold-500);
  border-radius: 2px;
}

.disclaimer-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Portfolio Institutional Cards */
.portfolio-institutional {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.portfolio-institutional-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all .3s ease;
}

.portfolio-institutional-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.portfolio-image-small {
  width: 180px;
  height: 120px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}

.portfolio-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.portfolio-details {
  display: flex;
  flex-direction: column;
}

.portfolio-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--cream);
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  margin-bottom: 10px;
  width: fit-content;
}

.portfolio-details h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--navy-800);
  font-weight: 500;
}

.portfolio-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  font-size: 0.88rem;
}

.meta-label {
  font-weight: 500;
  color: var(--ink);
}

.meta-value {
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-institutional-card {
    grid-template-columns: 1fr;
  }

  .portfolio-image-small {
    width: 100%;
    height: 180px;
  }

  .meta-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .portfolio-institutional-card {
    padding: 20px;
  }
}

/* Investor Portal Placeholder ----------------------------- */
.investor-portal-placeholder {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px;
}

.portal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--cream);
  border-radius: 50%;
  margin-bottom: 32px;
}

.portal-icon svg {
  color: var(--gold-600);
}

.investor-portal-placeholder h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--navy-800);
}

.investor-portal-placeholder > p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.portal-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 40px;
}

.portal-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
}

.portal-feature-item svg {
  color: var(--gold-600);
  flex-shrink: 0;
}

.portal-contact {
  margin: 40px 0;
  padding: 32px;
  background: var(--cream);
  border-radius: 4px;
}

.portal-contact p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.portal-email {
  font-size: 1.1rem;
  color: var(--gold-600);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.portal-email:hover {
  color: var(--gold-500);
}

.portal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .investor-portal-placeholder {
    padding: 60px 24px;
  }

  .portal-actions {
    flex-direction: column;
  }

  .portal-actions .btn {
    width: 100%;
  }
}

/* Sectors Page Styles ------------------------------------- */
.sector-exposure {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.sector-exposure h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--navy-800);
}

.sector-exposure p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sector-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-item:hover {
  box-shadow: 0 16px 48px rgba(10, 25, 41, 0.08);
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

.sector-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--cream);
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0.12) brightness(0.98);
}

.sector-item:hover .sector-image img {
  transform: scale(1.05);
  filter: grayscale(0) brightness(1);
}

.sector-item h4 {
  padding: 28px 32px 12px;
  font-size: 1.25rem;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.3;
}

.sector-item p {
  padding: 0 32px 32px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sector-exposure {
    padding: 32px 24px;
  }
}

/* Why Partner Grid ---------------------------------------- */
.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

@media (max-width: 1180px) {
  .why-partner-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
@media (max-width: 760px) {
  .why-partner-grid { grid-template-columns: 1fr; gap: 22px; }
}

.why-card {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  box-shadow: 0 16px 48px rgba(10, 25, 41, 0.08);
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

.why-card h4 {
  font-size: 1.02rem;
  color: var(--navy-800);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Simple Content Section ---------------------------------- */
.simple-content {
  max-width: 820px;
  margin: 0 auto;
}

.simple-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.simple-content h4 {
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 600;
}

.section-head-simple {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.section-head-simple h2 {
  margin-bottom: 20px;
}

.section-head-simple .lead {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .section-head-simple {
    margin-bottom: 48px;
  }
}

/* Disclaimer Box ------------------------------------------ */
.disclaimer-box {
  padding: 32px;
  background: var(--cream);
  border-left: 4px solid var(--gold-500);
  border-radius: 4px;
}

.disclaimer-box h4 {
  font-size: 1.1rem;
  color: var(--navy-800);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 600;
}

.disclaimer-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.disclaimer-box strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 640px) {
  .disclaimer-box {
    padding: 24px 20px;
  }
}
