:root {
  --dark: #0e0f11;
  --dark2: #141618;
  --dark3: #1a1d20;
  --dark4: #22262b;
  --gold: #c8a96e;
  --gold2: #e8cc94;
  --cream: #f5f0e8;
  --white: #ffffff;
  --muted: rgba(245,240,232,0.55);
  --border: rgba(200,169,110,0.15);
  --border2: rgba(245,240,232,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Global link color reset — prevents browser default blue */
a { color: inherit; text-decoration: none; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  font-size: 16px;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14,15,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-text { font-size: 14px; font-weight: 400; color: var(--cream); letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  color: var(--dark) !important;
  background: var(--gold) !important;
  border: none !important;
  padding: 10px 22px !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold2) !important; color: var(--dark) !important; }

section { padding: 100px 60px; }

.section-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 3.5vw, 54px); font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 22px; }
.section-title em { font-style: italic; color: var(--gold2); }
.section-body { font-size: 16px; color: var(--muted); line-height: 1.9; max-width: 560px; }

.btn-primary { font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 14px 32px; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-primary:hover { background: var(--gold2); }
.btn-outline { font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); border: 0.5px solid rgba(245,240,232,0.2); padding: 14px 32px; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { color: var(--cream); border-color: rgba(245,240,232,0.45); }

.cta-section { background: var(--dark2); padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-item { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border: 0.5px solid var(--border2); text-decoration: none; transition: all 0.3s; background: transparent; }
.cta-item:hover { border-color: rgba(200,169,110,0.3); background: rgba(200,169,110,0.04); }
.cta-item-text { font-size: 15px; font-weight: 400; color: var(--cream); }
.cta-item-arrow { color: var(--gold); font-size: 20px; }

footer { background: var(--dark); border-top: 1px solid var(--border2); padding: 60px 60px 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid var(--border2); margin-bottom: 32px; }
.footer-brand-text { font-size: 14px; color: var(--muted); line-height: 1.85; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(245,240,232,0.2); letter-spacing: 0.5px; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 11px; color: rgba(245,240,232,0.2); text-decoration: none; letter-spacing: 1px; transition: color 0.3s; }
.footer-legal a:hover { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .cta-section { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  outline: none;
  z-index: 100001;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  width: 44px;
  height: 44px;
  gap: 0;
}
.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #f5f0e8;
  border-radius: 2px;
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nav-hamburger.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open .bar:nth-child(2) { opacity: 0; }
.nav-hamburger.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #0e0f11;
  z-index: 100000;
  flex-direction: column;
  padding: 32px 32px 60px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(200,169,110,0.15);
}
.mobile-menu.open { display: flex !important; }

.mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 0.5px solid rgba(245,240,232,0.07);
  display: block;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:hover, .mobile-menu a:active { color: #f5f0e8; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 28px;
  background: #c8a96e !important;
  color: #0e0f11 !important;
  font-weight: 500 !important;
  text-align: center;
  padding: 18px 32px !important;
  border-bottom: none !important;
  letter-spacing: 2px;
  border-radius: 0;
}

@media (max-width: 900px) {
  nav {
    z-index: 100001;
    padding: 0 20px;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14,15,17,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
}
