@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --navy:    #0b1f35;
  --navy2:   #152d47;
  --navy3:   #1e3f60;
  --cream:   #f7f3ec;
  --cream2:  #ede8de;
  --gold:    #b8934a;
  --gold2:   #d4aa6a;
  --ink:     #1a1a2e;
  --muted:   #6b7a8d;
  --white:   #ffffff;
  --rule:    #ddd8ce;
  --success: #166534;
  --error:   #991b1b;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Outfit', system-ui, sans-serif;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(11,31,53,0.10);
  --shadow-lg: 0 12px 48px rgba(11,31,53,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(11,31,53,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,147,74,0.2);
  height: 68px;
  display: flex; align-items: center;
  padding: 0 48px;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--navy); line-height: 1; flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  color: var(--white); letter-spacing: 0.01em;
}
.nav-logo-text span { color: var(--gold2); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7); text-decoration: none;
  padding: 8px 14px; border-radius: 6px;
  transition: all 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--gold2); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 600 !important; padding: 9px 20px !important;
  border-radius: 7px !important;
}
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; margin: 5px 0; transition: all 0.3s; border-radius: 2px; }

/* ── PAGE HEADER ──────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 48px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(184,147,74,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; }
.page-hero-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(38px,5vw,58px);
  font-weight: 400; color: white; line-height: 1.15; margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--gold2); }
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 96px 48px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-alt { background: var(--cream2); }
.section-dark { background: var(--navy); color: white; }

.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(28px,3.5vw,42px);
  font-weight: 400; line-height: 1.2; margin-bottom: 16px; color: var(--navy);
}
.section-dark .section-title { color: white; }
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 17px; color: var(--muted); line-height: 1.75;
  max-width: 560px; margin-bottom: 48px;
}
.section-dark .section-lead { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: 8px; border: none;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,147,74,0.35); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold2); color: var(--gold2); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: 32px; transition: all 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,147,74,0.15);
  padding: 64px 48px 32px;
  color: rgba(255,255,255,0.6);
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: var(--serif); font-size: 22px; color: white; margin-bottom: 8px; }
.footer-brand h3 span { color: var(--gold2); }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold2); margin-bottom: 16px; }
.footer-col a, .footer-col p { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold2); }

/* ── UTILITIES ────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--rule); margin: 40px 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .page-hero { padding: 120px 20px 60px; }
  .section { padding: 64px 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 48px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
