:root {
  color-scheme: light;
  --green-950: #102d28;
  --green-900: #163b34;
  --green-700: #236257;
  --gold: #b2914a;
  --gold-strong: #d3ad58;
  --ink: #16201d;
  --muted: #62706a;
  --paper: #fbfaf6;
  --mist: #edf3ef;
  --white: #ffffff;
  --line: rgba(16, 45, 40, 0.13);
  --shadow: 0 22px 60px rgba(16, 45, 40, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.menu-is-open {
  overflow: hidden;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
}

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

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

button,
.button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  background: var(--green-950);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader img {
  width: min(260px, 68vw);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    transform: scale(1.04);
    opacity: 0.78;
  }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  gap: 18px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-center {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
}

.brand img {
  width: 132px;
  height: 52px;
  object-fit: contain;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 1.5vw, 22px);
  color: var(--green-900);
  font-size: 0.94rem;
  font-weight: 700;
}

.navlinks a {
  padding: 12px 2px;
}

.navlinks a:hover {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  grid-column: 3;
  justify-self: end;
  margin-left: auto;
  color: var(--white);
  background: var(--green-900);
}

.menu-toggle {
  display: none;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  gap: 5px;
  border-radius: var(--radius);
  background: var(--green-900);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-backdrop,
.mobile-menu {
  display: none;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: rgba(8, 25, 22, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(390px, 88vw);
  padding: 18px;
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(16, 45, 40, 0.24);
  transform: translateX(104%);
  transition: transform 0.26s ease;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__top img {
  width: 132px;
}

.mobile-menu__close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  font-size: 1.18rem;
}

.mobile-menu__links {
  display: grid;
  gap: 8px;
  padding: 18px 0;
}

.mobile-menu__links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-950);
  background: var(--white);
  font-weight: 900;
}

.mobile-menu__links a:hover {
  border-color: rgba(178, 145, 74, 0.55);
  color: var(--gold);
}

.mobile-menu__cta {
  width: 100%;
}

body.menu-is-open .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-is-open .mobile-menu {
  transform: translateX(0);
}

body.menu-is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button:hover,
.nav-cta:hover,
.floating-wa:hover {
  transform: translateY(-2px);
}

.button--gold {
  color: var(--green-950);
  background: var(--gold-strong);
  box-shadow: 0 14px 30px rgba(179, 145, 74, 0.28);
}

.button--gold:hover {
  background: #e2be68;
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.button--dark {
  width: 100%;
  color: var(--white);
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 45, 40, 0.89), rgba(16, 45, 40, 0.49), rgba(16, 45, 40, 0.24)),
    url("https://unsplash.com/photos/l9ec_aZCLg4/download?force=true") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(251, 250, 246, 0), var(--paper));
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 34%, rgba(211, 173, 88, 0.22), transparent 32%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 36px));
  margin: 0 auto;
  padding: 68px 0 128px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 7vw, 5.9rem);
}

h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  color: var(--green-950);
  font-size: 1.25rem;
}

.hero__subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 4vw, 56px);
}

.section--tint {
  background: var(--mist);
}

.section__header {
  width: min(810px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section__header p:not(.eyebrow),
.location-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.room-grid,
.seo-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.room-card,
.attraction-card,
.seo-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 45, 40, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.room-card:hover,
.attraction-card:hover,
.seo-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.seo-content {
  padding-bottom: clamp(42px, 6vw, 82px);
}

.seo-grid article {
  padding: 22px;
}

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

.image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.image-wrap img,
.attraction-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-950);
  background: #dff3db;
  font-size: 0.78rem;
  font-weight: 900;
}

.badge--limited {
  color: #5b3000;
  background: #ffd99d;
}

.room-card__body {
  display: grid;
  gap: 13px;
  padding: 20px;
}

.room-card__body p {
  min-height: 50px;
  margin: 0;
  color: var(--muted);
}

.room-card__body strong {
  color: var(--gold);
  font-size: 1.14rem;
}

.facility-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 850;
}

.facility-item svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: 0 14px 34px rgba(16, 45, 40, 0.12);
}

.gallery-item img {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 45, 40, 0.02) 30%, rgba(16, 45, 40, 0.82));
  opacity: 0.9;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: var(--white);
  text-align: left;
}

.gallery-item__caption small {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 900;
}

.gallery-item__caption strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.section--split {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: center;
}

.location-copy {
  padding: 18px 0;
}

.map-frame {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

.attraction-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.attraction-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  color: var(--white);
}

.attraction-card img {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  height: 100%;
  filter: saturate(0.94) contrast(1.04);
}

.attraction-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 72px 18px 18px;
  background: linear-gradient(180deg, rgba(16, 45, 40, 0), rgba(16, 45, 40, 0.9) 42%, rgba(16, 45, 40, 0.98));
}

.attraction-card h3 {
  color: var(--white);
}

.attraction-card p {
  color: var(--muted);
}

.attraction-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.attraction-distance {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.attraction-card strong {
  display: block;
  margin-top: 10px;
  color: var(--gold-strong);
  font-size: 0.92rem;
}

.testimonial-carousel {
  position: relative;
  width: min(1050px, 100%);
  margin: 0 auto;
  padding-inline: 58px;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 2);
  gap: 22px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 45, 40, 0.08);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-card__top img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(211, 173, 88, 0.32);
}

.testimonial-card__top div {
  display: grid;
  gap: 2px;
}

.testimonial-card__top strong {
  color: var(--green-950);
  font-size: 1.05rem;
}

.testimonial-card__top span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars span {
  width: 18px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.stars em {
  margin-left: 8px;
  color: var(--green-900);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 900;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 14px 30px rgba(16, 45, 40, 0.22);
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-button:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.04);
}

.carousel-button--prev {
  left: 0;
}

.carousel-button--next {
  right: 0;
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  margin: clamp(36px, 7vw, 80px) clamp(18px, 4vw, 56px);
  padding: clamp(46px, 8vw, 76px) 22px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 45, 40, 0.93), rgba(16, 45, 40, 0.75)),
    url("https://images.unsplash.com/photo-1555400038-63f5ba517a47?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 12px auto 24px;
  color: rgba(255, 255, 255, 0.86);
}

.footer {
  display: grid;
  gap: 8px;
  padding: 42px clamp(18px, 4vw, 56px) 92px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-950);
  text-align: center;
}

.footer div {
  display: inline-grid;
  justify-items: center;
  gap: 8px;
}

.footer img {
  width: 150px;
}

.footer strong,
.footer a {
  color: var(--gold-strong);
}

.footer p {
  margin: 0;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: #168c58;
  box-shadow: 0 16px 36px rgba(22, 140, 88, 0.34);
  transition: transform 0.2s ease;
}

.floating-wa span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 950;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 25, 22, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(1040px, 100%);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.25rem;
}

@media (max-width: 980px) and (min-width: 681px) {
  .navbar {
    grid-template-columns: 1fr;
  }

  .nav-center {
    grid-column: 1;
  }

  .nav-cta {
    display: none;
  }

  .room-grid,
  .seo-grid,
  .facility-grid,
  .attraction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }

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

  .section--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .navbar {
    min-height: 68px;
    grid-template-columns: 46px 1fr 46px;
    gap: 8px;
    padding-inline: 14px;
  }

  .nav-center {
    grid-column: 2;
  }

  .navlinks {
    display: none;
  }

  .brand img {
    width: 116px;
  }

  .nav-cta {
    display: none;
    min-height: 44px;
    padding: 11px 14px;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: grid;
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .mobile-backdrop,
  .mobile-menu {
    display: block;
  }

  .mobile-menu {
    width: min(340px, 92vw);
    padding: 16px;
  }

  .hero {
    min-height: 760px;
    background-position: center;
  }

  .hero__content {
    width: calc(100% - 32px);
    padding-bottom: 106px;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .room-grid,
  .seo-grid,
  .facility-grid,
  .gallery-grid,
  .attraction-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    padding-inline: 0;
  }

  .testimonial-track {
    grid-auto-columns: 88%;
    padding-inline: 2px;
  }

  .carousel-button {
    display: none;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .section {
    padding-inline: 16px;
  }

  .section--split {
    width: calc(100% - 32px);
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
    height: 360px;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
    min-height: 54px;
    padding: 10px 14px;
  }
}
