/* =========================================
   BALDER CAPITAL — refresh prototype v1
   ========================================= */

:root {
  /* Palette */
  --deep:     #0E1B27;
  --slate:    #1B2E40;
  --slate-2:  #243C52;
  --paper:    #F2EEE5;
  --paper-2:  #E8E3D6;
  --ink:      #15212D;
  --pale:     #A8B6C3;
  --pale-2:   #7B8B99;
  --gold:     #B8924F;
  --gold-2:   #D4AE71;

  /* Type scale */
  --display:  'Fraunces', 'Times New Roman', serif;
  --sans:     'Geist', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --gutter:   clamp(24px, 4vw, 56px);
  --section:  clamp(64px, 9vh, 120px);

  /* Motion */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   Reset
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* =========================================
   Persistent frame corners (editorial detail)
   ========================================= */
.frame {
  position: fixed;
  top: 0; left: 0; right: 0;
  pointer-events: none;
  z-index: 40;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
}
.frame-corner {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(242, 238, 229, 0.45);
}

/* =========================================
   Navigation
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 0.5px solid transparent;
}
.nav.is-scrolled {
  background-color: rgba(14, 27, 39, 0.92);
  padding: 16px var(--gutter);
  border-bottom-color: rgba(184, 146, 79, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav--light.is-scrolled {
  background-color: rgba(242, 238, 229, 0.92);
  border-bottom-color: rgba(21, 33, 45, 0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
}
.nav-brand-mark {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.2px;
}
.nav-brand-rule {
  width: 1px;
  height: 14px;
  background: currentColor;
  opacity: 0.5;
}
.nav-brand-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links > a,
.nav-link-with-arrow {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.78;
  transition: opacity 0.3s var(--ease);
  position: relative;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--deep);
  color: var(--paper);
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.75) contrast(1.05);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,27,39,0.75) 0%, rgba(14,27,39,0.35) 35%, rgba(14,27,39,0.55) 65%, rgba(14,27,39,0.95) 100%),
    linear-gradient(90deg, rgba(14,27,39,0.7) 0%, rgba(14,27,39,0.2) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-row: 2;
  max-width: 760px;
  padding-bottom: 56px;
  animation: heroIn 1.2s var(--ease) 0.3s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-2);
}
.hero-eyebrow .rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 32px;
  color: var(--paper);
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-2);
}

.hero-lede {
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  color: rgba(242, 238, 229, 0.82);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-meta {
  position: relative;
  z-index: 2;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0 40px;
  border-top: 0.5px solid rgba(242, 238, 229, 0.22);
}
.hero-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hero-meta-item .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  font-weight: 300;
}
.hero-meta-item .label {
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.6px;
  color: rgba(242, 238, 229, 0.75);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  position: relative;
}
.btn--ghost {
  padding: 14px 22px;
  border: 0.5px solid var(--gold);
  color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--deep);
}
.btn--ghost svg { transition: transform 0.4s var(--ease); }
.btn--ghost:hover svg { transform: translateX(4px); }
.btn--ghost-light {
  border-color: var(--gold-2);
  color: var(--gold-2);
}
.btn--text {
  color: var(--paper);
  opacity: 0.75;
  border-bottom: 0.5px solid currentColor;
  padding-bottom: 4px;
}
.btn--text:hover { opacity: 1; color: var(--gold-2); }

/* =========================================
   Intro section
   ========================================= */
.intro {
  background: var(--paper);
  color: var(--ink);
  padding: var(--section) var(--gutter);
}
.intro-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-eyebrow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.intro-eyebrow .rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.intro-eyebrow--light { color: var(--gold-2); }
.intro-eyebrow--light .rule { background: var(--gold-2); }

.intro-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.intro-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.intro-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 20px;
  font-weight: 400;
}
.intro-body p:last-child { margin-bottom: 0; }
.intro-body em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

.intro-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 0.5px solid rgba(21, 33, 45, 0.15);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pale-2);
}

/* =========================================
   Strategies
   ========================================= */
.strategies {
  background: var(--deep);
  color: var(--paper);
  padding: var(--section) var(--gutter);
}
.strategies-header {
  max-width: 1280px;
  margin: 0 auto 80px;
}
.strategies-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--paper);
}

.strategy {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60px 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-top: 0.5px solid rgba(242, 238, 229, 0.12);
}
.strategy:last-child { border-bottom: 0.5px solid rgba(242, 238, 229, 0.12); }
.strategy--reverse .strategy-body { order: 2; }
.strategy--reverse .strategy-image { order: 1; }
.strategy--reverse .strategy-num { order: 0; }

.strategy-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
  align-self: start;
  padding-top: 8px;
}
.strategy-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  color: var(--paper);
}
.strategy-tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold-2);
  margin-bottom: 24px;
  line-height: 1.4;
}
.strategy-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 238, 229, 0.78);
  margin-bottom: 28px;
}
.strategy-link {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 0.5px solid var(--gold);
  transition: all 0.3s var(--ease);
}
.strategy-link:hover { color: var(--gold-2); border-color: var(--gold-2); }
.strategy-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  max-height: 560px;
}
.strategy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.85) contrast(1.02);
  transition: transform 1.2s var(--ease);
}
.strategy:hover .strategy-image img { transform: scale(1.04); }

/* =========================================
   Pull quote (now stat-led editorial moment)
   ========================================= */
.pullquote {
  background: var(--paper);
  padding: var(--section) var(--gutter);
  text-align: center;
  position: relative;
}
.pullquote .intro-eyebrow {
  justify-content: center;
  margin-bottom: 32px;
}
.pullquote blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.4px;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto 64px;
}
.pullquote blockquote em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.pullquote-stats {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 48px;
  border-top: 0.5px solid rgba(21, 33, 45, 0.12);
}
.pq-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pq-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1;
}
.pq-label {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pale-2);
  line-height: 1.5;
  text-align: center;
}

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

/* =========================================
   CTA
   ========================================= */
.cta {
  background: var(--slate);
  color: var(--paper);
  padding: var(--section) var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184, 146, 79, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(184, 146, 79, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner .intro-eyebrow {
  justify-content: center;
}
.cta-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--paper);
  margin-bottom: 28px;
}
.cta-headline em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}
.cta-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 238, 229, 0.78);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: #08131D;
  color: rgba(242, 238, 229, 0.7);
  padding: 64px var(--gutter) 28px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(242, 238, 229, 0.12);
}
.footer-col--brand { max-width: 280px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: rgba(242, 238, 229, 0.55);
  line-height: 1.5;
}
.footer-h {
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 18px;
}
.footer-col address,
.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  font-style: normal;
}
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-2); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 13px;
}
.footer-legal {
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-legal p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(242, 238, 229, 0.4);
  max-width: 800px;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(242, 238, 229, 0.4);
}

/* =========================================
   Selection
   ========================================= */
::selection {
  background: var(--gold);
  color: var(--deep);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 900px) {
  .frame { display: none; }
  .nav { padding-top: 32px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 10px; }

  .hero { padding-top: 100px; }
  .hero-content { padding-bottom: 40px; }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-stats {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 56px;
    padding-top: 36px;
  }

  .strategy {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0;
  }
  .strategy--reverse .strategy-body { order: 1; }
  .strategy--reverse .strategy-image { order: 2; }
  .strategy-num { padding-top: 0; font-size: 18px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-col--brand { grid-column: 1 / -1; }

  .footer-legal { flex-direction: column; gap: 16px; }
}

@media (max-width: 560px) {
  .nav-links { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* =========================================
   LIGHT PAGE VARIANT (About, Team)
   ========================================= */
body.page--light {
  background: var(--paper);
}
.nav--light .nav-brand,
.nav--light .nav-links a {
  color: var(--ink);
}
.nav--light .nav-links a {
  opacity: 0.7;
}
.nav--light .nav-links a:hover {
  opacity: 1;
}
.nav--light .nav-active {
  opacity: 1 !important;
  color: var(--gold) !important;
}
.frame-corner--dark {
  color: rgba(21, 33, 45, 0.45);
}

/* =========================================
   Page header (About, Team)
   ========================================= */
.page-header {
  background: var(--paper);
  color: var(--ink);
  padding: 200px var(--gutter) 100px;
  border-bottom: 0.5px solid rgba(21, 33, 45, 0.1);
}
.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--ink);
  margin-top: 32px;
}
.page-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.page-lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--slate);
  max-width: 720px;
  margin-top: 40px;
  letter-spacing: -0.3px;
}

/* =========================================
   About — lead section
   ========================================= */
.about-lead {
  background: var(--paper);
  padding: var(--section) var(--gutter);
}
.about-lead-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-lead-image {
  position: relative;
}
.about-lead-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.9) contrast(1.02);
}
.about-lead-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--pale-2);
}
.about-lead-caption .rule {
  width: 24px;
  height: 1px;
  background: var(--pale-2);
}
.about-lead-copy {
  padding-top: 12px;
}
.about-lead-copy .lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 32px;
}
.about-lead-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 20px;
}
.about-lead-copy em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

/* =========================================
   Principles
   ========================================= */
.principles {
  background: var(--deep);
  color: var(--paper);
  padding: var(--section) var(--gutter);
}
.principles-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.principles-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--paper);
  margin-bottom: 80px;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}
.principle {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: start;
}
.principle-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
  padding-top: 4px;
}
.principle h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.4px;
  color: var(--paper);
  margin-bottom: 12px;
}
.principle p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 238, 229, 0.78);
}

/* =========================================
   Glance section
   ========================================= */
.glance {
  background: var(--paper);
  padding: var(--section) var(--gutter);
}
.glance-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 0.5px solid rgba(21, 33, 45, 0.12);
}
.glance-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.glance-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1;
}
.glance-label {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pale-2);
}

/* =========================================
   Team page
   ========================================= */
.team {
  background: var(--paper);
  padding: 60px var(--gutter) var(--section);
}
.team-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.team-member {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-top: 0.5px solid rgba(21, 33, 45, 0.12);
}
.team-member:last-child {
  border-bottom: 0.5px solid rgba(21, 33, 45, 0.12);
}
.team-member--reverse .team-portrait { order: 2; }
.team-member--reverse .team-bio { order: 1; }

.team-portrait {
  position: relative;
}
.portrait-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--slate-2) 0%, var(--deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.portrait-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184, 146, 79, 0.18) 0%, transparent 60%);
}
.portrait-initial {
  font-family: var(--display);
  font-weight: 300;
  font-size: 88px;
  letter-spacing: -2px;
  color: rgba(242, 238, 229, 0.4);
  position: relative;
  z-index: 1;
}
.portrait-caption {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--pale-2);
  font-style: italic;
}
.team-bio {
  padding-top: 8px;
}
.team-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.team-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 8px;
}
.team-role {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.team-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 16px;
}
.team-text p:last-child {
  margin-bottom: 0;
}

/* =========================================
   Responsive (additions)
   ========================================= */
@media (max-width: 900px) {
  .page-header { padding: 140px var(--gutter) 60px; }
  .about-lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .principle-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .glance-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .team-member {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0;
  }
  .team-member--reverse .team-portrait { order: 1; }
  .team-member--reverse .team-bio { order: 2; }
  .portrait-placeholder { max-width: 320px; }
}

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

/* =========================================
   LOGO + NAV DROPDOWN (v2 additions)
   ========================================= */
/* LOGO: source file is dark wordmark on transparent.
   Light pages → use as-is (dark on cream).
   Dark hero → invert to white. */
.nav-logo {
  height: 72px;
  width: auto;
  display: block;
}
.nav-brand-mark,
.nav-brand-rule,
.nav-brand-sub {
  display: none;
}
/* Dark hero (default nav, not light): invert dark logo to white */
.nav:not(.nav--light) .nav-logo {
  filter: invert(1) brightness(2);
}
/* Light pages: use logo as-is */
.nav--light .nav-logo {
  filter: none;
}
.nav-brand-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav--light .nav-brand-fallback .nav-brand-mark,
.nav--light .nav-brand-fallback .nav-brand-sub {
  color: var(--ink);
}

/* Dropdown */
.nav-item--dropdown {
  position: relative;
}
.nav-link-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.78;
  transition: opacity 0.3s var(--ease);
  cursor: pointer;
  position: relative;
}
.nav-link-with-arrow:hover { opacity: 1; }
.nav-link-with-arrow::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-item--dropdown:hover .nav-link-with-arrow::after { transform: scaleX(1); }
.nav-arrow { opacity: 0.6; transition: transform 0.3s var(--ease); }
.nav-item--dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav--light .nav-link-with-arrow { color: var(--ink); opacity: 0.7; }
.nav--light .nav-link-with-arrow:hover { opacity: 1; }
.nav--light .nav-link-with-arrow.nav-active { opacity: 1; color: var(--gold); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--paper);
  padding: 16px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: 0 12px 40px rgba(14, 27, 39, 0.25);
  border-top: 1px solid var(--gold);
}
.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink) !important;
  opacity: 0.75;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
}
.nav-dropdown a:hover,
.nav-dropdown a.dropdown-active {
  opacity: 1;
  color: var(--gold) !important;
  background: rgba(184, 146, 79, 0.06);
}
.nav-dropdown a::after { display: none; }

/* =========================================
   WHO WE ARE pullout layout
   ========================================= */
.intro-grid--whoweare {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px 80px;
}
.intro-grid--whoweare .intro-eyebrow {
  grid-column: auto;
  margin-bottom: 0;
}
.intro-grid--whoweare .intro-body {
  padding-top: 36px;
}
.intro-grid--whoweare .intro-stats {
  grid-column: 1 / -1;
  margin-top: 40px;
}
.intro-left {
  /* not sticky — caused overlap with stats row below */
}
.intro-pullout {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-top: 24px;
}
.intro-pullout em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* =========================================
   STRATEGY DETAIL PAGE — Investments sectors
   ========================================= */
.sectors {
  background: var(--paper);
  padding: var(--section) var(--gutter);
}
.sectors-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.sector {
  display: flex;
  flex-direction: column;
}
.sector-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 28px;
}
.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.85) contrast(1.02);
  transition: transform 1.2s var(--ease);
}
.sector:hover .sector-image img { transform: scale(1.04); }
.sector-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.sector-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}
.sector-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
}

/* =========================================
   SME LENDING — 4Syte products
   ========================================= */
.finance-products {
  background: var(--paper);
  padding: var(--section) var(--gutter);
}
.finance-products-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.finance-products-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.four-syte-logo {
  font-family: var(--display);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -1px;
  color: var(--gold);
  margin-bottom: 24px;
}
.finance-products-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 0.5px solid rgba(21, 33, 45, 0.12);
  border-left: 0.5px solid rgba(21, 33, 45, 0.12);
}
.product {
  padding: 48px 40px;
  border-right: 0.5px solid rgba(21, 33, 45, 0.12);
  border-bottom: 0.5px solid rgba(21, 33, 45, 0.12);
}
.product--wide {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 40px;
}
.product--wide p {
  max-width: 600px;
  margin: 0 auto;
}
.product h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 16px;
}
.product p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
}
.product strong {
  color: var(--gold);
  font-weight: 500;
}

/* =========================================
   WHOLESALE FUNDING — Platform pillars + hero image
   ========================================= */
.wf-hero-image {
  background: var(--paper);
  padding: 0 var(--gutter) 80px;
}
.wf-hero-image-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.wf-hero-image-inner img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.85) contrast(1.02);
}
.image-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--pale-2);
}
.image-caption .rule {
  width: 24px;
  height: 1px;
  background: var(--pale-2);
}

.platform {
  background: var(--deep);
  color: var(--paper);
  padding: var(--section) var(--gutter);
}
.platform-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.platform-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--paper);
  margin-bottom: 80px;
  margin-top: 24px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.platform-pillar {
  display: flex;
  flex-direction: column;
}
.pillar-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
}
.platform-pillar h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--paper);
  margin-bottom: 16px;
  line-height: 1.15;
}
.platform-pillar p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 238, 229, 0.78);
}

/* =========================================
   STRATEGY-NAV (footer of each strategy page)
   ========================================= */
.strategy-nav {
  background: var(--paper);
  padding: 80px var(--gutter);
  border-top: 0.5px solid rgba(21, 33, 45, 0.12);
}
.strategy-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.strategy-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 0;
  transition: all 0.3s var(--ease);
}
.strategy-nav-link:hover { transform: translateX(8px); }
.strategy-nav-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.strategy-nav-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.5px;
  color: var(--ink);
}
.strategy-nav-link--secondary .strategy-nav-title {
  color: var(--slate);
  font-size: clamp(22px, 2.4vw, 28px);
}

/* =========================================
   CONTACT page
   ========================================= */
.contact {
  background: var(--paper);
  padding: 200px var(--gutter) var(--section);
  min-height: 80vh;
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.contact-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-top: 32px;
  max-width: 1100px;
}
.contact-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.contact-lede {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--slate);
  margin-top: 32px;
  letter-spacing: -0.3px;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 0.5px solid rgba(21, 33, 45, 0.12);
  max-width: 800px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.contact-detail-value,
.contact-detail address {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.4px;
  color: var(--ink);
  font-style: normal;
  line-height: 1.45;
}
a.contact-detail-value { transition: color 0.3s var(--ease); }
a.contact-detail-value:hover { color: var(--gold); }

/* =========================================
   TEAM GRID — smaller portraits, 3-up
   ========================================= */
.team-grid-section {
  background: var(--paper);
  padding: 60px var(--gutter) var(--section);
}
.team-grid-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-card-portrait {
  aspect-ratio: 4/4.2;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  background: linear-gradient(135deg, var(--slate-2) 0%, var(--deep) 100%);
}
.team-card-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card-portrait .portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-portrait .portrait-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184, 146, 79, 0.18) 0%, transparent 60%);
}
.team-card-portrait .portrait-initial {
  font-family: var(--display);
  font-weight: 300;
  font-size: 64px;
  letter-spacing: -2px;
  color: rgba(242, 238, 229, 0.4);
  position: relative;
  z-index: 1;
}
.team-card-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.team-card-role {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.team-card-bio p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 12px;
}
.team-card-bio p:last-child { margin-bottom: 0; }

/* =========================================
   RESPONSIVE additions
   ========================================= */
@media (max-width: 900px) {
  .intro-grid--whoweare { grid-template-columns: 1fr; gap: 40px; }
  .intro-left { position: static; }
  .sectors-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; gap: 40px; }
  .strategy-nav-inner { grid-template-columns: 1fr; gap: 20px; }
  .contact-details { grid-template-columns: 1fr; gap: 40px; }
  .team-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(14, 27, 39, 0.05);
    padding: 8px 0;
    margin-top: 8px;
  }
  .nav-item--dropdown:hover .nav-dropdown { transform: none; }
}
@media (max-width: 560px) {
  .team-grid-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* 4Syte CTA — centred button below products */
.four-syte-cta {
  text-align: center;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 0.5px solid rgba(21, 33, 45, 0.12);
}

/* =========================================
   DOCUMENTS section (Wholesale Funding)
   ========================================= */
.documents {
  background: var(--paper);
  padding: var(--section) var(--gutter);
}
.documents-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.documents-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 24px;
}
.documents-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.documents-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 640px;
  margin-bottom: 64px;
}
.documents-list {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid rgba(21, 33, 45, 0.15);
}
.document-item {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 0.5px solid rgba(21, 33, 45, 0.15);
  transition: all 0.3s var(--ease);
  position: relative;
}
.document-item:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(184, 146, 79, 0.04);
}
.document-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
}
.document-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.document-meta {
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pale-2);
}
.document-arrow {
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.document-item:hover .document-arrow {
  transform: translate(2px, -2px);
}

/* =========================================
   MOBILE PASS v2 — comprehensive iPhone Safari fixes
   ========================================= */

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-line {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1px;
  background: var(--paper);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-toggle-line:nth-child(1) { top: 14px; }
.nav-toggle-line:nth-child(2) { top: 22px; }
.nav--light .nav-toggle-line { background: var(--ink); }

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
  background: var(--paper);
}
.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
  background: var(--paper);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--deep);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-inner {
  padding: 100px 32px 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-height: 100%;
}
.mobile-menu-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu-label {
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.mobile-menu-section a {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--paper);
  text-decoration: none;
  line-height: 1.3;
}
.mobile-menu-primary {
  font-size: 28px !important;
}
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 40px;
  border-top: 0.5px solid rgba(242, 238, 229, 0.18);
}
.mobile-menu-footer a {
  font-size: 14px !important;
  font-family: var(--sans) !important;
  letter-spacing: 0.5px;
  color: var(--pale) !important;
}

body.menu-open {
  overflow: hidden;
}

/* =========================================
   Mobile breakpoint — under 768px
   ========================================= */
@media (max-width: 768px) {
  :root {
    --gutter: 24px;
    --section: 64px;
  }

  /* Show hamburger, hide nav links */
  .nav-toggle { display: block; }
  .nav-links { display: none; }
  .nav { padding: 20px 24px !important; }
  .nav.is-scrolled { padding: 16px 24px !important; }
  .nav-brand-mark { font-size: 18px; }
  .nav-brand-sub { font-size: 10px; letter-spacing: 1.8px; }
  .nav-logo { height: 26px; }

  /* HERO */
  .hero {
    min-height: 100vh;
    grid-template-rows: 1fr auto auto;
    padding: 0 24px;
  }
  .hero-content {
    padding-bottom: 32px;
    max-width: 100%;
  }
  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: 1.8px;
  }
  .hero-eyebrow .rule {
    width: 24px;
  }
  .hero-title {
    font-size: clamp(36px, 11vw, 56px);
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
  }
  .hero-lede {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .btn--ghost {
    padding: 13px 20px;
    font-size: 10px;
  }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0 28px;
  }
  .hero-meta-item {
    gap: 10px;
  }
  .hero-meta-item .num {
    font-size: 15px;
  }
  .hero-meta-item .label {
    font-size: 10px;
    line-height: 1.5;
  }

  /* INTRO / WHO WE ARE */
  .intro {
    padding: 64px 24px;
  }
  .intro-grid--whoweare {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro-pullout {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-top: 16px;
  }
  .intro-grid--whoweare .intro-body {
    padding-top: 0;
  }
  .intro-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .intro-stats,
  .intro-grid--whoweare .intro-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
  }
  .stat-num {
    font-size: 32px;
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  /* STRATEGIES section on homepage */
  .strategies {
    padding: 64px 24px;
  }
  .strategies-header {
    margin-bottom: 40px;
  }
  .strategies-headline {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.8px;
  }
  .strategy {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .strategy-num {
    font-size: 16px;
    padding-top: 0;
    margin-bottom: -8px;
  }
  .strategy-title {
    font-size: clamp(24px, 6vw, 32px);
    letter-spacing: -0.5px;
  }
  .strategy-tagline {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .strategy-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .strategy-link {
    font-size: 10px;
    letter-spacing: 1.6px;
  }
  .strategy-image {
    max-height: 380px;
  }
  .strategy--reverse .strategy-body { order: 1; }
  .strategy--reverse .strategy-image { order: 2; }

  /* PAGE HEADER (strategy detail pages, team, contact) */
  .page-header {
    padding: 120px 24px 56px;
  }
  .page-headline {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-top: 24px;
  }
  .page-lede {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 24px;
  }

  /* INVESTMENTS sectors */
  .sectors {
    padding: 56px 24px 64px;
  }
  .sectors-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sector-image {
    aspect-ratio: 5/4;
    max-height: 320px;
    margin-bottom: 20px;
  }
  .sector-title {
    font-size: 24px;
  }
  .sector-body p {
    font-size: 14px;
  }

  /* SME LENDING / 4Syte products */
  .finance-products {
    padding: 56px 24px 64px;
  }
  .finance-products-intro {
    margin-bottom: 48px;
  }
  .four-syte-logo {
    font-size: 36px;
  }
  .finance-products-intro p {
    font-size: 14px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product {
    padding: 32px 0;
    border-right: none;
    border-left: none;
  }
  .product--wide {
    padding: 32px 0;
    text-align: left;
  }
  .product--wide p {
    margin: 0;
  }
  .product h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .product p {
    font-size: 14px;
  }
  .four-syte-cta {
    margin-top: 40px;
    padding-top: 32px;
  }

  /* WHOLESALE FUNDING */
  .wf-hero-image {
    padding: 0 24px 40px;
  }
  .wf-hero-image-inner img {
    aspect-ratio: 4/3;
  }
  .platform {
    padding: 56px 24px;
  }
  .platform-headline {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 40px;
    margin-top: 16px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .platform-pillar h3 {
    font-size: 22px;
  }
  .platform-pillar p {
    font-size: 14px;
  }
  .pillar-num {
    margin-bottom: 16px;
    font-size: 18px;
  }

  /* DOCUMENTS */
  .documents {
    padding: 56px 24px;
  }
  .documents-headline {
    font-size: clamp(28px, 7vw, 40px);
  }
  .documents-intro {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .document-item {
    grid-template-columns: 36px 1fr 32px;
    gap: 16px;
    padding: 20px 0;
  }
  .document-item:hover {
    padding-left: 0;
    padding-right: 0;
  }
  .document-num {
    font-size: 14px;
  }
  .document-body h3 {
    font-size: 17px;
  }
  .document-meta {
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  /* TEAM */
  .team-grid-section {
    padding: 32px 24px 64px;
  }
  .team-grid-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .team-card-portrait {
    margin-bottom: 16px;
  }
  .team-card-portrait .portrait-initial {
    font-size: 36px;
  }
  .team-card-name {
    font-size: 16px;
    line-height: 1.25;
  }
  .team-card-role {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
  }
  .team-card-bio p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  /* CONTACT */
  .contact {
    padding: 120px 24px 64px;
    min-height: auto;
  }
  .contact-headline {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-top: 24px;
  }
  .contact-lede {
    font-size: 18px;
    margin-top: 24px;
  }
  .contact-details {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
  }
  .contact-detail-value,
  .contact-detail address {
    font-size: 20px;
  }

  /* FOOTER */
  .footer {
    padding: 48px 24px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-col--brand {
    max-width: 100%;
  }
  .footer-legal {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  .footer-legal p {
    font-size: 10px;
  }

  /* EDITORIAL EYEBROWS */
  .intro-eyebrow {
    font-size: 9px;
    letter-spacing: 1.8px;
  }
  .intro-eyebrow .rule {
    width: 24px;
  }
}

/* =========================================
   Extra-small phones (iPhone SE, etc) — under 380px
   ========================================= */
@media (max-width: 380px) {
  .team-grid-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-card-portrait {
    max-width: 280px;
  }
  .hero-title {
    font-size: clamp(32px, 10vw, 44px);
  }
  .page-headline {
    font-size: clamp(32px, 9vw, 44px);
  }
}

/* =========================================
   iOS Safari viewport fix
   ========================================= */
@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
  .mobile-menu {
    height: 100dvh;
  }
}

/* Team page — larger lede acting as heading */
.team-lede-large {
  font-size: clamp(32px, 4.4vw, 56px) !important;
  line-height: 1.15 !important;
  max-width: 1000px;
}

/* Mobile menu close button */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close span {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 21px;
  height: 1.5px;
  background: var(--paper);
}
.mobile-menu-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-close span:nth-child(2) { transform: rotate(-45deg); }

/* Footer logo — dark logo file inverted to white for dark footer */
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  filter: invert(1) brightness(2);
}
