:root {
  --navy: #0B1D3A;
  --navy-light: #132B52;
  --gold: #D4A843;
  --gold-light: #E8C878;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --text: #1A1A2E;
  --text-light: #5A5A72;
  --white: #FFFFFF;
  --green: #2A9D5C;
  --shadow-sm: 0 2px 8px rgba(11,29,58,0.06);
  --shadow-md: 0 8px 24px rgba(11,29,58,0.10);
  --shadow-lg: 0 16px 48px rgba(11,29,58,0.14);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.75;
}

/* LOGO WORDMARK */
.logo-mark { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.logo-top {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.logo-bottom {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(212,168,67,0.6);
  margin-top: 4px;
}
/* M and V accent letters */
.logo-mv {
  color: var(--white);
  font-weight: 800;
}
.logo-bottom .logo-mv {
  color: var(--gold);
}
/* Footer logo MV accent */
.footer-mv {
  color: var(--white);
  font-weight: 800;
}
.footer-logo-bottom .footer-mv {
  color: var(--gold);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  padding: 15px 36px; border: none; border-radius: var(--radius);
  cursor: pointer; text-decoration: none; transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(212,168,67,0.3);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,168,67,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  padding: 15px 32px; border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius); cursor: pointer; text-decoration: none; transition: all 0.25s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  padding: 15px 36px; border: none; border-radius: var(--radius);
  cursor: pointer; text-decoration: none; transition: all 0.25s ease;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: all 0.3s ease;
  background: rgba(11,29,58,0.96); backdrop-filter: blur(12px);
}
.nav.scrolled { padding: 14px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.18); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 700 !important; padding: 10px 22px !important;
  border-radius: var(--radius) !important; font-size: 14px !important; letter-spacing: 0 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* FOOTER */
.footer { background: var(--navy); padding: 60px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo-top {
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--white); display: block;
}
.footer-logo-bottom {
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 6px; text-transform: uppercase; color: var(--gold);
  display: block; margin-top: 3px;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 20px; }
}
