:root {
  --leaf: #315f3f;
  --leaf-dark: #173521;
  --fresh: #77a86a;
  --sun: #f2b84b;
  --cream: #fff8eb;
  --paper: #fffdf8;
  --ink: #182318;
  --muted: #687365;
  --line: rgba(24, 35, 24, 0.14);
  --shadow: 0 22px 70px rgba(26, 38, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

section[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 8px 30px rgba(15, 31, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  color: var(--leaf-dark);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 30px);
  width: 100%;
  font-size: 0.94rem;
  font-weight: 700;
  color: #344333;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--leaf);
}

.header-call {
  min-width: max-content;
  padding: 11px 16px;
  color: #fff;
  background: var(--leaf);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--leaf-dark);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 64px) 34px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(13, 28, 16, 0.82), rgba(13, 28, 16, 0.42) 45%, rgba(13, 28, 16, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 74px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--leaf-dark);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--leaf-dark);
  font-size: 1.08rem;
}

.hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: #17220f;
  background: var(--sun);
}

.btn.glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn.outline {
  color: var(--leaf-dark);
  background: transparent;
  border-color: rgba(23, 53, 33, 0.35);
}

.btn.full {
  width: 100%;
}

.hero-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 980px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero-strip span {
  padding: 18px 14px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-strip span:last-child {
  border-right: 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band,
.amenities,
.booking-band {
  padding: clamp(70px, 10vw, 118px) 0;
}

.intro-band {
  background: var(--cream);
}

.split,
.stay-grid,
.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.split p,
.stay-copy p,
.booking-grid p,
.contact p,
.gallery-head p {
  color: var(--muted);
}

.feature-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -42px;
  background: var(--leaf-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.stats div {
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--sun);
}

.stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.amenity-grid article {
  min-height: 210px;
  overflow: hidden;
  padding: 0 0 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(42, 58, 39, 0.06);
}

.amenity-grid h3,
.amenity-grid p {
  padding-inline: 24px;
}

.amenity-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.amenity-media {
  position: relative;
  margin-bottom: 23px;
  overflow: hidden;
}

.amenity-media img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.amenity-grid article:hover .amenity-media img {
  transform: scale(1.04);
}

.icon {
  position: absolute;
  left: 18px;
  bottom: 14px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--leaf-dark);
  background: var(--sun);
  box-shadow: 0 10px 24px rgba(12, 24, 14, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
}

.stay {
  padding: clamp(70px, 10vw, 120px) 0;
  background: #eef3e5;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--leaf-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--sun);
}

.room-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

.room-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(26, 38, 27, 0.13);
}

.room-gallery img:first-child {
  grid-row: span 2;
}

.gallery-section,
.contact {
  padding: clamp(70px, 10vw, 118px) 0;
}

.gallery-section .section-inner {
  width: min(100% - 36px, 1680px);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.gallery-head p:last-child {
  max-width: 320px;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid button {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #ddd;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.06);
}

.booking-band {
  background: var(--leaf-dark);
  color: #fff;
}

.booking-band h2,
.booking-band .eyebrow {
  color: #fff;
}

.booking-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 800;
}

.captcha-field {
  grid-column: 1 / -1;
}

.spam-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.booking-form button {
  grid-column: 1 / -1;
  border: 0;
}

.booking-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.success {
  color: #b8f5c8;
}

.form-status.error {
  color: #ffd0bd;
}

.contact {
  background: var(--cream);
}

.contact a {
  color: var(--leaf);
  font-weight: 900;
}

.map-card {
  overflow: hidden;
  min-height: 380px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 25px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: #112719;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sun);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 45;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(14, 67, 35, 0.32);
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float::before,
.whatsapp-wave {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.34);
  animation: whatsappWave 2.1s ease-out infinite;
}

.whatsapp-wave {
  animation-delay: 0.7s;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(14, 67, 35, 0.4);
}

@keyframes whatsappWave {
  0% {
    opacity: 0.72;
    transform: scale(1);
  }

  75% {
    opacity: 0;
    transform: scale(1.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(12, 22, 14, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1080px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 46px;
  height: 46px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: clamp(16px, 4vw, 44px);
}

.lightbox-next {
  right: clamp(16px, 4vw, 44px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 18px;
  margin: 0;
  padding: 8px 13px;
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 10px 12px;
  }

  .header-call {
    display: none;
  }

  .split,
  .stay-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats,
  .amenity-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-head {
    display: block;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }

  section[id] {
    scroll-margin-top: 78px;
  }

  .site-header {
    min-height: 70px;
    padding: 11px 16px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 18px 24px;
  }

  .hero-content {
    padding-bottom: 32px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-strip,
  .stats,
  .amenity-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero-strip span,
  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-strip span:last-child,
  .stats div:last-child {
    border-bottom: 0;
  }

  .stats {
    margin-top: 0;
    width: 100%;
  }

  .room-gallery {
    grid-template-columns: 1fr;
  }

  .room-gallery img:first-child {
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 10px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 78vh;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
