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

:root {
  --navy: #1a2b3c;
  --gold: #c9a84c;
  --light: #f7f5f0;
  --text: #2d2d2d;
  --muted: #6b6b6b;
  --border: #e8e3da;
}

html { scroll-behavior: smooth; }
body { font-family: 'Georgia', serif; color: var(--text); background: #fff; }

/* TYPOGRAPHY */
.eyebrow {
  color: var(--gold); font-family: 'Arial', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 14px; display: block;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.section-body { color: var(--muted); line-height: 1.8; font-size: 0.97rem; }

/* BUTTONS */
.btn {
  display: inline-block; text-decoration: none;
  font-family: 'Arial', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: #b8923e; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0f1e2b; }
.btn-outline { border: 1px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.7); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(26, 43, 60, 0.97);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px; gap: 24px;
}
.nav-logo {
  color: #fff; font-size: 1.25rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-family: 'Arial', sans-serif; font-size: 0.74rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #fff; padding: 10px 22px;
  font-family: 'Arial', sans-serif; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
  transition: background 0.2s; flex-shrink: 0;
}
.nav-cta:hover { background: #b8923e; }
.nav-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 1.4rem; cursor: pointer; padding: 4px; line-height: 1;
}

/* HEROES */
.hero {
  padding-top: 68px; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding-left: 24px; padding-right: 24px;
}
.hero-full { height: 100vh; min-height: 600px; }
.hero-page { height: 56vh; min-height: 400px; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(26,43,60,0.55), rgba(26,43,60,0.55));
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 20px;
}
.hero-page h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.hero p {
  color: rgba(255,255,255,0.85); font-size: 1.05rem;
  max-width: 500px; line-height: 1.7; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* STATS BAR */
.stats-bar { background: var(--navy); display: flex; justify-content: center; }
.stats-bar-inner { display: flex; max-width: 1100px; width: 100%; }
.stat {
  flex: 1; padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num { color: var(--gold); font-size: 1.9rem; }
.stat-label {
  color: rgba(255,255,255,0.5); font-family: 'Arial', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px;
}

/* SECTIONS */
.section { padding: 88px 48px; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 52px; }
.section-header-centered { text-align: center; margin-bottom: 52px; }
.section-header-centered .section-body { margin: 12px auto 0; max-width: 540px; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }

/* CARDS */
.card { background: #fff; }
.card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.card-body { padding: 28px; }
.card-title { font-size: 1.05rem; margin-bottom: 8px; }
.card-text { color: var(--muted); font-family: 'Arial', sans-serif; font-size: 0.85rem; line-height: 1.65; }
.card-border-top { border-top: 3px solid var(--gold); }
.card-border { border: 1px solid var(--border); }

/* FEATURE SPLIT */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.feature-block.reverse .feature-img { order: 2; }
.feature-block.reverse .feature-text { order: 1; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; min-height: 440px; display: block; }
.feature-text {
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-text .section-body { margin-bottom: 28px; }

/* FOOTER */
footer { background: #111d27; }
.footer-top {
  max-width: 1100px; margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid; grid-template-columns: 260px 1fr; gap: 64px;
}
.footer-logo {
  color: rgba(255,255,255,0.65); font-size: 1.1rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; display: block; margin-bottom: 20px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.38); font-family: 'Arial', sans-serif; font-size: 0.8rem; line-height: 1.85; }
.footer-nav-cols { display: flex; gap: 48px; }
.footer-col h4 {
  color: rgba(255,255,255,0.45); font-family: 'Arial', sans-serif;
  font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.5); font-family: 'Arial', sans-serif; font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 48px; max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom span { color: rgba(255,255,255,0.22); font-family: 'Arial', sans-serif; font-size: 0.7rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.22); font-family: 'Arial', sans-serif; font-size: 0.7rem; text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-power { color: rgba(255,255,255,0.22) !important; font-family: 'Arial', sans-serif; font-size: 0.7rem; }
.footer-power a { color: var(--gold) !important; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(26,43,60,0.99); padding: 20px 24px; gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .section { padding: 64px 20px; }
  .feature-block { grid-template-columns: 1fr; }
  .feature-block.reverse .feature-img,
  .feature-block.reverse .feature-text { order: unset; }
  .feature-text { padding: 44px 20px; }
  .feature-img img { min-height: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 32px; }
  .footer-bottom { padding: 20px; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-nav-cols { flex-wrap: wrap; gap: 32px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-page h1 { font-size: 1.9rem; }
}
