/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white:        #ffffff;
  --off-white:    #f8fafb;
  --navy-deep:    #0a1a2e;
  --navy-mid:     #0d2847;
  --navy-light:   #1a3a5c;
  --sand:         #c8a882;
  --sand-light:   #e8d5b7;
  --teal:         #2d9cdb;
  --teal-dark:    #1a7ab8;
  --teal-glow:    rgba(45,156,219,0.15);
  --text-dark:    #0a1a2e;
  --text-mid:     #3a5068;
  --text-light:   rgba(255,255,255,0.75);
  --text-muted:   rgba(255,255,255,0.45);
  --border-light: rgba(255,255,255,0.12);
  --border-dark:  rgba(10,26,46,0.1);
  --shadow-sm:    0 2px 8px rgba(10,26,46,0.08);
  --shadow-md:    0 8px 32px rgba(10,26,46,0.12);
  --shadow-lg:    0 20px 60px rgba(10,26,46,0.18);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --transition:   0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.serif { font-family: 'Playfair Display', serif; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.section-pad {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-pad { padding: 7rem 0; }
}

/* Scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER / NAV
============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 1rem 0;
}

#header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 1rem 0;
}

#header.page-header-solid {
  background: var(--navy-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), #1a7ab8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
}

.logo-text .h-letter {
  color: var(--teal);
  font-style: italic;
}

/* Desktop nav */
.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Book Now button */
.btn-book {
  background: var(--teal);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(45,156,219,0.35);
}

.btn-book:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,156,219,0.45);
}

.btn-book:active { transform: translateY(0); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.1); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) { .hamburger { display: none; } }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--teal); }

.mobile-nav .btn-book {
  margin-top: 1.5rem;
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
}

/* ============================================================
   MOBILE STICKY BOOK NOW
============================================================ */
.mobile-sticky-book {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0.75rem 1.25rem;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.mobile-sticky-book a {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(45,156,219,0.4);
  transition: background var(--transition);
}

.mobile-sticky-book a:hover { background: var(--teal-dark); }

@media (min-width: 900px) {
  .mobile-sticky-book { display: none; }
}

/* ============================================================
   PAGE BANNER (inner pages)
============================================================ */
.page-banner {
  background: var(--navy-deep);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-banner .section-label { color: var(--teal); }
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 4rem;
}

/* Two stacked hero backgrounds that crossfade between the dock photos.
   Layer 1 (610-deck) sits underneath and stays visible; layer 2 (dock)
   rides on top and fades its opacity in/out to reveal the layer below. */
.hero-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: heroBgShift 24s ease-in-out infinite;
}

.hero-bg-1 {
  background-image:
    linear-gradient(160deg, rgba(8,20,36,0.66) 0%, rgba(13,51,88,0.52) 50%, rgba(10,40,60,0.74) 100%),
    url('images/610-deck.png');
}

.hero-bg-2 {
  background-image:
    linear-gradient(160deg, rgba(8,20,36,0.66) 0%, rgba(13,51,88,0.52) 50%, rgba(10,40,60,0.74) 100%),
    url('images/dock.jpg');
  animation: heroBgShift 24s ease-in-out infinite,
             heroCrossfade 9s ease-in-out infinite;
}

@keyframes heroBgShift {
  0%   { background-position: 50% 38%; }
  50%  { background-position: 50% 62%; }
  100% { background-position: 50% 38%; }
}

/* Top layer visible for the first half, hidden for the second half -
   so the hero alternates dock.jpg -> 610-deck.png and back. */
@keyframes heroCrossfade {
  0%,  42% { opacity: 1; }
  50%, 92% { opacity: 0; }
  100%     { opacity: 1; }
}

/* Subtle water shimmer */
.hero-shimmer {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 45%;
  background: linear-gradient(
    to top,
    rgba(45, 156, 219, 0.12) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Light rays */
.hero-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-rays::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 80%;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(45,156,219,0.08) 0%,
    transparent 70%
  );
}

/* Floating water particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.25rem;
  max-width: 820px;
  width: 100%;
  padding-top: 7rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.hero-h1 .h-accent {
  color: var(--teal);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,1);
  margin-bottom: 2.75rem;
  line-height: 1.5;
}

/* Search bar */
.hero-search {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (min-width: 680px) {
  .hero-search {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0.2rem 0.3rem 0.2rem 0;
  }
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0.75rem 1.1rem;
  border-right: none;
  cursor: pointer;
}

@media (min-width: 680px) {
  .search-field {
    border-right: 1px solid var(--border-dark);
  }
  .search-field:last-of-type { border-right: none; }
}

.search-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  width: 100%;
  cursor: pointer;
}

.search-field select { appearance: none; }

/* ---- Check-in / Checkout cells: two fields, one shared calendar (Airbnb) - */
.date-cells {
  position: relative;
  display: flex;
  gap: 0.75rem;            /* two distinct fields, side by side */
}
.date-cell {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  padding: 0.6rem 1.9rem 0.6rem 0.9rem;
  background: #fff;
  border: 1.5px solid rgba(10,26,46,0.16);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.date-cell-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
}
.date-cell-value { font-size: 0.92rem; color: var(--text-mid); }
.date-cell.has-value .date-cell-value { color: var(--navy-deep); font-weight: 500; }
/* Active cell (its calendar is open): navy border + soft lift, Airbnb-style. */
.date-cell.active {
  border-color: var(--navy-deep);
  box-shadow: 0 0 0 1px var(--navy-deep), 0 6px 18px rgba(10,26,46,0.14);
  z-index: 2;
}
/* Clear (x) - shown only when that side has a value */
.date-cell-clear {
  position: absolute;
  top: 50%; right: 0.55rem;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  display: none;
  align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1rem; line-height: 1;
  color: var(--text-mid);
  background: rgba(10,26,46,0.06);
}
.date-cell.has-value .date-cell-clear { display: flex; }
.date-cell-clear:hover { background: rgba(10,26,46,0.16); }
.date-cells.input-invalid .date-cell { border-color: #e2574c; }

/* Hidden calendar anchor: the popup positions itself to this element */
.dr-anchor {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
  border: 0; padding: 0; margin: 0;
  background: transparent;
}

/* Hero pill variant: the white pill already frames it - keep the two cells
   connected (borderless, thin divider) so it reads as one search bar. */
.hero-search .date-cells {
  flex: 1;
  gap: 0;
}
.hero-search .date-cell {
  border: none;
  border-radius: 0;
  background: transparent;
}
.hero-search .date-cell + .date-cell { border-left: 1px solid var(--border-dark); }
.hero-search .date-cell.active {
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 2px var(--navy-deep), 0 6px 18px rgba(10,26,46,0.16);
}

.hero-search .btn-avail {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0 0.1rem;
}

.hero-search .btn-avail:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollCuePulse 2.5s ease-in-out infinite;
}

@keyframes scrollCuePulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(4px); }
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  margin-top: 0.25rem;
}

/* ============================================================
   BIG THREE
============================================================ */
#big-three {
  background: var(--off-white);
  padding: 5rem 0;
}

.big-three-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .big-three-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,26,46,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 26px; height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  background: var(--teal-glow);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.25rem;
}

/* ============================================================
   GALLERY TEASER (BENTO GRID)
============================================================ */
#gallery {
  background: var(--white);
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-header h2 {
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 200px;
    gap: 1rem;
  }
}

.bento-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

/* Gallery tiles are presentational, not links - no hover movement or pointer cursor */

/* Large item spans */
@media (min-width: 768px) {
  .bento-item--large {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}

.bento-item--wide {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .bento-item--wide { grid-column: span 1; }
}

.bento-img-fill {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

/* Gradient backgrounds as photo placeholders */
.ph-dock {
  background: url('images/dock.jpg') center/cover no-repeat, linear-gradient(135deg, #0a2a4a 0%, #0d4a6e 40%, #1a7a9a 70%, #2d9cdb 100%);
}
.ph-kitchen {
  background: url('images/kitchen.jpg') center/cover no-repeat, linear-gradient(135deg, #2c1a0e 0%, #5c3d1e 40%, #8a6240 70%, #c8a882 100%);
}
.ph-bedroom {
  background: url('images/master.jpg') center/cover no-repeat, linear-gradient(135deg, #1a2a3e 0%, #2a4060 50%, #3a6080 100%);
}
.ph-exterior {
  background: url('images/exterior.jpg') center/cover no-repeat, linear-gradient(135deg, #0a3020 0%, #1a5540 40%, #2d9c6a 70%, #5dcba0 100%);
}
.ph-sunset {
  background: url('images/sunset.jpg') center/cover no-repeat, linear-gradient(135deg, #1a0a2e 0%, #4a1a5e 20%, #8a3a20 50%, #e07830 75%, #f5b042 100%);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,26,46,0.35);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,26,46,0.75) 0%, transparent 100%);
  padding: 2rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
}

.bento-label span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.bento-label strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

@media (min-width: 768px) {
  .bento-label strong { font-size: 1.1rem; }
}

/* ============================================================
   MARQUEE / TESTIMONIALS
============================================================ */
#marquee-section {
  background: var(--navy-deep);
  padding: 3.5rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  max-width: 340px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.marquee-stars {
  display: flex;
  gap: 3px;
}

.marquee-stars svg {
  width: 14px; height: 14px;
  fill: #f5b042;
}

.marquee-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.marquee-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}

/* ============================================================
   THE HOUSE SECTION
============================================================ */
#the-house {
  background: var(--white);
}

/* Kitchen */
.kitchen-section {
  background: var(--navy-deep);
  padding: 5rem 0;
}

.kitchen-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .kitchen-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
}

.kitchen-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.ph-kitchen-full {
  position: absolute; inset: 0;
  background: url('images/kitchen.jpg') center/cover no-repeat, linear-gradient(
    135deg,
    #2c1a0e 0%,
    #5c3d1e 30%,
    #8a6240 55%,
    #c8a882 75%,
    #e8d5b7 100%
  );
}

.ph-kitchen-full::after {
  content: none;
}

.img-placeholder-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.kitchen-text .section-label { color: var(--sand); }

.kitchen-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.kitchen-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Sunroom */
.sunroom-section {
  background: var(--off-white);
  padding: 5rem 0;
}

.sunroom-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .sunroom-inner {
    grid-template-columns: 1fr 1.4fr;
  }
}

.sunroom-text h2 { color: var(--navy-deep); margin-bottom: 1rem; }
.sunroom-text p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }

.sunroom-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.ph-sunroom {
  position: absolute; inset: 0;
  background: url('images/favorite.jpg') center/cover no-repeat, linear-gradient(
    160deg,
    #0a1a2e 0%,
    #0d3a5e 30%,
    #1a6a8a 60%,
    #2d9cdb 80%,
    #5dbeef 100%
  );
}

.ph-sunroom::after {
  content: none;
}

/* Bedrooms */
.bedrooms-section {
  background: var(--white);
  padding: 5rem 0;
}

.bedrooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .bedrooms-grid { grid-template-columns: 1fr 1fr; }
}

.bedroom-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10,26,46,0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

/* Bedroom cards are presentational, not links - no hover movement or elevation */

.bedroom-img {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.bedroom-img > div {
  position: absolute;
  inset: 0;
}

.ph-master {
  background: url('images/master.jpg') center/cover no-repeat, linear-gradient(135deg, #1a2a3e 0%, #2a4a6e 50%, #3a6a9e 100%);
}

.ph-guest2 {
  background: url('images/queen.jpg') center/cover no-repeat, linear-gradient(135deg, #1e2a1e 0%, #2a4a30 50%, #3a6a45 100%);
}

.ph-guest3 {
  background: url('images/full.jpg') center/cover no-repeat, linear-gradient(135deg, #2a1e2e 0%, #4a2a50 50%, #6a3a70 100%);
}

.ph-guest4 {
  background: url('images/bunk.jpg') center/cover no-repeat, linear-gradient(135deg, #2e1a10 0%, #503820 50%, #8a5a30 100%);
}

.bedroom-info {
  padding: 1.4rem 1.5rem;
}

.bedroom-info h3 {
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.bedroom-info p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.bed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--off-white);
  border: 1px solid rgba(10,26,46,0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin-top: 0.75rem;
}

/* Amenities */
.amenities-section {
  background: var(--navy-deep);
  padding: 5rem 0;
}

.amenities-section .section-label { color: var(--sand); }
.amenities-section h2 { color: var(--white); margin-bottom: 2.5rem; }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

@media (min-width: 600px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 400;
}

.amenity-check {
  width: 20px; height: 20px;
  background: rgba(45,156,219,0.2);
  border: 1px solid rgba(45,156,219,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amenity-check svg {
  width: 10px; height: 10px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
}

/* ============================================================
   THE LAKE SECTION
============================================================ */
#the-lake {
  background: var(--white);
}

.dock-section {
  padding: 5rem 0;
  background: var(--white);
}

.dock-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .dock-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 4.5rem;
  }
}

.dock-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.ph-dock-full {
  position: absolute; inset: 0;
  background: url('images/dock.jpg') center/cover no-repeat, linear-gradient(
    160deg,
    #061020 0%,
    #0a2040 25%,
    #0d3a6a 50%,
    #1568a0 70%,
    #2d9cdb 100%
  );
}

.ph-dock-full::before { content: none; }

.ph-dock-full::after { content: none; }

.dock-text h2 { color: var(--navy-deep); margin-bottom: 1rem; }
.dock-text p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }

.dock-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal);
  margin-bottom: 0.75rem;
}

.dock-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
}

.dock-stat-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* Neighborhood */
.neighborhood-section {
  background: var(--off-white);
  padding: 5rem 0;
}

.neighborhood-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.neighborhood-inner h2 { color: var(--navy-deep); margin-bottom: 1.25rem; }
.neighborhood-inner p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.8; }

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid rgba(10,26,46,0.1);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-mid);
  box-shadow: var(--shadow-sm);
}

.location-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}

/* ============================================================
   AREA GUIDE
============================================================ */
#area-guide {
  background: var(--navy-deep);
  padding: 5rem 0;
}

#area-guide .section-label { color: var(--sand); }
#area-guide h2 { color: var(--white); margin-bottom: 0.5rem; }
#area-guide .section-header p { color: rgba(255,255,255,0.55); }

.guide-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .guide-wrapper { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.guide-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.guide-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,168,130,0.25);
}

.guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.guide-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
}

.guide-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(45,156,219,0.3);
}

.guide-item-icon {
  width: 34px; height: 34px;
  background: rgba(45,156,219,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-item-icon svg {
  width: 16px; height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}

.guide-item-text {
  flex: 1;
}

.guide-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.guide-item-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.1rem;
}

.guide-item-dist {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
}

/* ============================================================
   REVIEWS SECTION
============================================================ */
#reviews {
  background: var(--off-white);
  padding: 5rem 0;
}

#reviews .section-header h2 { color: var(--navy-deep); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,26,46,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 16px; height: 16px;
  fill: #f5b042;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy-deep);
}

.review-author-sub {
  font-size: 0.75rem;
  color: rgba(10,26,46,0.4);
}

/* ============================================================
   BOOKING SECTION
============================================================ */
#book {
  background: var(--white);
  padding: 5rem 0;
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 860px) {
  .book-inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
}

/* Calendar placeholder */
.calendar-placeholder {
  background: var(--off-white);
  border: 2px dashed rgba(10,26,46,0.12);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.calendar-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-icon svg {
  width: 28px; height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
}

.calendar-placeholder h3 {
  color: var(--navy-deep);
  font-size: 1.15rem;
}

.calendar-placeholder p {
  font-size: 0.875rem;
  color: var(--text-mid);
  max-width: 240px;
}

/* Price breakdown */
.price-box {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-header {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

/* Compact 3-column rate grid: Season | Sun-Thu | Fri-Sat */
.rate-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: 1.5rem;
  align-items: center;
}

.rate-grid-head {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  text-align: right;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.rate-grid-head:first-child { border-bottom: none; }

.rate-season {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sand);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.rate-val {
  text-align: right;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.rate-holidays {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.rate-h-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--sand);
  font-weight: 600;
}
.rate-holidays strong {
  color: var(--white);
  font-weight: 500;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-per {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.price-season {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sand);
  margin-top: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.price-season:first-of-type { margin-top: 0; }

.price-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 1.25rem 0 0.25rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.875rem;
}

.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: rgba(255,255,255,0.65); }
.price-row span:last-child { color: var(--white); font-weight: 500; }

/* Playful "priceless" line in the rates box */
.price-row-fun span:first-child {
  font-style: italic;
  color: rgba(255,255,255,0.8);
}
.price-row-fun span:last-child {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--sand);
  font-weight: 600;
}

.price-row.total {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.price-row.total span:first-child {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.price-row.total span:last-child {
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Trust badge */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45,156,219,0.08);
  border: 1px solid rgba(45,156,219,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.trust-badge-icon {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 20px; height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.trust-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-deep);
  margin-bottom: 0.1rem;
}

.trust-badge-text span {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* Contact form */
.contact-form-wrap h3 {
  color: var(--navy-deep);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.contact-form-wrap p {
  color: var(--text-mid);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(10,26,46,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,156,219,0.12);
}

/* Invalid field highlight (added on submit attempt, cleared on edit) */
.form-group input.input-invalid,
.form-group textarea.input-invalid {
  border-color: #e2574c;
  background: #fff7f6;
}
.form-group input.input-invalid:focus,
.form-group textarea.input-invalid:focus {
  border-color: #e2574c;
  box-shadow: 0 0 0 3px rgba(226,87,76,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  background: var(--navy-deep);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* Two-up form rows (dates, adults/kids) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Keep select fields consistent with inputs */
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(10,26,46,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,156,219,0.12);
}

.form-group label .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--text-mid);
}

/* Rates note + how-it-works (request page left column) */
.rates-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: -0.5rem 0 1.75rem;
}

.how-it-works {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.how-it-works li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--navy-mid);
}

.how-it-works li span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(45,156,219,0.12);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Live estimate panel */
.estimate {
  background: rgba(45,156,219,0.06);
  border: 1px solid rgba(45,156,219,0.22);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem 0.85rem;
  margin-bottom: 1rem;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(10,26,46,0.06);
}

.estimate-row span:first-child { color: var(--text-mid); }
.estimate-row span:last-child  { color: var(--navy-deep); font-weight: 500; white-space: nowrap; }

.estimate-row.estimate-total {
  border-bottom: none;
  border-top: 1.5px solid rgba(45,156,219,0.25);
  margin-top: 0.25rem;
  padding-top: 0.7rem;
}

.estimate-row.estimate-total span:first-child {
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

.estimate-row.estimate-total span:last-child {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.estimate-note {
  font-size: 0.72rem;
  color: var(--text-mid);
  margin-top: 0.55rem;
  line-height: 1.4;
}

.estimate-note.estimate-warn {
  color: #b23b3b;
  font-weight: 600;
}

/* Playful "priceless" line in the live estimate */
.estimate-row.estimate-fun span:first-child { font-style: italic; }
.estimate-row.estimate-fun span:last-child {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--teal-dark);
  font-weight: 700;
}

/* ---- flatpickr calendar: Airbnb-style range picker ---- */
.flatpickr-calendar {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 44px rgba(10,26,46,0.18);
  padding: 6px 8px 10px;
}
/* Cleaner popover - drop the little pointer arrow */
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after { display: none; }

.flatpickr-months { padding-top: 4px; }
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: var(--navy-deep);
  font-weight: 700;
}
.flatpickr-weekday {
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.72rem;
}

.flatpickr-day {
  border: none;
  border-radius: 50%;
  color: var(--navy-deep);
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  max-width: 40px;
}
.flatpickr-day:hover,
.flatpickr-day:focus { background: rgba(10,26,46,0.07); }

/* The connecting band between the two endpoints */
.flatpickr-day.inRange,
.flatpickr-day.inRange:hover {
  background: var(--teal-glow);
  border-radius: 0;
  box-shadow: -5px 0 0 var(--teal-glow), 5px 0 0 var(--teal-glow);
}

/* Selected endpoints: solid filled circles sitting on the band */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
  border-radius: 50%;
}
.flatpickr-day.startRange { box-shadow: 6px 0 0 var(--teal-glow); }
.flatpickr-day.endRange   { box-shadow: -6px 0 0 var(--teal-glow); }
.flatpickr-day.startRange.endRange,
.flatpickr-day.selected.startRange.endRange { box-shadow: none; }

/* Unavailable / past days: greyed + struck through (Airbnb style) */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(10,26,46,0.26);
  background: transparent;
  text-decoration: line-through;
  cursor: not-allowed;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay { color: rgba(10,26,46,0.18); }

/* Dates that aren't valid check-ins but still mean something (Airbnb-style):
   the day before a booking ("2-night minimum") and turnover mornings
   ("Checkout only"). Kept dark + clickable so a tap surfaces a tooltip,
   instead of looking permanently unavailable - they're still valid checkouts. */
.flatpickr-day.flatpickr-disabled.dc-pickable {
  color: var(--navy-deep);
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}
.flatpickr-day.flatpickr-disabled.dc-pickable:hover { background: rgba(10,26,46,0.07); }
.flatpickr-day.flatpickr-disabled.dc-checkout-only { color: rgba(10,26,46,0.55); }

/* The little dark tooltip itself */
.flatpickr-calendar .dc-tip {
  position: absolute;
  transform: translate(-50%, -118%);
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
  z-index: 100;
  box-shadow: 0 6px 18px rgba(10,26,46,0.22);
}
.flatpickr-calendar .dc-tip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy-deep);
}
.flatpickr-calendar .dc-tip.show { opacity: 1; }

/* Form feedback */
.form-error {
  background: rgba(214,69,69,0.08);
  border: 1px solid rgba(214,69,69,0.3);
  color: #b23b3b;
  font-size: 0.85rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-mid);
  text-align: center;
  margin-top: 0.85rem;
}

/* ============================================================
   CTA SECTION (homepage)
============================================================ */
.cta-section {
  background: var(--navy-deep);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-section .btn-book {
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr; }
}

@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.social-btn:hover {
  background: rgba(45,156,219,0.15);
  border-color: rgba(45,156,219,0.4);
}

.social-btn svg {
  width: 18px; height: 18px;
  fill: rgba(255,255,255,0.65);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   UTILITY: SECTION DIVIDER
============================================================ */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   CONTACT US - floating launcher + modal (injected by main.js)
   ============================================================ */

/* Desktop: vertical tab pinned to the right edge, vertically centered */
.contact-launch {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 940;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0.7rem;
  background: var(--teal);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  /* Tab is rotated 180deg, so these corners render on the inner (left) edge;
     the screen-edge (right) side stays square. */
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: -4px 4px 18px rgba(10,26,46,0.22);
  cursor: pointer;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  transition: background var(--transition), padding-right var(--transition);
}
.contact-launch:hover {
  background: var(--teal-dark);
  padding-right: 1rem;
}
.contact-launch svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mobile: collapse to a round envelope button, bottom-right */
@media (max-width: 767px) {
  .contact-launch {
    top: auto;
    /* Sit above the full-width "Request Your Stay" sticky bar at bottom: 0 */
    bottom: 5.5rem;
    right: 1.1rem;
    transform: none;
    writing-mode: horizontal-tb;
    padding: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10,26,46,0.3);
  }
  .contact-launch:hover { padding-right: 0; }
  .contact-launch .contact-launch-text { display: none; }
  .contact-launch svg { width: 22px; height: 22px; }
}

/* Modal overlay */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10,26,46,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 1.75rem 1.75rem;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition);
}
.contact-modal.is-open .contact-modal-card {
  transform: translateY(0) scale(1);
}

.contact-modal-card h3 {
  font-size: 1.45rem;
  color: var(--navy-deep);
  margin: 0 0 0.35rem;
}
.contact-modal-card .contact-intro {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0 0 1.4rem;
}

.contact-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(10,26,46,0.06);
  color: var(--navy-mid);
  cursor: pointer;
  transition: background var(--transition);
}
.contact-modal-close:hover { background: rgba(10,26,46,0.12); }
.contact-modal-close svg { width: 18px; height: 18px; stroke: currentColor; }

/* Success state inside the modal */
.contact-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.contact-success .contact-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-glow);
  color: var(--teal-dark);
}
.contact-success .contact-success-icon svg { width: 28px; height: 28px; stroke: currentColor; }
.contact-success p { color: var(--text-mid); line-height: 1.55; }
/* Dismiss button on the success state (contact + shared sent modal) */
.contact-success .btn-submit { margin-top: 1.4rem; }

body.contact-modal-open { overflow: hidden; }
