/* ══════════════════════════════════════════
   APOLLU CAPITAL — Global Stylesheet v2
   apollu.com
══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0f1628;
  --navy2:      #151e36;
  --navy3:      #1c2844;
  --gold:       #c9a84c;
  --gold2:      #ddb95e;
  --gold3:      #f0d48a;
  --cream:      #f7f4ee;
  --paper:      #fafaf7;
  --ink:        #111827;
  --muted:      #64748b;
  --white:      #ffffff;
  --border:     rgba(201,168,76,0.15);
  --border2:    rgba(201,168,76,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  3rem;
  --space-xl:  6rem;
  --nav-h:     72px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--paper); color: var(--ink); overflow-x: hidden; cursor: none; }

/* ── CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.08s var(--ease-out), opacity 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gold); pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.2s;
  opacity: 0.6;
}
.cursor.is-hover  { transform: translate(-50%,-50%) scale(2.5); opacity: 0.35; }
.cursor-ring.is-hover { width: 56px; height: 56px; opacity: 0.3; }
body:not(:hover) .cursor,
body:not(:hover) .cursor-ring { opacity: 0; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: stretch; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.nav.is-scrolled { box-shadow: 0 2px 32px rgba(0,0,0,0.07); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 0 2rem; text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon     { width: 38px; height: 38px; object-fit: contain; }
.nav-logo-wordmark { height: 26px; width: auto; object-fit: contain; }

.nav-links {
  display: flex; align-items: stretch;
  flex: 1; justify-content: flex-end;
}
.nav-links a {
  display: flex; align-items: center; padding: 0 1.4rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; position: relative;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0;
  left: 1.4rem; right: 1.4rem; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: flex !important; align-items: center; justify-content: center;
  background: var(--navy) !important; color: var(--white) !important;
  padding: 0 2.2rem !important; margin-left: 0.5rem;
  font-size: 0.72rem !important; font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s !important;
  white-space: nowrap; min-width: 140px;
}
.nav-cta::after  { display: none !important; }
.nav-cta:hover   { background: var(--gold) !important; color: var(--navy) !important; }
.nav-cta.is-active { color: var(--white) !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  width: 56px; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--navy); transition: all 0.28s var(--ease-out);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-direction: column; z-index: 199;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 1rem 2rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.15s;
}
.nav-mobile a:hover { background: var(--cream); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h); text-align: center;
}
.hero-inner {
  position: relative; height: 55vh; min-height: 460px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  text-align: left;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
/* Static image overlay */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(10,15,32,0.25) 0%,
    rgba(10,15,32,0.45) 60%,
    rgba(10,15,32,0.65) 100%);
}
/* Disable CSS overlay when video handles it inline */
.hero-bg.has-video::after { display: none; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; padding: 0 4rem 5rem;
}
.hero-inner .hero-content {
  max-width: 700px; padding: 0 4rem 4rem; text-align: left;
}

.hero-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  opacity: 0; animation: aUp 0.7s 0.15s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600; line-height: 1.08; color: var(--white);
  margin-bottom: 1.2rem;
  opacity: 0; animation: aUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero-title em { font-style: italic; color: var(--white); opacity: 0.85; }
.hero-title-sm { font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important; }

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  font-weight: 300; line-height: 1.7;
  max-width: 560px; margin: 0 auto;
  opacity: 0; animation: aUp 0.8s 0.45s var(--ease-out) forwards;
}
.hero-inner .hero-sub { margin: 0; max-width: 480px; }

.hero-scroll {
  position: absolute; right: 3rem; bottom: 2.5rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span {
  writing-mode: vertical-rl; font-size: 0.58rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s infinite var(--ease-out);
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.8) translateY(0); }
  50%      { opacity: 1;   transform: scaleY(1)   translateY(4px); }
}

/* ── ANIMATIONS ── */
@keyframes aUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 4rem; }
.section    { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-lg) 0; }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.1; color: var(--navy);
}
.display em { font-style: italic; color: var(--gold); }
.body-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--muted); max-width: 62ch;
}
.body-bold { font-weight: 600; color: var(--navy); }
.gold-divider        { display: block; width: 48px; height: 2px; background: var(--gold); margin: 1.4rem 0; }
.gold-divider-center { margin: 1.4rem auto; }
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ── DARK BAND ── */
.band { background: var(--navy2); padding: 4rem 0; }
.band-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-style: italic; color: var(--gold);
  text-align: center; line-height: 1.65;
  max-width: 820px; margin: 0 auto;
}

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5px; }
.card {
  background: var(--navy2); padding: 2.8rem;
  border: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.card:hover::before { transform: scaleX(1); }
.card-num  { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 1.2rem; }
.card-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--white); margin-bottom: 0.9rem; }
.card-body { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.6); }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 2rem; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: gap 0.2s;
}
.card-link:hover  { gap: 14px; }
.card-link::after { content: '→'; font-size: 1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2.4rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none; line-height: 1;
  transition: all 0.22s var(--ease-out);
}
.btn-gold         { background: var(--gold);  color: var(--navy); }
.btn-gold:hover   { background: var(--gold2); transform: translateX(4px); }
.btn-navy         { background: var(--navy);  color: var(--white); }
.btn-navy:hover   { background: var(--gold);  color: var(--navy); }
.btn-outline      { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white       { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 5rem 0 0; border-top: 1px solid rgba(201,168,76,0.12); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--white); line-height: 1; }
.footer-brand-sub  { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 3px; }
.footer-desc       { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.75; margin-top: 1rem; max-width: 32ch; }
.footer-logo-img   { height: 220px !important; width: auto !important; object-fit: contain !important; margin-bottom: 0.8rem !important; display: block !important; }
.footer-col-title  { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col a      { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 0.65rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom     { padding: 1.6rem 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p   { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .container  { padding: 0 1.5rem; }
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .hero-inner .hero-content { padding: 0 1.5rem 3.5rem; }
  .hero-title    { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero-title-sm { font-size: clamp(1.6rem, 5vw, 2.2rem) !important; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-scroll   { display: none; }
  .section       { padding: 4rem 0; }
}
@media (max-width: 600px) {
  .hero       { min-height: 520px; }
  .hero-inner { min-height: 400px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-tag, .hero-title, .hero-sub {
    animation: none !important; opacity: 1 !important;
    transform: none !important; transition: none !important;
  }
}
