/* ============================================================
   EQUITY GROWTH PARTNERS — Shared Stylesheet
   equitygpllc.com | Version 1.0 | 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

/* === RESET & VARS === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #0B1628;
  --navy-mid:   #101f3a;
  --navy-light: #162847;
  --gold:        #C9A55A;
  --gold-light:  #E2C47A;
  --gold-mute:   #7a6034;
  --bronze:      #A68966;
  --bronze-light:#BFA07A;
  --oxford:      #002147;
  --cream:      #F5F0E8;
  --cream-dim:  #D9D3C7;
  --white:      #ffffff;
  --text-mute:  #8a9ab5;
  --border:     rgba(201,165,90,0.18);
  --border-dim: rgba(255,255,255,0.06);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Manrope', sans-serif;
  --max-w:      1160px;
  --pad:        60px;
}

html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--cream); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
body::before { content:''; position:fixed; inset:0; z-index:0; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events:none; opacity:.35; }
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--navy); }
::-webkit-scrollbar-thumb { background:var(--gold-mute); border-radius:2px; }

/* === NAVIGATION === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  background: rgba(0,33,71,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
  transition: padding .3s;
}
nav.scrolled { padding: 14px var(--pad); }

.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 1px; flex-shrink: 0; }
.nav-logo-main { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: .04em; }
.nav-logo-sub { font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-dim); font-weight: 500; transition: color .2s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-2px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .2s; transform-origin:left; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.nav-cta { border: 1px solid var(--bronze); color: var(--bronze); padding: 8px 20px; transition: background .2s, color .2s; }
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--bronze); color: var(--white); }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream-dim); transition: transform .3s, opacity .3s; }

.mobile-nav { display: none; position: fixed; inset: 0; z-index: 199; background: rgba(0,33,71,.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity .3s ease; }
.mobile-nav.is-open { opacity: 1; }
.mobile-nav a { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--cream-dim); text-decoration: none; letter-spacing: .04em; padding: 12px 0; transition: color .2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav .mob-divider { width: 40px; height: 1px; background: var(--border); margin: 16px 0; }
.mobile-nav .mob-cta { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; border: 1px solid var(--bronze); color: var(--bronze) !important; padding: 14px 40px; margin-top: 8px; }
.mobile-nav .mob-close { position: absolute; top: 24px; right: var(--pad); font-size: 28px; color: var(--text-mute); cursor: pointer; background: none; border: none; line-height: 1; }

/* === PAGE HERO === */
.page-hero { position: relative; padding: 200px var(--pad) 80px; border-bottom: 1px solid var(--border-dim); overflow: hidden;
  background: radial-gradient(ellipse 70% 50% at 80% 40%, rgba(201,165,90,.07) 0%, transparent 65%), linear-gradient(160deg, #0B1628 0%, #0f1e35 55%, #0B1628 100%); }
.page-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(201,165,90,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(201,165,90,.04) 1px,transparent 1px); background-size:80px 80px; mask-image:linear-gradient(to bottom,transparent,rgba(0,0,0,.5) 40%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.page-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.page-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.page-eyebrow-text { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.page-title { font-family: var(--serif); font-size: clamp(44px,6vw,80px); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
.page-title em { font-style: italic; color: var(--gold); }
.page-subtitle { font-size: 16px; color: var(--text-mute); max-width: 520px; line-height: 1.75; font-weight: 300; }

/* === SECTION UTILITIES === */
section { position: relative; z-index: 1; }
.inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.sec-label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.sec-label-line { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sec-label-text { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.sec-headline { font-family: var(--serif); font-weight: 300; font-size: clamp(34px,4vw,58px); color: var(--white); line-height: 1.1; }
.sec-headline em { font-style: italic; color: var(--gold); }

/* === BUTTONS === */
.btn-primary { display: inline-block; text-decoration: none; background: var(--bronze); color: var(--white); padding: 15px 34px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; transition: background .25s, transform .2s; }
.btn-primary:hover { background: var(--bronze-light); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--cream-dim); font-size: 11.5px; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; transition: color .2s; }
.btn-ghost::after { content: '→'; font-size: 15px; transition: transform .2s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* === MARQUEE === */
.marquee-bar { background: var(--gold); padding: 12px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 1; }
.marquee-track { display: inline-flex; animation: marquee 22s linear infinite; }
.marquee-item { font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase; color: var(--navy); font-weight: 700; padding: 0 36px; }
.marquee-dot { font-size: 10px; color: var(--navy); opacity: .4; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* === FADE UP ANIMATION === */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }
.fu.d1{transition-delay:.1s}.fu.d2{transition-delay:.2s}.fu.d3{transition-delay:.3s}.fu.d4{transition-delay:.4s}

/* === DIVIDER === */
.divider { height: 1px; background: var(--border-dim); margin: 52px 0; }

/* === HIGHLIGHT BOX === */
.highlight { background: rgba(201,165,90,.06); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 22px 26px; margin: 22px 0; }
.highlight p { font-size: 14px; color: var(--cream-dim); line-height: 1.8; }
.highlight strong { color: var(--white); font-weight: 600; }

/* === CARD === */
.card { background: var(--navy-light); transition: background .25s; }
.card:hover { background: rgba(22,40,71,.9); }

/* === INTER-PAGE CTA STRIP === */
.cta-strip { padding: 96px 0; background: var(--navy-light); border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); text-align: center; position: relative; z-index: 1; }
.cta-strip-headline { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.cta-strip-headline em { font-style: italic; color: var(--gold); }
.cta-strip-sub { font-size: 15px; color: var(--text-mute); max-width: 480px; margin: 0 auto 40px; line-height: 1.75; }
.cta-strip-actions { display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; }

/* === FOOTER === */
.site-footer { background: var(--oxford); border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }
.footer-main { max-width: var(--max-w); margin: 0 auto; padding: 64px var(--pad) 0; display: grid; grid-template-columns: 260px 1fr auto; gap: 56px; align-items: start; }
.footer-brand-name { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.footer-brand-tag { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-mute); }
.footer-brand-desc { margin-top: 18px; font-size: 13px; color: var(--text-mute); line-height: 1.75; }
.footer-nav-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-col-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { text-decoration: none; font-size: 13px; color: var(--text-mute); transition: color .2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-hq-item { font-size: 13px; color: var(--text-mute); margin-bottom: 8px; }
.footer-hq-item a { color: var(--gold); text-decoration: none; }
.footer-bottom { max-width: var(--max-w); margin: 52px auto 0; padding: 28px var(--pad) 36px; border-top: 1px solid var(--border-dim); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--text-mute); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 12px; color: var(--text-mute); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--cream); }

/* === RESPONSIVE === */
@media(max-width:980px) {
  :root { --pad: 28px; }
  nav { padding: 16px var(--pad); }
  nav.scrolled { padding: 12px var(--pad); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 160px var(--pad) 60px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
}
@media(max-width:560px) {
  .footer-nav-cols { grid-template-columns: 1fr; }
  .footer-legal { flex-wrap: wrap; gap: 14px; }
}
