/* Small site-wide fixes (added Sep 2026). style.css is not touched. */
/* Mobile menu button: 44x44px tap area, same 32px-wide bars as before. */
.menu-toggle { box-sizing: border-box; width: 44px; height: 44px; padding: 0 6px; }

/* "Now booking 2027" strip fixed above the header on every page. */
:root { --bar-h: 38px; }
.booking-strip { display: block; overflow: hidden; white-space: nowrap; background: var(--cream-dim); color: var(--ink); border-bottom: 1px solid var(--line); }
.booking-strip .ticker-track { animation-duration: 60s; flex: none; }
.booking-strip .ticker-track span { font-size: 1rem; letter-spacing: 0.08em; padding: 0 22px; gap: 22px; }
.booking-strip .ticker-track span::after { color: var(--ink); opacity: 0.45; font-size: 0.7rem; }
.booking-strip:hover .ticker-track, .booking-strip:focus-visible .ticker-track { animation-play-state: paused; }
.booking-strip:focus-visible { outline: 2px solid var(--ink); outline-offset: -4px; }
.booking-strip.is-top { position: fixed; top: 0; left: 0; right: 0; z-index: 901; height: var(--bar-h); display: flex; align-items: center; padding: 0; }
.site-header { top: var(--bar-h); }
.header-spacer { height: calc(var(--header-h) + var(--bar-h)); }
section[id] { scroll-margin-top: calc(var(--header-h) + var(--bar-h)); }
.hero { margin-top: calc(var(--header-h) + var(--bar-h)); height: calc(100vh - var(--header-h) - var(--bar-h)); }
@media (max-width: 760px) {
  :root { --bar-h: 34px; }
  .booking-strip .ticker-track span { font-size: 0.9rem; }
}

/* WhatsApp chat button, fixed bottom-right on every page (Sep 2026). */
.wa-chat {
  position: fixed; right: 24px; bottom: 24px; z-index: 850;
  display: flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 22px 0 16px; border-radius: 999px;
  background: #0e7a6b; color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em; line-height: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.wa-chat svg { width: 28px; height: 28px; flex: none; }
.wa-chat:hover { transform: translateY(-2px); background: #0b6b5d; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28); }
.wa-chat:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
/* keep the footer "Top" link clear of the button */
.footer-bottom { padding-right: 230px; }
@media (max-width: 760px) {
  .wa-chat { right: 16px; bottom: 16px; width: 56px; padding: 0; justify-content: center; }
  .wa-chat span { display: none; }
  .footer-bottom { padding-right: 24px; padding-bottom: 92px; }
}
@media print { .wa-chat { display: none; } }
