:root {
  --green:  #294333;
  --bg:     #e4e4d3;
  --cream:  #fffdf6;
  --lime:   #d3ce78;
  --orange: #da5831;
  --pad:    11vw;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--green);
  overflow-x: hidden;
}

/* ── NAV ──────────────────────────────────────────────────── */

#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0 var(--pad);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

#nav.scrolled {
  background: rgba(41, 67, 51, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: clamp(28px, 2.2vw, 40px);
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 32px);
}

.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.3;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

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

/* ── HERO ──────────────────────────────────────────────────── */

#hero {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(90px, 15vh, 200px);
  padding-bottom: 56px;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 76%, rgba(0,0,0,0.55) 120%),
    linear-gradient(180deg, rgba(0,0,0,0.42) 34%, rgba(0,0,0,0) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1vh, 18px);
  text-align: center;
  color: var(--cream);
  width: 100%;
}

.hero-heading {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* padding+negative-margin prevents descender clipping in overflow:hidden */
.hero-heading .line-wrap {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.hero-heading .line {
  display: block;
}

.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--cream);
  max-width: clamp(280px, 34vw, 520px);
  opacity: 0.9;
}

.hero-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 0.7vw, 12px);
  width: 100%;
  flex-wrap: wrap;
}

/* ── BUTTONS ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding: 18px 39px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-lime {
  background: var(--lime);
  color: var(--green);
  min-width: 254px;
}

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

.btn-orange {
  background: var(--orange);
  color: var(--cream);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-orange:hover {
  background: var(--cream);
  color: var(--orange);
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */

.section-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.h2 {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.h3 {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ── SECTION TRANSITIONS ───────────────────────────────────── */

.section-cream {
  position: relative;
  z-index: 4;
  background: var(--bg);
  border-radius: 40px 40px 0 0;
  padding: 80px var(--pad) 100px;
  margin-top: -40px;
}

/* ── GROUP TRIP ─────────────────────────────────────────────── */

.group-card {
  position: relative;
  border-radius: 30px;
  height: clamp(340px, 38vw, 540px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.group-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.group-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(224deg, rgba(0,0,0,0) 54%, rgba(0,0,0,0.77) 81%);
}

.group-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: clamp(320px, 36vw, 522px);
  color: var(--cream);
}

.group-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.group-text p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.3;
  opacity: 0.9;
}

.group-btns {
  display: flex;
  gap: 10px;
  width: 100%;
}

.group-btns .btn {
  flex: 1;
  min-width: 0;
}

.btn-outline-white {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding-top: 16px;
  padding-bottom: 16px;
}

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

.section-green {
  position: relative;
  z-index: 3;
  background: var(--green);
  border-radius: 40px 40px 0 0;
  padding: 90px var(--pad) 180px;
}

.section-green::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px 40px 0 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── ABOUT ─────────────────────────────────────────────────── */

.about-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--lime);
  text-align: center;
}

.about-cluster {
  position: relative;
  width: clamp(400px, 56vw, 820px);
  height: clamp(300px, 42vw, 600px);
}

.photo-land {
  position: absolute;
  left: 0;
  top: clamp(16px, 3vw, 44px);
  width: clamp(250px, 40vw, 580px);
  z-index: 1;
}

.photo-bw {
  position: absolute;
  left: clamp(200px, 35vw, 505px);
  top: clamp(60px, 9vw, 130px);
  width: clamp(130px, 19vw, 275px);
  z-index: 2;
}

.photo-stamp {
  position: absolute;
  left: clamp(170px, 30vw, 430px);
  top: clamp(70px, 11vw, 158px);
  width: clamp(75px, 11vw, 158px);
  z-index: 4;
}

.photo-land img,
.photo-bw img,
.photo-stamp img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-body {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: var(--lime);
  text-align: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 630px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  opacity: 0.88;
}

/* ── STAYS ─────────────────────────────────────────────────── */

.stays-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 48px;
}

.stays-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--green);
  opacity: 0.65;
  max-width: 380px;
}

.stays-slider-wrap {
  position: relative;
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.stays-slider-wrap img {
  -webkit-user-drag: none;
  pointer-events: none;
}

.stays-cards {
  display: flex;
  gap: 20px;
  padding-left: var(--pad);
  will-change: transform;
}

.stay-card {
  flex-shrink: 0;
  width: calc((100% - 140px) / 3);
}

.stays-dots { display: none; }

.stays-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 80px;
}

.stay-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(41, 67, 51, 0.12);
  border: 2px solid rgba(41, 67, 51, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  flex-shrink: 0;
}

.stay-arrow svg { width: 20px; height: 20px; }

.stay-arrow:hover {
  background: var(--lime);
  border-color: var(--lime);
}

.stay-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stay-slider {
  position: relative;
  height: clamp(160px, 15vw, 220px);
  overflow: hidden;
}

.stay-slides-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.stay-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.stay-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  padding: 0;
}

.slider-arrow svg {
  width: 14px;
  height: 14px;
}

.slider-arrow-prev { left: 10px; }
.slider-arrow-next { right: 10px; }

.stay-slider:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background: var(--green);
}

.slider-arrow:hover path {
  stroke: var(--lime);
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.stay-card-body {
  padding: clamp(16px, 1.4vw, 22px);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.stay-card-title {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
  margin-bottom: 16px;
}

.stay-features {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 18px;
}

.stay-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 0.9vw, 14px);
  line-height: 1.3;
  color: var(--green);
  padding: 7px 0;
  border-bottom: 1px solid rgba(41, 67, 51, 0.1);
}

.stay-feature:first-child {
  padding-top: 0;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.stay-card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stay-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stay-price-amount {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green);
}

.stay-price-note {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--green);
  opacity: 0.5;
}

.btn-green {
  background: var(--green);
  color: var(--lime);
  width: 100%;
}

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

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding-top: 16px;
  padding-bottom: 16px;
}

.stay-card-footer .btn-outline-green {
  width: 100%;
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--lime);
}

/* ── AMENITIES ─────────────────────────────────────────────── */

.amenities-wrap {
  padding-top: 120px;
}

.amenities-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 40px;
  color: var(--green);
}

.amenities-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.3;
  opacity: 0.75;
}

.amenities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amenity-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.amenity-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

.amenity-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(181.7deg, rgba(0,0,0,0) 78.74%, rgba(0,0,0,0.35) 97.5%);
  pointer-events: none;
}

.amenity-gradient--alt {
  background: linear-gradient(174.6deg, rgba(0,0,0,0) 46.4%, rgba(0,0,0,0.33) 76.1%);
}

.amenity-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: center;
}

.amenity-title {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
}

.amenity-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.3;
  color: var(--green);
  text-align: center;
}

.amenity-card--coin {
  background: #d3ce78;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.coin-tagline {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--green);
  max-width: 300px;
}

.coin-badges {
  width: clamp(200px, 22vw, 320px);
  height: auto;
  display: block;
}

/* ── ADDITIONAL SERVICES ───────────────────────────────────── */

.additional-wrap {
  padding-top: 80px;
}

.additional-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 40px;
  color: var(--green);
}

.additional-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.add-panel {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: clamp(300px, 30vw, 439px);
}

.add-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.add-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0,0,0,0.2) 28.5%, rgba(0,0,0,0) 73.7%);
  pointer-events: none;
}

.add-panel-content {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.add-panel-title {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
}

.add-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.add-tag {
  background: var(--cream);
  color: var(--green);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.3;
  padding: 10px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── EMERGENCY ─────────────────────────────────────────────── */

.section-emergency {
  position: relative;
  z-index: 5;
  border-radius: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px var(--pad);
  overflow: hidden;
}

.emergency-media {
  position: absolute;
  inset: 0;
}

.emergency-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.emergency-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.95) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.42) 100%);
}

.emergency-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 5vw, 80px);
  width: 100%;
  text-align: center;
  color: var(--cream);
}

.emergency-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
}

.emergency-label {
  color: var(--cream);
  opacity: 0.7;
}

.emergency-heading {
  color: var(--cream);
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: -0.04em;
}

.emergency-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.3;
  opacity: 0.9;
}

.emergency-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-emergency {
  background: var(--orange);
  color: var(--cream);
  font-size: clamp(15px, 1.3vw, 20px);
  padding: 24px 40px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-emergency:hover {
  background: var(--cream);
  color: var(--orange);
}

.emergency-note {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  color: rgba(255, 253, 246, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.emergency-247 {
  color: var(--orange);
  font-weight: 700;
}

.emergency-services {
  display: flex;
  gap: clamp(32px, 4vw, 60px);
  justify-content: center;
  width: 100%;
}

.emergency-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}

.service-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.emergency-service-title {
  color: var(--cream);
  font-size: clamp(22px, 2vw, 32px);
}

.emergency-service-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.3;
  opacity: 0.75;
}

/* ── DINING ────────────────────────────────────────────────── */

.section-dining {
  position: relative;
  z-index: 6;
  background: var(--bg);
  border-radius: 40px 40px 0 0;
  padding: 100px var(--pad);
}

.dining-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  color: var(--green);
  margin-bottom: 60px;
}

.dining-layout {
  display: flex;
  gap: 20px;
}

.dining-photo-wrap {
  flex: 1;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.dining-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dining-quote {
  border-left: 4px solid var(--green);
  padding-left: 28px;
  font-family: 'Maitree', serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
}

.dining-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}

.menu-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(140px, 13vw, 200px);
}

.menu-card-title {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 24px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green);
}

.menu-card-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 0.95vw, 16px);
  line-height: 1.4;
  color: var(--green);
  opacity: 0.6;
}

.menu-stamp-wrap {
  position: absolute;
  top: calc(clamp(140px, 13vw, 200px) + 6px);
  right: -16px;
  transform: rotate(10.2deg);
  pointer-events: none;
}

.menu-stamp-wrap img {
  display: block;
  width: 89px;
  height: 111px;
  object-fit: contain;
}

.dining-hours {
  grid-column: 1 / -1;
  background: var(--green);
  border-radius: 20px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dining-hours-time {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.3;
  color: var(--lime);
}

.dining-hours-note {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.3;
  color: var(--cream);
  opacity: 0.8;
}

/* ── CAROUSEL ─────────────────────────────────────────────── */

.section-carousel {
  position: relative;
  z-index: 7;
  background: var(--bg);
  padding: 100px 0 120px;
}

.carousel-header {
  text-align: center;
  padding: 0 var(--pad);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--green);
}

.carousel-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 18px);
  color: var(--green);
  opacity: 0.7;
}

.carousel-viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.carousel-item {
  height: clamp(260px, 28vw, 480px);
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-item img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* ── REVIEWS ──────────────────────────────────────────────── */

.section-reviews {
  position: relative;
  z-index: 8;
  background: var(--bg);
  padding: 0 var(--pad) 120px;
}

.reviews-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 60px;
  color: var(--green);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.review-card {
  background: var(--cream);
  border-radius: 30px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 26px;
  height: 26px;
  fill: var(--green);
  flex-shrink: 0;
}

.review-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--green);
  flex: 1;
}

.review-author {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1vw, 15px);
  letter-spacing: 0.04em;
  color: var(--green);
}

.reviews-footer {
  display: flex;
  justify-content: center;
}

/* ── FIND US ──────────────────────────────────────────────── */

.section-findus {
  position: relative;
  z-index: 9;
  background: var(--bg);
  padding: 0 var(--pad) 80px;
}

.findus-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 60px;
  color: var(--green);
}

.findus-layout {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.findus-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.findus-card {
  background: var(--cream);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--green);
}

.findus-card-dark {
  background: var(--green);
}

.findus-card-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.findus-h4 {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
}

.findus-h5 {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
}

.findus-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  color: var(--green);
}

.findus-text strong {
  font-weight: 700;
}

.findus-text a {
  color: var(--green);
  text-decoration: underline;
}

.findus-landmarks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.4;
  color: var(--green);
}

.findus-landmarks li::before {
  content: '• ';
}

.findus-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.findus-hours-title {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--lime);
}

.findus-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.findus-hour-item {
  border-left: 3px solid var(--lime);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.findus-hour-name {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(16px, 1.3vw, 20px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--lime);
}

.findus-hour-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.3;
  color: var(--cream);
}

.findus-map-wrap {
  flex: 1;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
  min-height: 500px;
}

.findus-map {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* ── FOOTER ───────────────────────────────────────────────── */

.site-footer {
  position: relative;
  z-index: 10;
  background: var(--bg);
  padding: 0 var(--pad) 40px;
}

.footer-inner {
  border-top: 1px solid var(--green);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: var(--green);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: center;
}

.footer-link:hover {
  opacity: 0.65;
}

/* ── MAP PIN ──────────────────────────────────────────────── */

.mapboxgl-ctrl-logo,
.mapboxgl-ctrl-attrib { display: none !important; }

.mapboxgl-ctrl-group {
  background: #294333 !important;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: none !important;
  border: none !important;
}

.mapboxgl-ctrl-group button {
  width: 36px !important;
  height: 36px !important;
  background: #294333 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.mapboxgl-ctrl-group button:last-child { border-bottom: none !important; }

.mapboxgl-ctrl-group button .mapboxgl-ctrl-icon {
  filter: brightness(0) invert(1) !important;
}

.mapboxgl-popup {
  outline: none !important;
}

@keyframes popup-in {
  from { opacity: 0; transform: scale(0.82) translateY(6px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.mapboxgl-popup-content {
  animation: popup-in 0.3s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
  background: #294333 !important;
  border-radius: 10px !important;
  padding: 0 !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4) !important;
  border: none !important;
  outline: none !important;
}

.mapboxgl-popup-tip {
  border-top-color: #294333 !important;
}

.map-directions-btn {
  display: block;
  padding: 13px 22px;
  color: #d3ce78;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s;
  outline: none;
}

.map-directions-btn:hover { opacity: 0.75; }

.map-pin-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1000;
}

.map-pulse {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  animation: map-pulse 2.6s ease-out infinite;
}

.map-pulse-delay {
  animation-delay: 1.3s;
}

@keyframes map-pulse {
  0%   { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

.map-pin-inner {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin-inner svg {
  width: 18px;
  height: 16px;
  display: block;
}

/* ── NAV BURGER ───────────────────────────────────────────── */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.amenity-dots { display: none; }

/* ── TABLET ≤1024px ───────────────────────────────────────── */

@media (max-width: 1024px) {
  :root { --pad: 5vw; }

  .stay-card { width: calc((100% - 80px) / 2); }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid .review-card:last-child { grid-column: 1 / -1; }

  .emergency-services { gap: 32px; }

  .additional-panels { gap: 16px; }

  .add-panel { height: clamp(280px, 28vw, 439px); }
}

/* ── MOBILE ≤768px ────────────────────────────────────────── */

@media (max-width: 768px) {
  :root { --pad: 24px; }

  /* ─ NAV ─ */
  .nav-burger { display: flex; position: relative; z-index: 1; }

  #nav.nav-open {
    bottom: 0 !important;
    background: var(--green) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-top: none;
    padding: 0;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    font-size: 22px;
    color: var(--cream);
    opacity: 1;
    border-bottom: 1px solid rgba(255, 253, 246, 0.08);
  }

  .nav-links a:first-child { border-top: 1px solid rgba(255, 253, 246, 0.08); }

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

  #nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  #nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─ HERO ─ */
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-lime { min-width: unset; width: 100%; max-width: 340px; }
  .btn-orange { width: 100%; max-width: 340px; }

  /* ─ ABOUT ─ */
  .section-green { padding: 70px var(--pad) 120px; border-radius: 24px 24px 0 0; }

  .about-stage { gap: 32px; }

  .about-cluster {
    width: 90vw;
    height: 68vw;
  }

  .photo-land {
    top: 5vw;
    left: 0;
    width: 64vw;
  }

  .photo-bw {
    left: 56vw;
    top: 15vw;
    width: 31vw;
  }

  .photo-stamp {
    left: 48vw;
    top: 18vw;
    width: 18vw;
  }

  .about-body { gap: 20px; }
  .about-text { font-size: 16px; }

  /* ─ STAYS ─ */
  .section-cream { padding: 70px var(--pad) 80px; border-radius: 24px 24px 0 0; }

  .stays-header { margin-bottom: 32px; }

  .stays-slider-wrap { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-left: calc(-1 * var(--pad)); margin-right: calc(-1 * var(--pad)); padding-left: 10vw; padding-right: 10vw; padding-bottom: 20px; cursor: default; }

  .stays-slider-wrap::-webkit-scrollbar { display: none; }

  .stays-cards { flex-wrap: nowrap; transform: none !important; gap: 16px; padding-left: 0; }

  .stay-card { flex-shrink: 0; width: 80vw; scroll-snap-align: center; }

  .stays-nav { display: none; }

  .stays-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 12px;
    margin-bottom: 40px;
  }

  .stays-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.25;
    transition: opacity 0.25s, transform 0.25s;
    flex-shrink: 0;
  }

  .stays-dot--active { opacity: 1; transform: scale(1.3); }

  .group-card {
    height: clamp(380px, 95vw, 480px);
    padding: 28px;
    align-items: center;
    justify-content: center;
  }

  .group-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .group-btns { flex-direction: column; }
  .group-btns .btn { width: 100%; text-align: center; }

  /* ─ AMENITIES SLIDER ─ */
  .amenities-wrap { padding-top: 60px; }

  .amenities-header { margin-bottom: 32px; }

  .amenities-cards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 20px;
  }

  .amenities-cards::-webkit-scrollbar { display: none; }

  .amenity-card {
    flex-shrink: 0;
    width: 80vw;
    scroll-snap-align: center;
  }

  .amenity-card--coin { min-height: 380px; }

  .amenity-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
  }

  .amenity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.2;
    transition: opacity 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
  }

  .amenity-dot--active {
    opacity: 1;
    transform: scale(1.3);
  }

  /* ─ ADDITIONAL SERVICES ─ */
  .additional-wrap { padding-top: 60px; }

  .additional-panels { grid-template-columns: 1fr; }

  .add-panel { height: clamp(340px, 85vw, 480px); }

  .add-panel-content { padding: 24px; text-align: center; }

  .add-tags { align-items: center; }

  /* ─ EMERGENCY ─ */
  .section-emergency { padding: 80px var(--pad); }

  .emergency-cta-wrap { width: 100%; max-width: 420px; }

  .btn-emergency { width: 100%; }

  .emergency-services { flex-direction: column; align-items: center; gap: 36px; }

  .emergency-service { max-width: 320px; width: 100%; }

  /* ─ DINING ─ */
  .section-dining { padding: 70px var(--pad); border-radius: 24px 24px 0 0; }

  .dining-header { margin-bottom: 40px; }

  .dining-layout { flex-direction: column; }

  .menu-card {
    justify-content: flex-start;
    gap: 10px;
    min-height: unset;
  }

  .dining-photo-wrap {
    min-height: clamp(240px, 65vw, 340px);
    border-radius: 20px;
  }

  .dining-info { gap: 24px; }

  .dining-quote {
    border-left: none;
    border-top: 4px solid var(--green);
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }

  .dining-menu { grid-template-columns: 1fr; }

  .menu-stamp-wrap { display: none; }

  /* ─ CAROUSEL ─ */
  .section-carousel { padding: 70px 0 90px; }

  /* ─ REVIEWS ─ */
  .section-reviews { padding: 0 var(--pad) 80px; }

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

  .review-card { padding: 32px 24px; }

  /* ─ FIND US ─ */
  .section-findus { padding: 0 var(--pad) 60px; }

  .findus-layout { flex-direction: column; }

  .findus-card { padding: 28px; text-align: center; }

  .findus-card-block { align-items: center; }

  .findus-contact { align-items: center; }

  .findus-landmarks { align-items: center; }

  .findus-landmarks li { text-align: center; }

  .findus-hours-grid { grid-template-columns: 1fr 1fr; text-align: left; }

  .findus-map-wrap { min-height: 300px; border-radius: 20px; }

  /* ─ FOOTER ─ */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}
