/* ─── SHARED STYLES FOR ALL LETSTOUR PAGES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --alabaster: #F2F2F0;
  --navy: #0B1B3A;
  --gold: #C9A84C;
  --gold-light: #E8D5A0;
  --gold-dark: #9A7A2E;
  --cream: #FAF9F6;
  --warm-white: #FFFDF9;
  --text-muted: #6B6B68;
  --border: rgba(11,27,58,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  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: 20px 48px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(250,249,246,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--cream); }

/* PAGE HERO BANNER */
.page-hero {
  padding: 160px 80px 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23C9A84C' fill-opacity='0.1'/%3E%3C/svg%3E") repeat;
}
.page-hero-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.page-hero-kicker::before {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  max-width: 700px;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(250,249,246,0.55);
  max-width: 520px;
  margin-top: 24px;
  line-height: 1.8;
  position: relative;
}

/* SECTIONS */
section { padding: 100px 80px; }
.section-kicker {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-kicker::before {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.15;
  color: var(--navy); margin-bottom: 20px;
}
.section-headline em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 16px; font-weight: 300;
  color: var(--text-muted);
  max-width: 560px; line-height: 1.8;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); background: var(--navy);
  padding: 16px 36px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #162d5c; transform: translateY(-1px); }
.btn-gold {
  display: inline-block;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 16px 36px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); border: 1px solid var(--gold);
  padding: 16px 36px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* FOOTER */
footer.site-footer {
  background: #060e1e;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  color: var(--cream); margin-bottom: 16px;
}
.footer-brand span { color: var(--gold); }
.footer-tagline {
  font-size: 13px; font-weight: 300;
  color: rgba(250,249,246,0.35);
  line-height: 1.7; margin-bottom: 24px; max-width: 280px;
}
.footer-fora {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2); padding: 8px 16px;
}
.footer-col-title {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,249,246,0.3); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; font-weight: 300;
  color: rgba(250,249,246,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  background: #060e1e;
  padding: 20px 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(250,249,246,0.25); }

/* CTA STRIP */
.cta-strip {
  background: var(--navy); padding: 100px 80px; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 300; color: var(--cream);
  line-height: 1.15; margin-bottom: 20px; position: relative;
}
.cta-strip h2 em { font-style: italic; color: var(--gold); }
.cta-strip p {
  font-size: 16px; font-weight: 300;
  color: rgba(250,249,246,0.5); max-width: 480px;
  margin: 0 auto 44px; line-height: 1.8; position: relative;
}
.cta-actions { display: flex; justify-content: center; gap: 20px; position: relative; }

/* ─── HAMBURGER MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none;
  cursor: pointer; padding: 0; z-index: 201;
}
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
/* White bars when on dark background */
.nav-dark .nav-hamburger span,
.nav-hamburger.open span { background: var(--cream); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Scrolled nav — bars go dark again */
nav.scrolled .nav-hamburger span { background: var(--navy); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 40px 60px;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px; width: 100%; margin-bottom: 40px;
}
.nav-drawer ul li a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 300; color: var(--cream);
  text-decoration: none; opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  display: block; padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-drawer ul li a:hover,
.nav-drawer ul li a.active { opacity: 1; color: var(--gold); }
.nav-drawer .drawer-ctas {
  display: flex; flex-direction: column; gap: 12px; width: 100%;
}
.nav-drawer .drawer-cta {
  display: block; text-align: center;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-drawer .drawer-cta.primary {
  background: var(--gold); color: var(--navy);
}
.nav-drawer .drawer-cta.primary:hover { background: var(--gold-light); }
.nav-drawer .drawer-cta.secondary {
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(250,249,246,0.6);
}
.nav-drawer .drawer-cta.secondary:hover {
  border-color: var(--gold); color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 72px 24px; }
  .page-hero { padding: 120px 24px 72px; }

  footer.site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 40px; padding: 56px 24px;
  }
  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column; gap: 8px; text-align: center;
  }
  .cta-strip { padding: 72px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  footer.site-footer { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(36px, 9vw, 52px); }
}

/* ── NAV DESKTOP CTA GROUP ── */
.nav-ctas-desktop { display: flex; align-items: center; }

/* ── DRAWER CLOSE BUTTON ── */
.drawer-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  font-size: 28px; color: rgba(250,249,246,0.5);
  cursor: pointer; line-height: 1; padding: 8px;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--gold); }

/* ── HAMBURGER SHOW/HIDE ── */
@media (max-width: 1024px) {
  .nav-ctas-desktop { display: none; }
  .nav-hamburger    { display: flex !important; }
}
