:root {
  --navy: #12384f;
  --blue: #4f7a8b;
  --blue-soft: #dceef4;
  --sand: #efe2cf;
  --cream: #f8f4ec;
  --text: #19333f;
  --muted: #64808b;
  --shadow: 0 24px 60px rgba(18, 56, 79, 0.12);
  --booked-red: #c0392b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--cream) 0%, #fdfbf7 100%);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(248, 244, 236, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18, 56, 79, 0.08);
}

.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(18, 56, 79, 0.14);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.hero h1,
.section-heading h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.3vw, 4rem);
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 16px 40px rgba(18, 56, 79, 0.16);
}

.button.secondary {
  background: white;
  color: var(--navy);
  border: 1px solid rgba(18, 56, 79, 0.15);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero-highlights li {
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(18, 56, 79, 0.06);
}

.hero-slideshow {
  position: relative;
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slideshow img.is-active {
  opacity: 1;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.alt-section {
  background: rgba(220, 238, 244, 0.35);
  border-radius: 36px;
  margin: 0.75rem auto;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-heading p {
  color: var(--muted);
}

.about-grid,
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.pricing-card,
.booking-copy,
.contact-card,
.calendar-card,
.booking-form {
  background: white;
  border-radius: 24px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

.amenity-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--navy);
  flex-shrink: 0;
}

.amenity-icon svg {
  width: 22px;
  height: 22px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-note {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.pricing-discount {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  border: none;
  padding: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card img {
  height: 220px;
  object-fit: cover;
}

.gallery-card span {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--navy);
  font-weight: 600;
}

.calendar-card {
  max-width: 760px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav {
  border: 1px solid rgba(18, 56, 79, 0.14);
  background: var(--cream);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1rem;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  padding-bottom: 0.35rem;
}

.day {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy);
}

.day.is-available,
.day.is-booked {
  background: var(--blue-soft);
  color: var(--navy);
}

.day.is-booked {
  background: #b7d6e3;
  text-decoration: line-through;
  text-decoration-color: var(--booked-red);
  text-decoration-thickness: 2px;
}

.day.is-muted {
  color: #c4cbd0;
  background: transparent;
}

.calendar-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: var(--muted);
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.35rem;
}

.dot.available {
  background: var(--blue);
}

.dot.booked {
  background: var(--booked-red);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--navy);
}

.booking-form input,
.booking-form textarea {
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fcfbf8;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-confirmation {
  margin: 0;
  color: #2d6b42;
  font-weight: 600;
}

.form-terms-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-terms-note a {
  color: var(--navy);
  font-weight: 600;
}

.policy-accordion {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.5rem;
  margin-bottom: 1rem;
}

.policy-accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  padding: 0.35rem 0;
}

.policy-accordion summary::marker {
  color: var(--blue);
}

.policy-content {
  margin-top: 1rem;
  color: var(--text);
}

.policy-content h4 {
  color: var(--navy);
  margin: 1.25rem 0 0.4rem;
}

.policy-content h4:first-child {
  margin-top: 0;
}

.policy-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.policy-content li {
  margin-bottom: 0.35rem;
}

.policy-content p {
  margin: 0.5rem 0;
}

.policy-content a {
  color: var(--navy);
  font-weight: 600;
}

.policy-updated {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.map-card {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-card p {
  margin: 0.4rem 0;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  background: #25d366;
  color: white;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.25);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 35, 0.9);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  color: white;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-nav.prev {
  left: 1.2rem;
}

.lightbox-nav.next {
  right: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero,
  .booking-grid,
  .about-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 1rem;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(18, 56, 79, 0.08);
    box-shadow: 0 16px 30px rgba(18, 56, 79, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 1.5rem;
    border-top: 1px solid rgba(18, 56, 79, 0.06);
  }

  .hero,
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-highlights {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.4rem;
  }

  .hero-highlights li {
    padding: 0.5rem 0.65rem;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .about-grid .info-card {
    padding: 0.85rem;
  }

  .about-grid .info-card h3 {
    font-size: 0.95rem;
    margin: 0 0 0.35rem;
  }

  .about-grid .info-card p {
    font-size: 0.82rem;
    margin: 0;
  }

  .pricing-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .amenities-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .gallery-card img {
    height: 180px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
}
