:root {
  --green: #132E20;
  --gold: #A77E34;
  --white: #FDFDFC;
  --sage: #B8BBB1;
  --muted: #607067;
  --text: #444444;
  --light: #F6F4EF;
  --shadow: 0 20px 50px rgba(19, 46, 32, 0.12);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 2000;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

/* NAVBAR */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 18px 6%;
}

.navbar {
  background: rgba(253, 253, 252, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(167, 126, 52, 0.18);
  border-radius: 999px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(19, 46, 32, 0.08);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}

.nav-btn {
  background: var(--green);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green);
  display: block;
  border-radius: 2px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 6% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(167, 126, 52, 0.12), transparent 35%),
    var(--white);
}

.eyebrow,
.section-title span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
  color: var(--green);
  margin: 22px 0;
}

.hero p {
  max-width: 540px;
  font-size: 17px;
  color: var(--text);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
}

.btn.primary {
  background: var(--green);
  color: var(--white);
}

.btn.secondary {
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
}

.btn.primary:hover,
.btn.secondary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.hero-image {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(253, 253, 252, 0.7);
  border-radius: 28px;
  z-index: 2;
  pointer-events: none;
}

.hero-image img {
  height: 600px;
}

/* SECTIONS */
section {
  padding: 90px 6%;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-title.left {
  margin: 0 0 50px;
  text-align: left;
}

.section-title h2,
.cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 64px);
  color: var(--green);
  line-height: 1;
  margin: 12px 0 18px;
}

.section-title p {
  font-size: 16px;
}

/* PAGE HERO (About / Rooms / Contact) */
.page-hero {
  padding: 160px 6% 70px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(167, 126, 52, 0.12), transparent 40%),
    var(--light);
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 7vw, 84px);
  color: var(--green);
  margin: 16px 0 14px;
  line-height: 1;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* FEATURES */
.features {
  background: var(--light);
}

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

.feature-card {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(19, 46, 32, 0.06);
  border: 1px solid rgba(167, 126, 52, 0.12);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  color: var(--green);
  margin-bottom: 12px;
  font-size: 18px;
}

/* ROOMS */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(19, 46, 32, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.room-image-btn {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
}

.room-card img {
  height: 280px;
}

.room-info {
  padding: 28px;
}

.room-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 11px;
  font-weight: 600;
}

.room-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--green);
  margin-top: 4px;
}

.room-info > p {
  margin: 8px 0 14px;
}

.room-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.room-amenities li {
  font-size: 12px;
  color: var(--muted);
  background: var(--light);
  border: 1px solid rgba(167, 126, 52, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
}

.room-info strong {
  display: block;
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 18px;
}

.room-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.room-actions .btn {
  padding: 12px 22px;
  font-size: 13px;
}

.rooms-note {
  max-width: 720px;
  margin: 46px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* GALLERY */
.gallery-preview {
  background: var(--light);
}

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

.gallery-grid button {
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(19, 46, 32, 0.08);
  transition: 0.3s ease;
}

.gallery-grid img {
  height: 260px;
  transition: 0.3s ease;
}

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

/* CTA */
.cta {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 100px 6%;
}

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

.cta p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: rgba(253, 253, 252, 0.85);
}

.btn.gold {
  background: var(--gold);
  color: var(--white);
}

.btn.gold:hover {
  background: var(--white);
  color: var(--green);
}

/* ABOUT PAGE */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.story-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  height: 520px;
}

.story-text span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
}

.story-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--green);
  margin: 14px 0 18px;
  line-height: 1.1;
}

.story-text p {
  margin-bottom: 16px;
}

.facilities {
  background: var(--light);
}

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

.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(167, 126, 52, 0.12);
  box-shadow: 0 12px 35px rgba(19, 46, 32, 0.06);
}

.facility-card h3 {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 10px;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(167, 126, 52, 0.16);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: 0 12px 35px rgba(19, 46, 32, 0.06);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(19, 46, 32, 0.12);
  border-color: rgba(167, 126, 52, 0.4);
}

.contact-card .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(167, 126, 52, 0.16), rgba(167, 126, 52, 0.05));
  border: 1px solid rgba(167, 126, 52, 0.28);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.contact-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  color: var(--green);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-card a,
.contact-card p {
  font-size: 15px;
  color: var(--text);
}

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

.enquiry-box {
  background: var(--green);
  color: var(--white);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.enquiry-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  margin-bottom: 14px;
}

.enquiry-box p {
  color: rgba(253, 253, 252, 0.85);
  margin-bottom: 26px;
}

.map-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(167, 126, 52, 0.2);
  margin-top: 26px;
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.map-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.hours-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.hours-list span {
  color: var(--gold);
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: #0F2419;
  color: var(--white);
  text-align: center;
  padding: 60px 6% 90px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}

.footer p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin: 8px 0 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

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

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(253, 253, 252, 0.75);
  margin-bottom: 26px;
}

.footer small {
  color: rgba(253, 253, 252, 0.65);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
}

.whatsapp-float:hover {
  background: var(--gold);
}

/* SCROLL REVEAL — only active once JS confirms it can animate it back in;
   content stays fully visible by default so it never depends on JS running. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 36, 25, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 26px;
  background: rgba(253, 253, 252, 0.15);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 135px;
  }

  .hero-image img {
    height: 420px;
  }

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

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

  .story,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image img {
    height: 360px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(167, 126, 52, 0.18);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px;
    display: none;
  }

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

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--light);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 4%;
  }

  .navbar {
    border-radius: 24px;
    padding: 12px 16px;
    position: relative;
  }

  .logo {
    font-size: 22px;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .nav-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero {
    padding: 125px 5% 55px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .page-hero {
    padding: 135px 5% 55px;
  }

  section {
    padding: 70px 5%;
  }

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

  .feature-card {
    padding: 26px;
  }

  .room-card img,
  .gallery-grid img {
    height: 240px;
  }

  .enquiry-box {
    padding: 30px;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }

  .footer {
    padding-bottom: 100px;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
