/* ── Nav Bar ─────────────────────────────────────────────── */
.ld-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a4a35;
  border-bottom: 3px solid #b8762a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
.ld-nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  position: relative;
}
.ld-nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.ld-nav__logo span { color: #74c69d; }
.ld-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ld-nav__links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.ld-nav__links a:hover,
.ld-nav__links a.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.ld-nav__cta {
  background: #b8762a !important;
  color: #fff !important;
  border-radius: 8px;
}
.ld-nav__cta:hover {
  background: #9a6020 !important;
}

/* ── Hamburger (hidden by default, shown on mobile) ────── */
.ld-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.ld-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.ld-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ld-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.ld-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Breakpoint ─────────────────────────────────── */
@media (max-width: 640px) {
  .ld-nav__links { display: none; }
  .ld-nav__hamburger { display: flex; }

  .ld-nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #1a4a35;
    border-bottom: 3px solid #b8762a;
    padding: 12px 24px 20px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }
  .ld-nav__links.open li { width: 100%; }
  .ld-nav__links.open a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
  }
}