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

:root {
  --navy: #1C2B4A;
  --navy-dark: #111E35;
  --navy-mid: #2A3F6B;
  --gold: #B8963E;
  --gold-light: #D4AF62;
  --cream: #F8F6F1;
  --cream-dark: #EFECE4;
  --text: #1A1A1A;
  --text-mid: #444444;
  --text-light: #777777;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17, 30, 53, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,150,62,0.2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-left { display: flex; align-items: center; gap: 40px; }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span { color: var(--gold-light); }

.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold); color: var(--navy-dark); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.7); transition: all 0.2s; }

.nav-mobile { display: none; }

/* PAGE HEADER (interior pages) */
.page-header {
  background: var(--navy);
  padding: 140px 5% 80px;
}

.page-header-inner { max-width: 1100px; margin: 0 auto; }

.page-header-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

.page-header-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 20px;
}

.page-header p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
}

/* UTILITY */
section { padding: 88px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

.section-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}

.divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 0;
}

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-secondary {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-ghost-light {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}

.btn-ghost-light:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

/* SECTORS BAR */
.sectors-bar {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 52px 5%;
}

.sectors-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}

.sectors-bar-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap;
}

.sectors-tags { display: flex; gap: 10px; flex-wrap: wrap; }

.sector-tag {
  font-size: 0.76rem; font-weight: 500;
  color: var(--navy); border: 1px solid #C8C3B8;
  padding: 7px 14px; letter-spacing: 0.02em;
}

/* CTA SECTION */
.cta-section {
  background: var(--navy-dark);
  padding: 100px 5%;
  text-align: center;
}

.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { display: none; }

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  max-width: 460px; margin: 0 auto 40px;
  font-size: 0.96rem; line-height: 1.75;
}

.cta-actions { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }

.cta-email {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.cta-email a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,62,0.4);
  padding-bottom: 1px;
  transition: all 0.2s;
}

.cta-email a:hover { color: var(--gold); border-color: var(--gold); }

/* FOOTER */
footer {
  background: #0C1525;
  padding: 32px 5%;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}

.footer-brand { font-family: var(--serif); font-size: 0.95rem; color: rgba(255,255,255,0.4); }

.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.footer-links a {
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  text-decoration: none; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-ico { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.03em; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 5%; gap: 0;
    z-index: 99;
  }
  .nav-mobile a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block;
  }
  .nav-mobile a:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  nav { padding: 0 6%; }
  section { padding: 64px 6%; }
  .page-header { padding: 120px 6% 60px; }
  .sectors-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
