/* Shared refinements: keeps the original visual identity while improving consistency. */
:root {
  --focus-ring: 0 0 0 3px rgba(214, 162, 58, 0.35);
}

html { scroll-padding-top: 110px; }
body { -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle-lines { position: relative; }
.menu-toggle-lines::before { position: absolute; top: -6px; }
.menu-toggle-lines::after { position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { top: 0; transform: rotate(-45deg); }
.menu .language-link {
  min-width: 34px;
  padding: 6px 3px;
  border: 0;
  border-radius: 0;
  background: transparent;
  justify-content: center;
}
.language-link svg { display: block; width: 28px; height: 19px; }

.mobile-booking-bar { display: none; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
  color: inherit;
  font-size: 14px;
  font-weight: 750;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }

img { height: auto; }

@media (max-width: 960px) {
  html { scroll-padding-top: 84px; }
  .topbar .nav {
    min-height: 72px;
    padding: 9px 0;
    flex-wrap: nowrap;
  }
  .topbar .brand { min-width: 0; }
  .topbar .brand-name { font-size: clamp(21px, 6vw, 27px); }
  .topbar .brand-place { font-size: 10px; }
  .topbar .logo { width: 50px; height: 50px; }
  .topbar .nav > .btn { display: none; }
  .menu-toggle { display: grid; place-items: center; flex: 0 0 auto; }
  .topbar .menu {
    position: absolute;
    inset: 100% 0 auto;
    order: initial;
    width: auto;
    padding: 8px max(20px, calc((100vw - 1180px) / 2)) 16px;
    display: grid;
    gap: 2px;
    overflow: visible;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(7, 29, 48, .12);
    transform-origin: top;
  }
  .topbar .menu:not([data-open="true"]) { display: none; }
  .topbar .menu a {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .topbar .menu a:hover,
  .topbar .menu a.active { background: var(--soft); }
  .topbar .menu .language-link {
    width: 44px;
    min-height: 40px;
    padding: 8px;
    justify-content: center;
    margin-top: 4px;
    background: transparent;
  }
}

@media (max-width: 560px) {
  body { padding-bottom: 76px; }
  .container { width: min(100% - 32px, 1180px); }
  .hero h1 { font-size: clamp(36px, 11vw, 46px); }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding-inline: 16px; }
  .section { padding: 48px 0; }
  .section-title { font-size: clamp(30px, 9vw, 39px); }
  .form-card, .booking-card, .info-box, .guide-card { border-radius: 16px; }
  input, select, textarea { min-height: 48px; font-size: 16px; }
  .mobile-booking-bar {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(7,29,48,.12);
  }
  .mobile-booking-bar .mobile-booking-copy { flex: 1; line-height: 1.15; color: var(--navy); }
  .mobile-booking-bar strong, .mobile-booking-bar small { display: block; }
  .mobile-booking-bar small { margin-top: 3px; color: var(--muted); font-size: 11px; }
  .mobile-booking-bar .btn { min-height: 48px; padding: 10px 15px; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
