:root {
  --sand: #f2e7d6;
  --clay: #c7925a;
  --river: #2d6d6d;
  --deep: #12343b;
  --sun: #e7b76b;
  --white: #ffffff;
  --ink: #1c1c1c;
  --soft: #f8f4ef;
  --shadow: 0 20px 50px rgba(18, 52, 59, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffffff 0%, #f3efe8 45%, #f0e4d5 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--deep);
  color: var(--white);
  padding: 32px 8vw 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 52, 59, 0.92), rgba(18, 52, 59, 0.6));
  z-index: 1;
}

.hero-controls {
  position: absolute;
  inset: auto 8vw 28px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}

.hero-btn {
  background: rgba(18, 52, 59, 0.75);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots .dot.active {
  background: var(--sun);
  transform: scale(1.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--sun);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 1.1rem;
}

.hero-content {
  max-width: 720px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 16px 0;
}

.lead {
  font-size: 1.1rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 36px;
}

.hero-cta {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-cta a {
  color: var(--white);
  text-decoration: underline;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--sun);
  color: var(--deep);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.hero-card .label {
  display: block;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.7;
}

main {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.section {
  padding: 80px 8vw 0;
}

.section-divider {
  margin: 60px 0 -30px;
}

.section-divider svg {
  width: 100%;
  height: 100px;
  display: block;
}

.section-divider path {
  fill: #f7efe1;
}

.quick-facts {
  padding-top: 48px;
}

.facts-strip {
  background: var(--white);
  border-radius: 999px;
  padding: 16px 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
  box-shadow: var(--shadow);
}

.facts-strip .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5a5a5a;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 12px;
}

.section-title p {
  max-width: 640px;
  color: #404040;
}

.grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.compact {
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
}

.card.accent {
  background: linear-gradient(135deg, #fff7ea, #f8e0b8);
}

.card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.note {
  margin-top: 12px;
  font-weight: 600;
}

.callout {
  margin-top: 32px;
  display: grid;
  gap: 20px;
  background: var(--deep);
  color: var(--white);
  padding: 28px;
  border-radius: 20px;
}

.callout .tag {
  background: rgba(231, 183, 107, 0.2);
  border: 1px solid rgba(231, 183, 107, 0.45);
  padding: 10px 16px;
  border-radius: 999px;
  width: fit-content;
}

.feature {
  background: var(--soft);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(28, 28, 28, 0.06);
}

.banner {
  margin-top: 28px;
  background: linear-gradient(90deg, var(--river), var(--deep));
  color: var(--white);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.amenity-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.amenity-strip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(28, 28, 28, 0.12);
}

.specials-banner {
  background: linear-gradient(120deg, #2d6d6d, #12343b);
  color: var(--white);
  padding: 32px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.specials-banner h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
}

.map-card {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.address {
  font-weight: 600;
  margin-top: 12px;
}

.mini-map {
  background: radial-gradient(circle at top, #cfe7e2, #98c1b5 60%, #2d6d6d 100%);
  border-radius: 20px;
  min-height: 160px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 600;
}

.pulse {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sun);
  animation: pulse 2.2s infinite;
}

.note-strip {
  margin-top: 24px;
  background: #fdf2da;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
  color: var(--river);
}

.cta-banner {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(120deg, #fff2df, #f6d9b0);
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cta-banner h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

.weather-card {
  margin-top: 28px;
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}

.weather-meta {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #3f3f3f;
}

.map-embed {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.map-placeholder {
  background: linear-gradient(120deg, #cfe7e2, #98c1b5);
  border-radius: 18px;
  min-height: 240px;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--deep);
}

.help-panel {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  z-index: 5;
  font-weight: 600;
}

.help-panel a {
  color: var(--river);
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  background: rgba(18, 52, 59, 0.9);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media print {
  .nav,
  .nav-toggle,
  .hero-controls,
  .hero-carousel,
  .whatsapp-float,
  .help-panel {
    display: none !important;
  }

  body {
    background: white;
  }

  .hero {
    min-height: auto;
    color: var(--ink);
    background: white;
  }

  .hero::after {
    display: none;
  }

  .section {
    padding: 40px 8vw 0;
  }
}

.faq {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 18px rgba(28, 28, 28, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "-";
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 5;
}

.whatsapp-float svg {
  width: 100%;
  height: 100%;
}

.whatsapp-float circle {
  fill: #25d366;
}

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


.pricing {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.price {
  display: inline-block;
  background: #e9f0ef;
  color: var(--deep);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 600;
}

.meta {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: #4c4c4c;
  margin-top: 12px;
}

.rules {
  margin-top: 32px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rule {
  background: #fff9ef;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(28, 28, 28, 0.08);
}

.rule h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.footer {
  padding: 40px 8vw;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: var(--sun);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 8vw;
    background: rgba(18, 52, 59, 0.95);
    padding: 16px 20px;
    border-radius: 12px;
    flex-direction: column;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-controls {
    position: relative;
    inset: auto;
    margin-top: 24px;
  }

  .facts-strip {
    border-radius: 24px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .specials-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .weather-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .help-panel {
    left: 12px;
    bottom: 88px;
  }

  .scroll-top {
    right: 12px;
  }
}
