/* ── FONTS ── */
@font-face { font-family: Inter; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/e4af272ccee01ff0-s.p.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: Inter; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/8e9860b6e62d6359-s.woff2') format('woff2'); unicode-range: U+0100-02BA; }
@font-face { font-family: Inter; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/e4af272ccee01ff0-s.p.woff2') format('woff2'); unicode-range: U+0000-00FF; }
@font-face { font-family: Inter; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/e4af272ccee01ff0-s.p.woff2') format('woff2'); unicode-range: U+0000-00FF; }
@font-face { font-family: Inter; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/e4af272ccee01ff0-s.p.woff2') format('woff2'); unicode-range: U+0000-00FF; }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, Aptos, system-ui, sans-serif; color: #003e51; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── VARIABLES ── */
:root {
  --navy: #003e51;
  --navy-dark: #11242e;
  --navy-hover: #002d3d;
  --gold: #c5b783;
  --gold-hover: #b5a773;
  --white: #fff;
  --max-width: 1200px;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; width: 100%; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0.75rem 0;
}
#navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
#navbar.on-light { background: white; }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 4rem; } }

.nav-logo { display: block; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 112px; width: auto; transition: height 0.3s; }
#navbar.scrolled .nav-logo img { height: 60px; }
@media (max-width: 767px) { .nav-logo img { height: 64px; } }

.nav-links { display: none; gap: 2rem; list-style: none; align-items: center; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
#navbar.on-light .nav-links a { color: var(--navy); }
#navbar.on-light .nav-links a:hover { color: var(--gold); }

.nav-hamburger {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.9); padding: 0.5rem; border-radius: 4px;
  transition: color 0.2s;
}
.nav-hamburger:hover { color: var(--gold); }
#navbar.on-light .nav-hamburger { color: var(--navy); }
@media (min-width: 768px) { .nav-hamburger { display: none; } }

/* ── MOBILE MENU ── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--navy-dark);
  transform: translateX(100%); transition: transform 0.3s ease;
}
#mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.mobile-menu-header img { height: 60px; width: auto; }
.mobile-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.9); padding: 0.5rem;
  transition: color 0.2s;
}
.mobile-close:hover { color: var(--gold); }
.mobile-nav-links { list-style: none; padding: 0 1.5rem; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav-links a {
  display: block; padding: 1.25rem 0;
  font-size: 1.25rem; font-weight: 500;
  color: rgba(255,255,255,0.9); text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--gold); }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100svh;
  background: var(--navy);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
@media (min-width: 768px) { #hero { min-height: 600px; } }
@media (min-width: 1024px) { #hero { min-height: 800px; } }

.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: opacity 1s;
}
.hero-video.hidden { opacity: 0; }
.hero-video.visible { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, var(--navy), rgba(0,62,81,0.85) 50%, rgba(0,62,81,0.6));
}

.hero-content {
  position: relative; z-index: 10;
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  padding: 9rem 1.5rem 5rem;
}
@media (min-width: 768px) { .hero-content { padding: 9rem 2.5rem 5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 15rem 4rem 7rem; } }

.hero-text { max-width: 48rem; }
.hero-h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1; font-weight: 700;
  letter-spacing: -0.025em; color: white;
}
.hero-h1 .gold { color: var(--gold); display: block; }
.hero-sub {
  margin-top: 1.5rem; max-width: 36rem;
  font-size: 1.125rem; line-height: 1.75;
  color: rgba(255,255,255,0.8);
}
@media (min-width: 768px) { .hero-sub { font-size: 1.25rem; line-height: 2; } }
.hero-cta {
  margin-top: 2.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; font-size: 1.125rem; font-weight: 600;
  background: var(--gold); color: var(--navy);
  border: 2px solid var(--gold);
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s; border-radius: 2px;
}
.hero-cta:hover { background: transparent; color: var(--gold); }

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  pointer-events: none;
}
.hero-scroll-indicator .line { width: 1px; height: 2rem; background: rgba(255,255,255,0.3); }
.hero-scroll-indicator svg { color: rgba(255,255,255,0.4); }

/* ── SECTION BASE ── */
section { scroll-margin-top: 80px; }
.section-gold-bar { display: inline-block; height: 4px; width: 3rem; background: var(--gold); margin-bottom: 1rem; }
.section-white-bar { display: inline-block; height: 4px; width: 4rem; background: white; margin-top: 1rem; display: block; }

/* ── OUR PURPOSE ── */
#about { background: var(--gold); padding: 5rem 0; }
#about .section-gold-bar { background: white; }
#about h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1.5rem; }
#about p { font-size: 1rem; color: var(--navy); line-height: 1.75; margin-bottom: 0.875rem; opacity: 0.85; }
#about .section-white-bar { background: white; }

/* ── ABOUT COMPANY ── */
#about-company { background: white; padding: 5rem 0; }
#about-company .inner { max-width: 44rem; }
#about-company h2 { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
#about-company p { font-size: 1rem; color: rgba(0,62,81,0.8); line-height: 1.75; margin-bottom: 1.125rem; }

/* ── WHY MOMENTUM ── */
#why-momentum { background: var(--navy); padding: 5rem 0; }
#why-momentum .inner { max-width: 44rem; }
#why-momentum .section-gold-bar { background: var(--gold); }
#why-momentum h2 { font-size: 1.875rem; font-weight: 700; color: white; margin-bottom: 1.5rem; }
#why-momentum p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.75; }

/* ── INVESTMENT PRINCIPLES ── */
#investment-principles { background: var(--gold); padding: 5rem 0; }
#investment-principles h2 { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }

.accordion { border-top: 1px solid rgba(0,62,81,0.15); border-bottom: 1px solid rgba(0,62,81,0.15); margin-top: 1.5rem; }
.accordion-item { border-bottom: 1px solid rgba(0,62,81,0.15); }
.accordion-item:last-child { border-bottom: none; }

.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; background: none; border: none; cursor: pointer; text-align: left;
  transition: color 0.2s;
}
.accordion-btn-left { display: flex; align-items: center; gap: 1rem; }
.accordion-num { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.5); min-width: 1.5rem; letter-spacing: 0.05em; transition: color 0.2s; }
.accordion-title { font-size: 1.125rem; font-weight: 600; color: var(--navy); transition: color 0.2s; }
.accordion-btn[aria-expanded="true"] .accordion-num { color: white; }
.accordion-chevron { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: white; transition: transform 0.3s; }
.accordion-btn[aria-expanded="true"] .accordion-chevron { transform: rotate(180deg); }

.accordion-panel { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.35s ease, opacity 0.35s ease; }
.accordion-panel.open { max-height: 200px; opacity: 1; }
.accordion-panel p { padding: 0 1rem 1.5rem 2.5rem; font-size: 0.9375rem; color: rgba(0,62,81,0.75); line-height: 1.75; }
@media (min-width: 768px) { .accordion-panel p { padding: 0 1.5rem 1.5rem 2.75rem; } }

/* ── TEAM ── */
#team { background: white; padding: 5rem 0; }
#team h2 { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 3rem; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.team-photo {
  width: 10rem; height: 10rem; border-radius: 50%;
  overflow: hidden; margin-bottom: 1.25rem;
  ring: 2px solid rgba(197,183,131,0.3);
  box-shadow: 0 0 0 2px rgba(197,183,131,0.3);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-name-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.team-name { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.team-li { color: rgba(0,62,81,0.4); text-decoration: none; transition: color 0.15s; display: flex; }
.team-li:hover { color: #0A66C2; }
.team-li svg { width: 1rem; height: 1rem; }
.team-role { font-size: 0.875rem; color: var(--gold); font-weight: 500; margin-bottom: 1rem; }
.team-bio { font-size: 0.875rem; color: rgba(0,62,81,0.7); line-height: 1.75; }

/* ── CONTACT ── */
#contact { background: var(--navy); padding: 4rem 0 5rem; }
#contact .section-gold-bar { background: var(--gold); }
#contact h2 { font-size: 1.875rem; font-weight: 600; color: white; margin-bottom: 0.5rem; }
#contact .subtitle { color: rgba(255,255,255,0.7); margin-bottom: 3rem; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.6fr; gap: 4rem; } }

.contact-info-box {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  background: rgba(255,255,255,0.05); padding: 1.25rem;
}
.contact-info-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; font-weight: 600; }
.contact-li-link { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.contact-li-link:hover { color: var(--gold); }
.contact-li-link svg { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 479px) { .form-row { grid-template-columns: 1fr; } }

.field label { display: block; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 0.375rem; }
.field label .optional { font-weight: 400; color: rgba(255,255,255,0.5); font-size: 0.8125rem; margin-left: 0.25rem; }
.field label .req { color: rgba(255,255,255,0.5); }
.field input, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: white; font-size: 0.9375rem; font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:hover, .field textarea:hover { border-color: rgba(255,255,255,0.4); }
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(197,183,131,0.2); }
.field input.error, .field textarea.error { border-color: rgba(255,100,104,0.6); }
.field .err-msg { font-size: 0.8125rem; color: var(--gold); margin-top: 0.25rem; display: none; }
.field .err-msg.show { display: block; }
.field textarea { resize: vertical; min-height: 7.5rem; }

.submit-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; font-size: 1.125rem; font-weight: 500; font-family: inherit;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.2s; align-self: flex-start;
}
.submit-btn:hover { background: var(--gold-hover); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  border: 1px solid rgba(197,183,131,0.4);
  background: rgba(197,183,131,0.1); border-radius: 4px;
  padding: 2rem; text-align: center; display: none;
}
.form-success.show { display: block; }
.form-success h3 { font-size: 1.25rem; font-weight: 600; color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.form-success button {
  background: none; border: 1px solid rgba(197,183,131,0.5); color: var(--gold);
  padding: 0.5rem 1.5rem; border-radius: 2px; cursor: pointer; font-size: 0.875rem;
  transition: background 0.2s;
}
.form-success button:hover { background: rgba(197,183,131,0.1); }
.form-error { border: 1px solid rgba(255,100,104,0.4); background: rgba(255,100,104,0.1); border-radius: 4px; padding: 0.75rem 1rem; font-size: 0.875rem; color: #fca5a5; display: none; }
.form-error.show { display: block; }

/* ── FOOTER ── */
footer { background: #06202b; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1.5fr 1fr 1fr; } }

.footer-logo img { height: 60px; width: auto; }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-links .li-row { display: flex; align-items: center; gap: 0.5rem; }
.footer-links .li-row svg { width: 14px; height: 14px; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── PRIVACY / TERMS ── */
.legal-page { padding: 8rem 0 5rem; }
.legal-page h1 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.legal-page .updated { font-size: 0.875rem; color: rgba(0,62,81,0.5); margin-bottom: 2.5rem; }
.legal-content { max-width: 48rem; }
.legal-content h2 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; }
.legal-content p { font-size: 0.9375rem; color: rgba(0,62,81,0.8); line-height: 1.75; margin-bottom: 1rem; }
.legal-content a { color: var(--navy); text-decoration: underline; }

/* ── ANIMATED REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 150ms; }
.reveal.d2 { transition-delay: 300ms; }

/* ── SPINNER ── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 1s linear infinite; display: inline-block; margin-right: 0.5rem; }
