/* ── SGLV SOLUTIONS — SHARED STYLESHEET ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy:     #042C53;
  --navy-mid: #185FA5;
  --navy-lt:  #E6F1FB;
  --gold:     #EF9F27;
  --gold-drk: #BA7517;
  --gold-lt:  #FAEEDA;
  --gold-pl:  #FFF8EC;
  --teal:     #1D9E75;
  --teal-lt:  #E1F5EE;
  --teal-drk: #085041;
  --coral:    #D85A30;
  --coral-lt: #FAECE7;
  --purple:   #534AB7;
  --purple-lt:#EEEDFE;
  --green:    #3B6D11;
  --green-lt: #EAF3DE;
  --gray:     #5F5E5A;
  --gray-lt:  #F7F5F0;
  --border:   #E8E0D0;
  --white:    #FFFFFF;
  --off:      #FAFAF8;
  --text:     #3A3935;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--off); color: var(--text); overflow-x: hidden; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--navy); padding: 0 3rem; display: flex; align-items: center; justify-content: space-between; height: 64px; border-bottom: 2px solid var(--gold); }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: #fff; }
.nav-name span { color: var(--gold); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .has-sub { position: relative; }
.nav-links .has-sub:hover .sub-menu { display: block; }
.sub-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--navy); border: 1px solid rgba(239,159,39,0.2); border-radius: 6px; min-width: 180px; padding: 8px 0; z-index: 200; }
.sub-menu a { display: block; padding: 8px 16px; font-size: 12.5px; color: rgba(255,255,255,0.7); white-space: nowrap; }
.sub-menu a:hover { color: var(--gold); background: rgba(239,159,39,0.06); }
.nav-cta { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); background: var(--gold); border: none; border-radius: 4px; padding: 9px 20px; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.nav-cta:hover { background: #F5C842; }

/* FOOTER */
footer { background: #020D1A; padding: 3rem; border-top: 1px solid rgba(239,159,39,0.2); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.footer-brand-col .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.footer-brand-col .footer-brand span { color: var(--gold); }
.footer-brand-col p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.25); }
.footer-tagline { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.2); text-transform: uppercase; }

/* SHARED UTILITIES */
section { padding: 80px 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 10.5px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-drk); font-weight: 500; margin-bottom: 0.6rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 3.8vw, 48px); font-weight: 600; color: var(--navy); line-height: 1.12; margin-bottom: 0.85rem; }
.section-lead { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--gray); max-width: 580px; }
.section-header { margin-bottom: 3rem; }
.light-bg { background: var(--white); }
.gray-bg { background: var(--gray-lt); }
.navy-bg { background: var(--navy); }
.navy-bg .section-title { color: #fff; }
.navy-bg .section-lead { color: rgba(255,255,255,0.5); }
.navy-bg .section-eyebrow { color: var(--gold); }

/* BUTTONS */
.btn-gold { font-size: 12.5px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: var(--navy); background: var(--gold); border: none; border-radius: 4px; padding: 12px 26px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-gold:hover { background: #F5C842; }
.btn-navy { font-size: 12.5px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: #fff; background: var(--navy); border: 1px solid var(--navy); border-radius: 4px; padding: 12px 26px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost-dark { font-size: 12.5px; color: rgba(255,255,255,0.75); background: transparent; border: 1px solid rgba(255,255,255,0.22); border-radius: 4px; padding: 12px 26px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { font-size: 12.5px; color: var(--navy); background: transparent; border: 1px solid var(--navy); border-radius: 4px; padding: 12px 26px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--gold-drk); color: var(--gold-drk); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fu { animation: fadeUp 0.65s ease both; }
.d1{animation-delay:.1s} .d2{animation-delay:.22s} .d3{animation-delay:.34s} .d4{animation-delay:.46s} .d5{animation-delay:.58s}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  section { padding: 60px 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  footer { padding: 2rem 1.5rem; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
