:root {
  --bg: #f4f7f0;
  --bg-soft: #e7efe0;
  --text: #1e2d25;
  --muted: #4f6659;
  --brand: #355f4a;
  --brand-2: #8aa17d;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(30, 45, 37, 0.12);
  --shadow: 0 18px 40px rgba(36, 56, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(138, 161, 125, 0.26), transparent 34%),
    radial-gradient(circle at 85% 8%, rgba(53, 95, 74, 0.2), transparent 30%),
    linear-gradient(180deg, #f9fbf6 0%, #eef3e8 35%, #f5f8f2 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(244, 247, 240, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 86px;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.6);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
}

.lang-btn.active {
  background: var(--brand);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: clamp(10rem, 17vw, 13rem);
  height: auto;
  max-height: 4.25rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn {
  appearance: none;
  border: none;
  background: linear-gradient(140deg, var(--brand), #3f6f58);
  color: #fff;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(52, 90, 71, 0.24);
}

.btn-small {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(53, 95, 74, 0.35);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: #21392d;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  width: 100%;
  min-height: 100%;
  transition: transform 0.75s ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100vw;
  min-height: 92vh;
  background-position: center;
  background-size: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 38, 30, 0.58), rgba(20, 38, 30, 0.2));
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 45%, rgba(242, 245, 236, 0.28), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(118, 160, 136, 0.24), transparent 25%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f4f8f2;
  max-width: 560px;
  padding: 0 0 4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #9cb8a5;
}

.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  line-height: 1.1;
}

.hero h1 {
  display: inline-block;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-left: 3px solid rgba(244, 248, 242, 0.72);
  background: rgba(22, 40, 31, 0.42);
  backdrop-filter: blur(8px);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 1.7vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.42);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 248, 242, 0.38);
  border-radius: 50%;
  background: rgba(22, 40, 31, 0.42);
  color: #f4f8f2;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(22, 40, 31, 0.68);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow-left {
  left: clamp(0.85rem, 3vw, 2rem);
}

.hero-arrow-right {
  right: clamp(0.85rem, 3vw, 2rem);
}

.hero-info {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, rgba(244, 247, 240, 0.95), rgba(231, 239, 224, 0.76));
  border-bottom: 1px solid var(--line);
}

.hero-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-text {
  margin: 0;
  max-width: 68ch;
  font-size: 1.04rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-stats {
  position: relative;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(36, 56, 46, 0.08);
}

.hero-stats h3 {
  margin: 0.15rem 0 0;
  font-size: 1.35rem;
}

.hero-stats h4 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
}

.hero-stats p {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-copy {
  max-width: 72ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.guest-facilities-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.package-card,
.form-card,
.gallery-item,
.split-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card {
  padding: 1.15rem 1rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.split-section {
  padding-top: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.highlights {
  padding-left: 1rem;
}

.highlights li + li {
  margin-top: 0.5rem;
}

.split-panel {
  padding: 1.3rem;
  background:
    linear-gradient(160deg, rgba(80, 116, 95, 0.08), rgba(248, 251, 246, 0.93)),
    var(--card);
}

.panel-content h3 {
  margin-bottom: 0.3rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-card {
  padding: 1.2rem;
  position: relative;
}

.package-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
}

.package-subnote {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.package-card ul {
  padding-left: 1rem;
}

.package-notes {
  max-width: 760px;
  margin: 1.5rem 0 0;
}

.package-note {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.package-note + .package-note {
  margin-top: 0.55rem;
}

.price {
  color: var(--brand);
  font-weight: 700;
}

.tag {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.highlighted {
  border-color: rgba(53, 95, 74, 0.38);
}

.gallery-section {
  background: linear-gradient(180deg, rgba(231, 239, 224, 0.52), rgba(245, 249, 240, 0.4));
}

.gallery-subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  margin: 0 0 0.9rem;
}

.gallery-help {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.admin-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.is-hidden {
  display: none;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid.photos {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.5rem;
  padding-inline: 0.5rem;
  padding-block: 0.25rem;
  scrollbar-width: none;
}

.gallery-grid.photos::-webkit-scrollbar {
  display: none;
}

.photo-gallery-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  margin: 0;
  flex: 0 0 calc((100% - 1rem) / 2);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 0.9rem;
}

.photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  margin: 0.6rem 0.2rem 0.3rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.gallery-arrow {
  flex-shrink: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(20, 38, 30, 0.56);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.photo-gallery-wrap:hover .gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}

/* arrows are in normal flex flow — no left/right offsets needed */

.booking-section {
  background:
    radial-gradient(circle at 92% 18%, rgba(138, 161, 125, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(251, 253, 249, 0.9), rgba(238, 245, 231, 0.84));
}

.booking-wrap,
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.form-card {
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.form-card label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(52, 78, 64, 0.2);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 2px solid rgba(81, 125, 101, 0.28);
  border-color: rgba(52, 78, 64, 0.35);
}

.form-message {
  min-height: 1.2rem;
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}

.form-message.success {
  color: #1e6b40;
}

.form-message.error {
  color: #9d342e;
}

.contact-links {
  display: flex;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-phone-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.contact-phone-row a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex: 0 0 auto;
  fill: #25d366;
}

.contact-links a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  background: #eef3e8;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
}

.footer-wrap a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .booking-wrap,
  .contact-wrap,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero-info-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid.photos {
    gap: 0.8rem;
  }

  .gallery-item {
    flex-basis: calc((100% - 0.8rem) / 2);
  }

  .gallery-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 1.3rem));
  }

  .hero {
    min-height: 85vh;
  }

  .hero-slide {
    min-height: 85vh;
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .hero-arrow {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.25rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    flex-basis: 100%;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
