:root {
  --navy: #053d70;
  --navy-dark: #022b50;
  --blue: #056eb8;
  --sky: #00a6d8;
  --cyan: #12b8e2;
  --red: #d5293a;
  --gold: #f2b544;
  --ink: #172534;
  --muted: #566574;
  --line: #d9e2ea;
  --surface: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(2, 43, 80, 0.15);
  --radius: 18px;
  --header-height: 88px;
  --focus: #ffca4b;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration:none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

/* Inline SVG presentation is controlled here instead of in index.html. */





:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 12px 18px;
  color: var(--navy-dark);
  background: var(--focus);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(3, 54, 98, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: box-shadow 220ms ease, background 220ms ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24); background: rgba(2, 43, 80, 0.99); }
.header-inner {
  width: min(1480px, calc(100% - 32px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  width: 154px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}
.brand img { width: 146px; height: auto; }
.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.primary-nav a {
  position: relative;
  display: inline-flex;
  padding: 12px 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.primary-nav a:hover { background: rgba(255, 255, 255, 0.08); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}
.phone-link small { display: block; color: #bdeeff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 15px;
  font-weight:500;
  line-height:1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 10px 22px rgba(5, 110, 184, 0.25); }
.button-primary:hover { background: #045b99; }
.button-accent { color: var(--navy-dark); background: var(--gold); box-shadow: 0 10px 22px rgba(242, 181, 68, 0.28); }
.button-accent:hover { background: #ffd06d; }
.button-outline { color: var(--navy-dark); background: transparent; border-color: var(--navy-dark); }
.button-outline:hover { color: var(--white); background: var(--navy-dark); }
.header-book { color: var(--navy-dark); background: var(--gold); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
}
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; height: 100svh; min-height: 620px; background: var(--navy-dark); }
.slideshow, .slide { position: absolute; inset: 0; }
.slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 900ms ease, visibility 900ms ease, transform 6500ms ease;
}
.slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 27, 49, 0.15), transparent 50%, rgba(1, 27, 49, 0.28));
  pointer-events: none;
}
.slide-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(2, 43, 80, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, transform 180ms ease;
}
.slide-control:hover { background: var(--navy-dark); transform: translateY(-50%) scale(1.05); }
.slide-prev { left: 24px; }
.slide-next { right: 24px; }
.slide-toolbar {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 145px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}
.slide-toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(2, 43, 80, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}
.slide-toggle .play-icon { display: none; }
.slide-toggle.is-paused .pause-icon { display: none; }
.slide-toggle.is-paused .play-icon { display: block; }
.slide-dots {
  display: flex;
  gap: 9px;
}
.slide-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgba(2, 43, 80, 0.88);
  border-radius: 50%;
}
.slide-dot.is-active { background: var(--gold); transform: scale(1.25); }

.reservation-wrap {
  position: relative;
  z-index: 15;
  width: min(1380px, calc(100% - 40px));
  margin: -112px auto 0;
}
.reservation-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(680px, 2fr);
  align-items: end;
  gap: 28px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(5, 61, 112, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.reservation-heading h1 { margin: 5px 0 0; color: var(--navy-dark); font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.15; }
.eyebrow { display: inline-block; color: var(--blue); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.eyebrow.light { color: #bdeeff; }
.reservation-form {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.65fr 0.65fr 0.7fr auto;
  align-items: end;
  gap: 10px;
}
.form-field { min-width: 0; }
.form-field label { display: block; margin: 0 0 6px; color: var(--navy-dark); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.form-field input,
.form-field select {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #aebdca;
  border-radius: 10px;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(5, 110, 184, 0.15); outline: none; }
.reservation-submit { min-width: 160px; height: 50px; border: 0; }
.form-error { grid-column: 1 / -1; margin: 0; color: #9b1324; font-size: 0.88rem; font-weight: 700; }

.section { padding: 110px 0; }
.section-heading h2,
.section-intro h2,
.location-content h2,
.video-banner h2 { margin: 8px 0 16px; color: var(--navy-dark); font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: -0.035em; }
.section-heading p,
.section-intro .lead { color: var(--muted); font-size: 1.06rem; }
.section-heading.centered { max-width: 740px; margin: 0 auto 52px; text-align: center; }
.section-heading.split { display: grid; grid-template-columns: 1.35fr 0.65fr; align-items: end; gap: 50px; margin-bottom: 46px; }
.section-heading.split p { max-width: 430px; margin: 0 0 8px; }

.welcome-section { background: linear-gradient(180deg, var(--white), #f7fbfe); }
.welcome-grid { display: grid; grid-template-columns: 0.9fr 1.25fr; gap: 90px; align-items: start; }
.section-intro { position: sticky; top: 130px; }
.section-intro h2 { max-width: 520px; }
.quick-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.quick-facts span { padding: 8px 13px; color: var(--navy-dark); background: #e8f5fb; border-radius: 15px; font-size: 0.87rem; font-weight: 800; }
.welcome-copy { position: relative; padding-left: 34px; border-left: 4px solid var(--cyan); }
.welcome-copy p { margin: 0 0 20px; color: #334454; font-size: 1.01rem; }
.welcome-more.is-expanded { max-height: 420px; overflow-y: auto; padding-right: 20px; scrollbar-color: var(--blue) #e4edf4; }
.welcome-more.is-expanded::-webkit-scrollbar { width: 10px; }
.welcome-more.is-expanded::-webkit-scrollbar-track { background: #e4edf4; border-radius: 10px; }
.welcome-more.is-expanded::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 10px; }
.read-more-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding: 11px 0;
  color: var(--navy-dark);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--blue);
  font-weight: 900;
}

.amenities-section { position: relative; overflow: hidden; background: var(--navy-dark); }
.amenities-section::before { content: ""; position: absolute; width: 460px; height: 460px; top: -250px; right: -80px; border: 90px solid rgba(18, 184, 226, 0.12); border-radius: 50%; }
.amenities-section .section-heading h2,
.amenities-section .section-heading p { color: var(--white); }
.amenities-section .eyebrow { color: #8be8ff; }
.amenities-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-left: 1px solid rgba(255,255,255,0.16);
}
.amenities-list li {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  transition: background 180ms ease, transform 180ms ease;
}
.amenities-list li:hover { background: rgba(18,184,226,0.11); transform: translateY(-4px); }
.amenities-list span { color: #cfe3f2; }
.amenities-list strong { display: block; color: var(--white); font-size: 1.08rem; }

.attractions-section { background: var(--surface); }
.destination-layout { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 42px; align-items: stretch; }
.destination-panel h3 { margin: 0 0 14px; color: var(--navy-dark); font-size: 1.15rem; }
.destination-list { border-top: 1px solid #aebdca; }
.destination-item {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 15px 4px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aebdca;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}
.destination-item:hover,
.destination-item.is-selected { padding-inline: 14px; color: var(--navy-dark); background: var(--white); }
.destination-item.is-selected { box-shadow: inset 4px 0 0 var(--blue); }
.destination-number { color: var(--blue); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.12em; }
.destination-item strong { display: block; font-size: 1.02rem; }
.destination-item small { display: block; color: var(--muted); font-size: 0.88rem; }
.business-heading { margin-top: 36px !important; }
.business-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #aebdca; }
.business-links a { display: flex; justify-content: space-between; gap: 10px; padding: 14px 8px; color: var(--navy-dark); border-bottom: 1px solid #aebdca; font-weight: 800; text-decoration: none; }
.business-links a:nth-child(odd) { padding-right: 20px; border-right: 1px solid #aebdca; }
.business-links a:nth-child(even) { padding-left: 20px; }
.business-links a:hover { background: var(--white); }
.map-panel { position: relative; min-height: 670px; overflow: hidden; background: var(--navy-dark); border-radius: var(--radius); box-shadow: var(--shadow); }
.map-panel iframe { width: 100%; height: 100%; min-height: 670px; border: 0; filter: saturate(0.85) contrast(1.05); }
.map-label { position: absolute; z-index: 2; bottom: 80px; left: 20px; right: 20px; padding: 16px 18px; color: var(--white); background: rgba(2,43,80,0.94); border-radius: 12px; box-shadow: 0 8px 22px rgba(0,0,0,0.22); }
.map-label span { display: block; color: #bdeeff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.map-label strong { display: block; margin-top: 3px; }
.map-link { position: absolute; z-index: 2; right: 20px; bottom: 20px; }

.video-banner { padding: 75px 0; color: var(--white); background: linear-gradient(115deg, var(--navy-dark), var(--blue)); }
.video-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.video-banner h2 { color: var(--white); font-size: clamp(2rem, 3vw, 3rem); }
.video-banner p { margin: 0; color: #cfe9f5; }
.video-button { display: inline-flex; align-items: center; gap: 15px; color: var(--white); font-weight: 900; text-decoration: none; }
.video-icon { width: 76px; height: 76px; display: grid; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; box-shadow: 0 14px 32px rgba(0,0,0,0.25); transition: transform 180ms ease; }
.video-button:hover .video-icon { transform: scale(1.08); }

.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; align-items: stretch; gap: 46px; }
.location-content { display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }
.location-content address { margin: 12px 0; color: var(--ink); font-size: 1.05rem; font-style: normal; }
.location-phone { width: fit-content; color: var(--blue); font-size: 1.35rem; font-weight: 900; text-decoration: none; }
.location-content p { color: var(--muted); }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.location-map { min-height: 520px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.location-map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }

.faq-section { background: #eef6fb; }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 85px; align-items: start; }
.faq-list { border-top: 1px solid #aebdca; }
.faq-item { border-bottom: 1px solid #aebdca; }
.faq-item h3 { margin: 0; }
.faq-item button {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
  color: var(--navy-dark);
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 1.08rem;
  font-weight: 850;
}
.faq-item button span { position: relative; width: 24px; height: 24px; flex: 0 0 24px; }
.faq-item button span::before,
.faq-item button span::after { content: ""; position: absolute; top: 11px; left: 3px; width: 18px; height: 2px; background: currentColor; transition: transform 180ms ease; }
.faq-item button span::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] span::after { transform: rotate(0); }
.faq-answer { padding: 0 44px 24px 0; color: var(--muted); }
.faq-answer p { margin: 0; }
.faq-answer a { color: var(--blue); font-weight: 800; }

.accessibility-callout { padding: 24px 0; color: var(--navy-dark); background: var(--gold); }
.accessibility-callout p { margin: 0; text-align: center; font-weight:700; }
.accessibility-callout a { color: var(--navy-dark); font-weight: 950; }

.site-footer { padding-top: 76px; color: #dcebf5; background: #031f38; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.85fr 0.85fr; gap: 80px; padding-bottom: 52px; }
.footer-brand img { width: 170px; margin-bottom: 24px; }
.footer-brand p { max-width: 380px; color: #b8cddd; }
.footer-brand address { color: #dcebf5; font-style: normal; }
.footer-brand > a:last-child { color: var(--white); font-weight: 900; text-decoration: none; }
.site-footer h2 { margin: 0 0 20px; color: var(--white); font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; padding: 0; margin: 0; list-style: none; }
.footer-links a { color: #dcebf5; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { width: 46px; height: 46px; display: grid; place-items: center; color: var(--white); background: #0b4a7c; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; transition: transform 180ms ease, background 180ms ease; }
.social-links a:hover { background: var(--blue); transform: translateY(-3px); }
.footer-book { margin-top: 24px; }
.footer-legal { padding: 28px 0 34px; border-top: 1px solid rgba(255,255,255,0.14); text-align: center; }
.footer-legal p { max-width: 1040px; margin: 8px auto; color: #a9c0d1; font-size: 0.86rem; }
.legal-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 12px 0; }
.legal-links a { color: var(--white); font-weight:500; text-decoration: none; }
.legal-links a:hover { color: var(--gold); }

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-dark);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.inner-page { background: var(--surface); }
.inner-header { position: sticky; }
.sitemap-main { min-height: 70vh; padding: 90px 0 110px; }
.sitemap-main h1 { margin: 8px 0 34px; color: var(--navy-dark); font-size: clamp(2.4rem, 5vw, 4.4rem); }
.sitemap-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 760px; padding: 0; margin: 0; list-style: none; border-top: 1px solid #aebdca; }
.sitemap-list li { border-bottom: 1px solid #aebdca; }
.sitemap-list a { display: block; padding: 18px 8px; color: var(--navy-dark); font-weight: 850; text-decoration: none; }
.sitemap-list a:hover { padding-left: 16px; color: var(--blue); }
.compact-footer { padding-top: 0; }

@media (max-width: 1260px) {
  .header-inner { grid-template-columns: auto auto 1fr auto; gap: 16px; }
  .menu-toggle { display: block; order: 2; }
  .primary-nav {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    padding: 18px;
    background: var(--navy-dark);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav ul { display: grid; grid-template-columns: repeat(3, 1fr); }
  .primary-nav a { justify-content: center; }
  .header-actions { margin-left: auto; }
  .reservation-panel { grid-template-columns: 1fr; }
  .reservation-form { grid-template-columns: 1fr 1fr repeat(3, 0.65fr) auto; }
  .reservation-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
}

@media (max-width: 980px) {
  :root { --header-height: 78px; }
  .header-inner { width: min(100% - 24px, 960px); }
  .brand { width: 132px; height: 62px; }
  .brand img { width: 125px; }
  .phone-link span small { display: none; }
  .phone-link span { font-size: 0.88rem; }
  .hero { min-height: 560px; }
  .reservation-wrap { margin-top: -90px; }
  .reservation-panel { padding: 22px; }
  .reservation-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reservation-submit { grid-column: 1 / -1; }
  .welcome-grid, .faq-grid, .location-grid, .destination-layout { grid-template-columns: 1fr; gap: 50px; }
  .section-intro { position: static; }
  .welcome-copy { padding-left: 24px; }
  .amenities-list { grid-template-columns: repeat(2, 1fr); }
  .section-heading.split { grid-template-columns: 1fr; gap: 12px; }
  .map-panel, .map-panel iframe { min-height: 560px; }
  .video-banner-inner { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-connect { grid-column: 1 / -1; }
  .inner-nav { display: none; }
}

@media (max-width: 720px) {
  .container, .reservation-wrap { width: min(100% - 28px, 680px); }
  .header-inner { grid-template-columns: auto auto 1fr; }
  .header-actions .phone-link { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; }
  .phone-link span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .header-book { display: none; }
  .primary-nav ul { grid-template-columns: 1fr; }
  .primary-nav a { justify-content: flex-start; padding: 12px 16px; }
  .hero { height: 76svh; min-height: 520px; }
  .slide-control { width: 46px; height: 46px; }
  .slide-prev { left: 12px; }
  .slide-next { right: 12px; }
  .slide-toolbar { bottom: 112px; gap: 9px; }
  .slide-dots { gap: 7px; }
  .slide-dot { width: 11px; height: 11px; }
  .reservation-wrap { margin-top: -80px; }
  .reservation-heading { display: block; }
  .reservation-form { grid-template-columns: 1fr 1fr; }
  .compact-field { grid-column: span 1; }
  .section { padding: 78px 0; }
  .section-heading h2, .section-intro h2, .location-content h2, .video-banner h2 { letter-spacing: -0.02em; }
  .amenities-list { grid-template-columns: 1fr; }
  .amenities-list li { min-height: 150px; }
  .business-links { grid-template-columns: 1fr; }
  .business-links a:nth-child(odd), .business-links a:nth-child(even) { padding-inline: 8px; border-right: 0; }
  .map-panel, .map-panel iframe { min-height: 500px; }
  .map-link { left: 20px; right: 20px; }
  .video-banner-inner { flex-direction: column; }
  .location-map, .location-map iframe { min-height: 420px; }
  .faq-answer { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-connect { grid-column: auto; }
  .footer-links ul { grid-template-columns: 1fr 1fr; }
  .sitemap-list { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .brand { width: 112px; }
  .brand img { width: 108px; }
  .menu-toggle { width: 44px; height: 44px; }
  .header-actions .phone-link { width: 42px; height: 42px; }
  .reservation-form { grid-template-columns: 1fr; }
  .date-field, .compact-field, .reservation-submit { grid-column: 1; }
  .reservation-panel { padding: 20px 16px; }
  .welcome-copy { padding-left: 18px; }
  .destination-item { grid-template-columns: 38px 1fr 22px; gap: 10px; }
  .map-label { left: 12px; right: 12px; top: 12px; }
  .map-link { left: 12px; right: 12px; bottom: 12px; }
  .location-actions .button { width: 100%; }
  .footer-links ul { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .slide { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Requested header, footer quick-link, and overflow refinements ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-header,
.header-inner,
.primary-nav,
.primary-nav ul,
.header-actions,
main,
.site-footer {
  min-width: 0;
  max-width: 100%;
}

/* Give the main header links a modern button/tab appearance. */
.primary-nav ul {
  gap: 8px;
}

.primary-nav a {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius:15px;
  background: rgba(255, 255, 255, 0.06);
  transition: color 180ms ease, background 180ms ease,
              border-color 180ms ease, transform 180ms ease,
              box-shadow 180ms ease;
}

.primary-nav a::after {
  display: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--navy-dark);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(242, 181, 68, 0.22);
  transform: translateY(-1px);
}

.header-book {
  min-height: 46px; display: inline;
  padding-inline: 20px;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 24px rgba(242, 181, 68, 0.28);
}

.header-book:hover,
.header-book:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

/* Display footer quick links as a clearly styled list. */
.footer-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
}

.footer-links li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.45;
}

.footer-links a {
  display: inline-block;
  padding: 3px 0;
  color: #dcebf5;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
  transform: translateX(3px);
}

/* Prevent decorative and embedded elements from creating a bottom scrollbar. */
img,
iframe,
video,
canvas {
  max-width: 100%;
}

.slideshow,
.slide,
.amenities-section,
.site-footer {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body,
  .slideshow,
  .slide,
  .amenities-section,
  .site-footer {
    overflow-x: hidden;
  }
}

@media (max-width: 1260px) {
  .primary-nav a {
    border-radius: 10px;
  }
}

@media (max-width: 720px) {
  .primary-nav ul {
    gap: 8px;
  }

  .primary-nav a {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
  }

  .footer-links ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .footer-links ul {
    grid-template-columns: 1fr;
  }
}

/* Font Awesome icon sizing (SVG markup removed from index.html). */
.phone-link .phone-icon { font-size: 1.3rem; flex: 0 0 auto; }
.slide-control i { font-size: 1.35rem; }
.slide-toggle i { font-size: 1rem; }
.read-more-button .read-more-icon { transition: transform 180ms ease; }
.read-more-button[aria-expanded="true"] .read-more-icon { transform: rotate(180deg); }
.amenities-list .amenity-icon { width: 42px; font-size: 2rem; color: var(--gold); text-align: center; }
.destination-item .destination-arrow { width: 22px; font-size: 1rem; text-align: center; }
.video-icon i { font-size: 2rem; }
.social-links i { font-size: 1.25rem; }
.back-to-top i { font-size: 1rem; }


/* ===== Inner Pages: responsive, accessible, animated ===== */
.inner-page .inner-hero {
  height: 72svh;
  min-height: 560px;
}
.inner-page .inner-hero .slideshow::after {
  background: linear-gradient(90deg, rgba(1, 27, 49, 0.72) 0%, rgba(1, 27, 49, 0.34) 52%, rgba(1, 27, 49, 0.18) 100%);
}
.inner-hero-content {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(1180px, calc(100% - 40px));
  transform: translate(-50%, -46%);
  color: var(--white);
  pointer-events: none;
}
.inner-hero-content h1 {
  max-width: 900px;
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-shadow: 0 6px 24px rgba(0,0,0,0.28);
}
.inner-page .slide-toolbar { bottom: 138px; }
.hero-map-frame { width: 100%; height: 100%; border: 0; }
.inner-page .slide:has(.hero-map-frame) { transform: none; }
.inner-page .slide:has(.hero-map-frame).is-active { transform: none; }
.inner-page .reservation-wrap { margin-top: -105px; }

.inner-section { padding: 100px 0; background: var(--white); }
.alt-section { background: var(--surface); }
.inner-intro { max-width: 860px; margin: 0 auto 52px; text-align: center; }
.inner-intro h2,
.detail-panel h2,
.contact-banner h2,
.directions-copy h2,
.directions-card h2 {
  margin: 8px 0 16px;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.inner-intro p, .directions-copy p { color: var(--muted); font-size: 1.04rem; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.feature-card {
  position: relative;
  min-height: 260px;
  padding: 30px 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(2,43,80,0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.feature-card::after { content:""; position:absolute; right:-46px; bottom:-58px; width:130px; height:130px; border:24px solid rgba(0,166,216,0.08); border-radius:50%; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #aacbdf; }
.feature-icon, .contact-icon, .sitemap-icon {
  width: 54px; height: 54px; display:grid; place-items:center; margin-bottom: 22px;
  color: var(--white); background: var(--blue); border-radius: 16px; font-size: 1.25rem;
}
.feature-card h3, .contact-card h3, .attraction-card h3 { margin:0 0 10px; color:var(--navy-dark); font-size:1.17rem; }
.feature-card p, .contact-card p, .attraction-card p { margin:0; color:var(--muted); }
.detail-panel {
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap:60px; align-items:center;
  margin-top: 50px; padding: 48px; color:var(--white); background:linear-gradient(125deg,var(--navy-dark),var(--blue)); border-radius:var(--radius); box-shadow:var(--shadow);
}
.detail-panel h2, .detail-panel p { color:var(--white); }
.detail-panel .eyebrow { color:#bdeeff; }
.check-list { display:grid; grid-template-columns:1fr 1fr; gap:12px 22px; padding:0; margin:0; list-style:none; }
.check-list li { display:flex; gap:10px; align-items:flex-start; padding:11px 0; border-bottom:1px solid rgba(255,255,255,0.16); }
.check-list .fa-check { color:var(--gold); margin-top:5px; }
.center-cta { margin-top:38px; text-align:center; }

.attractions-stack { display:grid; gap:18px; max-width:1050px; margin:0 auto; }
.attraction-card {
  display:grid; grid-template-columns:86px 1fr; gap:26px; align-items:start; padding:32px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 12px 34px rgba(2,43,80,0.07);
  transition:transform 220ms ease, box-shadow 220ms ease;
}
.attraction-card:hover { transform:translateX(5px); box-shadow:var(--shadow); }
.attraction-card-icon { width:72px; height:72px; display:grid; place-items:center; color:var(--white); background:linear-gradient(145deg,var(--navy),var(--sky)); border-radius:20px; font-size:1.55rem; }
.attraction-card h3 { font-size:1.35rem; }
.attraction-card p { margin-bottom:14px; }
.text-link { display:inline-flex; align-items:center; gap:8px; color:var(--blue); font-weight:850; text-decoration:none; }
.text-link:hover { text-decoration:underline; }

.directions-page-grid { display:grid; grid-template-columns:1.08fr 0.92fr; gap:46px; align-items:center; }
.directions-copy address { margin:24px 0; padding:20px; font-style:normal; background:var(--surface); border-left:4px solid var(--blue); border-radius:0 12px 12px 0; }
.coordinate-box { display:flex; flex-wrap:wrap; gap:12px; }
.coordinate-box span { padding:10px 14px; color:var(--navy-dark); background:#e6f4fb; border-radius:999px; }
.directions-card { padding:38px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); }
.directions-card h2 { font-size:clamp(1.75rem,3vw,2.6rem); }
.directions-form { display:grid; grid-template-columns:1fr auto; gap:12px; margin:24px 0 18px; }
.directions-input { min-width:0; height:54px; padding:0 16px; color:var(--ink); background:var(--white); border:1px solid #9fb1c0; border-radius:10px; }
.directions-input:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(5,110,184,0.15); outline:none; }
.directions-button { min-height:54px; padding:0 22px; color:var(--white); background:var(--navy); border:0; border-radius:10px; font-weight:850; }
.directions-button:hover { background:var(--blue); }

.photo-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.gallery-item { margin:0; overflow:hidden; background:var(--white); border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 10px 30px rgba(2,43,80,0.08); }
.gallery-open { position:relative; width:100%; aspect-ratio:4/3; display:block; padding:0; overflow:hidden; background:var(--navy-dark); border:0; }
.gallery-open img { width:100%; height:100%; object-fit:cover; transition:transform 350ms ease, opacity 220ms ease; }
.gallery-open:hover img { transform:scale(1.055); opacity:0.84; }
.gallery-zoom { position:absolute; right:16px; bottom:16px; width:44px; height:44px; display:grid; place-items:center; color:var(--white); background:rgba(2,43,80,0.88); border-radius:50%; }
.gallery-item figcaption { padding:14px 16px 17px; color:var(--navy-dark); font-weight:800; }
.gallery-lightbox[hidden] { display:none; }
.gallery-lightbox { position:fixed; z-index:2000; inset:0; display:grid; grid-template-columns:auto minmax(0,1100px) auto; align-items:center; gap:18px; padding:70px 24px 28px; background:rgba(1,18,33,0.96); }
.lightbox-figure { margin:0; min-width:0; text-align:center; }
.lightbox-figure img { max-width:100%; max-height:76vh; margin:0 auto; object-fit:contain; border-radius:12px; }
.lightbox-figure figcaption { margin-top:14px; color:var(--white); font-weight:800; }
.lightbox-close { position:absolute; top:20px; right:22px; width:48px; height:48px; display:grid; place-items:center; color:var(--white); background:#123f64; border:1px solid rgba(255,255,255,0.5); border-radius:50%; }
.lightbox-nav { width:50px; height:50px; display:grid; place-items:center; color:var(--white); background:#123f64; border:1px solid rgba(255,255,255,0.5); border-radius:50%; }

.contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.contact-card { padding:34px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); }
.contact-card address { margin:0 0 18px; color:var(--muted); font-style:normal; }
.contact-card > a { display:inline-block; margin-top:16px; color:var(--blue); font-weight:900; text-decoration:none; }
.contact-card > a:hover { text-decoration:underline; }
.contact-banner { display:flex; align-items:center; justify-content:space-between; gap:40px; margin-top:46px; padding:42px; color:var(--white); background:linear-gradient(120deg,var(--navy-dark),var(--blue)); border-radius:var(--radius); box-shadow:var(--shadow); }
.contact-banner h2, .contact-banner p { color:var(--white); margin-bottom:0; }
.contact-banner h2 { font-size:clamp(1.8rem,3vw,2.8rem); }

.sitemap-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.sitemap-card { display:grid; grid-template-columns:58px 1fr auto; align-items:center; gap:18px; padding:22px; color:var(--ink); background:var(--white); border:1px solid var(--line); border-radius:14px; text-decoration:none; transition:transform 180ms ease, box-shadow 180ms ease; }
.sitemap-card:hover { transform:translateY(-4px); box-shadow:0 16px 34px rgba(2,43,80,0.12); }
.sitemap-card .sitemap-icon { margin:0; width:50px; height:50px; border-radius:14px; }
.sitemap-card strong { display:block; color:var(--navy-dark); font-size:1.08rem; }
.sitemap-card small { display:block; margin-top:2px; color:var(--muted); }
.sitemap-card > .fa-arrow-right { color:var(--blue); }

.faq-page-section { background:#eef6fb; }
.faq-page-grid { display:grid; grid-template-columns:0.72fr 1.28fr; gap:70px; align-items:start; }
.faq-page-grid .inner-intro { position:sticky; top:125px; margin:0; text-align:left; }
.faq-block-list { border-top:1px solid #aebdca; }
.faq-block { padding:26px 0; border-bottom:1px solid #aebdca; }
.faq-block .faq-question { margin:0 0 12px; color:var(--navy-dark); font-size:1.08rem; line-height:1.5; font-weight:850; }
.faq-block .faq-answer { padding:0; color:var(--muted); font-size:1rem; }
.faq-block .faq-answer a { color:var(--blue); font-weight:800; text-decoration:none;}

@media (max-width: 1080px) {
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .detail-panel, .directions-page-grid, .faq-page-grid { grid-template-columns:1fr; }
  .faq-page-grid .inner-intro { position:static; text-align:center; }
  .photo-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 720px) {
  .inner-page .inner-hero { height:66svh; min-height:500px; }
  .inner-page .inner-hero .slideshow::after { background:linear-gradient(180deg,rgba(1,27,49,0.46),rgba(1,27,49,0.72)); }
  .inner-hero-content { width:min(100% - 32px,680px); top:48%; }
  .inner-hero-content h1 { font-size:clamp(2.2rem,10vw,4rem); }
  .inner-page .slide-toolbar { bottom:112px; }
  .inner-page .reservation-wrap { margin-top:-82px; }
  .inner-section { padding:74px 0; }
  .feature-grid, .contact-grid, .sitemap-grid { grid-template-columns:1fr; }
  .detail-panel { padding:32px 24px; gap:30px; }
  .check-list { grid-template-columns:1fr; }
  .attraction-card { grid-template-columns:1fr; gap:16px; padding:24px; }
  .directions-card { padding:28px 22px; }
  .directions-form { grid-template-columns:1fr; }
  .photo-grid { grid-template-columns:1fr; }
  .contact-banner { align-items:flex-start; flex-direction:column; padding:30px 24px; }
  .gallery-lightbox { grid-template-columns:1fr; padding:72px 18px 86px; }
  .lightbox-nav { position:absolute; bottom:20px; }
  .lightbox-prev { left:calc(50% - 66px); }
  .lightbox-next { right:calc(50% - 66px); }
}
@media (max-width: 460px) {
  .feature-grid { grid-template-columns:1fr; }
  .feature-card { min-height:auto; }
  .inner-hero-content { width:calc(100% - 28px); }
  .inner-page .slide-control { width:46px; height:46px; }
  .inner-page .slide-prev { left:12px; }
  .inner-page .slide-next { right:12px; }
  .coordinate-box { flex-direction:column; }
  .coordinate-box span { width:100%; border-radius:10px; }
}
@media (prefers-reduced-motion: reduce) {
  .feature-card, .attraction-card, .sitemap-card, .gallery-open img { transition:none !important; }
}
