:root {
  --rr-navy: #061d45;
  --rr-blue: #0057B8;
  --rr-red: #E63946;
  --rr-yellow: #F7C400;
  --rr-green: #18a058;
  --rr-ink: #0D1B3D;
  --rr-muted: #60708a;
  --rr-line: #dfe7f2;
  --rr-soft: #f4f7fb;
  --rr-page: #f3f6fa;
  --rr-white: #fff;
  --rr-shadow: 0 18px 50px rgba(13, 27, 61, .08);
  --rr-header-height: 78px;
  --rr-container: 1500px;
  --rr-gutter: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  scroll-padding-top: var(--rr-header-height);
  overflow-x: clip;
}

body {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--rr-page);
  color: var(--rr-ink);
  font-family: Inter, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

a {
  color: inherit;
}

main {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.wc-container,
.wc-wide,
.rr-shell,
.blog-shell,
.location-container,
.wc-choice-shell {
  width: min(var(--rr-container), calc(100% - var(--rr-gutter)));
  max-width: none;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  width: 100%;
  max-width: 100%;
  min-height: var(--rr-header-height);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(223, 231, 242, .72);
  box-shadow: 0 10px 30px rgba(7, 27, 66, .035);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--rr-container), calc(100% - var(--rr-gutter)));
  min-height: var(--rr-header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
}

.logo-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  width: 238px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex: 0 1 auto;
  padding: 4px;
  border: 1px solid rgba(223, 231, 242, .75);
  border-radius: 999px;
  background: rgba(246, 248, 251, .62);
}

.main-nav a,
.nav-dropdown-toggle {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: var(--rr-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease;
}

.main-nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  background: #fff;
  color: var(--rr-blue);
  box-shadow: 0 8px 22px rgba(13, 27, 61, .07);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 18px;
}

.header-chevron,
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  line-height: 0;
}

.header-chevron {
  transition: transform .16s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(223, 231, 242, .9);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 27, 66, .13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 10px;
  color: var(--rr-ink);
  font-size: 14px;
  font-weight: 800;
}

.nav-dropdown-menu a:hover {
  background: #f4f7fb;
  box-shadow: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(223, 231, 242, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.header-divider {
  display: none;
}

.header-contact-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--rr-navy);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: background .16s ease, color .16s ease;
}

.header-contact-link:hover {
  background: #f4f7fb;
  color: var(--rr-blue);
}

.header-whatsapp .header-icon {
  color: #14a85c;
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--rr-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(6, 29, 69, .18);
}

.header-cta:hover {
  background: #09285f;
}

.mobile-header-action,
.mobile-reservation-link {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f1f4f8;
  color: var(--rr-ink);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  width: 100%;
  max-width: 100%;
  margin-top: 64px;
  background: #fff;
  border-top: 1px solid var(--rr-line);
  color: var(--rr-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(160px, .75fr));
  gap: 34px;
  padding: 40px 0;
}

.footer-logo {
  width: 260px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0 0 14px;
  color: var(--rr-muted);
  font-size: 14px;
  font-weight: 650;
}

.footer-operated-by {
  display: grid;
  gap: 8px;
  margin: 18px 0 4px;
}

.footer-operated-by span {
  color: var(--rr-muted);
  font-size: 13px;
  font-weight: 800;
}

.footer-operated-by a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(7, 27, 66, .08);
  border-radius: 8px;
  background: #fff;
  line-height: 0;
  text-decoration: none;
}

.footer-operated-by img {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-trust-badges img {
  display: block;
  height: 40px;
  width: auto;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 6px;
  color: var(--rr-ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-links a,
.footer-contact a {
  color: var(--rr-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--rr-blue);
}

.footer-bottom {
  width: min(var(--rr-container), calc(100% - var(--rr-gutter)));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 22px;
  border-top: 1px solid var(--rr-line);
  color: #7a879b;
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 1280px) {
  .site-logo {
    width: 230px;
  }

  .header-inner {
    width: min(var(--rr-container), calc(100% - 32px));
    gap: 16px;
  }

  .main-nav {
    gap: 4px;
  }

  .main-nav a,
  .nav-dropdown-toggle,
  .header-contact-link,
  .header-cta {
    font-size: 14px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-cta {
    min-height: 50px;
    padding-inline: 18px;
  }
}

@media (max-width: 1180px) {
  :root {
    --rr-header-height: 80px;
    --rr-gutter: 28px;
  }

  .header-inner {
    justify-content: space-between;
    width: calc(100% - 28px);
  }

  .site-logo {
    width: 190px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--rr-line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(7, 27, 66, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .nav-dropdown-toggle {
    min-height: 46px;
    width: 100%;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 7px;
    background: var(--rr-soft);
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    display: grid;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height .2s ease, opacity .16s ease, visibility .16s ease, padding .16s ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-toggle {
    background: #fff;
    color: var(--rr-blue);
    box-shadow: 0 8px 22px rgba(13, 27, 61, .07);
  }

  .nav-dropdown.is-open .header-chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 360px;
    padding: 2px 0 4px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown-menu a {
    padding-left: 28px;
  }

  .main-nav .mobile-header-action,
  .main-nav .mobile-reservation-link {
    display: flex !important;
  }

  .main-nav .mobile-reservation-link {
    background: var(--rr-navy);
    color: #fff;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --rr-header-height: 72px;
    --rr-gutter: 18px;
  }

  .header-inner {
    width: 100%;
    min-height: var(--rr-header-height);
    padding-inline: 14px;
  }

  .site-logo {
    width: 168px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .footer-bottom {
    width: 100%;
    display: grid;
    padding-inline: 14px;
  }
}
