/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #104862;
  --green-mid: #4C7689;
  --green-light: #E7EDEF;
  --cream: #F7F2E8;
  --cream-dark: #EDE8DC;
  --gold: #C09A42;
  --gold-light: #D4AC55;
  --text-dark: #104862;
  --text-body: #3D3D35;
  --text-muted: #6B6B60;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: var(--green);
}
.nav-logo { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); letter-spacing: 0.06em; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 36px; align-items: center; }
.nav-links a { font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,242,232,0.75); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--cream); }
.nav-links .cta-btn { border: 1px solid var(--gold); color: var(--gold); padding: 8px 22px; border-radius: 2px; transition: background 0.2s, color 0.2s; }
.nav-links .cta-btn:hover { background: var(--gold); color: var(--green); }

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-block; }
.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  margin-top: 22px;
  background: var(--green);
  border: 1px solid rgba(192,154,66,0.3);
  padding: 8px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a { display: block; padding: 10px 20px; white-space: nowrap; }

/* ─── SECTION COMMON ─── */
section { padding: 100px 48px; }
.section-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: var(--text-dark); line-height: 1.15; margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--green-mid); }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn-primary { background: var(--gold); color: var(--green); font-family: var(--sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; padding: 14px 36px; border-radius: 2px; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { border: 1px solid rgba(247,242,232,0.4); color: var(--cream); font-family: var(--sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; padding: 14px 36px; border-radius: 2px; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: var(--cream); }

/* ─── FOOTER ─── */
footer { background: var(--green); color: rgba(247,242,232,0.4); padding: 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); opacity: 0.7; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.78rem; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,242,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  section { padding: 72px 24px; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
}
