@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d1f35;
  --navy-mid: #152d4a;
  --navy-light: #1e3f65;
  --gold: #c9a84c;
  --gold-light: #e2c87a;
  --gold-pale: #f5edd8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-100: #f0ede6;
  --gray-300: #d4cfc5;
  --gray-500: #9a9488;
  --gray-700: #5a5650;
  --text: #1a1612;
  --radius: 4px;
  --radius-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: 'Cormorant Garamond', serif; }

/* ─── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(13,31,53,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s;
}

.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; color: var(--gold);
  letter-spacing: 1px;
}
.logo-text { line-height: 1; }
.logo-text .name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--white); letter-spacing: 1px; }
.logo-text .tagline { font-size: 9px; color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.7);
  text-decoration: none; padding: 8px 14px; border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links .cta {
  background: var(--gold); color: var(--navy) !important; font-weight: 600;
  padding: 9px 20px; margin-left: 8px;
}
.nav-links .cta:hover { background: var(--gold-light) !important; }

/* ─── PAGE HEADER ─────────────────────────────────────── */
.page-header {
  margin-top: 72px;
  background: var(--navy);
  padding: 80px 60px 70px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%; background: linear-gradient(135deg, transparent, rgba(201,168,76,0.06));
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 60px; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.page-header .eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.page-header h1 {
  font-size: 54px; font-weight: 600; color: var(--white);
  line-height: 1.1; margin-bottom: 16px;
}
.page-header p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.8; }

/* ─── SECTION HELPERS ─────────────────────────────────── */
.section { padding: 90px 60px; }
.section-alt { background: var(--off-white); }
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-size: 42px; font-weight: 600; line-height: 1.15;
  color: var(--navy); margin-bottom: 18px;
}
.section-sub { font-size: 16px; color: var(--gray-700); line-height: 1.8; max-width: 580px; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  padding: 13px 26px; border-radius: var(--radius); transition: all 0.2s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 64px 60px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 13px; line-height: 1.9; margin-top: 16px; max-width: 260px; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,31,53,0.1); }

/* ─── DIVIDER LINE ────────────────────────────────────── */
.gold-line { width: 48px; height: 2px; background: var(--gold); margin: 20px 0 32px; }

/* ─── RESPONSIVE HELPERS ──────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .section, .page-header { padding-left: 24px; padding-right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
