/* ══════════════════════════════════════════
   GALLOWAY CAPITAL PARTNERS — Global Styles
   ══════════════════════════════════════════ */

:root {
  --navy:        #0B2047;
  --mid-blue:    #1A3A6B;
  --accent-blue: #2B5BAA;
  --cream:       #F5F2EB;
  --warm-white:  #FAFAF7;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --text-dark:   #1A1A1A;
  --text-muted:  #6B7280;
  --transition:  all 0.3s ease;
}

/* ══════════════════════════════════════════
   UTILITIES (NEW - CLEAN SYSTEM)
   ══════════════════════════════════════════ */

/* text */
.text-small {
  font-size: .88rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.text-danger {
  color: #c0392b;
}
.grid-full {
  grid-column: 1 / -1;
}

.text-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.text-gold { color: var(--gold); }
.text-white { color: #fff; }

.text-xs {
  font-size: .78rem;
  color: var(--text-muted);
}

.text-xs-cont {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .5rem;
}





.bg-blue { background: var(--accent-blue); }
.bg-gold { background: var(--gold); }

.sell-highlight {
  background: var(--gold);
  border-color: var(--gold);
}

.sell-highlight .sell-item-title {
  color: var(--navy);
}

.sell-highlight .sell-item-text {
  color: var(--navy);
  opacity: .75;
}

/* serif titles */
.title-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

/* stat numbers */
.stat-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
}

.th-highlight {
  background: var(--accent-blue) !important;
  color: #fff;
}

/* spacing */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }

/* animation delay */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-15 { transition-delay: .15s; }
.delay-8 { transition-delay: .8s; }
.delay-16 { transition-delay: .16s; }
.delay-24 { transition-delay: .24s; }
.delay-32 { transition-delay: .32s; }
.delay-40 { transition-delay: .40s; }

/* card variants */
.card-dark {
  background: var(--navy);
  color: #fff;
}

.card-blue {
  background: var(--accent-blue);
  color: #fff;
}

* { box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--text-dark); margin: 0; }

/* ── SHARED UTILITIES ── */
.rule { width: 40px; height: 2px; background: var(--gold); margin: 2.5rem auto; }
.rule-left { width: 40px; height: 2px; background: var(--gold); margin: 1.5rem 0 2rem; }
.section-eyebrow { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: .9rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--navy); line-height: 1.25; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; padding: 1.2rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.15); transition: background .4s ease, box-shadow .4s ease, padding .3s ease; }
.navbar.scrolled { background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,0.18); padding: .8rem 2rem; }
.navbar-solid { position: sticky; top: 0; background: var(--navy) !important; box-shadow: 0 2px 24px rgba(0,0,0,0.18); }
.navbar-toggler { border-color: rgba(255,255,255,0.4); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.brand-badge { width: 40px; height: 40px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; letter-spacing: 0.04em; }
.brand-name { color: #fff; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; }
.brand-sub { color: rgba(255,255,255,0.5); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-link { color: rgba(255,255,255,0.85) !important; font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 400; margin-left: 1.1rem; transition: color .2s; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav-link:hover, .nav-link.active { color: #fff !important; border-bottom-color: var(--gold); }
.btn-gcp-primary { background: var(--gold); color: var(--navy) !important; font-weight: 700; font-size: 0.74rem; padding: 7px 18px; border-radius: 4px; border: 2px solid var(--gold); letter-spacing: 0.05em; transition: var(--transition); margin-left: 1rem; text-decoration: none; display: inline-block; }
.btn-gcp-primary:hover { background: transparent; color: var(--gold) !important; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 9rem 0 2rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(43,91,170,.35) 0%, transparent 60%); pointer-events: none; }
.page-hero-eyebrow { color: var(--gold); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; line-height: 1.15; color: #fff; }
.page-hero-title em { font-style: italic; }
.page-hero-sub { font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 1.2rem; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-brand-badge { width: 36px; height: 36px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .75rem; flex-shrink: 0; }
.footer-brand-name { color: #fff; font-size: .78rem; font-weight: 500; letter-spacing: .05em; }
.footer-brand-sub { color: rgba(255,255,255,.4); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-text { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-top: .8rem; }
.footer-col-heading { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: #fff; letter-spacing: .04em; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .82rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-label { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.footer-val { font-size: .81rem; line-height: 1.65; color: rgba(255,255,255,.6); }
.footer-val a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-val a:hover { color: #fff; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; margin-top: 3rem; font-size: .72rem; color: rgba(255,255,255,.3); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SHARED CARDS ── */
.gcp-card { background: #fff; border: 1px solid rgba(0,0,0,0.07); padding: 2rem; transition: box-shadow .3s, transform .3s; height: 100%; }
.gcp-card:hover { box-shadow: 0 8px 32px rgba(11,32,71,.1); transform: translateY(-3px); }
.stat-box { border-left: 3px solid var(--gold); padding: 1.2rem 1.5rem; background: #fff; height: 100%; }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--navy); line-height: 1; }
.stat-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-top: .35rem; }

/* ── GCP TABLE ── */
.gcp-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.gcp-table th { background: var(--navy); color: #fff; padding: .75rem 1rem; font-weight: 500; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.gcp-table td { padding: .65rem 1rem; border-bottom: 1px solid rgba(0,0,0,.07); color: var(--text-dark); }
.gcp-table tr:nth-child(even) td { background: rgba(11,32,71,.03); }
.gcp-table tr:hover td { background: rgba(201,168,76,.07); }
.gcp-table td.positive { color: #1a7a44; font-weight: 600; }
.gcp-table td.negative { color: #c0392b; font-weight: 600; }
.gcp-table td.year-label { font-weight: 700; color: var(--navy); }

/* ── PROCESS STEP ── */
.process-step { position: relative; padding: 2.5rem 1rem; background: var(--navy); height: 100%; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; right: -18px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.4rem; z-index: 2; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(255,255,255,.12); line-height: 1; margin-bottom: .5rem; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: #fff; margin-bottom: .8rem; }
.step-list { list-style: none; padding: 0; margin: 0; }
.step-list li { font-size: .76rem; line-height: 1.65; color: rgba(255,255,255,.6); padding-left: 1.1rem; position: relative; margin-bottom: .35rem; }
.step-list li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }

/* ══════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════ */
.hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; display: flex; align-items: flex-end; }
.hero video, .hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(10,25,60,.25) 0%,rgba(10,25,60,.5) 60%,rgba(10,25,60,.78) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 2rem 4rem; max-width: 680px; }
.hero-eyebrow { color: var(--gold); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 300; line-height: 1.15; color: #fff; margin-bottom: .8rem; }
.hero-title em { font-style: italic; }
.hero-sub { font-size: clamp(.9rem,2vw,1.05rem); line-height: 1.7; color: rgba(255,255,255,.7); max-width: 520px; }

.tagline-section { background: var(--warm-white); padding: 3.5rem 0 0; text-align: center; }
.tagline-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem,3.2vw,2.7rem); font-weight: 300; color: var(--navy); line-height: 1.38; max-width: 720px; margin: 0 auto; }
.tagline-section h2 em { font-style: italic; color: var(--accent-blue); }

.pillars-section { background: var(--navy); padding: 0; overflow: hidden; }
.pillar-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.pillar { padding: 3rem 2rem; border-right: 1px solid rgba(255,255,255,.08); transition: background .3s; cursor: default; }
.pillar:last-child { border-right: none; }
.pillar:nth-child(3) { background: var(--accent-blue); }
.pillar:hover { background: rgba(255,255,255,.06); }
.pillar:nth-child(3):hover { background: #2F67BF; }
.pillar-icon { width: 34px; height: 34px; margin-bottom: 1.8rem; opacity: .75; }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: #fff; margin-bottom: .7rem; }
.pillar-body { font-size: .77rem; line-height: 1.7; color: rgba(255,255,255,.6); font-weight: 300; }

.acq-banner { background: var(--cream); padding: 1.5rem 0; text-align: center; }
.acq-banner p { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem,2vw,1.6rem); font-weight: 300; line-height: 1.65; color: var(--navy); max-width: 640px; margin: 0 auto; }
.acq-banner p strong { font-weight: 600; font-style: italic; }

.leadership-section { background: var(--warm-white); padding: 5rem 0; }
.leadership-eyebrow { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: .9rem; }
.leadership-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem,2.8vw,2.4rem); font-weight: 300; color: var(--navy); line-height: 1.25; }
.leadership-sub { font-size: .81rem; color: var(--text-muted); line-height: 1.75; margin-top: 1rem; max-width: 260px; }
.view-all-link { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--gold); padding-bottom: 3px; display: inline-block; transition: color .2s; }
.view-all-link:hover { color: var(--gold); }
.slider-viewport { overflow: hidden; position: relative; }
.slider-track { display: flex; gap: 16px; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.leader-card { flex: 0 0 auto; background: #fff; overflow: hidden; cursor: pointer; }
.img-overflow { overflow: hidden; }
.leader-card img { width: 100%; aspect-ratio: 3/3.6; object-fit: cover; display: block; filter: grayscale(25%); transition: filter .4s, transform .55s; }
.leader-card:hover img { filter: grayscale(0%); transform: scale(1.03); }
.leader-info { padding: .6rem .7rem; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: flex-start; }
.leader-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.leader-role { font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; color: var(--text-muted); max-width: 160px; line-height: 1.4; }
.leader-plus { font-size: 1.1rem; color: var(--navy); opacity: .4; line-height: 1; flex-shrink: 0; }
.slider-controls { display: flex; align-items: center; gap: 10px; margin-top: 2rem; }
.slider-arrow { width: 42px; height: 42px; border: 1.5px solid var(--navy); background: transparent; color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .25s, color .25s; flex-shrink: 0; }
.slider-arrow:hover { background: var(--navy); color: #fff; }
.slider-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }
.slider-arrow svg { width: 16px; height: 16px; }
.slider-dots { display: flex; gap: 6px; align-items: center; margin-left: 6px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(11,32,71,0.2); transition: background .3s, transform .3s; cursor: pointer; border: none; padding: 0; }
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
   .bio-card {
     background: #fff;
     border: 1px solid rgba(0,0,0,.07);
     overflow: hidden;
     transition: box-shadow .3s;

     display: flex;
     flex-direction: column;
     height: 100%;
   }
.bio-card:hover { box-shadow: 0 12px 40px rgba(11,32,71,.1); }
.bio-img-wrap {
  width: 100%;
  height: 300px; /* ✅ final correct height */
  overflow: hidden;
  flex-shrink: 0;
}
.bio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* 🔥 correct position */
  display: block;

  filter: grayscale(20%);
  transition: filter .4s ease, transform .5s ease;
}
.cream .row {
  align-items: stretch;
}

.terms-table td {
  padding: 10px 12px;
  vertical-align: top;
}

.bio-card:hover .bio-img-wrap img { filter: grayscale(0%); transform: scale(1.03); }

.bio-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.f-term {  height: 100%;
  display: flex;
  flex-direction: column; }


.bio-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.bio-role { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.2rem; }
.bio-contact { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.bio-contact a { color: var(--text-muted); text-decoration: none; }
.bio-contact a:hover { color: var(--navy); }
.bio-contact svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .6; }
.bio-divider { width: 30px; height: 2px; background: var(--gold); margin: 1rem 0; }

.lnav {
  background: var(--navy);
}

.lgold {
  background:var(--gold)
}

.lblue {
  background:var(--accent-blue)
}

.lbg{
  background:#C9D8E8
}
.lbusi{
  background:#8BA7D4
}

.section-light {
  background: var(--warm-white);
  padding: 3rem 0;
}

.section-dark {
  background: var(--navy);
  padding: 3rem 0;
}

.flex-col {
  flex-direction: column;
  gap: 1px;
}

.icon-lg {
  font-size: 1.8rem;
}

.warm-white {
  padding:3rem 0; 
  background:var(--warm-white);
}
.cream {
  padding:3rem 0;
  background:var(--cream);
}
.h-100 {
  height: 100%;
}

.w-100 {
  weight: 100%;
}

.pnavy {
  padding:3rem 0;
  background:var(--navy);
}

.bio-text {
  font-size: .82rem;9
  line-height: 1.8;
  color: var(--text-muted);
  max-height: 70px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bio-text.expanded {
  max-height: 260px;
  overflow-y: auto;
}

.fleader {
  max-width: 1200px; 
  margin: auto; 
  align-items: start;
}

/* read more button */
.read-more-btn {
  font-size: 0.7rem;
  color: var(--gold);
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.attr-card { padding: 12px; background: #fff; border: 1px solid rgba(0,0,0,.07); transition: border-color .3s, box-shadow .3s; display: flex; gap: 1rem; align-items: flex-start; height: 100%; }
.attr-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(11,32,71,.08); }
.attr-card > div:last-child { flex: 1; min-width: 0; }
.attr-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(11,32,71,.07); display: flex; align-items: center; justify-content: center; }
.attr-icon svg { width: 22px; height: 22px; }
.attr-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.attr-text { font-size: .8rem; line-height: 1.7; color: var(--text-muted); }

.stats-band { background: var(--navy); padding: 1rem 0; }
.s-item { text-align: center; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,.08); }
.s-item:last-child { border-right: none; }
.s-val { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--gold); line-height: 1; }
.s-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .5rem; }

/* ══════════════════════════════════════════
   STRATEGY PAGE
   ══════════════════════════════════════════ */
.target-feature { padding: 1.8rem; background: #fff; border-bottom: 3px solid transparent; transition: border-color .3s, box-shadow .3s; height: 100%; }
.target-feature:hover { border-bottom-color: var(--gold); box-shadow: 0 6px 24px rgba(11,32,71,.08); }
.tf-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: rgba(11,32,71,.12); line-height: 1; }
.tf-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: .6rem 0 .5rem; }
.tf-text { font-size: .8rem; line-height: 1.75; color: var(--text-muted); }
.sell-item { background: #fff; border: 1px solid rgba(0,0,0,.07); padding: 1.5rem; height: 100%; transition: box-shadow .3s; }
.sell-item:hover { box-shadow: 0 6px 24px rgba(11,32,71,.1); }
.sell-item-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: .6rem; }
.sell-item-text { font-size: .8rem; line-height: 1.75; color: var(--text-muted); }
.char-list { list-style: none; padding: 0; margin: 0; }
.char-list li { padding: .9rem 0 .9rem 2rem; border-bottom: 1px solid rgba(0,0,0,.07); font-size: .85rem; line-height: 1.6; color: var(--text-dark); position: relative; }
.char-list li:last-child { border-bottom: none; }
.char-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 16px; height: 2px; background: var(--gold); }
.capacity-badge { display: inline-block; background: var(--navy); color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; padding: .8rem 1.8rem; letter-spacing: .04em; }

/* ══════════════════════════════════════════
   PERFORMANCE PAGE
   ══════════════════════════════════════════ */
.perf-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.perf-table { width: 100%; border-collapse: collapse; font-size: .78rem; min-width: 780px; }
.perf-table th { background: var(--navy); color: rgba(255,255,255,.75); padding: .65rem .8rem; font-weight: 500; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; text-align: center; }
.perf-table th:first-child { text-align: left; }
.perf-table td { padding: .6rem .8rem; border-bottom: 1px solid rgba(0,0,0,.06); text-align: center; color: var(--text-dark); }
.perf-table td:first-child { text-align: left; font-weight: 700; color: var(--navy); background: rgba(11,32,71,.03); }
.perf-table td.year-total { font-weight: 700; background: rgba(11,32,71,.05); }
.perf-table tr:hover td { background: rgba(201,168,76,.06); }
.perf-table tr:hover td:first-child { background: rgba(201,168,76,.1); }
.cell-pos { color: #1a7a44; font-weight: 600; }
.cell-neg { color: #c0392b; font-weight: 600; }
.cell-blank { color: rgba(0,0,0,.2); }
.annual-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.annual-table th { background: var(--navy); color: #fff; padding: .75rem 1rem; font-weight: 500; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; text-align: center; }
.annual-table th:first-child { text-align: left; }
.annual-table td { padding: .75rem 1rem; border-bottom: 1px solid rgba(0,0,0,.07); text-align: center; }
.annual-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.annual-table tr.gcp-row td { background: rgba(11,32,71,.04); }
.annual-table tr.sp-row td { background: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(0,0,0,.08); }
.stat-cell { background: #fff; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.stat-cell-label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.stat-cell-val { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); }
.stat-cell-val.highlight { color: var(--gold); }

/* ══════════════════════════════════════════
   PORTFOLIO PAGE
   ══════════════════════════════════════════ */

/* Structure section wrapper */
.portfolio-structure-section { padding: 3rem 0; background: var(--warm-white); }

/* Chart rows — CSS grid for equal-height, equal-width cards */
.chart-row { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
.chart-row-3 { grid-template-columns: repeat(3, 1fr); }
.chart-row-2 { grid-template-columns: repeat(2, 1fr); }

/* Chart card */
.chart-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .3s;
}
.chart-card:hover { box-shadow: 0 6px 24px rgba(11,32,71,.08); }

.chart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  width: 100%; text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Chart body: donut left, legend right on wide cards */
.chart-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  flex: 1;
}

/* Donut */
.donut-wrap { position: relative; display: inline-block; flex-shrink: 0; }
.donut-wrap svg { display: block; }
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.donut-center-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--navy); line-height: 1;
}
.donut-center-lbl {
  font-size: .58rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-top: .2rem;
}

/* Legend */
.legend { width: 100%; }
.legend-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .74rem; color: var(--text-dark); margin-bottom: .38rem;
  line-height: 1.3;
}
.legend-item span { flex: 1; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.filing-card { background: #fff; border: 1px solid rgba(0,0,0,.07); padding: 1.2rem; text-align: center; transition: box-shadow .3s, transform .3s; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 120px; }
.filing-card:hover { box-shadow: 0 6px 24px rgba(11,32,71,.1); transform: translateY(-2px); }
.filing-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-top: .6rem; margin-bottom: .2rem; }
.filing-ticker { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.case-section { background: #fff; border: 1px solid rgba(0,0,0,.07); overflow: hidden; margin-bottom: 2rem; }
.case-header { background: var(--navy); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.case-company { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: #fff; }
.case-ticker { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.case-roi { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.case-roi-lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.case-body { padding: 2rem; }
.case-sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.case-text { font-size: .83rem; line-height: 1.8; color: var(--text-muted); }
.case-points { list-style: none; padding: 0; margin: 0; }
.case-points li { font-size: .82rem; line-height: 1.7; color: var(--text-muted); padding-left: 1.1rem; position: relative; margin-bottom: .3rem; }
.case-points li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }
.metrics-row { display: flex; gap: 1px; background: rgba(0,0,0,.08); margin-top: 1.5rem; flex-wrap: wrap; }
.metric-cell { background: #fff; padding: .9rem 1.2rem; flex: 1; min-width: 100px; }
.metric-key { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .3rem; }
.metric-val { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); }
.metric-val.green { color: #1a7a44; }
.inv-case { border: 1px solid rgba(0,0,0,.08); background: #fff; overflow: hidden; }
.inv-case-header { background: var(--navy); padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem; }
.inv-case-ticker { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: #fff; }
.inv-case-exchange { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.inv-case-body { padding: 1.5rem; }
.inv-case-section-title { font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.inv-case-text { font-size: .8rem; line-height: 1.7; color: var(--text-muted); }
.inv-case-metric { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .8rem; }
.inv-case-metric:last-child { border-bottom: none; }
.inv-case-metric .key { color: var(--text-muted); }
.inv-case-metric .val { font-weight: 600; color: var(--navy); }
.inv-case-metric .val.green { color: #1a7a44; }

/* ══════════════════════════════════════════
   RISK PAGE
   ══════════════════════════════════════════ */
.row.g-4 { display: flex; flex-wrap: wrap; align-items: stretch; }

/* only apply where needed */
.equal-height > [class*='col-'] {
  display: flex;
}

/* cards stretch properly */
.gcp-card,
.pro-card,
.risk-pillar {
  height: 100%;
}
/*.row.g-4 > [class*='col-'] { display: flex; }*/
.risk-pillar { padding: 10px 10px 10px 20px; background: #fff; border: 1px solid rgba(0,0,0,.07); border-top: 4px solid transparent; transition: border-top-color .3s, box-shadow .3s; width: 100%; display: flex; flex-direction: column; }
.risk-pillar:hover { border-top-color: var(--gold); box-shadow: 0 8px 32px rgba(11,32,71,.1); }
.risk-icon { width: 52px; height: 52px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; flex-shrink: 0; }
.risk-icon svg { width: 26px; height: 26px; }
.risk-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.risk-list { list-style: none; padding: 0; margin: 0; }
.risk-list li { font-size: .82rem; line-height: 1.7; color: var(--text-muted); padding-left: 1.2rem; position: relative; margin-bottom: .4rem; }
.risk-list li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }
.terms-table { width: 100%; border-collapse: collapse; }
.terms-table tr { border-bottom: 1px solid rgba(0,0,0,.07); }
.terms-table tr:last-child { border-bottom: none; }
.terms-table td { padding: .9rem 1rem; font-size: .83rem; vertical-align: top; }
.terms-table td:first-child { font-weight: 600; color: var(--navy); width: 45%; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.terms-table td:last-child { color: var(--text-muted); }
.pro-card { background: #fff; border: 1px solid rgba(0,0,0,.07); overflow: hidden; display: flex; flex-direction: column; width: 100%; height: 100%; }
.pro-card-header { background: var(--navy); padding: .9rem 1.2rem; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 500; }
.pro-card-body { padding: 1.2rem; flex-grow: 1; display: flex; flex-direction: column; }
.pro-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.pro-org { font-size: .78rem; color: var(--text-muted); margin-bottom: .6rem; }
.pro-detail { margin-top: auto; font-size: .75rem; color: var(--text-muted); line-height: 1.6; }
.pro-detail a { color: var(--accent-blue); text-decoration: none; }
.pro-detail a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-card { background: #fff; border: 1px solid rgba(0,0,0,.07); padding: 2rem; height: 100%; display: flex; flex-direction: column; }
.contact-icon { width: 44px; height: 44px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .4rem; }
.contact-val { font-size: .88rem; color: var(--text-dark); line-height: 1.7; }
.contact-val a { color: var(--text-dark); text-decoration: none; }
.contact-val a:hover { color: var(--accent-blue); }
.gcp-form label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); font-weight: 500; margin-bottom: .4rem; }
.gcp-form .form-control, .gcp-form .form-select { border: 1px solid rgba(0,0,0,.15); border-radius: 0; font-size: .84rem; padding: .75rem 1rem; background: #fff; color: var(--text-dark); transition: border-color .2s, box-shadow .2s; }
.gcp-form .form-control:focus, .gcp-form .form-select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,32,71,.08); outline: none; }
.gcp-form textarea.form-control { resize: vertical; min-height: 130px; }
.gcp-submit { background: var(--navy); color: #fff; border: 2px solid var(--navy); padding: .85rem 2.5rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: var(--transition); width: 100%; }
.gcp-submit:hover { background: transparent; color: var(--navy); }
.person-card { display: flex; gap: 1.2rem; align-items: flex-start; padding: 8px 0px 8px 10px; background: #fff; border: 1px solid rgba(0,0,0,.07); }
.person-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; filter: grayscale(20%); }
.person-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.person-role { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.person-contact { font-size: .78rem; color: var(--text-muted); line-height: 1.7; }
.person-contact a { color: var(--text-muted); text-decoration: none; }
.person-contact a:hover { color: var(--navy); }
.disclaimer-box { background: var(--navy); padding: 3rem; font-size: .78rem; line-height: 1.8; color: rgba(255,255,255,.55); }
.disclaimer-box strong { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤991px)
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
  .navbar { padding: 1rem 1.2rem; }
  .nav-link { margin-left: .5rem; font-size: .7rem; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .leadership-sub { max-width: 100%; }
  .process-step:not(:last-child)::after { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 7rem 0 4rem; }
  .stats-band { padding: 3rem 0; }
  /* Chart grid: 3-col → 2-col on tablet */
  .chart-row-3 { grid-template-columns: repeat(2, 1fr); }
  .chart-row-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤767px)
   ══════════════════════════════════════════ */
@media (max-width: 767px) {
  .hero { min-height: 480px; }
  .hero-content { padding: 0 1.2rem 2.5rem; }
  .tagline-section { padding: 2.5rem 0 0; }
  .tagline-section h2 { font-size: 1.2rem; }
  .acq-banner { padding: 2rem 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 2rem 1.5rem; }
  .leadership-section { padding: 3rem 0; }
  .leadership-sub { max-width: 100%; }
  .page-hero { padding: 6rem 1rem 3rem; }
  .page-hero-title { font-size: 2rem; }
  .page-hero-sub { font-size: .85rem; }
  .stats-band { padding: 2rem 0; }
  .s-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 1.2rem; }
  .s-item:last-child { border-bottom: none; }
  .bio-img-wrap { height: 220px; }
  .attr-card { flex-direction: column; gap: .75rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .process-step { padding: 2rem 1.5rem; margin-bottom: .5rem; }
  .case-body { padding: 1.2rem; }
  .case-header { padding: 1rem 1.2rem; }
  .case-roi { font-size: 2rem; }
  .metrics-row { flex-direction: column; gap: 0; }
  .metric-cell { min-width: 100%; }
  .chart-card { padding: 1.2rem; }
  .risk-pillar { padding: 1.8rem 1.5rem; }
  .pro-card-body { padding: 1rem; }
  .contact-card { padding: 1.5rem; }
  .person-card { flex-direction: column; gap: .8rem; }
  .terms-table td { font-size: .78rem; padding: .7rem .8rem; }
  .terms-table td:first-child { width: 40%; font-size: .72rem; }
  .disclaimer-box { padding: 1.5rem; }
  .footer-bottom-bar .d-flex { flex-direction: column; gap: .5rem; text-align: center; }
  .row.g-4 { align-items: unset; }
  .row.g-4 > [class*='col-'] { display: block; }
  .gcp-submit { padding: .75rem 1rem; }
  /* Chart grid: single col on mobile */
  .chart-row-3,
  .chart-row-2 { grid-template-columns: 1fr; }
  .chart-body { flex-direction: row; align-items: flex-start; }
  .donut-wrap { flex-shrink: 0; }
  .legend { margin-top: 0; }
  .portfolio-structure-section { padding: 3rem 0; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .perf-table-wrap { border: 1px solid rgba(0,0,0,.06); }
  .annual-table { font-size: .7rem; }
  .annual-table th, .annual-table td { padding: .45rem .5rem; }
  .slider-controls { margin-top: 1.2rem; }
  .capacity-badge { font-size: 1.4rem; padding: .6rem 1.2rem; }
  .person-avatar { width: 52px; height: 52px; }
  .stat-cell { flex-direction: column; align-items: flex-start; }
}
/*Popup CSS*/
/*.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px;
  width: 400px;
  max-width: 90%;
}

.popup-box input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.popup-box button {
  width: 100%;
  padding: 10px;
}

.popup-box h3 {
  margin-bottom: 15px;
  text-align: center;
}

.switch-text {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.switch-text a {
  color: #007bff;
  cursor: pointer;
}

#loginForm, #registerForm {
  transition: all 0.3s ease;
}*/