:root {
    --green-deep: #1a3a1f;
    --green-mid: #2d5a34;
    --green-light: #4a8c55;
    --green-pale: #e8f2e9;
    --gold: #c8a84b;
    --cream: #faf8f3;
    --dark: #111a12;
    --text: #2a3a2b;
    --text-light: #6b7c6c;
    --white: #ffffff;
  }
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
  }
 
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
  }
/* TOP BAR */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background:#faf7a2;
  color: var(--dark);
  text-align: center;
  padding: 0.45rem 5%;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
 
.top-bar a {
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(17,26,18,0.3);
  transition: border-color 0.2s;
}
 
.top-bar a:hover { border-color: var(--dark); }
 
@media (max-width: 900px) {
  .top-bar { font-size: 0.72rem; padding: 0.4rem 4%; }
}
 
/* NAV BASE */
nav {
  position: fixed;
  top: 45px; /* height of top bar */
  left: 0; right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3%;
  background: rgba(26, 58, 31, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,75,0.2);
}
 
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #faf8f3;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1100;
  position: relative;
}
 
.nav-logo span { color: #c8a84b; }
 
/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
 
.nav-links a {
  color: rgba(250,248,243,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
 
.nav-links a:hover { color: #c8a84b; }
 
.nav-cta {
  background: red !important;
  color: white !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}
 
.nav-cta:hover { background: #C44545 !important; }
 
/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  z-index: 1100;
  position: relative;
  background: none;
  border: none;
  padding: 0;
}
 
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #faf8f3;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.23,1,.32,1), opacity 0.3s;
}
 
/* X animation when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
 
/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #1a3a1f;
  z-index: 999;
  flex-direction: column;
  padding: 2.5rem 2rem;
  padding-top: 7rem; /* Space for top bar + nav */
  gap: 0;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(.23,1,.32,1);
  border-left: 1px solid rgba(200,168,75,0.15);
}
 
.mobile-drawer.open {
  right: 0;
}
 
/* overlay behind drawer */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s;
}
 
.drawer-overlay.open {
  opacity: 1;
}
 
.mobile-drawer a {
  display: block;
  color: rgba(250,248,243,0.85);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(250,248,243,0.08);
  transition: color 0.3s, padding-left 0.3s;
}
 
.mobile-drawer a:hover {
  color: #c8a84b;
  padding-left: 8px;
}
 
.mobile-drawer a:last-child {
  border-bottom: none;
}
 
.mobile-drawer .drawer-cta {
  margin-top: 2rem;
  background: #c8a84b;
  color: #111a12 !important;
  text-align: center;
  padding: 1rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
  border-bottom: none !important;
  letter-spacing: 0.08em;
}
 
.mobile-drawer .drawer-cta:hover {
  background: #e0bc60;
  padding-left: 0 !important;
}
 
/* RESPONSIVE */
@media (max-width: 900px) {
  html {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    width: 100%;
    overflow-x: hidden;
  }
  
  nav {
    padding: 0.75rem 3%;
    width: 100%;
  }
  
  .nav-logo {
    font-size: 1.1rem;
  }
  
  .nav-logo img {
    height: 45px !important;
    width: 45px !important;
  }
  
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; width: 100%; }
  .drawer-overlay { display: none; }
  .drawer-overlay.open { display: block; }
  
  section, footer {
    width: 100%;
    overflow-x: hidden;
  }
}
 
@media (min-width: 901px) {
  .mobile-drawer, .drawer-overlay { display: none !important; }
}