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

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

:root {
  --navy: #0d1b2a;
  --navy-light: #1a2e42;
  --gold: #c9a84c;
  --gold-light: #e8c878;
  --cream: #f7f4ee;
  --white: #ffffff;
  --text-dark: #0d1b2a;
  --text-mid: #4a4a4a;
  --text-light: #888888;
  --border-gold: rgba(201,168,76,0.22);
  --border-light: rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  background: var(--navy);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500 !important;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* UTILITIES */
.gold-bar { width: 36px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.white { color: white; }

.prose {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 640px;
}
.prose + .prose { margin-top: 16px; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-light); }
.btn-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* FOOTER */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.4);
  font-size: 15px;
  text-decoration: none;
}
.footer-logo span { color: rgba(201,168,76,0.5); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* CONTACT BAR */
.contact-bar {
  background: var(--navy);
  padding: 72px 48px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.contact-bar .eyebrow { margin-bottom: 16px; }
.contact-bar h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: white;
  margin-bottom: 12px;
}
.contact-bar p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 32px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border-gold); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .contact-bar { padding: 48px 24px; }
  .contact-bar h2 { font-size: 28px; }
}
