@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Barlow+Condensed:wght@300;400;600;700&display=swap');

/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --navy:    #0B1928;
  --navy2:   #0F1E34;
  --slate:   #1A3A5C;
  --gold:    #C8A96F;
  --cream:   #F5F1EA;
  --dgrey:   #3D4F62;
  --grey:    #7A8898;
  --lgrey:   #C8CDD5;
  --white:   #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;

  --max-w: 1280px;
  --pad-x: clamp(24px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
}
h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}
.label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.label--white { color: var(--cream); opacity: 0.6; }

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: 80px 0; }
.section--navy { background: var(--navy); }
.section--navy2 { background: var(--navy2); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.gold-rule {
  border: none;
  border-top: 1px solid var(--gold);
  opacity: 0.5;
  margin: 24px 0;
}
.gold-rule--full { opacity: 1; margin: 0; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-top: 4px solid var(--gold);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo-name {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.header-logo-creds {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.header-nav a {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
  position: relative;
}
.header-nav a:hover,
.header-nav a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(200,169,111,0.2);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  border-bottom: 1px solid rgba(200,169,111,0.08);
  transition: all 0.2s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: var(--navy2);
}

/* Social icons */
.header-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-social a {
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
}
.header-social a:hover { opacity: 1; }
.header-social svg { width: 18px; height: 18px; fill: currentColor; }

/* CTA Button */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--navy2);
  color: var(--gold);
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 32px var(--pad-x);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,169,111,0.1);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 4px solid var(--gold);
}
.footer-urgent {
  border: 1px solid rgba(200,169,111,0.3);
  border-radius: 4px;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding: 16px var(--pad-x);
}
.footer-urgent p {
  font-size: 13px;
  color: rgba(245,241,234,0.65);
  text-align: center;
}
.footer-urgent strong { color: var(--cream); }
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--pad-x);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p,
.footer-col a {
  font-size: 13px;
  color: rgba(245,241,234,0.65);
  line-height: 1.8;
  display: block;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .btn-primary { margin-top: 16px; }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-social a {
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom {
  background: var(--navy2);
  border-top: 1px solid rgba(200,169,111,0.15);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(245,241,234,0.45);
}
.footer-bottom a {
  font-size: 11px;
  color: rgba(245,241,234,0.55);
}
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   RESPONSIVE (nav & footer)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-logo-creds { display: none; }
  .header-nav { display: none; }
  .header-social { display: none; }
  .header-cta-desktop { display: none; }
  .burger { display: flex; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
