:root {
  /* Beach / PCB palette from 25 Gulf house photo */
  --coral: #F25A5A;
  --coral-bright: #FF6B6B;
  --teal: #0B7FA2;
  --aqua: #57C4CA;
  --sunset: #E68C25;
  --sand: #F4EEE4;
  --sand-page: #F8F8F4;
  --sand-deep: #E8DFD0;
  --navy: #103F55;
  --navy-mid: #16485F;
  --navy-dark: #0A2A38;
  --gulf: #103F55;
  --text: #103F55;
  --muted: rgb(29 41 57 / 0.68);
  --glass: linear-gradient(to bottom right, rgb(255 255 255 / 0.72), rgb(255 255 255 / 0.42));
  --line: rgb(10 124 140 / 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  /* aliases so DY structure maps cleanly */
  --gold: var(--coral);
  --amber: var(--aqua);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--text);
  background: var(--sand-page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

.rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 1.25rem;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(247 241 227 / 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 0.1rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.78);
}

.nav-links a:hover {
  color: var(--amber);
}

.nav-links .nav-book {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(to right, #E07A5F, #EB8F78);
  color: #FFFFFF;
  font-weight: 600;
}

.nav-links .nav-book:hover {
  color: #FFFFFF;
  filter: brightness(1.05);
}

.nav-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 0.04);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--sand);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

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

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.nav-drawer.is-open { display: flex; }

.nav-drawer a {
  padding: 0.75rem 0.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.85);
  border-bottom: 1px solid rgb(10 124 140 / 0.12);
}

.nav-drawer .nav-book {
  margin-top: 0.5rem;
  text-align: center;
  border: 0;
  border-radius: 0.7rem;
  background: linear-gradient(to right, #E07A5F, #EB8F78);
  color: #FFFFFF;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 4.25rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: var(--gulf) center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgb(11 61 92 / 0.88) 0%, rgb(11 61 92 / 0.42) 42%, rgb(29 41 57 / 0.22) 100%),
    linear-gradient(to right, rgb(11 61 92 / 0.4), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgb(10 124 140 / 0.35);
  background: rgb(0 0 0 / 0.28);
  color: var(--amber);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  cursor: default;
  pointer-events: none;
}

.eyebrow .dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgb(94 177 208 / 0.22);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 5.6rem);
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.hero .place {
  margin-top: 0.55rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.hero .lede {
  max-width: 38rem;
  margin-top: 1.15rem;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgb(255 255 255 / 0.82);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0;
  row-gap: 0.4rem;
  margin: 1.6rem 0 1.7rem;
  max-width: 42rem;
  cursor: default;
}

.stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  font-size: 0.95rem;
  color: rgb(255 255 255 / 0.82);
  cursor: default;
}

.stat:not(:last-child)::after {
  content: "·";
  margin: 0 0.72rem;
  color: rgb(94 177 208 / 0.7);
  font-weight: 400;
}

.stat strong {
  font-weight: 600;
  color: var(--sand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.99); }

.btn-gold {
  background: linear-gradient(to right, #E07A5F, #EB8F78);
  color: #FFFFFF;
  box-shadow: 0 16px 36px -16px rgb(224 122 95 / 0.7);
}

.btn-ghost {
  border: 1px solid rgb(245 230 211 / 0.14);
  background: var(--teal);
  color: var(--sand);
  box-shadow: 0 14px 28px -14px rgb(0 0 0 / 0.7), inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #0c8fa1;
  color: #fff;
  border-color: rgb(245 230 211 / 0.22);
  box-shadow: 0 18px 34px -12px rgb(0 0 0 / 0.75), inset 0 1px 0 rgb(255 255 255 / 0.1);
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 0.65rem;
}

.section-head p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* ---------- Photos ---------- */
#photos {
  background: linear-gradient(to bottom, var(--sand-page), #EFE6D4 40%, var(--sand-page));
}

.gallery {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 12.5rem;
  }
  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  min-height: 12rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgb(10 124 140 / 0.12), rgb(0 0 0 / 0.25));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption,
.photo-slot .slot-label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgb(29 41 57 / 0.72);
  border: 1px solid rgb(10 124 140 / 0.22);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.photo-slot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  color: rgb(255 255 255 / 0.55);
}

.photo-slot.has-photo {
  padding: 0;
  display: block;
}

.photo-slot .slot-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.photo-slot .slot-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sand);
}

.photo-slot .slot-hint {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.4);
}

/* ---------- Drone slideshow ---------- */
.slideshow {
  margin: 0 0 2rem;
}

.slideshow-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--gulf);
  box-shadow: 0 22px 40px -24px rgb(0 0 0 / 0.7);
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}

.slide.is-current {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-caption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgb(247 241 227 / 0.88);
  border: 1px solid rgb(10 124 140 / 0.22);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--sand);
  pointer-events: none;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.7rem;
  border: 0;
  background: linear-gradient(to right, #E07A5F, #EB8F78);
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px -12px rgb(0 0 0 / 0.7);
  transform: translateY(-50%);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.2s ease;
}

.slideshow-arrow.prev { left: 0.85rem; }
.slideshow-arrow.next { right: 0.85rem; }

.slideshow-arrow:hover {
  transform: translateY(calc(-50% - 1px));
  filter: brightness(1.05);
  box-shadow: 0 18px 32px -12px rgb(0 0 0 / 0.75);
}

.slideshow-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.slideshow-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(245 230 211 / 0.32);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slideshow-dot:hover {
  background: rgb(94 177 208 / 0.7);
}

.slideshow-dot.is-current {
  width: 1.15rem;
  background: var(--gold);
}

@media (max-width: 640px) {
  .slideshow-arrow {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.45rem;
  }
  .slideshow-arrow.prev { left: 0.55rem; }
  .slideshow-arrow.next { right: 0.55rem; }
}

/* ---------- Amenities ---------- */
.amenity-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .amenity-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
}

.glass,
.amenity,
.facts-card,
.rules-card,
.calendar-card,
.book-card,
.footer-card {
  cursor: default;
}

.amenity {
  padding: 1.4rem 1.3rem 1.5rem;
}

.amenity .icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  margin-bottom: 0.9rem;
  background: linear-gradient(to bottom right, rgb(10 124 140 / 0.18), rgb(94 177 208 / 0.12));
  color: var(--amber);
}

.amenity .icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.amenity h3 {
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.amenity p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.facts {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 800px) {
  .facts { grid-template-columns: 1.2fr 0.8fr; }
}

.facts-card,
.rules-card {
  padding: 1.6rem;
}

.facts-card h3,
.rules-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.kv-list {
  display: grid;
  gap: 0.55rem;
}

.kv-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgb(10 124 140 / 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

.kv-list strong { color: var(--sand); font-weight: 500; }

.rules-card li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.rules-card li:last-child { margin-bottom: 0; }

.tick {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.tick svg { width: 1.05rem; height: 1.05rem; }

/* ---------- Availability ---------- */
#availability {
  background:
    radial-gradient(ellipse at top, rgb(10 124 140 / 0.10), transparent 50%),
    var(--sand-page);
}

.avail-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 880px) {
  .avail-layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}

.calendar-card,
.book-card {
  padding: 1.5rem;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cal-head h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
}

.cal-nav {
  display: flex;
  gap: 0.4rem;
}

.cal-nav button {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  border: 1px solid rgb(245 230 211 / 0.16);
  background: var(--teal);
  color: var(--sand);
  cursor: pointer;
  box-shadow: 0 10px 20px -12px rgb(0 0 0 / 0.65), inset 0 1px 0 rgb(255 255 255 / 0.08);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.2s ease;
}

.cal-nav button:hover {
  transform: translateY(-1px);
  background: #0c8fa1;
  border-color: rgb(10 124 140 / 0.45);
  box-shadow: 0 14px 24px -12px rgb(0 0 0 / 0.7);
}

.cal-nav button:active { transform: translateY(0) scale(0.98); }

.cal-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.cal-week span {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(10 124 140 / 0.75);
  padding: 0.25rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

.cal-day {
  aspect-ratio: 1;
  min-height: 2.4rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.82);
  border: 1px solid transparent;
  cursor: default;
  user-select: none;
}

.cal-day.muted { color: rgb(255 255 255 / 0.22); }
.cal-day.past {
  color: rgb(255 255 255 / 0.28);
  background: rgb(255 255 255 / 0.04);
}
.cal-day.past.busy {
  background: rgb(255 255 255 / 0.04);
  color: rgb(255 255 255 / 0.28);
  text-decoration: none;
}
.cal-day.today {
  border-color: rgb(10 124 140 / 0.55);
  color: var(--sand);
}
.cal-day.busy {
  background: rgb(10 124 140 / 0.14);
  color: rgb(255 255 255 / 0.38);
  text-decoration: line-through;
}

.cal-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: rgb(255 255 255 / 0.55);
}

.cal-legend i {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.2rem;
  margin-right: 0.35rem;
  vertical-align: -1px;
}

.cal-legend .swatch-past { background: rgb(255 255 255 / 0.12); }
.cal-legend .swatch-busy { background: rgb(10 124 140 / 0.28); }
.cal-legend .swatch-today { border: 1px solid var(--amber); }

.book-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.book-card .lead {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.book-card .btn { width: 100%; margin-bottom: 0.65rem; }

.book-meta {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  color: rgb(255 255 255 / 0.6);
}

.book-meta div { margin-bottom: 0.35rem; }

.book-help {
  margin: 1rem 0 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: rgb(10 124 140 / 0.12);
  border: 1px solid rgb(10 124 140 / 0.28);
}

.book-help-title {
  margin: 0 0 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink, #1d2939);
}

.book-help-copy {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgb(29 41 57 / 0.72);
}

.book-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.book-help-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
  border-bottom: 1px solid rgb(10 124 140 / 0.35);
  text-decoration: none;
}

.book-help-link:hover {
  border-bottom-color: var(--teal);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--gulf);
}

.footer-grid {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.footer-card {
  padding: 1.5rem;
}

.footer-card h3,
.footer-card h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.footer-card p,
.footer-card a.quiet {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.footer-card .mail {
  color: var(--sand);
  display: inline-block;
  margin: 0.4rem 0 0.75rem;
  border-bottom: 1px solid rgb(212 165 116 / 0.3);
}

.footer-card .mail:hover { color: var(--amber); }

.guest-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgb(10 124 140 / 0.9);
  border-bottom: 1px solid transparent;
}

.guest-link:hover { border-bottom-color: rgb(94 177 208 / 0.4); }

.legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(10 124 140 / 0.16);
  color: rgb(255 255 255 / 0.42);
  font-size: 0.82rem;
  text-align: center;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .cal-nav button, .nav-links a, .slideshow-arrow, .slideshow-dot, .slide { transition: none; }
}

/* ---------- Area / FAQ ---------- */
.area-copy {
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.area-copy p + p { margin-top: 0.85rem; color: var(--muted); }
.faq-list { display: grid; gap: 0.7rem; }
.faq {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.15rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.2rem;
  font-weight: 600;
  color: var(--sand);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 500;
}
.faq[open] summary::after { content: "–"; }
.faq p {
  padding: 0 1.2rem 1.05rem;
  color: var(--muted);
}

/* ---------- Landing pages ---------- */
.page-hero {
  min-height: min(72vh, 34rem);
}
.page-hero h1 {
  font-size: clamp(2.15rem, 5.6vw, 3.9rem);
  max-width: 18ch;
}
.page-copy {
  max-width: 44rem;
  margin: 0 auto 1.25rem;
  padding: 1.55rem 1.65rem;
}
.page-copy p + p {
  margin-top: 0.95rem;
  color: var(--muted);
}
.page-copy a,
.area-copy a,
.also a,
.explore a,
.faq a {
  color: var(--amber);
  border-bottom: 1px solid rgb(10 124 140 / 0.35);
}
.page-copy a:hover,
.area-copy a:hover,
.also a:hover,
.explore a:hover,
.faq a:hover {
  color: var(--sand);
  border-bottom-color: var(--gold);
}
.also {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}
.page-copy + .section-head {
  margin-top: 2.75rem;
}
.page-gallery {
  display: grid;
  gap: 0.85rem;
  margin: 0 auto 2rem;
}
@media (min-width: 720px) {
  .page-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 13rem;
  }
}
.page-book {
  max-width: 32rem;
  margin: 1.5rem auto 0;
  padding: 1.5rem;
}
.explore {
  margin: 0 0 1.6rem;
  color: rgb(255 255 255 / 0.5);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.75;
  font-weight: 300;
}


/* ---------- Beach theme overrides (light page, dark hero) ---------- */
.site-nav {
  color: var(--navy);
  border-bottom: 1px solid rgb(10 124 140 / 0.18);
}
.brand { color: var(--navy); }
.brand span { color: var(--teal); }
.nav-links a { color: rgb(29 41 57 / 0.78); }
.nav-links a:hover { color: var(--teal); }
.nav-toggle { border-color: rgb(10 124 140 / 0.28); background: rgb(255 255 255 / 0.55); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after { background: var(--navy); }
.nav-drawer a {
  color: var(--navy);
  border-bottom-color: rgb(10 124 140 / 0.12);
}

.hero { color: #FFFFFF; }
.hero .place { color: var(--aqua); }
.hero .lede { color: rgb(255 255 255 / 0.88); }
.hero .stat { color: rgb(255 255 255 / 0.86); }
.hero .stat strong { color: #FFFFFF; }
.hero .stat:not(:last-child)::after { color: rgb(94 177 208 / 0.85); }
.eyebrow { color: var(--aqua); border-color: rgb(94 177 208 / 0.45); }

.btn-ghost {
  border: 1px solid rgb(255 255 255 / 0.35);
  background: rgb(10 124 140 / 0.55);
  color: #FFFFFF;
  box-shadow: 0 14px 28px -14px rgb(0 0 0 / 0.45), inset 0 1px 0 rgb(255 255 255 / 0.12);
}
.btn-ghost:hover {
  background: rgb(10 124 140 / 0.78);
  color: #FFFFFF;
  border-color: rgb(255 255 255 / 0.5);
}

.section-head h2 { color: var(--navy); }
.section-head p { color: var(--muted); }
.rule { background: linear-gradient(to right, transparent, var(--teal), transparent); }

.glass {
  background: linear-gradient(to bottom right, rgb(255 255 255 / 0.78), rgb(255 255 255 / 0.48));
  border: 1px solid rgb(10 124 140 / 0.16);
  color: var(--navy);
}
.amenity .icon {
  background: linear-gradient(to bottom right, rgb(10 124 140 / 0.16), rgb(94 177 208 / 0.10));
  color: var(--teal);
}
.amenity h3 { color: var(--navy); }
.amenity p { color: var(--muted); }

.kv-list li { color: var(--muted); border-bottom-color: rgb(10 124 140 / 0.12); }
.kv-list strong { color: var(--navy); }
.rules-card li { color: var(--muted); }
.tick { color: var(--teal); }

.slideshow-caption {
  background: rgb(29 41 57 / 0.78);
  border-color: rgb(94 177 208 / 0.35);
  color: #FFFFFF;
}
.gallery-item figcaption,
.photo-slot .slot-label {
  background: rgb(29 41 57 / 0.72);
  border-color: rgb(94 177 208 / 0.3);
  color: #FFFFFF;
}
.gallery-item {
  border-color: rgb(10 124 140 / 0.18);
  background: linear-gradient(160deg, rgb(10 124 140 / 0.08), rgb(242 231 195 / 0.4));
}

.calendar-card, .book-card { color: var(--navy); }
.cal-head h3, .book-card h3, .facts-card h3, .rules-card h3 { color: var(--navy); }
.cal-nav button {
  background: var(--teal);
  color: #FFFFFF;
  border-color: transparent;
}
.cal-nav button:hover { background: #0c8fa1; border-color: transparent; }
.cal-week span { color: var(--teal); }
.cal-day { color: var(--navy); }
.cal-day.muted { color: rgb(29 41 57 / 0.28); }
.cal-day.past { color: rgb(29 41 57 / 0.35); background: rgb(29 41 57 / 0.05); }
.cal-day.today { border-color: var(--teal); color: var(--teal); }
.cal-day.busy {
  background: rgb(224 122 95 / 0.18);
  color: rgb(29 41 57 / 0.45);
}
.cal-note { color: var(--muted); }
.cal-legend { color: rgb(29 41 57 / 0.55); }
.book-card .lead { color: var(--muted); }
.book-meta { color: rgb(29 41 57 / 0.65); }
.book-meta a { color: var(--teal); border-bottom: 1px solid rgb(10 124 140 / 0.3); }

.book-card-native .book-help {
  background: rgb(10 124 140 / 0.08);
  border-color: rgb(10 124 140 / 0.22);
}
.book-card-native .book-help-title { color: rgb(29 41 57 / 0.92); }
.book-card-native .book-help-copy { color: rgb(29 41 57 / 0.68); }

.site-footer {
  background: var(--gulf);
  color: #FFFFFF;
  border-top: 1px solid rgb(94 177 208 / 0.25);
}
.site-footer .glass {
  background: linear-gradient(to bottom right, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.03));
  border-color: rgb(94 177 208 / 0.22);
  color: #FFFFFF;
}
.footer-card h3, .footer-card h4 { color: #FFFFFF; }
.footer-card p, .footer-card a.quiet { color: rgb(255 255 255 / 0.72); }
.footer-card .mail {
  color: var(--aqua);
  border-bottom-color: rgb(94 177 208 / 0.35);
}
.footer-card .mail:hover { color: #FFFFFF; }
.guest-link { color: var(--aqua); }
.legal {
  border-top-color: rgb(94 177 208 / 0.22);
  color: rgb(255 255 255 / 0.5);
}
.explore { color: rgb(255 255 255 / 0.55); }
.explore a { color: var(--aqua); border-bottom-color: rgb(94 177 208 / 0.35); }

.area-copy { color: var(--navy); }
.area-copy p + p { color: var(--muted); }
.faq summary { color: var(--navy); }
.faq summary::after { color: var(--teal); }
.faq p { color: var(--muted); }
.area-copy a, .faq a, .also a, .page-copy a {
  color: var(--teal);
  border-bottom-color: rgb(10 124 140 / 0.35);
}
.area-copy a:hover, .faq a:hover, .also a:hover, .page-copy a:hover, .explore a:hover {
  color: var(--gulf);
  border-bottom-color: var(--coral);
}

.slideshow-dot { background: rgb(29 41 57 / 0.22); }
.slideshow-dot:hover { background: rgb(10 124 140 / 0.55); }
.slideshow-dot.is-current { background: var(--teal); }

.avail-card-link {
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.avail-card-link:hover { transform: translateY(-2px); }
.avail-card-link h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.avail-card-link p { color: var(--muted); font-weight: 300; margin-bottom: 1rem; }
.avail-card-link .cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; }

:focus-visible { outline-color: var(--teal); }


/* Single booking CTA layout */
.avail-layout-single {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 36rem;
  margin-inline: auto;
}
.book-card-solo .btn-gold {
  width: 100%;
  text-align: center;
}

/* Hide Netlify "Powered by" badge if injected */
a[href*="netlify.com"][target="_blank"]:has(img),
a[href="https://www.netlify.com"],
#netlify-badge,
.netlify-badge,
[data-netlify-badge],
iframe[title*="Netlify" i],
body > a[href*="netlify.com"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


/* Embedded AvailabilityOnline checkout */
.avail-layout-embed {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 52rem;
  margin-inline: auto;
}
.book-card-embed .lead {
  margin-bottom: 1rem;
}
.booking-embed-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 63, 85, 0.12);
  min-height: 720px;
}
.booking-embed {
  display: block;
  width: 100%;
  height: min(85vh, 920px);
  min-height: 720px;
  border: 0;
  background: #fff;
}
.book-card-embed .cal-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  opacity: 0.9;
}
@media (max-width: 640px) {
  .booking-embed-wrap,
  .booking-embed {
    min-height: 640px;
    height: 75vh;
  }
}


.area-highlights {
  margin: 1rem 0 1.15rem;
  padding-left: 1.15rem;
  list-style: disc;
}
.area-highlights li {
  margin: 0.45rem 0;
  line-height: 1.45;
}


/* Native Book Direct form */
.book-form { margin-top: 0.35rem; }
.book-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .book-fields { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.book-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy, #103F55);
}
.book-field input,
.book-field select {
  font: inherit;
  font-weight: 500;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(16, 63, 85, 0.18);
  background: #fff;
  color: inherit;
}
.book-status {
  min-height: 1.35em;
  margin: 0.85rem 0 0.35rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.book-status.is-ok { color: #0b7a4b; }
.book-status.is-error { color: #b42318; }
.book-status.is-pending { color: var(--teal, #0B7FA2); }
.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.book-actions .btn { margin: 0; }
.book-continue.is-hidden { display: none !important; }
.book-card-native .btn-gold { width: auto; min-width: 12rem; }

/* Book Direct live calendar */
.book-cal {
  margin: 0.85rem 0 1rem;
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(16, 63, 85, 0.12);
  background: rgba(255, 255, 255, 0.72);
}
.book-cal.is-loading .book-cal-grid { opacity: 0.45; pointer-events: none; }
.book-cal.is-failed { display: none; }
.book-cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.book-cal-month {
  font-weight: 700;
  color: var(--navy, #103F55);
  font-size: 1rem;
}
.book-cal-nav {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 63, 85, 0.18);
  background: #fff;
  color: var(--navy, #103F55);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.book-cal-nav:hover { border-color: var(--teal, #0B7FA2); color: var(--teal, #0B7FA2); }
.book-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}
.book-cal-dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(29 41 57 / 0.55);
  padding: 0.2rem 0;
}
.book-cal-cell {
  appearance: none;
  border: 0;
  background: transparent;
  min-height: 2.35rem;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  color: var(--navy, #103F55);
  cursor: pointer;
  padding: 0;
}
.book-cal-cell.is-empty { visibility: hidden; cursor: default; }
.book-cal-cell.is-open {
  background: rgba(11, 127, 162, 0.14);
  color: #0a5f7a;
}
.book-cal-cell.is-open:hover { background: rgba(11, 127, 162, 0.28); }
.book-cal-cell.is-checkout {
  background: rgba(230, 140, 37, 0.16);
  color: #9a5a10;
}
.book-cal-cell.is-blocked,
.book-cal-cell:disabled.is-blocked {
  background: rgba(16, 63, 85, 0.06);
  color: rgb(29 41 57 / 0.35);
  cursor: not-allowed;
}
.book-cal-cell.is-start,
.book-cal-cell.is-end {
  background: var(--teal, #0B7FA2);
  color: #fff;
}
.book-cal-cell.is-inrange {
  background: rgba(11, 127, 162, 0.22);
}
.book-cal-cell.is-invalid-end { opacity: 0.45; }
.book-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgb(29 41 57 / 0.7);
}
.book-cal-legend .swatch {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3px;
  margin-right: 0.35rem;
  vertical-align: -1px;
}
.book-cal-legend .swatch.open { background: rgba(11, 127, 162, 0.35); }
.book-cal-legend .swatch.checkout { background: rgba(230, 140, 37, 0.45); }
.book-cal-legend .swatch.blocked { background: rgba(16, 63, 85, 0.15); }

/* Calendar grid reinforced */
#book-calendar .book-cal-grid {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 0.35rem !important;
  width: 100%;
}
#book-calendar .book-cal-dow,
#book-calendar .book-cal-cell {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
#book-calendar .book-cal-cell span { pointer-events: none; }
.book-field input[readonly] { background: #f7fafb; cursor: default; }
.book-dates-hint { margin: 0.35rem 0 0; font-size: 0.8rem; color: rgb(29 41 57 / 0.65); }
.book-actions .book-continue { width: 100%; text-align: center; }
.book-card-native .book-continue.btn-gold { min-width: 0; }
