@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
 --bg: #FBF8F2;
 --bg-soft: #F2E8DA;
 --white: #FFFFFF;
 --navy: #16324A;
 --marine: #2D5D73;
 --brass: #B89B6B;
 --text: #24323B;
 --muted: #5B6972;
 --line: rgba(22, 50, 74, 0.12);
 --shadow: 0 18px 50px rgba(22, 50, 74, 0.10);
 --radius: 22px;
 --text-soft: var(--muted);
 --accent: var(--brass);
 --tablet-portrait-header-height: 60px;
}

* {
 box-sizing: border-box;
}

html,
body {
 margin: 0;
 padding: 0;
 overflow-x: hidden;
 max-width: 100%;
}

main {
 overflow-x: hidden;
 max-width: 100%;
}

body {
 font-family: "Inter", Arial, sans-serif;
 background: var(--bg);
 color: var(--text);
 line-height: 1.4;
}

h1,
h2,
h3,
.brand-title {
 font-family: "Cormorant Garamond", Georgia, serif;
 color: var(--navy);
}

.site-header,
.site-footer {
 background: var(--navy);
 color: #FFFFFF;
}

.button-primary {
 background: var(--brass);
 color: #FFFFFF;
}

.card,
.review-panel,
.room-panel {
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 box-shadow: var(--shadow);
}

a {
 color: inherit;
 text-decoration: none;
}

.hero {
 position: relative;
 min-height: 100svh;
 overflow: hidden;
 background: #0c1d2e;
 margin-top: 0;
 padding-top: 0;
 isolation: isolate;
}

.video-shell {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 margin: 0;
 padding: 0;
 overflow: hidden;
 z-index: 1;
}

.video-shell iframe {
 position: absolute;
 top: 50%;
 left: 50%;
 width: max(177.78vh, 177.78vw);
 height: max(100vh, 56.25vw);
 min-width: max(100vw, 177.78vh);
 min-height: max(100vh, 56.25vw);
 transform: translate(-50%, -50%);
 border: 0;
 pointer-events: none;
 z-index: 0;
}

.visually-hidden {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0, 0, 0, 0);
 white-space: nowrap;
 border: 0;
}

.hero-audio-toggle {
 position: absolute;
 right: 18px;
 bottom: 18px;
 z-index: 5;
 border: 1px solid rgba(255, 255, 255, 0.34);
 background: rgba(12, 24, 36, 0.58);
 color: #ffffff;
 backdrop-filter: blur(6px);
 -webkit-backdrop-filter: blur(6px);
 border-radius: 999px;
 width: 36px;
 height: 36px;
 padding: 0;
 display: grid;
 place-items: center;
 font-size: 0.9rem;
 line-height: 1;
 cursor: pointer;
 transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-audio-toggle .icon-unmuted {
 display: none;
}

.hero-audio-toggle[aria-pressed="true"] .icon-muted {
 display: none;
}

.hero-audio-toggle[aria-pressed="true"] .icon-unmuted {
 display: block;
}

.hero-audio-toggle:hover {
 background: rgba(12, 24, 36, 0.74);
 border-color: rgba(255, 255, 255, 0.5);
}

.hero-audio-toggle:focus-visible {
 outline: 2px solid rgba(255, 255, 255, 0.96);
 outline-offset: 2px;
}

@media (max-width: 1024px) {
 .hero > .hero-audio-toggle {
 right: calc(12px + env(safe-area-inset-right, 0px));
 bottom: calc(12px + env(safe-area-inset-bottom, 0px));
 top: auto;
 }
}

.video-overlay,
.hero-overlay {
 position: absolute;
 inset: 0;
 z-index: 1;
 pointer-events: none;
 background: rgba(0, 0, 0, 0.35);
}

.site-header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 width: 100%;
 padding-top: 0;
 background: transparent;
}

.utility-bar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 24px;
 padding: 10px 34px;
 background: transparent;
 color: #fdfcf8;
}

.utility-left,
.utility-right {
 display: flex;
 align-items: center;
 gap: 10px;
 flex-wrap: wrap;
}

.utility-bar a,
.utility-bar span {
 color: #fdfcf8;
 font-size: 13px;
 line-height: 1.2;
 text-decoration: none;
 text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.utility-directions,
.utility-phone {
 font-weight: 700;
}

.utility-phone {
 display: inline-flex;
 align-items: center;
 gap: 8px;
}

.phone-icon {
 font-size: 12px;
 line-height: 1;
}

.best-rates {
 opacity: 0.9;
 white-space: nowrap;
}

.main-nav {
 position: relative;
 margin: 0 34px;
 margin-top: 0;
 margin-bottom: 0;
 min-height: 78px;
 padding: 0 28px;
 display: grid;
 grid-template-columns: 1fr auto 1fr;
 align-items: center;
 background: rgba(255, 255, 255, 0.96);
 border-radius: 18px;
 box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.nav-left,
.nav-right {
 display: flex;
 align-items: center;
 gap: 24px;
}

.nav-right {
 justify-content: flex-end;
}

.tablet-landscape-only-excursions,
.tablet-landscape-only-group-stays-left {
 display: none;
}

.nav-left a,
.nav-right > a:not(.book-now),
.nav-dropdown-toggle {
 position: relative;
 display: inline-flex;
 align-items: center;
 color: #10263c;
 text-decoration: none;
 font-size: 15px;
 font-weight: 600;
 background: none;
 border: 0;
 padding: 2px 0 5px;
 cursor: pointer;
 transition: color 0.22s ease, opacity 0.22s ease;
}

.nav-left a:hover,
.nav-right > a:not(.book-now):hover,
.nav-dropdown-toggle:hover {
 opacity: 0.68;
}

.nav-logo,
.mobile-logo {
 display: inline-flex;
 flex-direction: column;
 align-items: center;
 text-decoration: none;
 color: #10263c;
}

.logo-main {
 font-family: Georgia, "Times New Roman", serif;
 font-size: 30px;
 line-height: 1;
 letter-spacing: 0.18em;
}

.logo-sub {
 margin-top: 4px;
 font-size: 10px;
 line-height: 1;
 letter-spacing: 0.28em;
}

.logo-divider {
 width: 72%;
 max-width: 190px;
 margin: 5px 0 4px;
 border-top: 1px solid #000000;
}

.logo-location {
 font-size: 8px;
 line-height: 1;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: #10263c;
}

.book-now {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 44px;
 padding: 0 22px;
 border-radius: 999px;
 background: #10263c;
 color: #ffffff !important;
 box-shadow: 0 8px 18px rgba(16, 38, 60, 0.22);
 transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.book-now:hover {
 opacity: 1;
 background: #17344e;
 transform: translateY(-1px);
 box-shadow: 0 10px 22px rgba(16, 38, 60, 0.28);
}

.nav-dropdown {
 position: relative;
}

.nav-dropdown-toggle::after {
 content: "";
 display: inline-block;
 margin-left: 8px;
 width: 7px;
 height: 7px;
 border-right: 1.5px solid currentColor;
 border-bottom: 1.5px solid currentColor;
 transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown-menu {
 position: absolute;
 top: calc(100% + 14px);
 right: 0;
 min-width: 230px;
 padding: 12px 0;
 background: #ffffff;
 border-radius: 14px;
 box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
 display: none;
}
.nav-left .nav-dropdown-menu {
 left: 0;
 right: auto;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
 display: block;
}

.nav-dropdown-menu a {
 display: block;
 padding: 10px 16px;
 color: #10263c;
 text-decoration: none;
 font-size: 14px;
 line-height: 1.35;
}

.nav-dropdown-menu a:hover {
 background: rgba(16, 38, 60, 0.06);
}

.mobile-header-row {
 display: none;
}

.mobile-phone-block {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 color: #10263c;
 text-decoration: none;
 min-width: 0;
 max-width: 100%;
}

.mobile-phone-number {
 font-size: 15px;
 font-weight: 700;
 line-height: 1.1;
 white-space: normal;
 overflow-wrap: anywhere;
}

.mobile-phone-note {
 font-size: 10px;
 line-height: 1.1;
 letter-spacing: 0.03em;
 white-space: normal;
 overflow-wrap: anywhere;
 opacity: 0.82;
}

.mobile-menu-toggle {
 display: inline-flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 4px;
 width: 40px;
 height: 40px;
 padding: 0;
 border: 0;
 background: transparent;
 cursor: pointer;
}

.mobile-menu-toggle span {
 display: block;
 width: 22px;
 height: 2px;
 background: #10263c;
 border-radius: 999px;
}

.mobile-menu-panel {
 display: none;
}

@media (max-width: 1180px) {
 .utility-bar {
 padding-left: 20px;
 padding-right: 20px;
 }

 .main-nav {
 margin-left: 20px;
 margin-right: 20px;
 padding-left: 20px;
 padding-right: 20px;
 }

 .nav-left,
 .nav-right {
 gap: 18px;
 }

 .nav-left a,
 .nav-right > a:not(.book-now),
 .nav-dropdown-toggle {
 font-size: 14px;
 }

 .logo-main {
 font-size: 26px;
 }

 .logo-sub {
 font-size: 9px;
 }

 .logo-location {
 font-size: 7px;
 }
}

@media (min-width: 1025px) {
 .nav-left a:not(.book-now)::after,
 .nav-right > a:not(.book-now)::after,
 .nav-dropdown-toggle::before {
 content: "";
 position: absolute;
 left: 50%;
 bottom: -2px;
 width: 100%;
 height: 1.5px;
 background: currentColor;
 border-radius: 999px;
 transform: translateX(-50%) scaleX(0);
 transform-origin: center;
 transition: transform 0.28s ease-out;
 pointer-events: none;
 }

 .nav-left a:not(.book-now):hover::after,
 .nav-left a:not(.book-now):focus-visible::after,
 .nav-right > a:not(.book-now):hover::after,
 .nav-right > a:not(.book-now):focus-visible::after,
 .nav-dropdown-toggle:hover::before,
 .nav-dropdown-toggle:focus-visible::before {
 transform: translateX(-50%) scaleX(1);
 }

 .nav-left a:not(.book-now):hover,
 .nav-right > a:not(.book-now):hover,
 .nav-dropdown-toggle:hover {
 opacity: 0.86;
 }
}

@media (max-width: 1024px) {
 .utility-bar {
 display: none;
 }


 .site-header {
 padding-top: 0;
 }

 .hero,
 .video-shell {
 margin-top: 0;
 padding-top: 0;
 }

 .main-nav {
 margin-bottom: 0;
 }
 .main-nav {
 margin: 0;
 min-height: 60px;
 width: 100%;
 padding: 0 12px;
 border-radius: 0;
 box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
 display: block;
 }

 .nav-left,
 .nav-logo,
 .nav-right {
 display: none;
 }

 .mobile-header-row {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 10px;
 min-height: 60px;
 width: 100%;
 overflow: visible;
 }

 .mobile-logo {
 flex: 0 1 auto;
 align-items: flex-start;
 min-width: 0;
 }

 .mobile-logo .logo-main {
 font-size: 18px;
 letter-spacing: 0.12em;
 }

 .mobile-logo .logo-sub {
 font-size: 8px;
 letter-spacing: 0.18em;
 }

 .mobile-logo .logo-divider {
 width: 66%;
 margin: 4px 0 3px;
 }

 .mobile-logo .logo-location {
 font-size: 7px;
 letter-spacing: 0.16em;
 }

 .mobile-phone-block {
 flex: 0 1 auto;
 display: inline-flex;
 align-items: center;
 gap: 6px;
 min-width: 0;
 max-width: clamp(160px, 35vw, 280px);
 }

 .mobile-phone-number {
 font-size: 15px;
 }

 .mobile-phone-note {
 font-size: 10px;
 }

 .mobile-menu-toggle {
 flex: 0 0 40px;
 }

 .mobile-menu-panel {
 display: block;
 width: 100%;
 background: #fdfcf8;
 border-top: 1px solid rgba(16, 38, 60, 0.1);
 box-shadow: 0 10px 22px rgba(10, 20, 30, 0.1);
 padding: 8px 0 14px;
 }

 .mobile-menu-panel[hidden],
 .mobile-submenu[hidden] {
 display: none;
 }

 .mobile-menu-panel > a,
 .mobile-submenu-toggle {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: 100%;
 min-height: 50px;
 padding: 12px 14px;
 color: #10263c;
 font-size: 15px;
 font-weight: 600;
 line-height: 1.25;
 background: transparent;
 border: 0;
 border-bottom: 1px solid rgba(16, 38, 60, 0.08);
 text-align: left;
 cursor: pointer;
 }

 .mobile-submenu-toggle::after {
 content: "";
 width: 8px;
 height: 8px;
 border-right: 1.5px solid currentColor;
 border-bottom: 1.5px solid currentColor;
 transform: rotate(45deg);
 transition: transform 0.2s ease;
 margin-left: 10px;
 flex-shrink: 0;
 }

 .mobile-submenu-toggle[aria-expanded="true"]::after {
 transform: rotate(225deg);
 }

 .mobile-submenu {
 background: #ffffff;
 }

 .mobile-submenu a {
 display: block;
 min-height: 46px;
 padding: 12px 14px 12px 30px;
 color: rgba(16, 38, 60, 0.9);
 font-size: 14px;
 font-weight: 500;
 border-bottom: 1px solid rgba(16, 38, 60, 0.06);
 }

 .mobile-book-now {
 background: #10263c;
 color: #ffffff !important;
 margin: 12px 14px 0;
 border-radius: 999px;
 justify-content: center !important;
 border-bottom: 0 !important;
 }
}


@media (min-width: 768px) and (max-width: 1024px) {
 .mobile-phone-block {
 flex-direction: row;
 align-items: baseline;
 gap: 8px;
 white-space: nowrap;
 max-width: clamp(210px, 40vw, 360px);
 }

 .mobile-phone-number {
 font-size: 16px;
 }

 .mobile-phone-note {
 font-size: 10px;
 }
}


@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
 .main-nav {
 margin: 0 20px;
 min-height: 68px;
 width: auto;
 padding: 0 16px;
 border-radius: 14px;
 box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
 display: grid;
 grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
 align-items: center;
 gap: 10px;
 }

 .nav-left,
 .nav-right {
 display: flex;
 align-items: center;
 flex-wrap: nowrap;
 min-width: 0;
 }

 .mobile-header-row,
 .mobile-menu-panel {
 display: none !important;
 }

 .nav-left,
 .nav-right {
 gap: 12px;
 }

 .nav-left a,
 .nav-right > a:not(.book-now),
 .nav-dropdown-toggle {
 font-size: 13px;
 white-space: nowrap;
 }

 .nav-logo {
 display: inline-flex;
 justify-self: center;
 align-items: center;
 }

 .nav-logo .logo-main {
 font-size: 24px;
 letter-spacing: 0.14em;
 }

 .nav-logo .logo-sub {
 font-size: 8px;
 letter-spacing: 0.22em;
 }

 .tablet-landscape-only-excursions,
 .tablet-landscape-only-group-stays-left {
 display: inline-flex !important;
 }

 .nav-right-group-stays {
 display: none !important;
 }

 .nav-right > a[href="/blog/"] {
 display: none;
 }

 .book-now {
 min-height: 40px;
 padding: 0 15px;
 font-size: 13px;
 }
}

@media (max-width: 767px) {
 .mobile-phone-block {
 flex-direction: column;
 align-items: flex-start;
 gap: 1px;
 max-width: 140px;
 }

 .mobile-phone-number {
 font-size: 14px;
 }

 .mobile-phone-note {
 font-size: 9px;
 }
}

@media (max-width: 420px) {
 .main-nav {
 padding: 0 10px;
 }

 .mobile-header-row {
 gap: 8px;
 }

 .mobile-logo .logo-main {
 font-size: 16px;
 letter-spacing: 0.1em;
 }

 .mobile-logo .logo-sub {
 font-size: 7px;
 letter-spacing: 0.14em;
 }

 .mobile-phone-block {
 max-width: 132px;
 }

 .mobile-menu-toggle {
 width: 36px;
 height: 36px;
 }

 .mobile-menu-toggle span {
 width: 20px;
 }
}

.hero-content {
 position: relative;
 z-index: 4;
 min-height: calc(100svh - 100px);
 display: flex;
 flex-direction: column;
 justify-content: center;
 max-width: 860px;
 padding: 146px 34px 90px;
 margin-left: 6.5vw;
 color: var(--white);
 opacity: 1;
 visibility: visible;
}

/* Force hero headline to white across all devices */
.hero h1,
.hero-title,
.hero-headline {
 color: #FFFFFF !important;
}

.hero,
.hero-content {
 opacity: 1 !important;
 filter: none !important;
 mix-blend-mode: normal !important;
}

.eyebrow {
 margin: 0 0 12px;
 font-size: 0.82rem;
 font-weight: 700;
 letter-spacing: 0.24em;
 text-transform: uppercase;
 color: rgba(255, 245, 226, 0.92);
}

.home-page .hero-content h1 {
 margin: 0;
 max-width: 12ch;
 font-family: "Trajan Pro", "Cinzel", "Cormorant Garamond", "Times New Roman", serif;
 font-size: clamp(2.6rem, 5.8vw, 5.1rem);
 line-height: 1.05;
 letter-spacing: 0.12em;
 font-weight: 500;
 text-transform: uppercase;
 text-wrap: balance;
 text-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.hero-headline-line {
 display: block;
}


.hero-subheadline {
 margin: 18px 0 0;
 max-width: 42ch;
 font-size: clamp(1rem, 1.6vw, 1.24rem);
 line-height: 1.48;
 letter-spacing: 0.01em;
 color: rgba(255, 255, 255, 0.92);
}

.hero-copy {
 margin: 24px 0 0;
 max-width: 700px;
 font-size: clamp(1rem, 1.6vw, 1.22rem);
 line-height: 1.7;
 color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 14px;
 margin-top: 26px;
}

.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 54px;
 padding: 0 24px;
 border-radius: 999px;
 font-size: 0.96rem;
 font-weight: 700;
 letter-spacing: 0.02em;
 transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
 transform: translateY(-1px);
}

.btn-primary {
 background: var(--white);
 color: var(--text);
}

.btn-primary:hover {
 background: #f2eadc;
}

.btn-secondary {
 color: var(--white);
 border: 1px solid rgba(255, 255, 255, 0.42);
 background: rgba(255, 255, 255, 0.08);
 backdrop-filter: blur(8px);
}

.btn-secondary:hover {
 background: rgba(255, 255, 255, 0.14);
}

.hero-highlights {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin-top: 28px;
}

.hero-trust {
 display: flex;
 flex-direction: column;
 gap: 2px;
 margin-top: 16px;
 font-size: 0.9rem;
 letter-spacing: 0.01em;
 color: rgba(255, 255, 255, 0.9);
}

.hero-trust-controls {
 display: contents;
}

.hero-trust-line {
 font-weight: 600;
}

.hero-trust-phone {
 font-weight: 500;
 color: rgba(255, 255, 255, 0.92);
}

.hero-highlights span {
 display: inline-flex;
 align-items: center;
 min-height: 40px;
 padding: 0 16px;
 border-radius: 999px;
 background: rgba(255, 255, 255, 0.11);
 border: 1px solid rgba(255, 255, 255, 0.16);
 backdrop-filter: blur(8px);
 color: rgba(255, 255, 255, 0.94);
 font-size: 0.9rem;
 font-weight: 600;
}

.booking-direct-section {
 padding: clamp(56px, 9vw, 96px) 24px clamp(40px, 6vw, 72px);
 background: linear-gradient(180deg, #f5f9fb 0%, #f8f4ec 100%);
}

.booking-direct-inner {
 max-width: 1160px;
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 20px;
}

.booking-direct-copy {
 max-width: 760px;
}

.booking-direct-copy .eyebrow {
 margin-bottom: 12px;
 color: #577287;
}

.booking-direct-copy h2 {
 margin: 0;
 font-family: Georgia, "Times New Roman", serif;
 font-size: clamp(1.9rem, 3.8vw, 2.75rem);
 line-height: 1.15;
 letter-spacing: 0.01em;
 color: #0f2b44;
}

.booking-direct-support {
 margin: 16px auto 0;
 max-width: 640px;
 font-size: clamp(1rem, 1.7vw, 1.12rem);
 line-height: 1.65;
 color: rgba(16, 38, 60, 0.82);
}

.booking-trust-line {
 margin: 10px 0 0;
 font-size: 0.95rem;
 font-weight: 700;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: #2f536e;
}

.booking-widget-shell {
 width: min(100%, 540px);
 max-width: 100%;
 overflow-x: hidden;
 margin-top: 10px;
 padding: clamp(20px, 3.8vw, 34px);
 background: rgba(255, 255, 255, 0.96);
 border: 1px solid rgba(16, 38, 60, 0.1);
 border-radius: 24px;
 box-shadow: 0 20px 48px rgba(14, 34, 50, 0.14);
}

.booking-widget-shell .ftb_widget {
 width: 100%;
 margin: 0 auto;
}

.booking-direct-note {
 margin: 2px 0 0;
 font-size: 0.84rem;
 letter-spacing: 0.03em;
 color: rgba(16, 38, 60, 0.68);
}

@media (max-width: 767px) {
 .booking-direct-section {
 padding: 48px 16px 34px;
 }

 .booking-direct-inner {
 gap: 16px;
 }

 .booking-widget-shell {
 width: 100%;
 border-radius: 18px;
 padding: 18px 14px;
 }

 .booking-trust-line {
 letter-spacing: 0.04em;
 }
}

.intro-strip {
 padding: 42px 24px 70px;
 background: var(--bg);
}

.intro-card {
 max-width: 1180px;
 margin: 0 auto;
 padding: 28px 30px;
 background: var(--white);
 border-radius: 22px;
 box-shadow: 0 12px 40px rgba(16, 38, 60, 0.08);
}

.intro-card p {
 margin: 0;
 font-size: 1rem;
 color: var(--text-soft);
}

@media (max-width: 1024px) {
 .utility-bar {
 display: none;
 }

 .main-nav {
 margin: 0;
 border-radius: 0;
 grid-template-columns: auto 1fr auto;
 padding: 0 14px;
 min-height: 60px;
 width: 100%;
 }

 .nav-left,
 .nav-right {
 display: none;
 }

 .nav-logo {
 justify-self: start;
 align-items: flex-start;
 }

 .logo-main {
 font-size: 18px;
 letter-spacing: 0.12em;
 }

 .logo-sub {
 font-size: 8px;
 letter-spacing: 0.18em;
 }

 .mobile-menu-toggle {
 display: inline-flex;
 flex-direction: column;
 justify-content: center;
 gap: 4px;
 width: 40px;
 height: 40px;
 background: none;
 border: 0;
 cursor: pointer;
 justify-self: end;
 }

 .mobile-menu-toggle span {
 display: block;
 height: 2px;
 width: 22px;
 background: #10263c;
 border-radius: 999px;
 }

 .mobile-menu-panel {
 display: block;
 position: relative;
 top: 0;
 left: 0;
 right: 0;
 padding: 0 14px 12px;
 background: rgba(255, 255, 255, 0.96);
 }

 .mobile-menu-panel[hidden] {
 display: none;
 }

 .mobile-menu-list {
 list-style: none;
 margin: 0;
 padding: 0;
 }

 .mobile-menu-list a {
 display: block;
 padding: 10px 4px;
 font-size: 0.95rem;
 font-weight: 600;
 color: #18344f;
 }

 .hero-content {
 margin-left: 0;
 padding: 124px 20px 72px;
 }

 .hero-content h1 {
 font-size: clamp(2.25rem, 9.4vw, 3.8rem);
 }

 .hero-subheadline {
 max-width: 36ch;
 font-size: clamp(0.98rem, 2.2vw, 1.18rem);
 line-height: 1.42;
 }

 .hero-copy {
 font-size: 1rem;
 }
}

@media (min-width: 1025px) {
 .hero-content h1 {
 max-width: 11ch;
 }
}

@media (max-width: 480px) {
 .hero-content h1 {
 max-width: 11ch;
 font-size: clamp(2.15rem, 11.5vw, 2.7rem);
 line-height: 1.06;
 }

 .hero-subheadline {
 max-width: 30ch;
 font-size: 0.95rem;
 line-height: 1.4;
 }

 .hero-audio-toggle {
 right: 12px;
 bottom: 12px;
 width: 34px;
 height: 34px;
 }

 .hero-actions {
 flex-direction: column;
 align-items: stretch;
 }

 .btn {
 width: 100%;
 }

 .hero-trust {
 margin-top: 14px;
 font-size: 0.86rem;
 }
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
 .home-page .hero-audio-toggle {
 display: grid;
 top: 72px;
 right: 14px;
 bottom: auto;
 left: auto;
 }
}

@media only screen and (max-width: 950px) and (orientation: landscape) {
 html,
 body {
 width: 100%;
 max-width: 100%;
 margin: 0;
 padding: 0;
 overflow-x: hidden;
 }

 .hero,
 .site-header,
 .main-nav,
 .video-shell,
 .video-shell iframe {
 max-width: none !important;
 }

 .site-header,
 .main-nav,
 .hero,
 .video-shell {
 width: 100% !important;
 margin-left: 0 !important;
 margin-right: 0 !important;
 padding-left: 0 !important;
 padding-right: 0 !important;
 }

 .main-nav {
 border-radius: 0 !important;
 }

 .video-shell iframe {
 width: 100vw !important;
 max-width: 100vw !important;
 min-width: 100vw !important;
 left: 50% !important;
 transform: translate(-50%, -50%) !important;
 }
}





.book-now {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 44px;
 padding: 0 18px;
 border-radius: 999px;
 background: #10263c;
 color: #ffffff !important;
 transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.book-now:hover {
 background: #18344f;
 transform: translateY(-1px);
 box-shadow: 0 10px 20px rgba(16, 38, 60, 0.16);
}

@media (min-width: 1025px) {
 .nav-left a,
 .nav-right > a:not(.book-now),
 .nav-dropdown-toggle {
 position: relative;
 padding-bottom: 6px;
 }

 .nav-left a::after,
 .nav-right > a:not(.book-now)::after,
 .nav-dropdown-toggle::before {
 content: "";
 position: absolute;
 left: 50%;
 bottom: 0;
 width: 0;
 height: 1.5px;
 background: currentColor;
 transform: translateX(-50%);
 transition: width 0.28s ease;
 opacity: 0.95;
 }

 .nav-left a:hover::after,
 .nav-left a:focus-visible::after,
 .nav-right > a:not(.book-now):hover::after,
 .nav-right > a:not(.book-now):focus-visible::after,
 .nav-dropdown-toggle:hover::before,
 .nav-dropdown-toggle:focus-visible::before {
 width: 100%;
 }

 .book-now::before {
 display: none !important;
 }
}






.book-now {
 position: relative;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 height: 46px;
 padding: 0 24px;
 border-radius: 999px;
 background: #10263c !important;
 color: #ffffff !important;
 text-decoration: none;
 white-space: nowrap;
 line-height: 1;
 box-shadow: 0 8px 18px rgba(16, 38, 60, 0.14);
 transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.book-now:hover,
.book-now:focus-visible {
 background: #d9dde2 !important;
 color: #10263c !important;
 transform: translateY(-1px);
 box-shadow: 0 10px 20px rgba(16, 38, 60, 0.12);
}

@media (min-width: 1025px) {
 .book-now::after {
 content: "";
 position: absolute;
 left: 50%;
 bottom: 10px;
 width: 0;
 height: 1.5px;
 background: #ffffff;
 transform: translateX(-50%);
 transition: width 0.28s ease, background 0.22s ease;
 }

 .book-now:hover::after,
 .book-now:focus-visible::after {
 width: calc(100% - 30px);
 background: #10263c;
 }
}

/* Mobile/tablet navigation overrides */
@media (max-width: 1024px) {
 .mobile-header-row {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 10px;
 min-height: 60px;
 width: 100%;
 }

 .mobile-menu-panel {
 display: block;
 width: 100%;
 position: relative;
 padding: 8px 0 14px;
 background: #fdfcf8;
 border-top: 1px solid rgba(16, 38, 60, 0.1);
 box-shadow: 0 10px 22px rgba(10, 20, 30, 0.1);
 }

 .mobile-menu-panel[hidden],
 .mobile-submenu[hidden] {
 display: none;
 }

 .mobile-menu-panel > a,
 .mobile-submenu-toggle {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: 100%;
 min-height: 50px;
 padding: 12px 14px;
 color: #10263c;
 font-size: 15px;
 font-weight: 600;
 line-height: 1.25;
 background: transparent;
 border: 0;
 border-bottom: 1px solid rgba(16, 38, 60, 0.08);
 text-align: left;
 cursor: pointer;
 }

 .mobile-submenu-toggle::after {
 content: "";
 width: 8px;
 height: 8px;
 border-right: 1.5px solid currentColor;
 border-bottom: 1.5px solid currentColor;
 transform: rotate(45deg);
 transition: transform 0.2s ease;
 margin-left: 10px;
 flex-shrink: 0;
 }

 .mobile-submenu-toggle[aria-expanded="true"]::after {
 transform: rotate(225deg);
 }

 .mobile-submenu {
 background: #ffffff;
 }

 .mobile-submenu a {
 display: block;
 min-height: 46px;
 padding: 12px 14px 12px 30px;
 color: rgba(16, 38, 60, 0.9);
 font-size: 14px;
 font-weight: 500;
 border-bottom: 1px solid rgba(16, 38, 60, 0.06);
 }

 .mobile-book-now {
 background: #10263c;
 color: #ffffff !important;
 margin: 12px 14px 0;
 border-radius: 999px;
 justify-content: center !important;
 border-bottom: 0 !important;
 }

 .hero-content {
 position: absolute;
 left: 0;
 right: 0;
 top: calc(60px + 16px);
 bottom: auto;
 z-index: 4;
 min-height: 0;
 margin: 0;
 padding: 0 20px 64px;
 justify-content: flex-start;
 }
}

@media (max-width: 767px) {
 .hero,
 .site-header,
 .main-nav,
 .video-shell,
 .hero-content {
 margin-top: 0 !important;
 padding-top: 0 !important;
 }

 .hero {
 position: relative;
 overflow: hidden;
 background: #0c1d2e;
 }

 .video-shell {
 position: absolute;
 inset: 0;
 top: 0 !important;
 }

 .hero-content {
 position: absolute !important;
 top: calc(60px + 14px) !important;
 right: 0;
 bottom: auto;
 left: 0;
 z-index: 4;
 min-height: 0;
 padding: 0 20px 56px !important;
 justify-content: flex-start;
 }

 .hero::before,
 .hero::after,
 .video-shell::before,
 .video-shell::after {
 display: none !important;
 }
}



@media (max-width: 767px) and (orientation: portrait) {
 .excursions-page .hero-content {
 position: absolute !important;
 top: var(--hero-safe-top) !important;
 right: 0 !important;
 left: 0 !important;
 bottom: auto !important;
 z-index: 4 !important;
 min-height: 0 !important;
 margin: 0 !important;
 padding: 0 20px 56px !important;
 justify-content: flex-start !important;
 }
}

/* Universal video cover — overrides all breakpoints */
.video-shell {
 position: absolute !important;
 top: 0 !important;
 left: 0 !important;
 right: 0 !important;
 bottom: 0 !important;
 overflow: hidden !important;
}

.video-shell iframe {
 position: absolute !important;
 top: 50% !important;
 left: 50% !important;
 width: max(177.78vh, 177.78vw) !important;
 height: max(100vh, 56.25vw) !important;
 min-width: max(100vw, 177.78vh) !important;
 min-height: max(100vh, 56.25vw) !important;
 transform: translate(-50%, -50%) !important;
 border: 0 !important;
 pointer-events: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
 .main-nav,
 .nav-left,
 .nav-right {
 overflow: visible;
 }

 .nav-left {
 display: flex !important;
 }

 .tablet-landscape-only-excursions {
 display: inline-flex !important;
 }

 .tablet-landscape-only-group-stays-left {
 display: inline-flex !important;
 position: relative;
 }

 .tablet-landscape-only-group-stays-left .nav-dropdown-menu {
 z-index: 1100;
 }

 .nav-dropdown:hover .nav-dropdown-menu,
 .nav-dropdown:focus-within .nav-dropdown-menu {
 display: block;
 }
}


@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
 .video-shell {
 inset: 0 !important;
 margin: 0 !important;
 padding: 0 !important;
 max-width: none !important;
 overflow: hidden !important;
 }

 .video-shell iframe {
 position: absolute !important;
 top: 50% !important;
 left: 50% !important;
 width: 140vw !important;
 height: 220vw !important;
 min-width: 100vw !important;
 min-height: 100% !important;
 max-width: none !important;
 transform: translate(-50%, -50%) !important;
 }
}

@media (max-width: 932px) and (orientation: landscape) {
 html,
 body {
 width: 100%;
 max-width: 100%;
 margin: 0;
 padding: 0;
 overflow-x: hidden;
 }
 *:not(iframe):not(.video-shell):not(.video-shell iframe) {
 max-width: 100vw;
 }

 .site-header,
 .hero,
 .main-nav,
 .mobile-header-row,
 .video-shell,
 .hero-content {
 width: 100% !important;
 max-width: none !important;
 margin-left: 0 !important;
 margin-right: 0 !important;
 }

 .main-nav {
 margin: 0 !important;
 padding-left: 12px !important;
 padding-right: 12px !important;
 border-radius: 0 !important;
 display: block !important;
 box-shadow: none !important;
 }

 .nav-left,
 .nav-right,
 .nav-logo {
 display: none !important;
 }

 .mobile-header-row {
 display: flex !important;
 }

 .hero {
 width: 100vw !important;
 margin: 0 !important;
 padding: 0 !important;
 min-height: calc(100svh - 60px) !important;
 overflow: hidden !important;
 }

 .video-shell {
 top: 0 !important;
 left: 0 !important;
 right: 0 !important;
 bottom: 0 !important;
 width: 100vw !important;
 overflow: hidden !important;
 }

 .video-shell iframe {
 position: absolute !important;
 top: 0 !important;
 left: 50% !important;
 width: max(100vw, 177.78vh) !important;
 height: max(56.25vw, 100%) !important;
 min-width: 100vw !important;
 min-height: 100% !important;
 transform: translateX(-50%) !important;
 }

 .hero-content {
 position: relative !important;
 top: auto !important;
 right: auto !important;
 bottom: auto !important;
 left: auto !important;
 min-height: calc(100svh - 60px) !important;
 margin: 0 !important;
 padding: 84px 20px 34px !important;
 justify-content: center !important;
 }

 .hero-actions {
 margin-top: 14px !important;
 }

}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
 body {
 position: relative;
 }
 .video-shell {
 position: absolute !important;
 }

 .hero-trust {
 width: 100%;
 align-items: stretch;
 gap: 8px;
 }

 .hero-trust-controls {
 display: block !important;
 width: 100%;
 position: relative;
 z-index: 8;
 }

 .hero-trust-phone {
 position: relative;
 z-index: 7;
 display: inline-block;
 width: fit-content;
 }
}


@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
 .hero-content {
 justify-content: flex-start;
 min-height: calc(100svh - 78px);
 padding-top: clamp(128px, 14svh, 168px);
 padding-bottom: clamp(42px, 8svh, 72px);
 }

 .hero-content h1 {
 font-size: clamp(2.2rem, 5.1vw, 4.15rem);
 line-height: 0.98;
 }

 .hero-subheadline {
 margin-top: 14px;
 max-width: 34ch;
 }

 .hero-actions {
 margin-top: 18px;
 gap: 12px;
 }

}

@media only screen and (max-width: 767px) and (orientation: portrait) {
 .hero {
 isolation: isolate;
 }

 .video-shell {
 z-index: 1 !important;
 }

 .video-shell iframe {
 z-index: 0 !important;
 }

 .hero,
 .hero-content,
 .hero-actions {
 overflow: hidden !important;
 }

 .hero-content {
 z-index: 4 !important;
 opacity: 1 !important;
 visibility: visible !important;
 transform: translateZ(0);
 -webkit-transform: translateZ(0);
 }

 .booking-direct-section {
 margin-top: 0 !important;
 transform: none !important;
 }

 .booking-direct-section::before {
 display: none !important;
 }

 .hero-actions .btn-secondary ~ .btn {
 display: none !important;
 }

 /* Temporary mobile-portrait cleanup for the rounded artifact near the section seam. */
 .hero-highlights {
 display: none !important;
 }
}

@media only screen and (max-width: 600px) and (orientation: portrait) {
 .hero-content {
 padding-bottom: 84px !important;
 }

 .hero-actions {
 margin-top: 22px;
 gap: 12px;
 }

 .hero-trust {
 margin-top: 8px;
 align-items: center;
 text-align: center;
 gap: 0;
 }

 .hero-trust-controls {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 12px;
 width: 100%;
 }

 .hero-trust-line {
 text-align: center;
 line-height: 1.3;
 }

 .hero-trust-phone {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 50px;
 padding: 0 26px;
 border-radius: 999px;
 font-size: 0.93rem;
 font-weight: 700;
 letter-spacing: 0.02em;
 color: #ffffff;
 border: 1px solid rgba(255, 255, 255, 0.42);
 background: rgba(255, 255, 255, 0.08);
 backdrop-filter: blur(8px);
 -webkit-backdrop-filter: blur(8px);
 margin-top: clamp(20px, 8svh, 56px);
 align-self: center;
 }
}

@media (max-width: 900px) and (orientation: landscape) {
 .video-shell {
 position: absolute !important;
 }
}

/* Mobile landscape: hamburger color */
@media only screen and (max-width: 1024px) and (orientation: landscape) {
 .mobile-menu-toggle span {
 background: #10263c;
 }
 .hero > .hero-audio-toggle {
 position: absolute;
 top: 14px;
 right: 14px;
 bottom: auto;
 left: auto;
 z-index: 10;
 }
}

/* Portrait mobile: fix Explore Rooms button cutoff */
@media only screen and (max-width: 767px) and (orientation: portrait) {
 html,
 body {
 overflow-x: hidden;
 }
 .home-page .hero {
 min-height: fit-content !important;
 }
 .home-page .hero-content {
 position: relative !important;
 overflow: visible !important;
 top: auto !important;
 margin-left: 0 !important;
 max-width: 100% !important;
 padding-top: calc(60px + 14px) !important;
 padding-left: 20px !important;
 padding-right: 20px !important;
 padding-bottom: 60px !important;
 }
 .home-page .hero-content h1 {
 transform: translateX(-14px) !important;
 }
 .home-page .hero-actions {
 overflow: visible !important;
 }
 .video-shell iframe {
 transform: translate(-50%, calc(-50% - 80px)) !important;
 height: calc(max(100svh, 56.25vw) + 160px) !important;
 min-height: calc(max(100svh, 56.25vw) + 160px) !important;
 }
}

/* Homepage story flow + parallax sections */
.homepage-story-section {
 padding: clamp(58px, 9vw, 96px) 24px;
 background: #f8f4ec;
}

.rooms-preview-section,
.final-cta-section {
 background: linear-gradient(180deg, #f8f4ec 0%, #f5f9fb 100%);
}

.experience-section {
 background: #f7f1e7;
}

.homepage-story-inner {
 width: min(100%, 1060px);
 margin: 0 auto;
}

.section-eyebrow {
 margin: 0 0 12px;
 font-size: 0.78rem;
 letter-spacing: 0.22em;
 font-weight: 700;
 text-transform: uppercase;
 color: #4a6477;
}

.homepage-story-inner h2 {
 margin: 0;
 font-family: "Cormorant Garamond", Georgia, serif;
 font-size: clamp(2rem, 4vw, 3.1rem);
 line-height: 1.1;
 color: #12304a;
 max-width: 18ch;
}

.homepage-story-inner p {
 margin: 16px 0 0;
 max-width: 64ch;
 font-size: clamp(1rem, 1.4vw, 1.12rem);
 line-height: 1.72;
 color: rgba(16, 38, 60, 0.82);
}

.story-cta {
 margin-top: 26px;
 background: #10263c;
 color: #ffffff;
}

.story-cta:hover {
 background: #17344e;
}

.parallax-section {
 position: relative;
 min-height: clamp(340px, 52vw, 620px);
 display: grid;
 place-items: center;
 background-color: #162c3f;
 background-image: var(--parallax-image);
 background-size: cover;
 background-position: center center;
 background-repeat: no-repeat;
 background-attachment: fixed;
 isolation: isolate;
}

.parallax-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, rgba(12, 24, 36, 0.18) 0%, rgba(12, 24, 36, 0.4) 100%);
 pointer-events: none;
 z-index: 1;
}

.parallax-content {
 position: relative;
 z-index: 2;
 text-align: center;
 padding: 24px;
}

.parallax-content p {
 margin: 0;
 font-family: "Cormorant Garamond", Georgia, serif;
 font-size: clamp(1.75rem, 3.6vw, 2.9rem);
 line-height: 1.15;
 color: rgba(255, 255, 255, 0.96);
 text-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
}

.parallax-marina {
 --parallax-image: url("../excursions/images/seascape-marina-resort-marathon-key-captain-kevin-sunset-16x9-1.png");
}

.parallax-shoreline {
 --parallax-image: url("../excursions/images/seascape-marina-resort-marathon-key-captain-kevin-sun-down-16x9-1.png");
}

.parallax-waterfront {
 --parallax-image: url("../excursions/images/SeascapeMarinaResort-MarathonKey-CaptainKevin-horizontal-image- (10).jpg");
}

.parallax-section--visual-only .parallax-overlay {
 background: linear-gradient(180deg, rgba(12, 24, 36, 0.12) 0%, rgba(12, 24, 36, 0.3) 100%);
}

@media (max-width: 1024px) {
 .parallax-section {
 min-height: clamp(320px, 44vw, 500px);
 background-attachment: scroll;
 background-position: center;
 }
}

@media (max-width: 767px) {
 .homepage-story-section {
 padding: 48px 16px;
 }

 .homepage-story-inner h2 {
 max-width: 100%;
 }

 .parallax-section {
 min-height: 300px;
 }

 .parallax-content {
 padding: 20px 16px;
 }

 .parallax-content p {
 font-size: clamp(1.6rem, 8vw, 2.1rem);
 }
}

/* Tablet hero + navigation overrides to match desktop behavior */
@media (max-width: 1024px) and (min-width: 768px) {
 .site-header {
 background: rgba(0, 0, 0, 0.2) !important;
 box-shadow: none !important;
 border-radius: 0 !important;
 backdrop-filter: blur(6px);
 -webkit-backdrop-filter: blur(6px);
 }

 .main-nav,
 .nav-wrapper,
 .header-inner {
 background: transparent !important;
 box-shadow: none !important;
 border-radius: 0 !important;
 }

 .site-header,
 .site-header a,
 .main-nav a,
 .main-nav .nav-dropdown-toggle,
 .main-nav .mobile-phone-block,
 .nav a {
 color: #FFFFFF !important;
 }

 .main-nav .mobile-menu-toggle span {
 background: #FFFFFF !important;
 }

 .main-nav .mobile-menu-panel {
 background: #fdfcf8 !important;
 }

 .main-nav .mobile-menu-panel > a,
 .main-nav .mobile-submenu-toggle,
 .main-nav .mobile-submenu a {
 color: #10263c !important;
 }
}

@media (max-width: 767px) and (orientation: portrait) {
 .excursions-page .hero-content {
 top: var(--hero-text-top) !important;
 padding: 0 20px 56px !important;
 }
}

/* Global signup strip + footer */
.signup-strip {
 background: linear-gradient(180deg, #f7f1e7 0%, #f4ece0 100%);
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}

.signup-strip__inner {
 width: min(100% - 48px, 1180px);
 margin: 0 auto;
 padding: clamp(26px, 4vw, 38px) 0;
 display: grid;
 grid-template-columns: minmax(0, 1fr) auto;
 gap: 24px;
 align-items: center;
}

.signup-strip__copy h2 {
 margin: 0;
 font-size: clamp(1.5rem, 2.8vw, 2.2rem);
 line-height: 1.1;
 color: var(--navy);
}

.signup-strip__copy p {
 margin: 10px 0 0;
 max-width: 68ch;
 color: var(--muted);
 font-size: 0.98rem;
 line-height: 1.6;
}

.signup-strip__form {
 display: flex;
 gap: 10px;
 align-items: center;
}

.signup-strip__form-wrap {
 width: 100%;
 max-width: 430px;
}

.signup-strip__form .row-form {
 display: flex;
 gap: 10px;
 align-items: center;
}

.signup-strip__form input {
 min-height: 54px;
 width: clamp(220px, 26vw, 320px);
 padding: 0 16px;
 border-radius: 999px;
 border: 1px solid var(--line);
 background: #f1f2f4;
 color: var(--text);
 font-size: 0.95rem;
}

.signup-strip__form input:focus-visible {
 outline: 2px solid rgba(22, 50, 74, 0.4);
 outline-offset: 2px;
}

.signup-strip__form .btn {
 border: 0;
 cursor: pointer;
}

.signup-strip__form .loading {
 display: none;
}

.signup-strip__form .row-success p {
 margin: 0;
 color: var(--navy);
 font-size: 0.95rem;
 line-height: 1.5;
}

.site-global-footer {
 background: linear-gradient(180deg, #16324a 0%, #11283b 100%);
 color: rgba(255, 255, 255, 0.9);
 padding: clamp(42px, 5vw, 56px) 24px 24px;
}

.site-global-footer__top,
.site-global-footer__grid,
.site-global-footer__bottom {
 width: min(100%, 1180px);
 margin: 0 auto;
}

.site-global-footer__top {
 text-align: center;
 padding-bottom: 28px;
 border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-booking-cta {
 background: var(--brass);
 color: #fff;
 min-width: min(100%, 360px);
}

.footer-booking-cta:hover {
 background: #c1a474;
}

.footer-last-minute-callout {
 margin: 12px 0 0;
 font-size: 0.98rem;
 color: rgba(255, 255, 255, 0.88);
}

.footer-last-minute-callout a {
 color: #fff;
 font-weight: 700;
 white-space: nowrap;
}

.site-global-footer__grid {
 display: grid;
 grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
 gap: clamp(18px, 2.2vw, 28px);
 padding: 30px 0;
}

.footer-block h3,
.footer-brand h2 {
 margin: 0 0 12px;
 color: #fff;
 font-family: "Cormorant Garamond", Georgia, serif;
 font-size: clamp(1.3rem, 2vw, 1.6rem);
 line-height: 1.1;
}

.footer-brand address {
 font-style: normal;
 line-height: 1.7;
 font-size: 0.94rem;
}

.footer-brand address a,
.footer-block a {
 color: rgba(255, 255, 255, 0.9);
 text-decoration: none;
}

.footer-brand address a:hover,
.footer-block a:hover,
.site-global-footer__legal a:hover {
 color: #fff;
 text-decoration: underline;
 text-underline-offset: 3px;
}

.footer-positioning {
 margin: 14px 0 0;
 color: rgba(255, 255, 255, 0.76);
 line-height: 1.6;
}

.footer-block ul {
 list-style: none;
 margin: 0;
 padding: 0;
 display: grid;
 gap: 8px;
}

.footer-meta {
 margin: 10px 0 0;
 font-size: 0.9rem;
 color: rgba(255, 255, 255, 0.8);
}

.footer-reviews {
 margin: 0;
 line-height: 1.6;
}

.footer-stars {
 letter-spacing: 0.14em;
 color: #f2d39b;
}

.footer-social-links {
 margin-top: 12px;
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
}

.footer-map-card {
 margin-top: 14px;
 border: 1px solid rgba(255, 255, 255, 0.18);
 border-radius: 16px;
 overflow: hidden;
 background: rgba(255, 255, 255, 0.06);
}

.footer-map-card iframe {
 display: block;
 width: 100%;
 height: 170px;
 border: 0;
}

.footer-map-card > a {
 display: inline-flex;
 padding: 10px 12px 12px;
 font-weight: 600;
}

.site-global-footer__bottom {
 display: flex;
 justify-content: space-between;
 gap: 16px;
 align-items: center;
 padding-top: 20px;
 border-top: 1px solid rgba(255, 255, 255, 0.15);
 font-size: 0.86rem;
 color: rgba(255, 255, 255, 0.72);
}

.site-global-footer__bottom p {
 margin: 0;
}

.site-global-footer__legal {
 display: flex;
 align-items: center;
 gap: 14px;
}

.reg-mark {
 display: inline-block;
 font-size: 0.62em;
 vertical-align: super;
 margin-left: 1px;
}

@media (max-width: 1024px) {
 .site-global-footer__grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

@media (max-width: 767px) {
 .signup-strip__inner {
 width: min(100% - 32px, 1180px);
 grid-template-columns: 1fr;
 padding: 24px 0;
 gap: 16px;
 }

 .signup-strip__form {
 width: 100%;
 }

 .signup-strip__form-wrap {
 max-width: none;
 }

 .signup-strip__form .row-form {
 flex-direction: column;
 align-items: stretch;
 }

 .signup-strip__form input,
 .signup-strip__form .btn {
 width: 100%;
 }

 .site-global-footer {
 padding: 34px 16px 20px;
 }

 .site-global-footer__grid {
 grid-template-columns: 1fr;
 padding: 24px 0;
 gap: 22px;
 }

 .footer-map-card iframe {
 height: 150px;
 }

 .site-global-footer__bottom,
 .site-global-footer__legal {
 flex-direction: column;
 align-items: flex-start;
 }
}

@media (max-width: 767px) and (orientation: portrait) {
 .footer-booking-cta {
 font-size: 0.82rem;
 white-space: nowrap;
 }

 .footer-last-minute-label,
 .footer-last-minute-callout a {
 display: block;
 }
}


.sitemap-main {
  padding: 60px 20px;
}

.sitemap-shell {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.sitemap-helper {
  margin: 12px 0 40px;
  max-width: 760px;
  color: #36556a;
  line-height: 1.65;
}

.sitemap-group {
  margin-bottom: 40px;
  padding: 24px;
  border-top: 1px solid rgba(17, 71, 94, 0.14);
  border-bottom: 1px solid rgba(17, 71, 94, 0.14);
}

.sitemap-group:nth-of-type(even) {
  background: rgba(224, 244, 250, 0.35);
}

.sitemap-group h2 {
  margin: 0 0 14px;
  color: #0f3e57;
}

.sitemap-group ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.sitemap-group a {
  color: #0f516a;
  text-decoration: none;
}

.sitemap-group a:hover,
.sitemap-group a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .sitemap-main {
    padding: 42px 16px;
  }

  .sitemap-group {
    margin-bottom: 28px;
    padding: 20px 16px;
  }
}

/* PRIVACY PAGE */
.privacy-page {
 margin: 0;
 background: linear-gradient(180deg, #f5fbff 0%, #ffffff 280px);
 color: #19384b;
}

.privacy-page .hero {
 min-height: 0;
 height: auto;
 overflow: visible;
 background: transparent;
 position: sticky;
 top: 0;
 z-index: 1000;
}

.privacy-page .site-header {
 background: linear-gradient(180deg, rgba(8, 29, 42, 0.96), rgba(13, 39, 56, 0.9));
 padding-bottom: 12px;
}

.privacy-page .utility-bar {
 background: rgba(7, 24, 35, 0.78);
 border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.privacy-page .utility-bar a,
.privacy-page .utility-bar span {
 color: #ffffff;
 text-shadow: none;
}

.privacy-page .main-nav {
 background: #ffffff;
 box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.privacy-page .nav-left a,
.privacy-page .nav-right > a:not(.book-now),
.privacy-page .nav-dropdown-toggle,
.privacy-page .nav-logo,
.privacy-page .mobile-logo {
 color: #0b2234;
}

.privacy-page main {
 padding-top: clamp(32px, 4vw, 54px);
}

.privacy-content {
 width: min(100%, 1100px);
 margin: 0 auto;
 padding: clamp(46px, 6vw, 84px) clamp(18px, 4vw, 42px) clamp(60px, 8vw, 110px);
}

.privacy-hero {
 text-align: center;
 padding: clamp(32px, 5vw, 48px) 0 clamp(36px, 6vw, 62px);
}

.privacy-hero h1 {
 margin: 0;
 font-size: clamp(2rem, 6vw, 3.5rem);
 color: #12384d;
 letter-spacing: -0.02em;
}

.privacy-hero p {
 margin: 16px 0 0;
 font-size: clamp(1rem, 2vw, 1.22rem);
 color: #3e6479;
}

.privacy-effective-date {
 display: block;
 margin-top: 12px;
 color: #56798d;
 font-size: 0.92rem;
 letter-spacing: 0.02em;
 text-transform: uppercase;
}

.privacy-policy-copy {
 max-width: 980px;
 margin: 0 auto;
 line-height: 1.75;
 font-size: 1.02rem;
 color: #244d62;
}

.privacy-policy-copy section + section {
 margin-top: clamp(30px, 5vw, 46px);
}

.privacy-policy-copy h2 {
 margin: 0 0 12px;
 color: #12384d;
 font-size: clamp(1.22rem, 2.2vw, 1.7rem);
}

.privacy-policy-copy p,
.privacy-policy-copy ul {
 margin: 0;
}

.privacy-policy-copy ul {
 padding-left: 1.35rem;
}

.privacy-policy-copy li + li,
.privacy-policy-copy p + p,
.privacy-policy-copy p + ul,
.privacy-policy-copy ul + p {
 margin-top: 10px;
}

.privacy-contact-card {
 max-width: 980px;
 margin: clamp(38px, 6vw, 58px) auto 0;
 padding: clamp(24px, 4vw, 34px);
 border-radius: 18px;
 border: 1px solid rgba(18, 56, 77, 0.14);
 box-shadow: 0 16px 34px rgba(9, 33, 48, 0.1);
 background: #f7fbfd;
}

.privacy-contact-card h2 {
 margin: 0 0 12px;
 color: #12384d;
 font-size: clamp(1.22rem, 2.2vw, 1.62rem);
}

.privacy-contact-card p {
 margin: 0;
 white-space: pre-line;
 line-height: 1.8;
 color: #23495f;
}

@media (max-width: 768px) {
 .privacy-content {
 padding-top: 34px;
 }

 .privacy-policy-copy {
 font-size: 0.98rem;
 }
}

@media (max-width: 1024px) and (min-width: 768px) {
 .privacy-page .site-header {
 background: linear-gradient(180deg, rgba(8, 29, 42, 0.96), rgba(13, 39, 56, 0.9)) !important;
 backdrop-filter: none;
 -webkit-backdrop-filter: none;
 }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
 .hero {
 overflow: visible;
 transform: none;
 filter: none;
 }

 .site-header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 width: 100%;
 z-index: 5000;
 }

 .main-nav {
 margin: 0;
 width: 100%;
 border-radius: 0;
 }

 .mobile-header-row {
 min-height: 64px;
 }

 .mobile-menu-panel {
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 z-index: 5001;
 }

 body {
 padding-top: 64px;
 }
}
