:root {
  --ink: #12181f;
  --ink-soft: #2a3440;
  --sand: #e8dfd2;
  --cream: #f4efe6;
  --lagoon: #1f6b66;
  --lagoon-deep: #124844;
  --honey: #c9852a;
  --honey-bright: #e0a045;
  --foam: #f7f3ec;
  --line: rgba(18, 24, 31, 0.12);
  --white: #fffdf9;
  --shadow: 0 24px 60px rgba(18, 24, 31, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(31, 107, 102, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 133, 42, 0.12), transparent 50%),
    linear-gradient(180deg, var(--foam) 0%, var(--cream) 45%, #ebe4d8 100%);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

/* Safari/macOS: buttons default to the arrow — force the hand on controls */
button,
[role="button"],
.btn,
.room-card,
.grounds-card,
.film-poster,
.menu-toggle,
summary,
.check-field,
.lightbox-nav,
.lightbox-close {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: 0.85rem clamp(1.1rem, 3vw, 2.5rem);
  transition: background 280ms var(--ease), box-shadow 280ms var(--ease), backdrop-filter 280ms var(--ease);
}

/* Keep white nav readable on bright pool/turf */
.site-header:not(.is-scrolled)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: calc(100% + 1.25rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 16, 22, 0.42) 0%, rgba(10, 16, 22, 0) 100%);
  z-index: -1;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
  background: var(--lagoon-deep);
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.05;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  transition: color 220ms var(--ease);
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 220ms var(--ease);
}

.nav {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.55rem, 1.1vw, 1.1rem);
  min-width: 0;
}

.nav a {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 180ms var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--lagoon-deep);
}

.nav-cta {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--lagoon-deep);
  color: var(--white) !important;
}

/* Over the hero photo: light chrome for contrast */
.site-header:not(.is-scrolled) .brand-text {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.site-header:not(.is-scrolled) .brand-tag {
  color: rgba(255, 253, 249, 0.72);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.site-header:not(.is-scrolled) .nav a:not(.nav-cta) {
  color: rgba(255, 253, 249, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.site-header:not(.is-scrolled) .nav a:not(.nav-cta):hover,
.site-header:not(.is-scrolled) .nav a:not(.nav-cta):focus-visible {
  color: var(--white);
}

.site-header:not(.is-scrolled) .nav-cta {
  background: rgba(255, 253, 249, 0.14);
  border: 1px solid rgba(255, 253, 249, 0.45);
  color: var(--white) !important;
  backdrop-filter: blur(8px);
}

.site-header:not(.is-scrolled) .nav-cta:hover,
.site-header:not(.is-scrolled) .nav-cta:focus-visible {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--ink) !important;
}

.site-header:not(.is-scrolled) .menu-toggle span {
  background: var(--white);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 1.35rem;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 49;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.mobile-nav a {
  padding: 0.85rem 0.25rem;
  font-weight: 500;
  cursor: pointer;
}

/* Full nav needs width — below this, menu toggle (was clipping Explore/Location/Book) */
@media (min-width: 1120px) {
  .nav { display: flex; }
  .menu-toggle,
  .mobile-nav { display: none !important; }
}

/* Hero — landscape media, readable height (not a mystery crop) */
.hero {
  position: relative;
  min-height: clamp(380px, 62svh, 640px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #12181f;
  min-height: 100%;
  pointer-events: none;
}

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

.hero-still {
  display: none;
}

.hero.is-still .hero-video {
  display: none;
}

.hero.is-still .hero-still {
  display: block;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Lighter — let pool/rooms stay readable */
  background:
    linear-gradient(
      105deg,
      rgba(10, 16, 22, 0.55) 0%,
      rgba(10, 16, 22, 0.22) 40%,
      rgba(10, 16, 22, 0.06) 70%,
      rgba(10, 16, 22, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 16, 22, 0.28) 0%,
      rgba(10, 16, 22, 0.02) 40%,
      rgba(10, 16, 22, 0.28) 72%,
      rgba(10, 16, 22, 0.72) 100%
    );
}

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

  .hero-still {
    display: block !important;
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(640px, 100%);
  padding: calc(var(--header-h) + 1.25rem) clamp(1.1rem, 4vw, 3rem) clamp(1.75rem, 5vh, 2.75rem);
  margin-top: auto;
  animation: rise 900ms var(--ease) both;
}

.brand-hero {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.5vw, 3.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
}

.hero h1 {
  margin: 0 0 0.7rem;
  max-width: 20ch;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 253, 249, 0.92);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.lede {
  margin: 0 0 1.25rem;
  max-width: 38ch;
  font-size: 0.98rem;
  color: rgba(255, 253, 249, 0.84);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

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

.btn:focus-visible {
  outline: 2px solid var(--honey-bright);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--honey);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--honey-bright);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 253, 249, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 253, 249, 0.08);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 3rem);
}

/* Film / video */
.film {
  background: rgba(18, 24, 31, 0.03);
}

.film-feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 900px) {
  .film-feature {
    grid-template-columns: minmax(0, 22rem) 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.film-feature-copy h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.film-feature-copy > p:not(.explore-label) {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40ch;
}

.film-reel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 860px) {
  .film-reel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.film-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #12181f;
  aspect-ratio: 9 / 16;
  max-height: 34rem;
  width: min(100%, 22rem);
  justify-self: center;
}

.film-stage.is-feature {
  width: min(100%, 22rem);
  max-height: 38rem;
}

.film-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  font: inherit;
}

.film-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-play-mark {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: none;
}

.film-play-mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent var(--ink);
}

.film-poster-label {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  padding: 0.45rem 0.6rem;
  background: rgba(18, 24, 31, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
}

.film-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #12181f;
}

.film-stage.is-playing .film-poster {
  display: none;
}

.film-stage.is-playing .film-video {
  display: block;
}

.spa-film,
.amenities-film {
  width: min(100%, 20rem);
  max-height: 32rem;
}

@media (prefers-reduced-motion: reduce) {
  .film-play-mark {
    transition: none;
  }
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lagoon-deep);
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  /* Fraunces descenders (y, g, p) paint outside a tight line box */
  line-height: 1.28;
  padding: 0.06em 0 0.18em;
  overflow: visible;
}

.section-head > p:not(.section-kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.room-meta {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--honey);
}

/* Contact strip (Linktree-style) */
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  padding: 0.95rem clamp(1.1rem, 3vw, 2.5rem);
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-strip a {
  color: var(--lagoon-deep);
  transition: color 200ms var(--ease);
}

.contact-strip a:hover,
.contact-strip a:focus-visible {
  color: var(--honey);
}

/* Rooms rail (horizontal cards) + grounds grid */
.room-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 78vw);
  gap: 1.1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(1.1rem, 4vw, 3rem);
  padding: 0.25rem clamp(1.1rem, 4vw, 3rem) 1rem;
  margin-inline: calc(-1 * clamp(1.1rem, 4vw, 3rem));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.room-rail::-webkit-scrollbar {
  display: none;
}

@media (min-width: 700px) {
  .room-rail {
    grid-auto-columns: minmax(280px, 32%);
    gap: 1.35rem;
  }
}

@media (min-width: 1100px) {
  .room-rail {
    grid-auto-columns: minmax(300px, 22%);
  }

  .grounds-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

.grounds-grid {
  display: grid;
  gap: 1.25rem;
}

.room-card,
.grounds-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  text-align: left;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
  scroll-snap-align: start;
}

.room-visual {
  overflow: hidden;
  margin: 0 0 1rem;
  aspect-ratio: 4 / 3;
  position: relative;
}

.room-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.room-card:hover .room-visual img,
.room-card:focus-visible .room-visual img,
.grounds-card:hover .room-visual img,
.grounds-card:focus-visible .room-visual img {
  transform: scale(1.04);
}

.photo-count {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(18, 24, 31, 0.72);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
}

.room-body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.room-rate {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lagoon-deep);
}

.room-body p {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
}

.gallery-note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.grounds {
  background: rgba(255, 253, 249, 0.45);
}

/* Amenities */
.amenities {
  background:
    linear-gradient(180deg, rgba(18, 72, 68, 0.96), rgba(18, 24, 31, 0.98));
  color: var(--sand);
}

.amenities-layout {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .amenities-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.75rem;
    align-items: center;
  }
}

.amenities .section-head > p:not(.section-kicker) {
  color: rgba(232, 223, 210, 0.78);
}

.amenities-visual {
  overflow: hidden;
  min-height: 280px;
}

.amenities-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.amenities .room-meta {
  color: var(--honey-bright);
}

.amenity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .amenity-list {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

.amenity-list li {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 223, 210, 0.18);
}

.amenity-list strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.amenity-list span {
  color: rgba(232, 223, 210, 0.76);
}

/* Car rental add-on */
.cars {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(201, 148, 58, 0.1), transparent 55%),
    var(--foam);
}

.cars-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .cars-layout {
    grid-template-columns: 0.95fr 1.15fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
}

.cars-pair {
  display: grid;
  gap: 0.85rem;
  width: 100%;
}

@media (min-width: 560px) {
  .cars-pair {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.rate-tiers {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.rate-tier {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.rate-tier:last-child {
  border-bottom: 1px solid var(--line);
}

.rate-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.rate-price span {
  margin-left: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.rate-label {
  margin: 0.15rem 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--honey-deep, var(--honey));
}

.rate-models {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.cars-poster {
  margin: 0;
  width: 100%;
  overflow: hidden;
  background: #1a1513;
  box-shadow: 0 18px 48px rgba(18, 24, 31, 0.16);
}

.cars-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center 45%;
  background: #1a1513;
}

.cars-poster-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, #2a221e 0%, #171311 100%);
  color: #f7f2ea;
}

.cars-poster-model {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cars-poster-rate {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d4b07a;
  white-space: nowrap;
}

/* Spa */
.spa {
  background: rgba(42, 52, 64, 0.04);
}

.spa-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.spa-films {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: start;
}

.spa-films .spa-film {
  margin: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .spa-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

@media (max-width: 520px) {
  .spa-films {
    grid-template-columns: 1fr;
  }
}

.spa-places {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.spa-places li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
}

.spa-places li:last-child {
  border-bottom: 1px solid var(--line);
}

.spa-places li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.7rem;
  border-radius: 1px;
  background: var(--honey);
  transform: rotate(45deg);
  vertical-align: 0.15rem;
}

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

.spa-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 34rem;
  justify-self: center;
  width: min(100%, 420px);
}

.spa-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.15rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
}

.check-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--lagoon-deep);
  flex-shrink: 0;
}

.check-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.check-title {
  font-weight: 650;
  color: var(--ink);
  line-height: 1.3;
}

.check-detail {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.35;
}

.check-detail a {
  color: var(--lagoon-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.check-detail a:hover {
  color: var(--ink);
}

/* Explore extras */
.explore {
  background:
    radial-gradient(ellipse 45% 35% at 0% 10%, rgba(31, 107, 102, 0.1), transparent 55%),
    var(--foam);
}

.explore-stack {
  display: grid;
  gap: 0;
}

.explore-block {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.explore-block:last-child {
  border-bottom: 1px solid var(--line);
}

.explore-label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey);
}

.explore-block h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.explore-block > p {
  margin: 0 0 1.1rem;
  max-width: 58ch;
  color: var(--ink-soft);
}

.explore-block > p a {
  color: var(--lagoon-deep);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.explore-block > p a:hover,
.explore-block > p a:focus-visible {
  color: var(--lagoon);
}

.explore-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.activity-mosaic {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0.75rem;
}

@media (min-width: 700px) {
  .activity-mosaic {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
  }

  .activity-tile.is-featured {
    grid-row: span 2;
  }
}

@media (min-width: 980px) {
  .activity-mosaic {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: minmax(11.5rem, auto);
  }

  .activity-tile.is-featured {
    grid-row: span 2;
  }
}

.activity-tile {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  min-height: 14rem;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}

.activity-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms var(--ease);
}

.activity-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 24, 31, 0.08) 0%,
    rgba(18, 24, 31, 0.22) 40%,
    rgba(18, 24, 31, 0.78) 100%
  );
  z-index: 1;
}

.activity-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1.05rem 1.1rem;
  color: #f7f2ea;
}

.activity-tile h4 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.activity-tile p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
  color: rgba(247, 242, 234, 0.86);
  max-width: 34ch;
}

.activity-tile.is-featured {
  min-height: min(70vw, 28rem);
}

.activity-tile.is-featured h4 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.activity-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1513;
  background: #d4b07a;
  padding: 0.28rem 0.5rem;
}

.activity-tile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 0.75rem;
}

.activity-cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f7f2ea;
  border-bottom: 1px solid rgba(247, 242, 234, 0.55);
}

.activity-cta-partner {
  border-bottom-color: rgba(212, 176, 122, 0.7);
  color: #e8d2a8;
}

.activity-cta:hover,
.activity-cta:focus-visible {
  border-bottom-color: #fff;
  color: #fff;
}

.activity-tile:hover img,
.activity-tile:focus-within img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .activity-tile img {
    transition: none;
  }
}

.activity-credit {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: rgba(42, 52, 64, 0.55);
}

.package-picker {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0 0;
}

@media (min-width: 760px) {
  .package-picker {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .package-option.is-wide {
    grid-column: 1 / -1;
  }
}

.package-option {
  display: grid;
  grid-template-rows: minmax(16rem, 48vw) auto;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    border-color 200ms var(--ease),
    transform 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

a.package-option {
  cursor: pointer;
}

@media (min-width: 760px) {
  .package-option {
    grid-template-rows: minmax(20rem, 28vw) auto;
  }

  .package-option.is-wide {
    grid-template-columns: 1.05fr 0.95fr;
    /* Cap height so a landscape photo can't stretch the card */
    grid-template-rows: minmax(18rem, 22rem);
    min-height: 0;
    align-items: stretch;
  }

  .package-option.is-wide.is-flyer {
    grid-template-columns: minmax(14rem, 0.72fr) 1.28fr;
    grid-template-rows: minmax(20rem, 26rem);
  }
}

.package-option:hover,
.package-option:focus-visible,
.package-option.is-selected {
  border-color: rgba(31, 107, 102, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(18, 24, 31, 0.1);
}

.package-option.is-selected {
  border-color: var(--lagoon-deep);
  background: rgba(31, 107, 102, 0.06);
}

.package-option:focus-visible {
  outline: 2px solid var(--honey-bright);
  outline-offset: 3px;
}

.package-option-media {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  background: #1a1513;
}

@media (min-width: 760px) {
  .package-option-media {
    min-height: 20rem;
  }

  .package-option.is-wide .package-option-media {
    min-height: 0;
    height: 100%;
  }

  .package-option.is-wide .package-option-body {
    align-self: center;
  }

  .package-option.is-wide.is-flyer .package-option-media {
    min-height: 0;
    height: 100%;
  }
}

.package-option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms var(--ease);
}

.package-option-media-flyer {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(212, 168, 75, 0.18), transparent 60%),
    #14110f;
  padding: 0.85rem 0.75rem;
}

.package-option-media-flyer img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: min(34rem, 78vw);
  object-fit: contain;
  object-position: center;
}

.package-option:hover .package-option-media img,
.package-option:focus-visible .package-option-media img {
  transform: scale(1.04);
}

.package-option.is-flyer:hover .package-option-media-flyer img,
.package-option.is-flyer:focus-visible .package-option-media-flyer img {
  transform: scale(1.015);
}

.package-option-body {
  display: grid;
  align-content: start;
  gap: 0.4rem;
  padding: 1.1rem 1.15rem 1.2rem;
}

.package-option-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey);
}

.package-option h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.package-option-body > p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 36ch;
}

.package-option-price {
  margin: 0.15rem 0 0 !important;
  font-size: 1.05rem !important;
  font-weight: 700;
  color: var(--ink) !important;
  letter-spacing: -0.01em;
}

.package-option-includes {
  list-style: none;
  margin: 0.35rem 0 0.15rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
}

.package-option-includes li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lagoon-deep);
}

.package-option-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--honey);
}

.package-option-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.7rem 1.15rem;
}

.package-option-cta {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid rgba(18, 24, 31, 0.28);
  justify-self: start;
}

.package-option-actions .package-option-cta {
  margin-top: 0;
}

.package-option:hover .package-option-cta,
.package-option.is-selected .package-option-cta,
.package-option:focus-within .package-option-cta {
  border-bottom-color: var(--lagoon-deep);
  color: var(--lagoon-deep);
}

.partner-inline {
  color: var(--lagoon-deep);
  font-weight: 650;
  border-bottom: 1px solid rgba(31, 107, 102, 0.35);
}

.partner-inline:hover,
.partner-inline:focus-visible {
  border-bottom-color: var(--lagoon-deep);
}

.partner-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(18, 24, 31, 0.16);
}

.partner-link:hover,
.partner-link:focus-visible {
  color: var(--lagoon-deep);
  border-bottom-color: rgba(31, 107, 102, 0.45);
}

/* Room décor / special occasions */
.decor-feature {
  display: grid;
  gap: 0;
  margin: 1.25rem 0 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.72);
}

@media (min-width: 800px) {
  .decor-feature {
    grid-template-columns: 1.15fr 0.95fr;
    min-height: 18rem;
  }
}

.decor-feature-media {
  position: relative;
  min-height: 14rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1513;
}

.decor-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 1;
  transition: opacity 280ms var(--ease);
  pointer-events: none;
}

.decor-feature-media img.is-swapping {
  opacity: 0.2;
}

.decor-feature-copy {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: 1.35rem 1.25rem 1.5rem;
}

.decor-feature-copy h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.decor-feature-copy > p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 36ch;
  line-height: 1.45;
}

.decor-dot-list {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
  display: flex;
  gap: 0.4rem;
}

.decor-dot-list li {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(18, 24, 31, 0.18);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.decor-dot-list li.is-active {
  background: var(--honey);
  transform: scale(1.2);
}

.decor-feature-copy .btn {
  margin-top: 0.55rem;
  justify-self: start;
}

.decor-occasions {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .decor-occasions {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.decor-occasion {
  position: relative;
  display: block;
  width: 100%;
  min-height: 11.5rem;
  overflow: hidden;
  color: #f7f2ea;
  isolation: isolate;
  border: 1px solid transparent;
  background: #1a1513;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.decor-occasion img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.decor-occasion[data-decor-slide="Anniversary"] img {
  object-position: 50% 42%;
}

.decor-occasion[data-decor-slide="Birthday"] img {
  object-position: 50% 28%;
}

.decor-occasion[data-decor-slide="Proposal"] img {
  object-position: 50% 55%;
}

.decor-occasion::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 24, 31, 0.05) 10%,
    rgba(18, 24, 31, 0.72) 100%
  );
  z-index: 1;
}

.decor-occasion-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1rem 1.05rem;
}

.decor-occasion-label strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.decor-occasion-label em {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.86);
}

.decor-occasion.is-active {
  border-color: var(--honey);
  box-shadow: inset 0 0 0 2px rgba(201, 133, 42, 0.4);
}

/* What to expect */
.expect {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(212, 168, 75, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f1e6 0%, #efe6d4 100%);
}

.expect-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 880px) {
  .expect-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.expect-block h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  letter-spacing: -0.02em;
}

.expect-block > p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  max-width: 54ch;
  line-height: 1.55;
}

.expect-list {
  margin: 0 0 1rem;
  padding: 0 0 0 1.15rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.4rem;
  max-width: 48ch;
}

.expect-list li::marker {
  color: var(--honey);
}

.expect-note {
  margin-top: 1.25rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 24, 31, 0.12);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink) !important;
}

/* Location */
.location-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 800px) {
  .location-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.location-place h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  letter-spacing: -0.03em;
}

.location-place > p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.location-place > p.location-address {
  margin-top: -0.35rem;
  font-weight: 600;
  color: var(--ink);
}

.location-place .explore-actions {
  margin-top: 0.25rem;
}

.location-place.is-soon {
  padding: 1.25rem 0 0;
}

@media (min-width: 800px) {
  .location-place.is-soon {
    padding: 0.35rem 0 0 1.5rem;
    border-left: 1px solid var(--line);
  }
}

.soon-note {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lagoon-deep);
}

.distance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.distance-list li span:last-child {
  color: var(--lagoon-deep);
  font-weight: 600;
  white-space: nowrap;
}

.location-map-wrap {
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.location-map {
  width: 100%;
  min-height: min(42vh, 360px);
  border: 0;
  border-radius: 0.85rem;
  background: rgba(20, 24, 28, 0.06);
  box-shadow: inset 0 0 0 1px var(--line);
}

.location-map-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.location-visual {
  margin: 1.5rem 0 0;
  min-height: 280px;
  overflow: hidden;
  background: #1a1513;
}

.location-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.location-visual-wide {
  min-height: 0;
}

.location-visual-wide img {
  min-height: 240px;
  max-height: 420px;
}

.location-visual-caption {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.78);
  background: #1a1513;
}

.addon-fieldset {
  margin: 0.25rem 0 0;
  padding: 1rem 0 0.25rem;
  border: 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
}

.addon-fieldset legend {
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--honey);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(20, 24, 28, 0.16);
}

.btn-secondary:hover {
  border-color: rgba(20, 24, 28, 0.32);
  background: rgba(255, 253, 249, 0.95);
}

/* Book */
.book {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.book-shell {
  width: min(760px, 100%);
  margin-inline: auto;
}

.book-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0 0;
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

label[hidden],
[hidden] {
  display: none !important;
}

label.grow {
  width: 100%;
}

.book-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 24, 28, 0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  min-height: 3.15rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.book-form select {
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2314181c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
}

.book-form textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.book-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus-visible,
.book-form select:focus-visible,
.book-form textarea:focus-visible {
  outline: none;
  border-color: var(--lagoon);
  box-shadow: 0 0 0 3px rgba(31, 107, 102, 0.18);
}

.book-form select:hover,
.book-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):hover,
.book-form textarea:hover {
  border-color: rgba(20, 24, 28, 0.22);
}

.book-form .check-field input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  margin: 0.15rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 0.25rem;
  background: transparent;
  box-shadow: none;
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: var(--lagoon-deep);
  flex-shrink: 0;
  cursor: pointer;
}

.form-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.form-actions .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .form-actions {
    grid-template-columns: 1fr 1fr;
  }
  .form-actions .form-note,
  .form-actions [data-book-note] {
    grid-column: 1 / -1;
  }
}

.date-field input[readonly] {
  cursor: pointer;
  background: #fff;
}

.hive-datepicker {
  margin: 0.55rem 0 1rem;
  padding: 1.1rem 1.15rem 1rem;
  border: 1px solid rgba(20, 24, 28, 0.1);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, #fffdf9 0%, #f7f1e8 100%);
  box-shadow:
    0 18px 40px rgba(18, 24, 28, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

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

.hive-datepicker-title {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.hive-datepicker-nav {
  border: 1px solid rgba(20, 24, 28, 0.12);
  background: #fff;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink);
}

.hive-datepicker-nav:hover {
  background: rgba(31, 107, 102, 0.1);
  border-color: rgba(31, 107, 102, 0.28);
}

.hive-datepicker-dow,
.hive-datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.hive-datepicker-dow {
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}

.dp-empty {
  min-height: 2.75rem;
}

.dp-day {
  min-height: 2.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: rgba(255, 253, 249, 0.7);
  cursor: pointer;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 550;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.dp-day:hover:not(:disabled) {
  background: rgba(31, 107, 102, 0.14);
  transform: translateY(-1px);
}

.dp-day.is-selected {
  background: var(--lagoon, #1f6b66);
  color: #fffdf9;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(31, 107, 102, 0.28);
}

.dp-day.is-in-range {
  background: rgba(31, 107, 102, 0.16);
}

.dp-day.is-busy,
.dp-day.is-disabled {
  color: #b7aea3;
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.5;
  background: rgba(20, 24, 28, 0.04);
  transform: none;
}

.hive-datepicker-legend {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (min-width: 700px) {
  .dp-day,
  .dp-empty {
    min-height: 3.1rem;
  }
  .hive-datepicker {
    padding: 1.25rem 1.35rem 1.1rem;
  }
}

.book-expect-nudge {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.book-expect-nudge a {
  color: var(--lagoon-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.book-expect-nudge a:hover {
  color: var(--ink);
}

.form-note,
.form-feedback,
.form-partner-note,
.availability-status {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.availability-status {
  margin-top: -0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  font-weight: 550;
}

.availability-status.is-busy {
  color: #8a2f2f;
  background: rgba(138, 47, 47, 0.08);
  border: 1px solid rgba(138, 47, 47, 0.22);
}

.availability-status.is-wait {
  color: var(--ink-soft);
  background: rgba(20, 24, 28, 0.04);
  border: 1px solid rgba(20, 24, 28, 0.1);
}

.availability-status.is-offline {
  color: #6b5344;
  background: rgba(180, 130, 70, 0.1);
  border: 1px solid rgba(180, 130, 70, 0.28);
}

.form-partner-note {
  margin: -0.35rem 0 0.35rem 1.85rem;
  font-size: 0.8rem;
}

.form-partner-note a {
  font-weight: 650;
  color: var(--lagoon-deep);
  border-bottom: 1px solid rgba(31, 107, 102, 0.3);
}

.form-partner-note a:hover,
.form-partner-note a:focus-visible {
  border-bottom-color: var(--lagoon-deep);
}

.form-feedback.is-success {
  color: var(--lagoon-deep);
  font-weight: 600;
}

.book .btn-primary {
  justify-self: start;
  color: var(--ink);
}

/* Footer */
.site-footer {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem clamp(1.1rem, 4vw, 3rem) 2.75rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.55);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-brand p {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  font-weight: 600;
  color: var(--lagoon-deep);
  cursor: pointer;
}

.footer-meta {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(42, 52, 64, 0.7);
}

.footer-credit {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(42, 52, 64, 0.28);
  text-underline-offset: 0.15em;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: var(--lagoon-deep);
  text-decoration-color: rgba(31, 107, 102, 0.45);
}

/* Lightbox gallery */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.78);
  cursor: pointer;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 900px);
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem 1.1rem 1.25rem;
  background: var(--foam);
  border: 1px solid var(--line);
}

.lightbox-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}

.lightbox-title {
  margin: 0 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  background: #111;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: min(58vh, 560px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox-nav.prev { left: 0.6rem; }
.lightbox-nav.next { right: 0.6rem; }

.lightbox-count {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.lightbox-amenities {
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
}

.lightbox-amenities-label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lightbox-amenities ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
}

.lightbox-amenities li {
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--ink);
  padding-left: 0.9rem;
  position: relative;
}

.lightbox-amenities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--lagoon-deep);
}

@media (max-width: 520px) {
  .lightbox-amenities ul {
    grid-template-columns: 1fr;
  }
}

.lightbox-book {
  justify-self: start;
  text-decoration: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy,
  .room-visual img {
    animation: none !important;
    transition: none !important;
  }
}
