:root {
  --forest: #315b45;
  --forest-dark: #173326;
  --leaf: #6f8f5c;
  --cream: #f8f5ed;
  --sand: #e7d9bd;
  --sunset: #d7803d;
  --ink: #1f2923;
  --muted: #667168;
  --white: #ffffff;
  --line: #dfe6df;
  --shadow: 0 22px 60px rgba(23, 51, 38, 0.15);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 223, 0.9);
  backdrop-filter: blur(18px);
}

.navigation {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 14px;
  font-weight: 800;
}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  line-height: 1.2;
}

.logo small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-call {
  padding: 11px 17px;
  color: var(--white) !important;
  background: var(--forest);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 830px;
  padding-top: 78px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: url("images/hero-background.webp") center 45% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 31, 22, 0.91) 0%, rgba(12, 31, 22, 0.62) 47%, rgba(12, 31, 22, 0.2) 100%),
    linear-gradient(to top, rgba(12, 31, 22, 0.62), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 105px 0 185px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--sunset);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.hero-intro {
  max-width: 680px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.14rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #25160c;
  background: #f1a455;
  box-shadow: 0 14px 35px rgba(241, 164, 85, 0.3);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.booking-note {
  max-width: 580px;
  margin-top: 34px;
  padding: 16px 19px;
  display: flex;
  flex-direction: column;
  border-left: 4px solid #f1a455;
  background: rgba(10, 25, 18, 0.52);
  border-radius: 0 14px 14px 0;
}

.booking-note span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-highlights {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-highlights div {
  min-height: 128px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

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

.hero-highlights strong {
  color: var(--forest);
  font-size: 1.06rem;
}

.hero-highlights span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 110px 0;
}

.about {
  padding-top: 190px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  z-index: -1;
  border: 2px solid var(--sand);
  border-radius: var(--radius);
}

.about-photo img {
  min-height: 590px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
}

.about-content > p:not(.section-label),
.view-copy > p:not(.section-label),
.section-heading > p:not(.section-label),
.nearby-grid > div > p:not(.section-label) {
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-panel {
  margin-top: 32px;
  padding: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--cream);
  border-left: 5px solid var(--forest);
  border-radius: 15px;
}

.contact-panel span,
.contact-panel strong {
  display: block;
}

.contact-panel span {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-panel a {
  padding: 11px 17px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-weight: 800;
}

.view-section {
  background: var(--forest-dark);
  color: var(--white);
}

.view-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 60px;
  align-items: center;
}

.view-copy > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.7);
}

.view-grid img {
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.packages-section {
  background: var(--cream);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 48px;
}

.section-heading.compact {
  max-width: 650px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.package-card {
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: 0 12px 35px rgba(23, 51, 38, 0.06);
}

.package-card.featured {
  border: 2px solid var(--forest);
}

.package-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.package-number {
  padding: 7px 11px;
  color: var(--forest);
  background: #e9f1eb;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.price {
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.price small {
  margin-right: 3px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
}

.price span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
}

.package-card h3 {
  margin: 22px 0 5px;
  font-size: 1.35rem;
}

.package-card p {
  margin-top: 0;
  color: var(--muted);
}

.package-card ul {
  min-height: 130px;
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 24px;
  list-style: none;
}

.package-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--forest);
  font-weight: 900;
}

.package-card > a {
  display: inline-flex;
  padding: 12px 17px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.rate-note {
  margin: 27px 0 0;
  padding: 17px 20px;
  background: var(--sand);
  border-radius: 14px;
  text-align: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity {
  min-height: 118px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.amenity span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 800;
}

.amenity-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-section {
  color: var(--white);
  background: #13271d;
}

.gallery-heading > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.62);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 265px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #223a2d;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 12, 0.8), transparent 52%);
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  color: var(--white);
  font-weight: 800;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

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

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


.video-section {
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: center;
}

.video-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 1.04rem;
}

.video-tip {
  margin-top: 18px;
  font-weight: 800;
  color: var(--forest);
}

.local-video-card {
  width: min(100%, 430px);
  padding: 12px;
  justify-self: center;
  background: #0d1711;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.homestay-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 720px;
  object-fit: cover;
  border-radius: 16px;
  background: #111;
}

.reviews-section {
  background: var(--cream);
}

.reviews-heading {
  max-width: 820px;
}

.review-display {
  margin-bottom: 28px;
  padding: 24px 27px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.review-display-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--sunset);
  border-radius: 50%;
  font-size: 1.45rem;
}

.review-display strong {
  font-size: 1.08rem;
}

.review-display p {
  margin: 4px 0 0;
  color: var(--muted);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feedback-form {
  padding: 31px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(23, 51, 38, 0.07);
}

.private-form {
  border-top: 5px solid var(--forest);
}

.form-heading span {
  color: var(--sunset);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 3px;
  font-size: 1.55rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feedback-form label,
.rating-fieldset legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.feedback-form label small {
  color: var(--muted);
  font-weight: 500;
}

.feedback-form input[type="text"],
.feedback-form input[type="date"],
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #cfd9d0;
  border-radius: 11px;
  outline: none;
  font: inherit;
}

.feedback-form textarea {
  resize: vertical;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(49, 91, 69, 0.12);
}

.rating-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating {
  width: max-content;
  margin-top: 7px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  color: #c8cec9;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #e49a3c;
}

.star-rating label:hover {
  transform: translateY(-1px);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--forest);
}

.form-submit {
  min-height: 49px;
  padding: 12px 18px;
  border: 0;
  color: var(--white);
  background: #2d7a4b;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.secondary-submit {
  background: var(--forest-dark);
}

.form-submit:hover {
  transform: translateY(-1px);
}

.form-status {
  min-height: 1.4em;
  margin: -7px 0 0;
  color: var(--forest);
  font-size: 0.83rem;
  font-weight: 700;
}

.feedback-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.nearby-section {
  background: var(--cream);
}

.nearby-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.map-button {
  margin-top: 20px;
  padding: 13px 18px;
  display: inline-flex;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-weight: 800;
}

.distance-list {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(23, 51, 38, 0.07);
}

.distance-list div {
  padding: 17px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.distance-list div:last-child {
  border-bottom: 0;
}

.distance-list strong {
  color: var(--forest);
  white-space: nowrap;
}

.contact-section {
  background: #e7eee7;
}

.contact-card {
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 28px;
}

.contact-card p:not(.section-label) {
  color: rgba(255, 255, 255, 0.68);
}

.light-label {
  color: #f1a455;
}

.contact-action {
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
}

.contact-action span,
.contact-action small {
  color: var(--muted);
}

.contact-action strong {
  margin: 3px 0;
  font-size: 1.2rem;
}

.contact-action a {
  margin: 12px 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.footer {
  padding: 70px 0 24px;
  color: var(--white);
  background: #0c1811;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  gap: 55px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.62);
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
}

.floating-call {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: #2d7a4b;
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
  font-weight: 800;
}

.floating-call span {
  font-size: 1.1rem;
}

dialog {
  width: min(1120px, calc(100% - 28px));
  height: min(820px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #08100b;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

#lightboxImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#closeLightbox {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
}

@media (max-width: 1000px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .about-grid,
  .view-grid,
  .video-grid,
  .nearby-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

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

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

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 790px;
    background-position: 58% center;
  }

  .hero-content {
    padding: 80px 0 250px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .hero-highlights {
    bottom: 22px;
    transform: translateX(-50%);
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 28px);
  }

  .hero-highlights div {
    min-height: 102px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .about {
    padding-top: 78px;
  }

  .about-photo::before {
    display: none;
  }

  .about-photo img {
    min-height: 410px;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .view-grid img {
    height: 320px;
  }

  .package-grid,
  .amenities-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .package-card ul {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

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

  .gallery-tall {
    grid-row: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .feedback-form {
    padding: 24px 20px;
  }

  .review-display {
    align-items: flex-start;
  }

  .contact-card {
    padding: 30px 22px;
  }

  .contact-action a {
    font-size: 2rem;
  }

  .floating-call {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 470px) {
  .logo strong {
    font-size: 0.86rem;
  }

  .logo small {
    font-size: 0.68rem;
  }

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

  .gallery-wide {
    grid-column: span 1;
  }

  .package-card ul {
    grid-template-columns: 1fr;
  }

  .floating-call {
    padding: 12px 15px;
    font-size: 0.86rem;
  }
}
