/* ══ MOBILE / HAMBURGER NAV ══════════════════════════════════════════════ */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 300;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}

/* fullscreen mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: rgba(242,234,220,0.45);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  letter-spacing: 0;
  transition: color 0.2s;
  padding: 4px 8px;
}
.nav-mobile-close:hover { color: var(--ivory); }

.nav-mobile-logo {
  position: absolute;
  top: 22px; left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  font-weight: 400;
}
.nav-mobile-logo span {
  display: block;
  font-size: 7px;
  letter-spacing: 0.5em;
  opacity: 0.35;
  margin-top: 2px;
}

.nav-mobile-links {
  list-style: none;
  text-align: center;
  width: 100%;
  padding: 0 40px;
}
.nav-mobile-links li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,234,220,0.75);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: color 0.2s, opacity 0.4s ease, transform 0.4s ease;
  border-bottom: 1px solid rgba(200,144,48,0.07);
}
.nav-mobile-links li:last-child a { border-bottom: none; }
.nav-mobile.open .nav-mobile-links li a { opacity: 1; transform: none; }
.nav-mobile-links li:nth-child(1) a  { transition-delay: 0.04s; }
.nav-mobile-links li:nth-child(2) a  { transition-delay: 0.08s; }
.nav-mobile-links li:nth-child(3) a  { transition-delay: 0.12s; }
.nav-mobile-links li:nth-child(4) a  { transition-delay: 0.16s; }
.nav-mobile-links li:nth-child(5) a  { transition-delay: 0.20s; }
.nav-mobile-links li:nth-child(6) a  { transition-delay: 0.24s; }
.nav-mobile-links li:nth-child(7) a  { transition-delay: 0.28s; }
.nav-mobile-links li:nth-child(8) a  { transition-delay: 0.32s; }
.nav-mobile-links li:nth-child(9) a  { transition-delay: 0.36s; }
.nav-mobile-links li:nth-child(10) a { transition-delay: 0.40s; }
.nav-mobile-links li a:hover { color: var(--gold); }

.nav-mobile-bottom {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  text-align: center;
}
.nav-mobile-bottom a {
  display: inline-block;
  padding: 13px 44px;
  background: var(--gold);
  color: var(--void);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.4s ease 0.44s, background 0.3s;
}
.nav-mobile.open .nav-mobile-bottom a { opacity: 1; }
.nav-mobile-bottom a:hover { background: #a87020; }

/* ══ 768px BREAKPOINT ════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  .nav-left, .nav-right { display: none !important; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }

  /* Footer */
  footer { padding: 52px 24px 40px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding-bottom: 40px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-social { gap: 16px; }

  /* enquire page global wrap */
  .page-wrap { padding: 110px 24px 80px !important; }
  .topic-grid { grid-template-columns: 1fr 1fr !important; }

  /* Global btn-row */
  .btn-row { flex-direction: column; align-items: center; }
  .btn-row a, .btn-row button { width: 100%; max-width: 320px; text-align: center; }
}

/* ══ 480px BREAKPOINT ════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr !important; }
}
