/* ============================================================
   Deepti Ecostays — landing page styles
   Palette drawn from the brand emblem: cream, forest, gold.
   ============================================================ */

:root {
  --cream: #F5EFE3;
  --cream-soft: #FBF7EE;
  --cream-deep: #EDE4D0;
  --pine: #1E3527;
  --pine-deep: #14261B;
  --forest: #33593B;
  --moss: #5F7D57;
  --gold: #C9992E;
  --gold-soft: #E3B84D;
  --ink: #22301F;
  --ink-soft: rgba(34, 48, 31, 0.72);
  --line: rgba(30, 53, 39, 0.16);
  --line-light: rgba(245, 239, 227, 0.22);
  --logo-sun: var(--gold);
  --shadow-soft: 0 20px 60px rgba(20, 38, 27, 0.16);
  --radius: 20px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Helvetica Neue", sans-serif;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-weight: 340;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--pine-deep); }

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

a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 420; line-height: 1.08; letter-spacing: -0.015em; }

h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); color: var(--pine); }
h2 em, h1 em { font-style: italic; color: var(--gold); font-weight: 380; }
h2.center { text-align: center; }

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

.section { padding: clamp(84px, 10vw, 140px) 0; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream-deep); }
::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 8px; border: 2px solid var(--cream-deep); }

/* ---------- Eyebrow labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 560;
  color: var(--forest);
  margin-bottom: 18px;
}
.eyebrow-leaf { width: 14px; height: 14px; color: var(--gold); flex: none; }
.eyebrow.center { display: flex; justify-content: center; width: fit-content; margin-inline: auto; }
.eyebrow.light { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 520;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, background 0.35s, color 0.35s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: var(--pine-deep); box-shadow: 0 12px 30px rgba(201, 153, 46, 0.35); }
.btn-gold:hover { background: var(--gold-soft); box-shadow: 0 18px 40px rgba(201, 153, 46, 0.45); }

.btn-ghost { border: 1.5px solid rgba(245, 239, 227, 0.55); color: var(--cream-soft); background: rgba(20, 38, 27, 0.18); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(245, 239, 227, 0.14); border-color: var(--cream-soft); }

.btn-green { background: var(--pine); color: var(--cream-soft); box-shadow: 0 12px 30px rgba(20, 38, 27, 0.28); }
.btn-green:hover { background: var(--forest); }

.btn-ghost-dark { border: 1.5px solid var(--line); color: var(--pine); background: transparent; }
.btn-ghost-dark:hover { border-color: var(--pine); background: rgba(30, 53, 39, 0.05); }

.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease 0.1s, visibility 0.7s ease 0.1s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; color: var(--forest); }
.preloader-logo { width: clamp(110px, 16vw, 150px); height: auto; overflow: visible; }

.pl-draw {
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: pl-draw 1.4s cubic-bezier(0.6, 0, 0.2, 1) forwards;
}
.pl-d2 { stroke-dasharray: 80; stroke-dashoffset: 80; animation-delay: 0.45s; animation-duration: 0.9s; }
.pl-fade { opacity: 0; animation: pl-fade 0.8s ease forwards 0.9s; }
.pl-f2 { animation-delay: 1.05s; }
.pl-f3 { animation-delay: 1.2s; }

@keyframes pl-draw { to { stroke-dashoffset: 0; } }
@keyframes pl-fade { to { opacity: 1; } }

.preloader-word {
  margin-top: 22px;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  font-weight: 540;
  color: var(--forest);
  opacity: 0;
  animation: pl-fade 0.9s ease forwards 1.1s;
}

/* Hold page still while preloading */
body.is-loading { overflow: hidden; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
  color: var(--cream-soft);
}
.nav.scrolled {
  background: rgba(245, 239, 227, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(20, 38, 27, 0.1);
  color: var(--pine);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; color: currentColor; --logo-leaf: currentColor; }
.nav.scrolled .brand-mark { --logo-leaf: var(--forest); color: var(--forest); }
.brand-text { font-family: var(--font-display); font-size: 1.22rem; font-weight: 480; letter-spacing: 0.01em; white-space: nowrap; }
.brand-text em { font-style: italic; color: var(--gold-soft); }
.nav.scrolled .brand-text em { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav-links > a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 460;
  letter-spacing: 0.04em;
  opacity: 0.9;
  position: relative;
  padding: 6px 0;
  transition: opacity 0.3s;
}
.nav-links > a:hover { opacity: 1; }
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 9px 18px !important;
  font-weight: 540 !important;
  transition: background 0.35s, color 0.35s;
}
.nav-cta svg { width: 15px; height: 15px; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--pine-deep) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 46px;
  height: 46px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  align-items: center;
}
.nav-toggle span { display: block; width: 18px; height: 1.8px; background: currentColor; transition: transform 0.35s ease, opacity 0.35s; }
.nav.open .nav-toggle span:first-child { transform: translateY(4.4px) rotate(45deg); }
.nav.open .nav-toggle span:last-child { transform: translateY(-4.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream-soft);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform-origin: center;
  animation: hero-zoom 9s cubic-bezier(0.2, 0.6, 0.3, 1) forwards;
  will-change: transform;
}
@keyframes hero-zoom { from { transform: scale(1.12); } to { transform: scale(1.02); } }

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 38, 27, 0.5) 0%, rgba(20, 38, 27, 0.08) 32%, rgba(20, 38, 27, 0.14) 58%, rgba(15, 29, 20, 0.82) 100%);
}

.hero-inner { position: relative; z-index: 2; padding-bottom: clamp(96px, 13vh, 150px); }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.74rem;
  font-weight: 540;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.7rem, 6.5vw, 5.4rem);
  max-width: 13ch;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-sub {
  max-width: 54ch;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 320;
  color: rgba(251, 247, 238, 0.88);
  margin-bottom: 38px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-price {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(96px, 13vh, 150px);
  text-align: right;
  border-right: 2px solid var(--gold);
  padding-right: 18px;
}
.hero-price-amount { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 460; line-height: 1; }
.hero-price-unit { display: block; margin-top: 8px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251, 247, 238, 0.75); }

.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(251, 247, 238, 0.8);
}
.hero-scroll-line { width: 1.5px; height: 44px; background: rgba(251, 247, 238, 0.4); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scroll-drip 2.2s cubic-bezier(0.6, 0, 0.3, 1) infinite;
}
@keyframes scroll-drip { 0% { top: -50%; } 100% { top: 110%; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--pine);
  color: var(--cream-soft);
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid rgba(201, 153, 46, 0.35);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-group { display: flex; align-items: center; flex: none; }
.marquee-group span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 380;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0 26px;
}
.marquee-group i { color: var(--gold); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about { background: var(--cream); position: relative; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-copy h2 { margin-bottom: 26px; max-width: 20ch; }
.about-copy p:not(.eyebrow) { color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; }

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 34px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stats strong { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 460; color: var(--forest); line-height: 1.1; }
.stats span { font-size: 0.86rem; color: var(--ink-soft); }

.about-media { position: relative; padding-bottom: 70px; }
.about-photo-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-photo-main img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.about-photo-float {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: min(46%, 240px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(20, 38, 27, 0.3);
  border: 5px solid var(--cream-soft);
  background: var(--cream-soft);
}
.about-photo-float img { aspect-ratio: 3 / 3.6; object-fit: cover; width: 100%; }
.about-photo-float figcaption {
  font-size: 0.72rem;
  padding: 10px 12px;
  color: var(--ink-soft);
  background: var(--cream-soft);
  letter-spacing: 0.02em;
}

/* Amenities */
.amenities { margin-top: clamp(80px, 9vw, 130px); text-align: center; }
.amenities-title { font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--pine); margin-bottom: clamp(38px, 5vw, 60px); font-family: var(--font-display); font-weight: 420; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}
.amenity {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
}
.amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(201, 153, 46, 0.5); }
.amenity svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 16px; }
.amenity h4 { font-family: var(--font-body); font-weight: 560; font-size: 0.98rem; color: var(--pine); margin-bottom: 8px; }
.amenity p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Journey (scroll-tracked SVG) ---------- */
.journey {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 153, 46, 0.12), transparent 60%),
    var(--pine);
  color: var(--cream-soft);
  overflow: hidden;
}
.journey-title { text-align: center; color: var(--cream-soft); margin-bottom: clamp(60px, 8vw, 110px); }
.journey-title em { color: var(--gold-soft); }

.journey-map { position: relative; }
.journey-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.journey-path-ghost,
.journey-path {
  fill: none;
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}
.journey-path-ghost { stroke: rgba(251, 247, 238, 0.14); stroke-dasharray: 0.012 0.008; }
.journey-path {
  stroke: var(--gold);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 6px rgba(201, 153, 46, 0.55));
}

.journey-marker {
  position: absolute;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--pine-deep);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 7px rgba(201, 153, 46, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 3;
}
.journey-marker.on { opacity: 1; }
.journey-marker svg { width: 19px; height: 19px; }

.journey-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(90px, 13vw, 170px);
  padding: clamp(30px, 5vw, 60px) 0;
}
.journey-step {
  width: min(46%, 430px);
  background: rgba(251, 247, 238, 0.055);
  border: 1px solid rgba(251, 247, 238, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  transition: border-color 0.4s, background 0.4s;
}
.journey-step:hover { border-color: rgba(201, 153, 46, 0.55); background: rgba(251, 247, 238, 0.085); }
.journey-step.left { align-self: flex-start; margin-left: clamp(0px, 4vw, 60px); }
.journey-step.right { align-self: flex-end; margin-right: clamp(0px, 4vw, 60px); }
.journey-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-soft);
  display: inline-block;
  margin-bottom: 10px;
}
.journey-step h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--cream-soft); }
.journey-step p { font-size: 0.94rem; font-weight: 300; color: rgba(251, 247, 238, 0.78); }

.journey-cta { text-align: center; margin-top: clamp(70px, 9vw, 110px); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream-deep); }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(36px, 5vw, 56px); flex-wrap: wrap; }
.gallery-head p { max-width: 40ch; color: var(--ink-soft); }

.carousel { position: relative; }
.carousel-viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  touch-action: pan-y;
  cursor: grab;
}
.carousel-viewport.dragging { cursor: grabbing; }
.carousel-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.carousel-slide { flex: 0 0 100%; position: relative; }
.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.carousel-slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 30px 24px;
  background: linear-gradient(180deg, transparent, rgba(15, 29, 20, 0.78));
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  letter-spacing: 0.01em;
}

.carousel-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
}
.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--cream-soft);
  color: var(--pine);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.35s, color 0.35s, transform 0.35s, border-color 0.35s;
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn:hover { background: var(--pine); border-color: var(--pine); color: var(--cream-soft); transform: translateY(-2px); }

.carousel-dots { display: flex; gap: 9px; }
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 53, 39, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.35s;
}
.carousel-dots button.active { background: var(--gold); width: 26px; border-radius: 6px; }

.carousel-count {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  min-width: 64px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* ---------- Host ---------- */
.host { background: var(--cream); }
.host-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}
.host-photo {
  border-radius: 240px 240px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--cream-soft);
  max-width: 400px;
  justify-self: center;
}
.host-photo img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.host-copy h2 { margin-bottom: 24px; max-width: 22ch; font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.host-copy p:not(.eyebrow) { color: var(--ink-soft); margin-bottom: 16px; max-width: 58ch; }
.host-sign { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--pine) !important; margin-top: 26px; }
.host-sign span { font-family: var(--font-body); font-style: normal; font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Tariff ---------- */
.tariff {
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(201, 153, 46, 0.14), transparent 55%),
    var(--cream-deep);
}
.tariff h2 { margin-bottom: clamp(40px, 5vw, 60px); }

.tariff-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-soft);
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 60px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.tariff-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
}

.tariff-price { display: flex; flex-direction: column; justify-content: center; padding-right: clamp(20px, 4vw, 50px); border-right: 1px solid var(--line); }
.tariff-amount { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 480; color: var(--pine); line-height: 1; }
.tariff-unit { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; font-weight: 540; color: var(--gold); margin-top: 10px; }
.tariff-note { font-size: 0.84rem; color: var(--ink-soft); margin-top: 14px; max-width: 20ch; }

.tariff-includes h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}
.tariff-includes h3 + ul { margin-bottom: 24px; }
.tariff-includes ul { list-style: none; }
.tariff-includes li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.tariff-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22 C12 12 14 6 22 2 C20 12 18 18 12 22 Z M12 22 C12 14 10 8 2 4 C4 12 7 18 12 22 Z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22 C12 12 14 6 22 2 C20 12 18 18 12 22 Z M12 22 C12 14 10 8 2 4 C4 12 7 18 12 22 Z"/></svg>') center / contain no-repeat;
}

.tariff-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 16px; padding-top: 8px; }
.tariff-platforms {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.tariff-platforms strong { color: var(--pine); font-weight: 560; }

/* ---------- Rules ---------- */
.rules { background: var(--cream); }
.rules-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 60px); }
.rules-head p { color: var(--ink-soft); margin-top: 14px; }

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rule {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: var(--cream-soft);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
}
.rule:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(51, 89, 59, 0.4); }
.rule-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  display: inline-block;
  margin-bottom: 12px;
}
.rule h3 { font-family: var(--font-body); font-size: 0.99rem; font-weight: 580; color: var(--pine); margin-bottom: 8px; line-height: 1.35; }
.rule p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; }

.rules-fineprint {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(201, 153, 46, 0.1);
  border: 1px solid rgba(201, 153, 46, 0.35);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.rules-fineprint svg { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 3px; }
.rules-fineprint p { font-size: 0.86rem; color: var(--ink-soft); }
.rules-fineprint strong { color: var(--pine); }

/* ---------- Location ---------- */
.location { background: var(--cream-deep); }
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.location-copy h2 { margin-bottom: 24px; }
.location-copy address {
  font-style: normal;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.location-copy address strong { color: var(--pine); font-size: 1.05rem; }
.location-coords { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--moss); }
.location-copy p:not(.eyebrow) { color: var(--ink-soft); margin-bottom: 26px; max-width: 50ch; }
.location-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.location-map {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--cream-soft);
  min-height: 420px;
  height: 100%;
  background: var(--cream-soft);
}
.location-map::before {
  content: "Map loading… if it doesn't appear, tap “Get directions”.";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--moss);
  font-size: 0.9rem;
  font-style: italic;
  font-family: var(--font-display);
}
.location-map iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Book / Footer ---------- */
.book {
  background:
    radial-gradient(1000px 500px at 50% 0%, rgba(201, 153, 46, 0.16), transparent 60%),
    var(--pine-deep);
  color: var(--cream-soft);
  padding-top: clamp(90px, 11vw, 150px);
}
.book-inner { text-align: center; padding-bottom: clamp(80px, 10vw, 130px); }
.book-logo { width: 84px; height: 84px; color: var(--cream-soft); --logo-leaf: var(--gold-soft); margin-bottom: 30px; display: inline-block; }
.book h2 { color: var(--cream-soft); font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin-bottom: 20px; }
.book h2 em { color: var(--gold-soft); }
.book-inner p { color: rgba(251, 247, 238, 0.78); max-width: 46ch; margin: 0 auto 40px; }
.book-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }

.footer { border-top: 1px solid var(--line-light); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 54px 0 40px;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand .brand-mark { width: 52px; height: 52px; color: var(--cream-soft); --logo-leaf: var(--gold-soft); flex: none; }
.footer-name { font-family: var(--font-display); font-size: 1.3rem; }
.footer-tagline { font-size: 0.8rem; color: rgba(251, 247, 238, 0.6); letter-spacing: 0.06em; margin-top: 4px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; font-size: 0.88rem; color: rgba(251, 247, 238, 0.75); transition: color 0.3s; width: fit-content; }
.footer-links a:hover { color: var(--gold-soft); }

.footer-legal { font-size: 0.86rem; color: rgba(251, 247, 238, 0.75); display: flex; flex-direction: column; gap: 8px; }
.footer-legal strong { color: var(--cream-soft); }
.footer-legal a { color: var(--gold-soft); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0 26px;
  border-top: 1px solid var(--line-light);
  font-size: 0.76rem;
  color: rgba(251, 247, 238, 0.5);
  letter-spacing: 0.04em;
}

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(20, 38, 27, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.fab svg { width: 28px; height: 28px; }
.fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 44px rgba(20, 38, 27, 0.45); }
.fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: fab-pulse 2.4s ease-out infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(0.85); opacity: 1; }
  70%, 100% { transform: scale(1.25); opacity: 0; }
}

/* ---------- Reveal animations ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
html.js [data-reveal].revealed { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --nav-h: 68px; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--pine-deep);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    z-index: -1;
  }
  .nav.open .nav-links { opacity: 1; visibility: visible; }
  .nav-links > a {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    color: var(--cream-soft);
    padding: 10px 0;
    opacity: 1;
  }
  .nav-links > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 26px; border-color: var(--gold); color: var(--gold-soft) !important; font-size: 1.05rem !important; }
  .nav.open { color: var(--cream-soft); }
  .nav-toggle { display: flex; }

  .hero { flex-direction: column; justify-content: flex-end; align-items: stretch; padding: calc(var(--nav-h) + 40px) 0 72px; }
  .hero-inner { order: 1; padding-bottom: 0; }
  .hero-price { position: static; order: 2; z-index: 2; align-self: flex-start; margin: 36px 20px 0; text-align: left; border-right: 0; border-left: 2px solid var(--gold); padding: 0 0 0 16px; }
  .hero-scroll { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 560px; }

  .journey-svg, .journey-marker { display: none; }
  .journey-steps { gap: 26px; padding-left: 26px; border-left: 2px solid rgba(201, 153, 46, 0.5); }
  .journey-step { width: 100%; margin: 0 !important; }

  .host-grid { grid-template-columns: 1fr; }
  .host-photo { max-width: 330px; }

  .tariff-card { grid-template-columns: 1fr; }
  .tariff-price { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 26px; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 320px; }
  .location-map iframe { min-height: 320px; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 40px); }
  .hero { padding-bottom: 44px; }
  .hero-eyebrow { margin-bottom: 14px; font-size: 0.68rem; }
  .hero-title { font-size: clamp(2.1rem, 9.4vw, 2.6rem); margin-bottom: 18px; }
  .hero-sub { margin-bottom: 26px; font-size: 0.97rem; }
  .hero-price { margin-top: 26px; }
  .hero-price-amount { font-size: 1.9rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .carousel-slide img { aspect-ratio: 4 / 4.4; }
  .carousel-ui { gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .book-cta .btn { width: 100%; justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .fab { right: 16px; bottom: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .hero-media img { animation: none; transform: none; height: 100%; }
  .journey-path { stroke-dashoffset: 0 !important; }
}
