:root {
  --dark: #290611;
  --green: #ADD786;
  --green-light: #c8edaa;
  --green-pale: #eaf7d9;
  --white: #fff;
  --off-white: #f8fdf2;
  --text-dark: #1a0309;
  --text-muted: #5a3040;
  --radius: 16px;
}

/* ===== RESET & BASE ===== */
*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 68px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.container { width: 90%; max-width: auto; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; letter-spacing: .02em;
  transition: background .2s, transform .2s;
}
.btn-green { background: var(--green); color: var(--dark); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--dark); transform: translateY(-2px); }

/* CTA banner button */
.cta-btn {
  background: var(--dark);
  color: var(--green);
  font-size: 1rem;
  padding: 16px 40px;
}
.btn.get-in-touch {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem !important;
    height: 40px;
    border-radius: 8px;
    background-color: #ADD786 !important;
    color: #290611 !important;
    font-family: 'Montserrat', system-ui;
    font-weight: 800;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}

.btn.get-in-touch:hover {
    background-color: #9bc571;
    transform: translateY(-1px);
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--dark);
  height: 68px;
  box-shadow: 0 2px 20px rgba(41,6,17,.5);
}
.nav-logo img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    flex-shrink: 0;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  padding: 0 5%;
}
.nav-links { justify-self: center; }
.nav-cta { justify-self: end; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--green);
  text-decoration: none;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.75); font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: transparent; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 4px;
  transition: transform .2s, opacity .2s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--dark);
  padding: 24px 5%;
  border-top: 1px solid rgba(173,215,134,.15);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;   /* prevents children from stretching full-width */
  gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.8); font-size: 1rem; font-weight: 500;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--green); }

/* Contact button inside mobile menu — sized correctly, centered on its own */
.mobile-menu .get-in-touch {
  align-self: center !important;
  flex: 0 0 auto !important;
  width: fit-content !important;
  margin-top: 8px;
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-links, .nav_cta { display: none !important; }
  .hamburger { display: flex; grid-column: 3; justify-self: end; }
  
}