:root {
  --brown: #2a1b12;
  --bg:    #e4e4d3;
  --cream: #fffdf6;
  --terra: #c35731;
  --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(--brown);
  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(42, 27, 18, 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;
  display: block;
}

.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(--terra);
}

/* ── 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.51) 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;
}

.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-terra {
  background: var(--terra);
  color: var(--cream);
}

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

.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(--brown);
}

/* ── 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 BROWN (About + Cabins) ───────────────────────── */

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


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

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

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

.about-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--terra);
  opacity: 0.75;
  max-width: 600px;
  text-align: center;
  margin: 0 auto 48px;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-photo {
  height: clamp(220px, 22vw, 340px);
  border-radius: 30px;
  overflow: hidden;
}

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

/* ── CABINS ─────────────────────────────────────────────────── */

.cabins-wrap {
  padding-top: 100px;
}

.cabins-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 48px;
  color: var(--terra);
}

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

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

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

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

.cabin-card {
  flex-shrink: 0;
  width: calc((100% - 140px) / 3);
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cabin-img-wrap {
  padding: 16px 16px 0;
}

.cabin-img-wrap img {
  display: block;
  width: 100%;
  height: clamp(160px, 15vw, 220px);
  object-fit: cover;
  border-radius: 12px;
}

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

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

.cabin-features {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 20px;
}

.cabin-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(--brown);
  padding: 7px 0;
  border-bottom: 1px solid rgba(42, 27, 18, 0.1);
}

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

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

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

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

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

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

.cabin-card .btn-terra {
  width: 100%;
}

.cabins-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.cabin-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 253, 246, 0.12);
  border: 2px solid rgba(255, 253, 246, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

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

.cabin-arrow:hover {
  background: var(--terra);
  border-color: var(--terra);
}


/* ── SECTION LIGHT (Amenities) ─────────────────────────────── */

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

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

.amenities-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
  color: var(--brown);
}

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

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

.amenity-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.amenity-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.amenity-item-title {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brown);
}

.amenity-item-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.5;
  color: var(--brown);
  opacity: 0.7;
}

/* ── DARK WRAP (Explore + Find Us + Footer) ────────────────── */

.section-dark-wrap {
  position: relative;
  z-index: 5;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  overflow: hidden;
}

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

.section-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
}

/* ── SECTION EXPLORE ───────────────────────────────────────── */

.section-explore {
  position: relative;
  z-index: 1;
  padding: 90px var(--pad) 100px;
}

.explore-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.explore-header-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--cream);
}

.explore-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.4;
  opacity: 0.8;
  max-width: 560px;
}

.explore-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.explore-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: clamp(340px, 36vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.explore-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 40%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.78) 100%);
}

.explore-card-title {
  position: relative;
  z-index: 1;
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 26px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
  padding: 24px;
}

.explore-card-desc {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.85;
  padding: 24px;
}

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

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

.findus-terra-card {
  background: var(--terra);
  border-radius: 30px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  color: var(--brown);
}

.findus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
}

.findus-bottom {
  display: flex;
  gap: 48px;
  padding-top: 32px;
}

.findus-card-heading {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(26px, 2.5vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brown);
}

.findus-divider {
  height: 1px;
  background: rgba(42, 27, 18, 0.25);
}

.findus-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  flex: 1;
}

.findus-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.findus-info-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.6;
}

.findus-info-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.3;
  color: var(--brown);
}

.findus-address-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.findus-map-icon {
  width: clamp(52px, 4.5vw, 72px);
  height: auto;
  flex-shrink: 0;
}

.findus-address {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--brown);
}

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

.findus-landmarks-title {
  font-family: 'Maitree', serif;
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 22px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brown);
}

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

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

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

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

.footer-inner {
  border-top: 1px solid rgba(255, 253, 246, 0.2);
  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(--cream);
  opacity: 0.65;
}

.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(--cream);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: center;
}

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

/* ── 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;
}

.cabin-dots { display: none; }

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

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

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

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

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

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

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

  /* ─ NAV ─ */
  .nav-burger { display: flex; }

  .nav-burger { position: relative; z-index: 1; }

  #nav.nav-open {
    bottom: 0 !important;
    background: var(--brown) !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-terra { width: 100%; max-width: 340px; }
  .btn-outline-white { width: 100%; max-width: 340px; }

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

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

  .about-photos { grid-template-columns: 1fr; }

  .about-photo { height: clamp(200px, 60vw, 300px); }

  /* ─ CABINS SLIDER ─ */
  .cabins-wrap { padding-top: 60px; }

  .cabins-header { margin-bottom: 28px; }

  .cabins-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; }

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

  .cabins-track { flex-wrap: nowrap; transform: none !important; gap: 16px; }

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

  .cabins-nav { display: none; }

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

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

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

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

  .amenities-header { align-items: center; text-align: center; }

  .amenities-sub { text-align: center; }

  .amenities-grid { grid-template-columns: 1fr; gap: 40px; }

  .amenity-item { align-items: center; text-align: center; }

  /* ─ DARK WRAP ─ */
  .section-dark-wrap { border-radius: 24px 24px 0 0; }

  /* ─ EXPLORE ─ */
  .section-explore { padding: 70px var(--pad) 80px; }

  .explore-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .explore-cards { grid-template-columns: 1fr; gap: 16px; }

  .explore-card { height: clamp(260px, 75vw, 380px); }

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

  .findus-terra-card { padding: 28px; }
  .findus-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .findus-bottom { flex-direction: column; gap: 28px; }

  .findus-info-grid { grid-template-columns: 1fr; }

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