/* ============================================================
   Hi-Tide Resort — Polished Replica CSS
   Layout faithful to hi-tide-resort.com | Design refined
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  font-size: 16px;
  color: rgb(33, 37, 41);
  background: #ffffff;
}

a {
  color: #1b689f;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: #124d76; text-decoration: underline; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 5px; }
p { margin: 0 0 1rem 0; line-height: 1.7; }

/* ============================================================
   Bootstrap-style .container
   ============================================================ */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* ============================================================
   UTILITY BAR (#secondary)
   Improvements: refined shadow, better search input, cleaner row spacing
   ============================================================ */
#secondary {
  background: #ffffff;
  width: 100%;
  border-bottom: 1px solid #e4e8ec;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
#secondary .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 110px;
}
#secondary .logo {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
#secondary .logo a {
  display: block;
  line-height: 0;
}
#secondary .logo img {
  height: 98px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
#secondary .logo a:hover img {
  opacity: 0.88;
}
#secondary .items {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-end;
}

/* Row 1: search + social — REMOVED (SHOW_POPUP replaces this intent) */

.search-wrap input[type="text"] {
  width: 162px;
  height: 27px;
  padding: 3px 8px;
  border: 1px solid #d0d0d0;
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-size: 13px;
  outline: none;
  color: #555;
  background: #fafafa;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.search-wrap input[type="text"]:focus {
  border-color: #1b689f;
  background: #fff;
}
.search-wrap button {
  height: 27px;
  padding: 0 9px;
  background: #f0f0f0;
  border: 1px solid #d0d0d0;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  transition: background 0.15s ease;
}
.search-wrap button:hover {
  background: #e2e2e2;
}
.social-share {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #999;
}
.social-share span {
  font-size: 11px;
  color: #aaa;
  margin-right: 1px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 3px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.social-share a:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}
.social-fb { background: #3b5998; }
.social-tw { background: #1da1f2; }
.social-gp { background: #dd4b39; }

/* Row 2: hours | phone | links */
.utility-row-2 {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.utility-row-2 li { margin: 0; }
.utility-row-2 .util-sep {
  color: #ccc;
  padding: 0 7px;
  font-size: 12px;
  user-select: none;
}
.utility-row-2 a {
  color: #1b689f;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.15s ease;
}
.utility-row-2 a:hover {
  color: #124d76;
  text-decoration: none;
}
.utility-row-2 .util-hours {
  color: #1b689f;
  font-weight: 600;
  font-size: 14px;
}

/* ============================================================
   MAIN NAV
   Improvements: subtle gradient depth, smooth hover transitions,
   top-bordered dropdowns that "connect" visually
   ============================================================ */
nav#header {
  background: linear-gradient(to bottom, #1f76b3 0%, #1b689f 100%);
  width: 100%;
  height: 48px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 500;
}
nav#header .container {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  flex-wrap: nowrap;
}
.nav-item-wrapper {
  position: relative;
}
.nav-link {
  color: #ffffff !important;
  padding: 9px 11px;
  display: block;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-decoration: none !important;
  transition: background 0.15s ease;
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.18);
  text-decoration: none !important;
}
.nav-link.active {
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}
.caret {
  font-size: 8px;
  vertical-align: middle;
  margin-left: 2px;
  opacity: 0.8;
}

/* Dropdown — top border connects it to the nav bar */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #d8dfe6;
  border-top: 2px solid #1b689f;
  min-width: 195px;
  z-index: 2000;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 4px 4px;
  padding: 5px 0;
}
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #1b689f !important;
  font-size: 13.5px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.12s ease, padding-left 0.12s ease;
}
.dropdown-menu a:hover {
  background: #eef5fb;
  padding-left: 20px;
  text-decoration: none !important;
}
.nav-item-wrapper:hover .dropdown-menu {
  display: block;
}

/* ============================================================
   HERO / VIDEO WRAPPER  +  SIDEBAR
   ============================================================ */
#header-video-wrapper {
  position: relative;
  overflow: visible;
  background: #000;
}
#header-video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

/* Sidebar — absolutely positioned over left margin, matching original */
#unitSearchBoxWrapper {
  position: absolute;
  left: 80px;
  top: 14px;
  z-index: 100;
}
#unitSearchBox {
  background: rgba(0, 0, 0, 0.65);
  width: 314px;
  padding: 12px 15px 16px 15px;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Guesty placeholder */
.search-heading {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.guesty-notice p {
  color: #bbbbbb;
  font-size: 13px;
  margin: 6px 0;
  line-height: 1.5;
}
.guesty-label {
  color: #4db6e8 !important;
  font-weight: 700;
}
.btn-sidebar-search {
  display: block;
  background: #1b689f;
  color: #ffffff !important;
  text-align: center;
  padding: 9px 12px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 3px;
  text-decoration: none !important;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.btn-sidebar-search:hover {
  background: #155780;
  box-shadow: 0 2px 8px rgba(27, 104, 159, 0.4);
  text-decoration: none !important;
}
.sidebar-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 11px 0;
}
/* ── Hero search form (vertical, inside #unitSearchBox) ── */
.hero-search-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}
.hero-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-field label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.hero-field input[type="date"],
.hero-field select {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  color: #fff;
  padding: 6px 8px;
  font-size: 12px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.hero-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}
.hero-field select option {
  background: #0c3a56;
  color: #fff;
}
.hero-field input[type="date"]:focus,
.hero-field select:focus {
  border-color: #eca13b;
}
.hero-pets-field { margin-top: 2px; }
.hero-pets-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  user-select: none;
}
.hero-pets-label input[type="checkbox"] {
  accent-color: #eca13b;
  width: 13px;
  height: 13px;
  cursor: pointer;
}
.hero-search-err {
  font-size: 10px;
  color: #f6a94b;
  margin: 0;
}
.btn-hero-search {
  display: block;
  width: 100%;
  background: #eca13b;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  margin-top: 4px;
  transition: background 0.15s;
}
.btn-hero-search:hover { background: #d4892a; }

.sidebar-contact a {
  display: block;
  color: #bbbbbb !important;
  font-size: 12px;
  margin: 5px 0;
  text-decoration: none !important;
  transition: color 0.15s ease;
}
.sidebar-contact a:hover { color: #ffffff !important; }

/* ============================================================
   MARQUEE / TICKER
   Improvements: cleaner text, subtle separator lines on edges
   ============================================================ */
.rfm-marquee-container {
  background: rgb(238, 238, 238);
  height: 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.rfm-marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
}
.rfm-marquee-inner a {
  color: #1b689f;
  font-size: 13px;
  padding: 0 44px;
  transition: color 0.15s ease;
}
.rfm-marquee-inner a:hover {
  color: #124d76;
  text-decoration: none;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PAGE HERO BAND — interior pages only (full-width, above container)
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, #0c3a56 0%, #1b5a8c 100%);
  border-bottom: 4px solid #eca13b;
  padding: 3.25rem 0 2.75rem;
}
.page-hero .container {
  /* inherits max-width from .container */
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #eca13b;
  margin: 0 0 0.35rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  border-bottom: none;
  padding-bottom: 0;
}
.page-hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  font-family: system-ui, sans-serif;
}
@media (max-width: 768px) {
  .page-hero { padding: 2rem 0 1.75rem; }
  .page-hero h1 { font-size: 2rem; }
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
/* When page-hero is present, reduce top padding since hero provides the visual entry */
.page-hero + .container .page-content {
  padding-top: 2rem;
}
/* Constrain prose blocks for readability on wide screens */
.page-content > p {
  max-width: 800px;
}

h1 {
  color: #0c3a56;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.4em 0 0.3em 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  color: #0c3a56;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.65rem 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
h3 {
  color: #1b689f;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.5em 0 0.5em 0;
}
h4 {
  color: #0c3a56;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.8em 0 0.3em 0;
}
p { line-height: 1.75; color: #444; font-size: 1.02rem; }

/* Gold accent line under H2 headings in main content */
.page-content h2 {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eca13b;
  margin-bottom: 1rem;
}
/* Suppress gold underline inside special sections that have their own treatment */
.why-direct h2,
.amenity-section h2,
.owner-feature-card h4,
.owner-cta-block h2,
.reviews-cta h3,
.webcam-launch-box h3,
.contact-cta-card h3,
.special-card h3,
.booking-step h3,
.faq-question { border-bottom: none; padding-bottom: 0; margin-bottom: inherit; }

/* Features grid — homepage "What's Included" */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 2.5rem;
}
.feature-item {
  font-size: 0.9rem;
  color: #333;
  padding: 12px 14px 12px 38px;
  background: #f4f8fb;
  border: 1px solid #dde8f2;
  border-radius: 6px;
  line-height: 1.4;
  position: relative;
  font-weight: 500;
}
.feature-item::before {
  content: '✓';
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #1b689f;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Dog-friendly badge */
.dog-friendly {
  float: right;
  margin: 0 0 12px 16px;
}
.dog-friendly img {
  display: block;
  width: 60px;
  height: auto;
}

/* Phone CTA before footer */
.phone-cta {
  margin: 34px 0 12px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
}
.phone-cta h4 {
  font-size: 1.45em;
  color: #1b689f;
  font-weight: 600;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
table th, table td {
  padding: 8px 12px;
  border: 1px solid #e2e2e2;
  text-align: left;
}
table th {
  background: #1b689f;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}
table tr:nth-child(even) { background: #f7f9fb; }
table tr:hover { background: #edf4fa; }

/* Unit cards — premium resort style */
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 28px;
}
.unit-card {
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.unit-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transform: translateY(-5px);
}
.unit-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.unit-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.unit-card:hover .unit-card-img-wrap img { transform: scale(1.05); }
/* Support old direct img for backward compat */
.unit-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.unit-card:hover > img { transform: scale(1.04); }
.unit-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.unit-card h3 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0c3a56;
  border-bottom: none;
  padding-bottom: 0;
  letter-spacing: -0.01em;
}
.unit-card p { font-size: 0.9rem; margin: 0 0 12px; color: #666; line-height: 1.6; flex: 1; }
.unit-fee {
  font-size: 0.78rem;
  color: #5b6b7a;
  margin-bottom: 10px;
}
.unit-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f4f8;
  gap: 10px;
}
.unit-rate {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0c3a56;
  white-space: nowrap;
}
.unit-rate-sub { font-size: 0.78rem; color: #888; font-weight: 400; display: block; }
.unit-tags { margin-top: 10px; margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 5px; }
.unit-tag {
  background: #f0f5fa;
  color: #1b689f;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
  border: 1px solid #d5e6f2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.unit-card a.btn-book {
  display: inline-block;
  background: #eca13b;
  color: #fff !important;
  text-align: center;
  padding: 9px 18px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.unit-card a.btn-book:hover {
  background: #d48d2a;
  box-shadow: 0 3px 10px rgba(236, 161, 59, 0.4);
}

/* Global primary CTA button */
.btn-book {
  display: inline-block;
  background: #eca13b;
  color: #fff !important;
  text-align: center;
  padding: 11px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-book:hover {
  background: #d48d2a;
  box-shadow: 0 4px 14px rgba(236, 161, 59, 0.4);
  text-decoration: none !important;
  color: #fff !important;
}
/* Secondary outlined button */
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #1b689f !important;
  border: 2px solid #1b689f;
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 5px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #1b689f; color: #fff !important; }

/* ============================================================
   FOOTER
   Improvements: column heading styling, cleaner row separation
   ============================================================ */
#footer {
  border-top: 4px solid #eca13b;
  margin-top: 5rem;
  background: #0c3a56;
}
#footer .row-1 {
  padding: 44px 20px 32px;
}
.footer-cols h5 {
  color: rgba(255,255,255,0.5) !important;
  border-bottom-color: rgba(255,255,255,0.12) !important;
}
.footer-col a {
  color: rgba(255,255,255,0.75) !important;
}
.footer-col a:hover { color: #eca13b !important; padding-left: 3px; }
#footer .row-2 {
  background: #091f30;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
}
#footer .row-2 a { color: rgba(255,255,255,0.7); }
#footer .row-2 a:hover { color: #eca13b; }
.footer-powered { color: rgba(255,255,255,0.4); }
.footer-cols {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: #444;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #e8e8e8;
}
.footer-col a {
  display: block;
  color: #1b689f;
  font-size: 13.5px;
  line-height: 2;
  text-decoration: none !important;
  transition: color 0.12s ease, padding-left 0.12s ease;
}
.footer-col a:hover {
  color: #124d76;
  padding-left: 3px;
  text-decoration: none !important;
}
#footer .row-2 {
  padding: 20px 10px;
  border-top: 1px solid #eeeeee;
  text-align: center;
  font-size: 13px;
  color: #555;
  line-height: 2;
  background: #fafafa;
}
#footer .row-2 a {
  color: #1b689f;
  transition: color 0.15s ease;
}
#footer .row-2 a:hover { color: #124d76; }
.footer-powered { color: #999; font-size: 12px; }
.footer-rs-link {
  color: #c8a96e;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.footer-rs-link:hover { color: #eca13b; text-decoration: none; }

/* ============================================================
   WHY BOOK DIRECT — Trust section on homepage (redesigned)
   ============================================================ */
.why-direct {
  background: #0c3a56;
  border-radius: 10px;
  padding: 3rem 2.5rem 2.5rem;
  margin: 3rem 0 1.5rem;
  color: #fff;
}
.why-direct-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.why-direct-header h2 {
  color: #eca13b;
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}
.why-direct-intro {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
}
.why-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2rem;
}
.why-direct-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid #eca13b;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
}
.why-direct-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.why-direct-icon {
  width: 52px;
  height: 52px;
  background: #eca13b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-direct-item h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.why-direct-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}
.why-direct-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 0.5rem;
}
.why-direct-cta .btn-book {
  background: #eca13b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.15s ease;
}
.why-direct-cta .btn-book:hover { background: #d48d2a; }
.why-direct-contact-link {
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.why-direct-contact-link:hover { color: #eca13b !important; text-decoration: none !important; }

/* ============================================================
   PAGE FADE-IN
   ============================================================ */
.page-content {
  animation: pageFadeIn 0.3s ease;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HAMBURGER NAV BUTTON (mobile only, hidden on desktop)
   ============================================================ */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer (hidden by default) */
#mobile-nav {
  display: none;
  background: #1b689f;
  padding: 10px 0 16px;
  position: sticky;
  top: 48px;
  z-index: 499;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block;
  color: #fff !important;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.12s ease;
}
#mobile-nav a:last-child { border-bottom: none; }
#mobile-nav a:hover,
#mobile-nav a.active { background: rgba(255,255,255,0.15); }
#mobile-nav .mobile-nav-section {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5) !important;
  padding: 14px 20px 4px;
  pointer-events: none;
  border-bottom: none;
}

/* ============================================================
   FLOATING MOBILE CTA BAR
   ============================================================ */
#ht-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: #1b689f;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  height: 54px;
  align-items: stretch;
}
#ht-mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none !important;
  color: #fff !important;
  letter-spacing: 0.03em;
  transition: background 0.15s ease;
}
#ht-mobile-cta a:first-child {
  background: #eca13b;
  border-right: 1px solid rgba(255,255,255,0.25);
}
#ht-mobile-cta a:first-child:hover { background: #d4903000; }
#ht-mobile-cta a:last-child:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-link { padding: 9px 8px; font-size: 12.5px; }
  #secondary .container { height: 90px; }
  #secondary .logo img { height: 80px; }
  .footer-cols { gap: 32px; }
  #unitSearchBoxWrapper { left: 20px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Utility bar */
  #secondary .container {
    height: auto;
    padding: 10px 12px;
    flex-direction: row;
    align-items: center;
  }
  #secondary .logo img { height: 60px; }
  #secondary .items { display: none; }

  /* Nav — hide desktop links, show hamburger */
  nav#header .container {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 12px;
  }
  nav#header .nav-item-wrapper { display: none; }
  .nav-hamburger { display: flex; }

  /* Hide video sidebar on mobile */
  #unitSearchBoxWrapper { display: none; }

  /* Page content */
  .page-content { padding-top: 1.5rem; padding-bottom: 2.5rem; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }

  /* Why Book Direct — stack vertically */
  .why-direct { padding: 2rem 1.25rem 1.75rem; }
  .why-direct-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-direct-cta { flex-direction: column; gap: 14px; }
  .why-direct-cta .btn-book { width: 100%; text-align: center; }

  /* Unit cards — single column */
  .units-grid { grid-template-columns: 1fr; gap: 16px; }
  .unit-card-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .unit-card a.btn-book { width: 100%; text-align: center; padding: 10px; }

  /* Footer */
  .footer-cols { flex-direction: column; gap: 20px; padding: 0 16px; }
  #footer .row-1 { padding: 24px 0 16px; }

  /* Table responsiveness */
  table, thead, tbody, th, td, tr { display: block; }
  thead tr { display: none; }
  td { border: none; border-bottom: 1px solid #eee; padding: 7px 10px; }
  td:before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
  }

  /* Add bottom padding so content isn't hidden behind mobile CTA */
  body { padding-bottom: 54px; }
  #ht-mobile-cta { display: flex; }

  /* Popup full-width on mobile */
  #ht-popup { padding: 28px 20px 22px; }
  #ht-popup-title { font-size: 1.3rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding-left: 10px; padding-right: 10px; }
  h1 { font-size: 1.45rem; }
  .units-grid { grid-template-columns: 1fr; }
  .phone-cta h4 { font-size: 1.2rem; }
  .page-hero h1 { font-size: 1.65rem; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOK DIRECT POPUP
   Toggle: SHOW_POPUP in build_hitide.py
   Content: POPUP_* variables in build_hitide.py
   ============================================================ */
#ht-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#ht-popup-overlay.ht-popup-visible {
  display: flex;
  animation: htFadeIn 0.25s ease;
}
#ht-popup-overlay.ht-popup-hidden {
  display: none !important;
}
@keyframes htFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#ht-popup {
  background: #fff;
  border-radius: 6px;
  max-width: 420px;
  width: 100%;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  animation: htSlideUp 0.25s ease;
  text-align: center;
}
@keyframes htSlideUp {
  from { transform: translateY(18px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#ht-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 3px;
  transition: color 0.15s ease, background 0.15s ease;
}
#ht-popup-close:hover { color: #333; background: #f0f0f0; }
#ht-popup-badge {
  display: inline-block;
  background: #eca13b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
#ht-popup-title {
  font-size: 1.55rem;
  color: #1b689f;
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
}
#ht-popup p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.65;
  margin: 0 0 22px;
}
#ht-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#ht-popup-cta {
  display: block;
  background: #1b689f;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: background 0.15s ease;
}
#ht-popup-cta:hover { background: #155780; }
#ht-popup-phone {
  display: block;
  color: #1b689f !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  padding: 8px;
  transition: color 0.15s ease;
}
#ht-popup-phone:hover { color: #eca13b !important; }

/* ============================================================
   AMENITY GRID (amenities.html, pets.html)
   ============================================================ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 1rem 0 2rem;
}
.amenity-item {
  background: #f8f9fa;
  border-left: 3px solid #1b689f;
  padding: 12px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ============================================================
   FAQ ACCORDION (faqs.html)
   ============================================================ */
.faq-accordion {
  margin: 1.5rem 0;
  border-top: 1px solid #dee2e6;
}
.faq-item {
  border-bottom: 1px solid #dee2e6;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 40px 16px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1b689f;
  cursor: pointer;
  position: relative;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question:hover { color: #eca13b; }
.faq-caret {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
  color: #6c757d;
}
.faq-item.open .faq-caret { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 16px;
}
.faq-answer p {
  margin: 0;
  color: #495057;
  line-height: 1.7;
}

/* ============================================================
   BOOKING STEPS (how-to-book.html)
   ============================================================ */
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0;
  border-left: 2px solid #dee2e6;
  padding-left: 0;
  margin-left: 28px;
}
.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding: 0 0 2rem 0;
  margin-left: -30px;
}
.booking-step:last-child { padding-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #1b689f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  margin-top: -2px;
}
.step-body { padding-top: 6px; }
.step-body h3 {
  margin: 0 0 0.5rem;
  color: #eca13b;
  font-size: 1.1rem;
}
.step-body p { margin-bottom: 0.5rem; }
.step-cta-link {
  font-weight: 600;
  color: #1b689f !important;
}
.step-cta-link:hover { color: #eca13b !important; }

/* ============================================================
   SPECIALS CARDS (specials.html)
   ============================================================ */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}
.special-card {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-top: 3px solid #eca13b;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.special-badge {
  display: inline-block;
  background: #eca13b;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.special-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1b689f;
}
.special-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #495057;
  flex-grow: 1;
}
.special-card .btn-book {
  align-self: flex-start;
  margin-top: 4px;
}

/* ============================================================
   CONTACT CTA GRID (contact.html)
   ============================================================ */
.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}
.contact-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #1b689f;
  color: #fff;
  border-radius: 10px;
  padding: 32px 24px;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.15s ease;
}
.contact-cta-card:hover {
  background: #155780;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none !important;
}
.contact-cta-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.contact-cta-card h3 {
  color: #eca13b;
  margin: 0 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-cta-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.contact-cta-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ============================================================
   ACTIVITY CARDS (activities.html)
   ============================================================ */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1rem 0 2rem;
}
.activity-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.activity-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.activity-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.activity-card h4 {
  margin: 0 0 8px;
  color: #1b689f;
  font-size: 1rem;
}
.activity-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
}

/* ============================================================
   PET UNITS GRID (pets.html)
   ============================================================ */
.pet-units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 1rem 0 2rem;
}
.pet-unit-card {
  background: #f0f7f0;
  border: 1px solid #c3e6c3;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d6a2d;
}

/* ============================================================
   RESPONSIVE — Interior page grids
   ============================================================ */
@media (max-width: 768px) {
  .amenity-grid,
  .activity-grid,
  .pet-units-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid,
  .contact-cta-grid { grid-template-columns: 1fr; }
  .booking-steps { margin-left: 16px; }
  .booking-step { margin-left: -18px; }
  .step-num { width: 36px; height: 36px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .amenity-grid,
  .activity-grid,
  .pet-units-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV BOOK NOW BUTTON
   ============================================================ */
.nav-book-now-wrapper {
  margin-left: auto;
  padding-left: 12px;
  display: flex;
  align-items: center;
}
.nav-book-now {
  display: inline-block;
  background: #eca13b;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background 0.2s;
  border: 2px solid #eca13b;
}
.nav-book-now:hover {
  background: #d48d2a;
  border-color: #d48d2a;
  text-decoration: none !important;
}
/* Mobile Book Now — shown only inside mobile drawer */
.mobile-book-now {
  display: block;
  background: #eca13b;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-book-now:hover { background: #d48d2a; text-decoration: none !important; }
@media (min-width: 1025px) {
  .mobile-book-now { display: none; }
}
@media (max-width: 1024px) {
  .nav-book-now-wrapper { display: none; }
}

/* ============================================================
   GALLERY PAGES
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 2rem 0;
}
.gallery-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #0c3a56;
  aspect-ratio: 4/3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 20px 10px 8px;
  text-align: center;
}
.gallery-intro {
  color: #555;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 2rem 0;
}
.review-card {
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-stars {
  color: #eca13b;
  font-size: 1.15rem;
  letter-spacing: 2px;
}
.review-text {
  color: #444;
  font-size: 0.97rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }
.review-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1b689f;
}
.review-source {
  font-size: 0.82rem;
  color: #888;
}
.reviews-cta {
  background: #0c3a56;
  color: #fff;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2.5rem;
}
.reviews-cta h3 {
  color: #eca13b;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.reviews-cta p { color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; }
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AMENITIES — ENHANCED SECTIONS
   ============================================================ */
.amenity-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.amenity-section-select {
  border-color: #eca13b;
  border-width: 2px;
  background: #fffcf5;
}
.amenity-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}
.amenity-section-header h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #0c3a56;
}
.amenity-section-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1b689f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.amenity-section-icon-gold {
  background: #eca13b;
}
.amenity-select-note {
  color: #666;
  font-size: 0.92rem;
  margin: -0.5rem 0 1rem;
  font-style: italic;
}
.amenity-item {
  background: #f4f8fb;
  border-left: 3px solid #1b689f;
  padding: 10px 14px 10px 38px;
  border-radius: 0 4px 4px 0;
  font-size: 0.93rem;
  position: relative;
  color: #333;
}
.amenity-item::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #1b689f;
  font-weight: 700;
  font-size: 0.85rem;
}
.amenity-section-select .amenity-item { border-left-color: #eca13b; }
.amenity-section-select .amenity-item::before { color: #eca13b; }
.amenity-footer-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #f4f8fb;
  border-left: 4px solid #1b689f;
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  color: #444;
}

/* ============================================================
   WEBCAM PAGE
   ============================================================ */
.webcam-launch-box {
  background: #0c3a56;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
  max-width: 640px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.webcam-launch-icon {
  color: #eca13b;
  margin-bottom: 1rem;
}
.webcam-launch-box h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.webcam-launch-box p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
}
.webcam-launch-btn {
  font-size: 1rem;
  padding: 12px 28px;
}
.webcam-conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0;
}
.webcam-condition-card {
  background: #f4f8fb;
  border-radius: 8px;
  padding: 1.25rem;
  border-top: 3px solid #1b689f;
}
.webcam-condition-card h4 {
  color: #0c3a56;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.webcam-condition-card p { color: #555; font-size: 0.93rem; margin: 0; }
@media (max-width: 768px) {
  .webcam-conditions-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AREA MAP PAGE
   ============================================================ */
.area-map-wrapper {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  margin: 1.5rem 0 1rem;
  border: 1px solid #dde3ea;
}
.area-map-open-link {
  margin-bottom: 2.5rem;
}
.distance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1.5rem 0;
}
.distance-card {
  background: #f4f8fb;
  border-radius: 8px;
  padding: 14px 16px;
  border-left: 3px solid #1b689f;
}
.distance-from {
  font-weight: 700;
  color: #0c3a56;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.distance-details {
  font-size: 0.88rem;
  color: #555;
}
@media (max-width: 1024px) {
  .distance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .distance-grid { grid-template-columns: 1fr; }
  .area-map-wrapper { height: 320px; }
}

/* ============================================================
   OWNER PAGES
   ============================================================ */
.owner-intro-block {
  background: #f4f8fb;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid #1b689f;
}
.owner-intro-block h2 { color: #0c3a56; margin-top: 0; }
.btn-rs-link {
  display: inline-block;
  margin-top: 1rem;
  color: #1b689f;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 2px solid #1b689f;
  padding-bottom: 2px;
}
.btn-rs-link:hover { color: #0c3a56; border-color: #0c3a56; }
.owner-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 1.5rem 0 2.5rem;
}
.owner-feature-card {
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  padding: 1.5rem;
  border-top: 3px solid #eca13b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.owner-feature-icon {
  color: #1b689f;
  margin-bottom: 0.75rem;
}
.owner-feature-card h4 { color: #0c3a56; margin-bottom: 0.5rem; }
.owner-feature-card p { color: #555; font-size: 0.93rem; margin: 0; }
.owner-cta-block {
  background: #0c3a56;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.owner-cta-block h2 { color: #eca13b; margin-top: 0; }
.owner-cta-block p { color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; }
.owner-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.owner-cta-buttons .btn-rs-link {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.5);
  margin-top: 0;
}
.owner-cta-buttons .btn-rs-link:hover { color: #fff; border-color: #fff; }

/* Inquiry Form */
.inquiry-form-wrapper {
  background: #f4f8fb;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid #dde3ea;
}
.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.inquiry-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.inquiry-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0c3a56;
}
.req { color: #c0392b; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border: 1px solid #c8d2dc;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #1b689f;
  box-shadow: 0 0 0 3px rgba(27,104,159,0.12);
}
.inquiry-form textarea { resize: vertical; }
.form-submit-btn { margin-top: 8px; padding: 12px 32px; font-size: 1rem; }
.form-disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
}
.inquiry-alt-contact {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
}
.inquiry-alt-contact h3 { color: #0c3a56; margin-top: 0; }
@media (max-width: 640px) {
  .inquiry-form .form-row { grid-template-columns: 1fr; }
  .owner-feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .owner-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────
   FOOTER EMAIL CAPTURE (MailerLite)
   ───────────────────────────────────────── */
#footer-email-capture {
  background: #071e2b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
}
.footer-email-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.footer-email-copy {
  flex: 1 1 260px;
  color: #fff;
  line-height: 1.5;
}
.footer-email-copy strong {
  display: block;
  font-size: 1.1rem;
  color: #eca13b;
  margin-bottom: 0.3rem;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.01em;
}
.footer-email-copy span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-email-form {
  flex: 1 1 340px;
  min-width: 280px;
}
/* Let MailerLite style its own form; ensure it doesn't break our layout */
.footer-email-form .ml-embedded { width: 100%; }
@media (max-width: 700px) {
  .footer-email-inner { flex-direction: column; gap: 1.5rem; }
  .footer-email-form { width: 100%; min-width: 0; }
}

/* ─────────────────────────────────────────
   PAGE-BOTTOM BOOK NOW CTA — FULL SECTION
   ───────────────────────────────────────── */
#page-book-cta {
  background: linear-gradient(135deg, #0c3a56 0%, #0a2f48 60%, #071e2b 100%);
  border-top: 4px solid #eca13b;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#page-book-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(236,161,59,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-book-cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-book-cta-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #eca13b;
  margin-bottom: 0.9rem;
}
.page-book-cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.page-book-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.page-book-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.btn-book-cta-primary {
  background: #eca13b;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(236,161,59,0.35);
}
.btn-book-cta-primary:hover {
  background: #d4892a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236,161,59,0.45);
}
.btn-book-cta-secondary {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.2s;
}
.btn-book-cta-secondary:hover { color: #fff; }
@media (max-width: 600px) {
  #page-book-cta { padding: 3rem 0; }
  .btn-book-cta-primary { width: 100%; text-align: center; }
  .page-book-cta-actions { flex-direction: column; }
}

/* ─────────────────────────────────────────
   WEBCAM EMBED
   ───────────────────────────────────────── */
.webcam-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: #000;
}
.webcam-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.webcam-feed-note {
  font-size: 0.82rem;
  color: #888;
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
}

/* ─────────────────────────────────────────
   GALLERY LIGHTBOX
   ───────────────────────────────────────── */
.gallery-card-zoom {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.gallery-card:hover .gallery-card-zoom { opacity: 1; }

#ht-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#ht-lightbox.ht-lb-open { display: flex; }
#ht-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#ht-lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
#ht-lightbox-caption {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  text-align: center;
  letter-spacing: 0.02em;
}
#ht-lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1;
  opacity: 0.8; transition: opacity 0.2s;
  z-index: 10000;
}
#ht-lightbox-close:hover { opacity: 1; }
#ht-lightbox-prev,
#ht-lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
#ht-lightbox-prev { left: 1.25rem; }
#ht-lightbox-next { right: 1.25rem; }
#ht-lightbox-prev:hover,
#ht-lightbox-next:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 600px) {
  #ht-lightbox-prev { left: 0.5rem; }
  #ht-lightbox-next { right: 0.5rem; }
}

/* ─────────────────────────────────────────
   WEBCAM INTRO
   ───────────────────────────────────────── */
.webcam-intro {
  max-width: 100%;
  white-space: normal;
}

/* ─────────────────────────────────────────
   STAFF PAGE
   ───────────────────────────────────────── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.staff-card {
  background: #f8f7f4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.staff-card img,
.staff-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #d6e4ed;
}
.staff-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.staff-info h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  color: #0c3a56;
}
.staff-title {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eca13b;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.staff-info p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}
.staff-section-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eca13b;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.staff-table-wrap {
  overflow-x: auto;
}
.staff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.staff-table th {
  background: #0c3a56;
  color: #fff;
  text-align: left;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.staff-table td {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid #eee;
  color: #333;
}
.staff-table tbody tr:nth-child(even) td {
  background: #f8f7f4;
}
.staff-table a {
  color: #0c3a56;
  text-decoration: none;
}
.staff-table a:hover {
  color: #eca13b;
}
.prop-meta {
  font-size: 0.85rem;
  color: #777;
}

/* ─────────────────────────────────────────
   OWNER PORTAL CHOICE PAGE
   ───────────────────────────────────────── */
.portal-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}
.portal-choice-card {
  background: #fff;
  border: 2px solid #0c3a56;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.portal-choice-card--secondary {
  border-color: #ccc;
  background: #f8f7f4;
}
.portal-choice-icon {
  font-size: 2rem;
  color: #eca13b;
  line-height: 1;
}
.portal-choice-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #0c3a56;
  margin: 0;
}
.portal-choice-card--secondary h2 {
  color: #555;
}
.portal-choice-card p {
  font-size: 0.94rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.btn-portal-primary {
  display: inline-block;
  background: #eca13b;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-portal-primary:hover {
  background: #d4892a;
}
.btn-portal-secondary {
  display: inline-block;
  background: transparent;
  color: #0c3a56;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  border: 2px solid #0c3a56;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.btn-portal-secondary:hover {
  background: #0c3a56;
  color: #fff;
}
.portal-note {
  font-size: 0.8rem !important;
  color: #888 !important;
  font-style: italic;
}

/* ─────────────────────────────────────────
   GUESTY BOOKING WIDGET
   ───────────────────────────────────────── */
.guesty-widget-wrap {
  background: #0c3a56;
  border-radius: 10px;
  padding: 2rem 2rem 1.5rem;
  margin: 2rem 0 2.5rem;
}
.guesty-widget-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #eca13b;
  font-weight: 700;
  margin-bottom: 1rem;
}
/* Ensure the widget search bar fills the container cleanly */
#search-widget_IO312PWQ {
  display: block;
}

/* ─────────────────────────────────────────
   HOMEPAGE AVAILABILITY SEARCH WIDGET
   ───────────────────────────────────────── */
.home-search-widget {
  background: #0c3a56;
  border-radius: 12px;
  padding: 1.75rem 2rem 1.5rem;
  margin: 2rem 0 2.5rem;
  box-shadow: 0 4px 24px rgba(12,58,86,0.18);
}
.home-search-top {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.home-search-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #eca13b;
  font-weight: 700;
}
.home-search-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}
.home-search-form {
  width: 100%;
}
.home-search-fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
}
.hs-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 130px;
  min-width: 110px;
}
.hs-field label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.hs-field input[type="date"],
.hs-field select {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  /* fix for date inputs on iOS/Safari */
  min-height: 2.5rem;
  line-height: 1.4;
}
.hs-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.6);
  cursor: pointer;
}
.hs-field select option {
  background: #0c3a56;
  color: #fff;
}
.hs-field input[type="date"]:focus,
.hs-field select:focus {
  border-color: #eca13b;
  background: rgba(255,255,255,0.15);
}
/* Pet friendly toggle */
.hs-pets-field {
  flex: 0 0 auto;
  min-width: auto;
}
.hs-pets-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  user-select: none;
  /* align with the other fields */
  margin-top: calc(0.35rem + 0.72rem * 1.4 + 0.35rem);
}
.hs-pets-label:hover {
  border-color: rgba(255,255,255,0.4);
}
.hs-pets-label input[type="checkbox"] {
  accent-color: #eca13b;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.hs-pets-icon {
  font-size: 1rem;
}
/* Search button */
.hs-submit-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}
.btn-hs-search {
  background: #eca13b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.8rem;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.12s;
  height: 2.5rem;
  line-height: 1;
}
.btn-hs-search:hover {
  background: #d4892a;
  transform: translateY(-1px);
}
.hs-note {
  font-size: 0.78rem;
  color: #f6a94b;
  margin: 0.6rem 0 0;
}
@media (max-width: 700px) {
  .home-search-widget { padding: 1.4rem 1.25rem 1.25rem; }
  .home-search-fields { gap: 0.6rem; }
  .hs-field { flex: 1 1 calc(50% - 0.3rem); min-width: calc(50% - 0.3rem); }
  .hs-pets-field { flex: 1 1 100%; }
  .hs-pets-label { margin-top: 0; }
  .hs-submit-wrap { flex: 1 1 100%; }
  .btn-hs-search { width: 100%; height: auto; padding: 0.85rem; }
}

/* ─────────────────────────────────────────
   GUESTY IFRAME EMBED
   ───────────────────────────────────────── */
.guesty-widget-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 8px;
}
/* Remove extra bottom padding when iframe is present */
.guesty-widget-wrap {
  padding-bottom: 0.25rem;
}

/* ─────────────────────────────────────────
   UNITS SECTION HEADING
   ───────────────────────────────────────── */
.units-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #0c3a56;
  margin: 2.5rem 0 1.25rem;
  padding-top: 0.5rem;
  border-top: 2px solid #eca13b;
  display: inline-block;
}

/* ─────────────────────────────────────────
   FOOTER SUBSCRIBE FORM
   ───────────────────────────────────────── */
.footer-subscribe-form {
  width: 100%;
}
.footer-subscribe-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-subscribe-row input[type="email"] {
  flex: 1 1 200px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-subscribe-row input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}
.footer-subscribe-row input[type="email"]:focus {
  border-color: #eca13b;
  background: rgba(255,255,255,0.12);
}
.btn-subscribe {
  background: #eca13b;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.75rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-subscribe:hover {
  background: #d4892a;
}
.footer-subscribe-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0.6rem 0 0;
}
@media (max-width: 480px) {
  .footer-subscribe-row { flex-direction: column; }
  .footer-subscribe-row input[type="email"],
  .btn-subscribe { width: 100%; }
}

/* Unit card — clickable image and title links */
.unit-card-img-link {
  display: block;
  overflow: hidden;
}
.unit-card-img-link img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.unit-card-img-link:hover img { transform: scale(1.04); }
.unit-card-title-link {
  color: inherit;
  text-decoration: none;
}
.unit-card-title-link:hover { color: #eca13b; }


/* ─── Accessibility corrections (28 Jul 2026) ─── */
/* Gold buttons: white on #eca13b measured 2.16:1. Dark label on the same gold is 8.06:1. */
.nav-book-now, .mobile-book-now, .btn-hero-search, .btn-book,
.btn-book-cta-primary, .btn-subscribe, .btn-portal-primary,
.form-submit-btn, .special-badge, #ht-mobile-cta a {
  color: #1a1a1a !important;
}
/* "Why Book Direct?" rendered #0c3a56 on #0c3a56 on how-to-book.html (1.00:1). */
.why-direct h2 { color: #eca13b; }
/* Dropdowns were hover-only, so all 23 child links were outside the tab order. */
.nav-item-wrapper:focus-within .dropdown-menu { display: block; }
/* Focus must be visible; five rules set outline:none with no adequate substitute. */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .gallery-card:focus-visible {
  outline: 2px solid #1b689f !important;
  outline-offset: 2px;
}
/* Muted greys below 4.5:1 */
.footer-powered { color: #6b6b6b; }
.footer-subscribe-note { color: rgba(255,255,255,0.62); }
.form-disclaimer, .portal-note, .webcam-feed-note { color: #767676; }
/* Gold as text on white is 2.16:1 at any size. */
.review-stars, .staff-section-label { color: #8a5a12; }
/* Touch targets under 44px at 390px wide */
@media (max-width: 768px) {
  #footer .footer-col a { display: inline-block; padding: 9px 0; }
  #mobile-nav a { padding: 13px 20px; }
  .nav-hamburger { width: 44px; height: 44px; }
}
/* Book Now disappeared entirely between 769px and 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-book-now-wrapper { display: flex !important; }
}
/* Hero derived its height from the video, so the search box overflowed onto the H1 */
#header-video-wrapper { min-height: 420px; }
#header-video-wrapper video { height: 100%; object-fit: cover; }
/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: #0c3a56; color: #fff; padding: 10px 18px; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Unit number pill + restored From price (28 Jul 2026) */
.unit-tag-num { background:#0c3a56; color:#fff; border-color:#0c3a56; }
.unit-rate { font-size:1.05rem; font-weight:700; color:#0c3a56; margin-bottom:2px; }
.unit-fee { margin-top:0; }
