/* ============================================================
   Header + Footer — shared across all pages
   ============================================================ */

/* Scroll progress */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-cta); z-index: 200;
  box-shadow: 0 0 16px rgba(236, 189, 110, 0.6);
  transition: width 0.08s linear;
}

/* Navbar */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  transition: transform 0.45s var(--ease), background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(8, 17, 33, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--hairline);
  box-shadow: 0 10px 40px rgba(3, 10, 22, 0.4);
}
.nav.scrolled .nav__inner { padding-block: 12px; }
.nav.hide { transform: translateY(-105%); }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--grad-cta);
  display: grid; place-items: center;
  box-shadow: var(--sh-gold);
  position: relative; flex: none;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; line-height: 1.05; }
.brand__name span { display: block; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 13px; border-radius: var(--r-pill);
  transition: color 0.25s, background 0.25s; position: relative;
}
.nav__links a:hover { color: #fff; background: rgba(150, 185, 230, 0.08); }
.nav__links a.active { color: var(--gold); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.btn-burger { display: none; width: 46px; height: 46px; border-radius: 13px; border: 1px solid var(--hairline-strong); background: var(--glass); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.btn-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.btn-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-burger.open span:nth-child(2) { opacity: 0; }
.btn-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 140;
  background: rgba(6, 13, 26, 0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 0 var(--gut);
  opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.drawer.open { opacity: 1; pointer-events: auto; transform: none; }
.drawer a { font-family: var(--display); font-size: 1.4rem; font-weight: 600; padding: 11px 0; color: var(--ink-soft); border-bottom: 1px solid var(--hairline); }
.drawer a:hover { color: var(--gold); }
.drawer .btn { margin-top: 22px; }

/* Footer */
.footer { border-top: 1px solid var(--hairline); padding: clamp(56px, 7vw, 84px) 0 36px; position: relative; background: linear-gradient(180deg, transparent, rgba(6,13,26,0.6)); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin: 18px 0 22px; max-width: 34ch; }
.footer__col h4 { font-family: var(--display); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--muted); font-size: 0.94rem; padding: 6px 0; transition: color 0.25s, padding 0.25s; }
.footer__col a:hover { color: var(--ink); padding-left: 5px; }
.footer__contact a, .footer__contact span { display: flex; gap: 9px; align-items: flex-start; color: var(--muted); font-size: 0.92rem; padding: 6px 0; }
.footer__contact a:hover { color: var(--ink); }
.footer__contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 11px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--hairline-strong); display: grid; place-items: center; color: var(--ink-soft); transition: all 0.3s var(--ease); }
.socials a:hover { background: var(--grad-cta); color: #2a1c08; border-color: transparent; transform: translateY(-3px); }
.socials a svg { width: 19px; height: 19px; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 30px; border-top: 1px solid var(--hairline); color: var(--muted); font-size: 0.86rem; }
.footer__bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--ink); }

/* Floating mobile actions — call + book, bottom of screen */
.float-actions { position: fixed; right: 16px; bottom: 16px; z-index: 130; display: flex; flex-direction: column; gap: 12px; }
.float-actions .fab { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--sh-lg); transition: transform 0.3s var(--ease); position: relative; }
.float-actions .fab:hover { transform: scale(1.08); }
.fab--call { background: var(--grad-ocean); color: #06121f; }
.fab--book { background: var(--grad-cta); color: #2a1c08; }
.fab svg { width: 25px; height: 25px; }
.float-actions .fab span { position: absolute; right: 70px; white-space: nowrap; background: var(--navy-800); border: 1px solid var(--hairline); padding: 7px 13px; border-radius: var(--r-pill); font-size: 0.82rem; font-weight: 600; opacity: 0; transform: translateX(8px); pointer-events: none; transition: 0.3s var(--ease); }
.float-actions .fab:hover span { opacity: 1; transform: none; }

/* Mobile sticky Call + Book bar */
.mbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 135; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; background: rgba(8,17,33,0.92); backdrop-filter: blur(16px); border-top: 1px solid var(--hairline-strong); }
.mbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px; border-radius: var(--r-pill); font-family: var(--display); font-weight: 700; font-size: 0.98rem; }
.mbar a svg { width: 19px; height: 19px; }
.mbar .m-call { background: rgba(150,185,230,0.1); border: 1px solid var(--hairline-strong); color: var(--ink); }
.mbar .m-book { background: var(--grad-cta); color: #2a1c08; box-shadow: var(--sh-gold); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .btn-burger { display: flex; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .mbar { display: flex; }
  .float-actions { display: none; }
  body { padding-bottom: 76px; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
}
