/* ═══════════════════════════════════════════════════════════════
   APHIAS CAPITAL — Modern Redesign
   Aesthetic: Refined institutional PE — Advent/Hamilton Lane inspired
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1B32;
  --navy-light: #2C3E6B;
  --accent-blue: #4A7AB5;
  --accent-blue-soft: rgba(74,122,181,0.12);
  --copper: #B87333;
  --light-gray: #F7F8FA;
  --mid-gray: #E4E7EC;
  --border-subtle: rgba(27,42,74,0.08);
  --text-dark: #1A1A2E;
  --text-medium: #4A4A5A;
  --text-light: #8A8A9A;
  --white: #FFFFFF;
  --header-height: 80px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--white);
}

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.25; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.35; }
h4 { font-size: 1.15rem; line-height: 1.4; }
p { font-size: 1rem; line-height: 1.85; margin-bottom: 1rem; color: var(--text-medium); }
a { color: var(--navy); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-blue); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 clamp(1.5rem, 5%, 3rem); }

/* ── Header / Nav ───────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5%, 3rem);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}
.site-header.scrolled {
  box-shadow: 0 1px 30px rgba(27,42,74,0.06);
  background: rgba(255,255,255,0.98);
}
.site-header .logo img { height: 48px; width: auto; transition: opacity 0.3s; }
.site-header .logo:hover img { opacity: 0.8; }
.site-header nav { display: flex; gap: 2.2rem; align-items: center; }
.site-header nav a {
  font-family: 'Lato', sans-serif; font-weight: 400; font-size: 0.88rem;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-medium); position: relative; padding: 4px 0;
  transition: color 0.3s;
}
.site-header nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--accent-blue);
  transition: width 0.4s var(--ease-out-expo);
}
.site-header nav a:hover { color: var(--navy); }
.site-header nav a:hover::after, .site-header nav a.active::after { width: 100%; }
.site-header nav a.active { color: var(--navy); font-weight: 700; }

.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: 0.3s; }

/* ── Hero Sections ──────────────────────────────── */
.hero {
  position: relative;
  height: clamp(400px, 55vh, 520px);
  display: flex; align-items: center; justify-content: flex-start;
  margin-top: var(--header-height); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1.02); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,27,50,0.65) 0%, rgba(27,42,74,0.35) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: white;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 6%, 5rem);
  max-width: 800px;
}
.hero-content h1 {
  color: white; margin-bottom: 0.5rem;
  font-weight: 300; letter-spacing: -0.02em;
}
.accent-line {
  width: 50px; height: 2px;
  background: var(--accent-blue);
  margin-bottom: 1.2rem;
  opacity: 0.8;
}
.hero-content .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

/* Home hero — centered */
.hero-home .hero-bg::after {
  background: linear-gradient(180deg, rgba(15,27,50,0.15) 0%, rgba(0,0,0,0.25) 40%, rgba(15,27,50,0.45) 100%);
}
.hero-home { align-items: center; justify-content: center; height: clamp(450px, 65vh, 600px); }
.hero-home .hero-content { text-align: center; max-width: 850px; padding: 0 5%; }
.hero-home .hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-home .accent-line { display: none; }

/* ── Hero Animations ────────────────────────────── */
.hero-animate {
  opacity: 0; animation: heroReveal 1.4s var(--ease-out-expo) forwards;
}
.hero-animate-delay {
  opacity: 0; animation: heroFade 1.2s var(--ease-out-quart) forwards; animation-delay: 0.5s;
}
@keyframes heroReveal { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── Scroll Reveal ──────────────────────────────── */
.reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; transition: all 0.9s var(--ease-out-expo); }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-scale { transform: scale(0.96); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.stagger-children > * { opacity: 0; transform: translateY(20px); transition: all 0.7s var(--ease-out-expo); }
.stagger-children.visible > * { opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.54s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.61s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.68s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.75s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.82s; }
.stagger-children.visible > *:nth-child(13) { transition-delay: 0.89s; }

/* ── Sections ───────────────────────────────────── */
.section-light { padding: var(--section-pad) clamp(1.5rem, 5%, 3rem); background: var(--white); }
.section-gray { padding: var(--section-pad) clamp(1.5rem, 5%, 3rem); background: var(--light-gray); }
.section-dark { padding: var(--section-pad) clamp(1.5rem, 5%, 3rem); background: var(--navy-deep); color: white; }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-header h2 { color: var(--navy); margin-bottom: 0.8rem; font-weight: 300; }
.section-dark .section-header h2 { color: var(--white); }
.divider { width: 40px; height: 2px; background: var(--accent-blue); margin: 0 auto; opacity: 0.7; }

/* ── Home Three Columns ─────────────────────────── */
.three-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.three-cols .col {
  padding: 2.5rem 1.5rem;
  transition: background 0.4s ease;
}
.three-cols .col:hover { background: var(--light-gray); }
.three-cols .col h3 {
  font-family: 'Lato', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 1.2rem;
}
.three-cols .col p {
  font-size: 0.92rem; color: var(--text-medium); line-height: 1.8;
  max-width: 320px; margin: 0 auto 1.2rem;
}

/* ── Buttons ────────────────────────────────────── */
.btn-outline {
  display: inline-block; padding: 11px 32px;
  border: 1.5px solid var(--navy); color: var(--navy);
  font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo); cursor: pointer; background: none;
}
.btn-outline:hover {
  background: var(--navy); color: white;
  box-shadow: 0 6px 24px rgba(27,42,74,0.15);
  transform: translateY(-1px);
}

/* ── Home Personal Message ──────────────────────── */
.personal-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.personal-section .text-col p { font-size: 0.95rem; color: var(--text-medium); }
.personal-section .image-col img {
  width: 100%; max-width: 480px; height: auto; object-fit: cover;
}

/* ── About Page ─────────────────────────────────── */
.about-mission {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.about-mission .text-col h3 {
  color: var(--navy); margin-bottom: 1rem;
  font-size: 1.8rem; font-weight: 600;
}
.about-mission .text-col p { color: var(--text-medium); }
.about-mission .image-col img { width: 100%; height: auto; }

.principles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  max-width: 1100px; margin: 0 auto;
  background: var(--mid-gray);
}
.principle-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--white);
  transition: background 0.3s ease;
}
.principle-card:hover { background: var(--light-gray); }
.principle-card h4 {
  font-family: 'Lato', sans-serif; font-weight: 600; font-size: 0.92rem;
  color: var(--navy); margin-bottom: 0.8rem;
}
.principle-card p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.75; margin-bottom: 0; }

.results-bar {
  display: flex; justify-content: center; gap: clamp(2rem, 4vw, 4rem); flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.results-bar .result-item {
  min-width: 160px; padding: 1.5rem 0;
  position: relative;
}
.results-bar .result-item::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 2px; background: var(--accent-blue); opacity: 0.5;
}
.results-bar .result-item h4 {
  font-size: 0.95rem; color: var(--navy); font-weight: 600;
  font-family: 'Lato', sans-serif; margin-top: 0.5rem;
}

/* ── Approach Page ──────────────────────────────── */
.approach-overview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: 1100px; margin: 0 auto;
  border: 1px solid var(--mid-gray);
}
.approach-card {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-right: 1px solid var(--mid-gray);
  transition: background 0.4s ease;
  display: flex; flex-direction: column;
}
.approach-card:last-child { border-right: none; }
.approach-card:hover { background: var(--light-gray); }
.approach-card h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.25rem; color: var(--navy); margin-bottom: 1.2rem;
  font-style: italic;
}
.approach-card p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.8; flex: 1; }
.approach-card .btn-outline { margin-top: 1.5rem; align-self: flex-start; }

.invest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  max-width: 1100px; margin: 0 auto;
  background: rgba(74,122,181,0.2);
}
.invest-card {
  background: var(--navy); color: white;
  padding: clamp(1.5rem, 2.5vw, 2.2rem); text-align: center;
  transition: background 0.4s ease;
}
.invest-card:hover { background: var(--navy-light); }
.invest-card h4 {
  font-family: 'Lato', sans-serif; font-weight: 600;
  font-size: 0.88rem; margin-bottom: 0.5rem;
}
.invest-card p { font-size: 0.82rem; opacity: 0.75; margin: 0; color: white; }

.industry-section { max-width: 1100px; margin: 0 auto; }
.industry-section h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 500; }
.industry-section h4 {
  color: var(--accent-blue); font-size: 0.88rem; font-weight: 600;
  font-family: 'Lato', sans-serif; margin: 1.8rem 0 0.8rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.industry-section p { color: var(--text-medium); font-size: 0.92rem; }
.industry-section ul {
  list-style: none; padding-left: 0;
  color: var(--text-medium); font-size: 0.88rem; line-height: 2;
}
.industry-section ul li::before {
  content: '\2014'; color: var(--accent-blue); margin-right: 0.6rem; opacity: 0.6;
}

.industry-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start;
}
.industry-two-col img { width: 100%; height: auto; }

.quote-block {
  max-width: 750px; margin: 0 auto; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--text-medium); line-height: 1.9;
  position: relative; padding: 2rem 0;
}
.quote-block::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px; background: var(--accent-blue); opacity: 0.4;
}
.quote-block .attribution {
  font-style: normal; font-weight: 600; color: var(--navy);
  margin-top: 1.2rem; font-size: 0.95rem;
}

/* ── Team Page ──────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3vw, 3rem);
  max-width: 960px; margin: 0 auto;
}
.team-member {
  cursor: pointer; text-align: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.team-member:hover { transform: translateY(-4px); }
.team-member .photo-wrap {
  overflow: hidden; width: 100%;
  aspect-ratio: 3/4; max-width: 260px;
}
.team-member .photo-wrap img,
.team-member img.photo {
  width: 100%; max-width: 260px;
  height: auto; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  display: block;
  border: 1px solid var(--mid-gray);
  transition: filter 0.4s ease, transform 0.6s var(--ease-out-expo);
  filter: grayscale(15%);
}
.team-member:hover .photo-wrap img,
.team-member:hover img.photo {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.team-member h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--navy);
  margin-top: 0.8rem; font-weight: 600;
}
.team-member .role {
  font-size: 0.8rem; color: var(--text-light);
  margin: 0.15rem 0 0; line-height: 1.45;
  letter-spacing: 0.3px;
}

/* ── Contact Page ───────────────────────────────── */
.contact-info { max-width: 700px; margin: 0 auto; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  color: var(--navy); font-weight: 300; margin-bottom: 2.5rem;
}
.contact-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem;
}
.contact-details p { font-size: 0.92rem; color: var(--text-dark); line-height: 1.7; margin: 0; }
.contact-details a {
  color: var(--accent-blue); border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.contact-details a:hover { border-bottom-color: var(--accent-blue); }
.contact-map { width: 100%; max-width: 900px; margin: 0 auto; }
.contact-map iframe { width: 100%; height: 320px; border: 0; filter: grayscale(20%) contrast(1.05); }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.6);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 5%, 3rem);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap;
}
.site-footer img { height: 40px; margin-bottom: 0.6rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-text {
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  max-width: 480px; line-height: 1.6;
}
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px; transition: color 0.3s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

/* ── Disclaimer / Privacy Pages ─────────────────── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h3 { color: var(--navy); margin: 2.5rem 0 1rem; font-size: 1.25rem; font-weight: 500; }
.legal-content p { font-size: 0.9rem; color: var(--text-medium); }
.legal-content ul { padding-left: 1.2rem; font-size: 0.9rem; color: var(--text-medium); line-height: 1.9; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .three-cols, .approach-overview, .invest-grid, .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-overview { border: none; gap: 1px; background: var(--mid-gray); }
  .approach-card { border-right: none; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .site-header nav {
    display: none; position: fixed; top: var(--header-height); left: 0; right: 0;
    background: white; flex-direction: column; padding: 2rem 1.5rem; gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .site-header nav.open { display: flex; }
  .three-cols, .approach-overview, .invest-grid, .principles-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-mission, .personal-section, .industry-two-col, .contact-details { grid-template-columns: 1fr; }
  .hero { min-height: 280px; }
  .site-footer { flex-direction: column; text-align: center; align-items: center; }
  .footer-links { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   CLASS ALIASES — Match actual HTML class names
   ═══════════════════════════════════════════════════════════════ */

/* Home hero (HTML uses hero-full, not hero-home) */
.hero-full .hero-bg::after {
  background: linear-gradient(180deg, rgba(15,27,50,0.15) 0%, rgba(0,0,0,0.25) 40%, rgba(15,27,50,0.45) 100%);
}
.hero-full { align-items: center; justify-content: center; height: clamp(450px, 65vh, 600px); }
.hero-full .hero-content { text-align: center; max-width: 850px; padding: 0 5%; }
.hero-full .hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-full .accent-line { display: none; }

/* Card grid (HTML uses card-grid + card, not three-cols + col) */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.card-grid .card {
  padding: 2.5rem 1.8rem;
  transition: background 0.4s ease;
}
.card-grid .card:hover { background: var(--light-gray); }
.card-grid .card h2 {
  font-family: 'Lato', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 3.5px; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.card-grid .card p {
  font-size: 0.92rem; color: var(--text-medium); line-height: 1.8;
  max-width: 340px; margin: 0 auto 0;
}

/* Buttons — .btn class used in HTML */
.btn {
  display: inline-block; padding: 11px 32px;
  border: 1.5px solid var(--navy); color: var(--navy);
  font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 400;
  letter-spacing: 1.8px; text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo); cursor: pointer;
  background: none; text-decoration: none;
}
.btn:hover {
  background: var(--navy); color: white;
  box-shadow: 0 6px 24px rgba(27,42,74,0.15);
  transform: translateY(-1px);
}

/* Section-navy (same as section-dark) */
.section-navy {
  padding: var(--section-pad) clamp(1.5rem, 5%, 3rem);
  background: var(--navy-deep); color: white;
}
.section-navy .section-header h2 { color: white; }
.section-navy h3, .section-navy h4 { color: white; }
.section-navy p { color: rgba(255,255,255,0.75); }

/* Principle cards (HTML uses .principle, not .principle-card) */
.principles-grid .principle {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--white);
  transition: background 0.3s ease;
}
.principles-grid .principle:hover { background: var(--light-gray); }
.principles-grid .principle h4 {
  font-family: 'Lato', sans-serif; font-weight: 600; font-size: 0.92rem;
  color: var(--navy); margin-bottom: 0.8rem;
}
.principles-grid .principle p {
  font-size: 0.88rem; color: var(--text-medium); line-height: 1.75; margin-bottom: 0;
}

/* Sector labels for approach page */
.sector-label {
  color: var(--accent-blue); font-size: 0.85rem; font-weight: 600;
  font-family: 'Lato', sans-serif; letter-spacing: 0.5px;
  text-transform: uppercase; margin: 1.5rem 0 0.6rem;
}
.sector-list {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  color: var(--text-medium); font-size: 0.88rem; line-height: 2;
}
.sector-list li::before {
  content: '\2014'; color: var(--accent-blue); margin-right: 0.6rem; opacity: 0.5;
}

/* OTA section on approach page */
.ota-section {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.ota-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: white; font-weight: 300; margin-bottom: 1.5rem;
}
.ota-section p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.85; }

/* Icon class for approach invest cards */
.invest-card .icon {
  font-size: 2rem; margin-bottom: 0.8rem; opacity: 0.7;
  display: block;
}

/* Team photo-wrap (already on page, reinforce) */
.team-member .photo-wrap {
  overflow: hidden; width: 100%; max-width: 260px;
  aspect-ratio: 3/4;
}
.team-member .photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  border: 1px solid var(--mid-gray);
  transition: filter 0.4s ease, transform 0.6s var(--ease-out-expo);
  filter: grayscale(15%);
}
.team-member:hover .photo-wrap img {
  filter: grayscale(0%); transform: scale(1.02);
}

/* ── Dark footer with inverted logo ──────────────── */
.footer-logo img { filter: brightness(0) invert(1); opacity: 0.85; }

/* ── Responsive additions ────────────────────────── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; gap: 2rem; }
  .card-grid .card { padding: 2rem 1.2rem; }
}
