/* ============================================================
   ARISE CAPITAL ADVISORY — SHARED STYLES v2 (with logo)
   ============================================================ */

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

:root {
  --navy:       #0B1F3A;
  --navy-mid:   #152D52;
  --navy-light: #1E3D6B;
  --gold:       #B8965A;
  --gold-light: #D4AF78;
  --gold-pale:  #F5EDD9;
  --white:      #FAFAF8;
  --offwhite:   #F2F0EB;
  --stone:      #E8E4DC;
  --text-primary:   #0B1F3A;
  --text-secondary: #4A5568;
  --text-muted:     #8A9BB0;
  --border:     rgba(11,31,58,0.10);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 100px;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
/* Logo image in nav — use navy version on light nav */
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; height: 100px;
}
.nav-logo img {
  height: 92px; width: auto;
  display: block;
}
/* Fallback text logo (shown if image fails) */
.nav-logo-text {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--navy); letter-spacing: 0.02em; text-decoration: none;
  display: none;
}
.nav-logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--text-secondary);
  text-decoration: none; letter-spacing: 0.04em; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  font-size: 13px; font-weight: 500; color: var(--navy);
  border: 1px solid var(--navy); padding: 9px 22px;
  text-decoration: none; letter-spacing: 0.04em; transition: all .2s;
}
.nav-cta:hover { background: var(--navy); color: var(--white); }

/* ── DARK NAV VARIANT (for pages with dark hero) ──
   Add class="dark-nav" to <nav> on pages where it overlaps a dark section */
nav.dark-nav {
  background: rgba(11,31,58,0.95);
  border-bottom-color: rgba(184,150,90,0.15);
}
nav.dark-nav .nav-links a { color: rgba(250,250,248,0.6); }
nav.dark-nav .nav-links a:hover,
nav.dark-nav .nav-links a.active { color: var(--white); }
nav.dark-nav .nav-cta { color: var(--white); border-color: rgba(250,250,248,0.3); }
nav.dark-nav .nav-cta:hover { background: var(--white); color: var(--navy); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 60px 80px 32px;
  border-top: 1px solid rgba(184,150,90,0.2);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px; align-items: start;
}
.footer-top > div:first-child {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { width: 100px; height: auto; display: block; margin: 0 auto; }
.footer-tagline {
  font-size: 13px; color: rgba(250,250,248,0.65);
  line-height: 1.9; font-weight: 300; text-align: center;
}
/* Remove old unused classes */
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand img { width: 120px; height: auto; display: block; margin-bottom: 14px; }
.footer-brand-tagline { font-size: 13px; color: rgba(250,250,248,0.55); line-height: 1.8; font-weight: 300; }
.footer-brand-tagline span { color: var(--gold); font-weight: 500; }
.footer-brand-sub { font-size: 11px; color: rgba(250,250,248,0.30); font-weight: 300; margin-top: 6px; letter-spacing: 0.04em; }
.footer-col h4 {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 13px; color: rgba(250,250,248,0.45); font-weight: 300; }
.footer-col ul li a {
  font-size: 13px; color: rgba(250,250,248,0.45);
  text-decoration: none; font-weight: 300; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(184,150,90,0.1);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom p, .footer-reg {
  font-size: 11px; color: rgba(250,250,248,0.25); letter-spacing: 0.04em;
}

/* ── SHARED UTILITIES ── */
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.section-heading {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; line-height: 1.15; color: var(--navy); margin-bottom: 16px;
}
.section-sub {
  font-size: 15px; color: var(--text-secondary);
  max-width: 520px; line-height: 1.7; font-weight: 300;
}
.btn-primary {
  font-size: 13px; font-weight: 500; background: var(--gold);
  color: var(--navy); padding: 14px 32px; text-decoration: none;
  letter-spacing: 0.04em; transition: all .2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  font-size: 13px; font-weight: 400; color: var(--navy);
  border: 1px solid var(--navy); padding: 14px 32px;
  text-decoration: none; letter-spacing: 0.04em;
  transition: all .2s; display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding-top: 100px;
  background: var(--navy);
  padding-bottom: 80px;
}
.page-hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 80px 48px 0;
}
.page-hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.page-hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(40px, 5vw, 68px);
  font-weight: 300; line-height: 1.1; color: var(--white);
  letter-spacing: -0.01em; max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 15px; color: rgba(250,250,248,0.55);
  max-width: 520px; line-height: 1.7; font-weight: 300; margin-top: 20px;
}

/* Remove browser required field indicators */
input:required, textarea:required, select:required { box-shadow: none; outline: none; }
input:invalid, textarea:invalid, select:invalid { box-shadow: none; outline: none; }
