/* ═══════════════════════════════════════════════════
   HAVEN — Navigation  (Desktop full bar + Mobile Offcanvas)
   Breakpoint: ≥992px = desktop | <992px = mobile
═══════════════════════════════════════════════════ */

/* ─── DESKTOP NAV ─────────────────────────────── */
.hv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1040;
  height: 76px;
  background: #fff;
  border-bottom: 1.5px solid #E5E3DE;
  display: flex; align-items: center;
  padding: 0 52px;
  transition: box-shadow .3s;
}
.hv-nav.scrolled { box-shadow: 0 3px 28px rgba(0,0,0,.08); }

/* Logo */
.hv-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 600; letter-spacing: 5px;
  color: #1C1C1A; text-decoration: none; flex-shrink: 0;
}
.hv-logo span { color: #C4973F; }

/* Centre links */
.hv-center {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.hv-center li a {
  font-size: 13px; font-weight: 400;
  color: #555550; text-decoration: none;
  white-space: nowrap; position: relative; padding-bottom: 4px;
  transition: color .25s;
}
.hv-center li a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: #C4973F;
  transition: width .3s;
}
.hv-center li a:hover,
.hv-center li a.nav-active { color: #1C1C1A; }
.hv-center li a:hover::after,
.hv-center li a.nav-active::after { width: 100%; }

/* Right action buttons */
.hv-actions {
  display: flex; align-items: center; gap: 10px;
  margin-left: auto; flex-shrink: 0;
}
.hv-actions .btn-ghost {
  font-size: 12px; font-weight: 500; padding: 9px 20px;
  border: 1.5px solid #1C1C1A; color: #1C1C1A;
  background: transparent; text-decoration: none;
  transition: all .3s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.hv-actions .btn-ghost:hover { background: #1C1C1A; color: #fff; }
.hv-actions .btn-gold {
  font-size: 12px; font-weight: 600; padding: 9px 20px;
  background: #C4973F; color: #fff;
  border: 1.5px solid #C4973F; text-decoration: none;
  transition: all .3s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.hv-actions .btn-gold:hover { background: #E2B96A; border-color: #E2B96A; }

/* Hamburger — HIDDEN on desktop */
.hv-hamburger {
  display: none;
  background: none; border: 1.5px solid #E5E3DE;
  width: 42px; height: 42px; cursor: pointer;
  color: #1C1C1A; font-size: 20px;
  align-items: center; justify-content: center;
  margin-left: auto;
  transition: border-color .3s, color .3s;
}
.hv-hamburger:hover { border-color: #C4973F; color: #C4973F; }

/* ─── OFFCANVAS (mobile only) ──────────────────── */
.hv-offcanvas {
  width: 290px !important;
  border-right: none !important;
  z-index: 1055 !important;
}

/* Header row inside offcanvas */
.hv-oc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #E5E3DE;
}
.hv-oc-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 600; letter-spacing: 4px;
  color: #1C1C1A; text-decoration: none;
}
.hv-oc-logo span { color: #C4973F; }
.hv-oc-close {
  width: 34px; height: 34px; background: #F2F1EE;
  border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: #555550;
  transition: background .3s;
}
.hv-oc-close:hover { background: #E5E3DE; }

/* Nav links inside offcanvas */
.hv-oc-body { padding: 8px 0 0; flex: 1; overflow-y: auto; }
.hv-oc-links { list-style: none; margin: 0; padding: 0; }
.hv-oc-links li a {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500; color: #1C1C1A;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .2s;
}
.hv-oc-links li a .oc-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: #F2F1EE;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px; color: #9A9890;
  transition: all .2s;
}
.hv-oc-links li a:hover { background: #FDF6E9; border-left-color: #C4973F; color: #C4973F; }
.hv-oc-links li a:hover .oc-icon { background: rgba(196,151,63,.15); color: #C4973F; }
.hv-oc-links li a.nav-active { background: #FDF6E9; border-left-color: #C4973F; color: #C4973F; }
.hv-oc-links li a.nav-active .oc-icon { background: rgba(196,151,63,.15); color: #C4973F; }

.hv-oc-sep {
  height: 1px; background: #E5E3DE; margin: 8px 22px;
}

/* Contact strip */
.hv-oc-contact {
  padding: 14px 22px;
  background: #F8F8F6;
  border-top: 1px solid #E5E3DE;
  border-bottom: 1px solid #E5E3DE;
}
.hv-oc-contact p {
  font-size: 12px; color: #9A9890;
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 6px;
}
.hv-oc-contact p:last-child { margin: 0; }
.hv-oc-contact i { color: #C4973F; }

/* Bottom CTA buttons */
.hv-oc-cta {
  padding: 18px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.hv-oc-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 12px 20px; text-decoration: none;
  transition: all .3s;
}
.hv-oc-cta .oc-cta-gold {
  background: #C4973F; color: #fff;
  border: 1.5px solid #C4973F;
}
.hv-oc-cta .oc-cta-gold:hover { background: #E2B96A; border-color: #E2B96A; }
.hv-oc-cta .oc-cta-dark {
  background: transparent; color: #1C1C1A;
  border: 1.5px solid #1C1C1A;
}
.hv-oc-cta .oc-cta-dark:hover { background: #1C1C1A; color: #fff; }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 991.98px) {
  /* Hide desktop elements */
  .hv-nav { padding: 0 18px; }
  .hv-center { display: none; }
  .hv-actions { display: none; }
  /* Show hamburger */
  .hv-hamburger { display: inline-flex; }
}

@media (min-width: 992px) {
  /* Force-hide offcanvas on desktop */
  .hv-offcanvas { visibility: hidden !important; transform: translateX(-100%) !important; }
  .offcanvas-backdrop { display: none !important; }
}
