:root {
  color-scheme: light;
  --forest: #183f34;
  --forest-2: #0f2c25;
  --moss: #5c7b45;
  --leaf: #25d366;
  --cream: #fbf6ec;
  --sand: #ead8b8;
  --wood: #9c673e;
  --ink: #17211e;
  --muted: #64706b;
  --line: rgba(24, 63, 52, 0.14);
  --shadow: 0 24px 60px rgba(24, 63, 52, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  cursor: none;
}

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: var(--forest-2);
  color: var(--cream);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 84px;
  height: 84px;
  border: 1px solid rgba(251, 246, 236, 0.24);
  border-radius: 999px;
  display: grid;
  place-items: center;
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-mark span {
  width: 38px;
  height: 38px;
  clip-path: polygon(50% 0, 88% 100%, 50% 74%, 12% 100%);
  background: var(--sand);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  pointer-events: none;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--leaf);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(37, 211, 102, 0.8);
  transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease;
}

.cursor-ring.is-active {
  width: 52px;
  height: 52px;
  border-color: rgba(156, 103, 62, 0.7);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 236, 0.9);
  box-shadow: 0 10px 30px rgba(24, 63, 52, 0.09);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  color: var(--forest);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(251, 246, 236, 0.75);
  box-shadow: 0 10px 24px rgba(24, 63, 52, 0.2);
}

.brand-text {
  line-height: 1.05;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24, 63, 52, 0.18);
}

.button-primary {
  background: var(--forest);
  color: white;
}

.button-secondary {
  background: rgba(251, 246, 236, 0.92);
  color: var(--forest);
  border-color: rgba(251, 246, 236, 0.58);
}

.button-whatsapp {
  background: var(--leaf);
  color: #062615;
}

.button-ghost {
  color: var(--forest);
  border-color: var(--line);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: white;
  padding: 130px 0 72px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--parallax, 0));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 31, 26, 0.86), rgba(9, 31, 26, 0.48) 45%, rgba(9, 31, 26, 0.18)), linear-gradient(0deg, rgba(9, 31, 26, 0.68), rgba(9, 31, 26, 0.06) 48%);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
  margin-top: 16px;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
  color: var(--forest-2);
}

h3 {
  font-size: 1.2rem;
  color: var(--forest);
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(251, 246, 236, 0.3);
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.12);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background: white;
}

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

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark .muted {
  color: rgba(255, 255, 255, 0.7);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head p,
.story p,
.muted {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

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

.story-panel {
  border-left: 3px solid var(--wood);
  padding-left: 28px;
}

.story-note {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--forest);
  color: white;
  box-shadow: var(--shadow);
}

.stats-grid,
.pricing-grid,
.partners-grid,
.accommodation-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat,
.step,
.price-card,
.social-card,
.partner-card,
.stay-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(24, 63, 52, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.stat:hover,
.step:hover,
.price-card:hover,
.social-card:hover,
.partner-card:hover,
.stay-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(156, 103, 62, 0.35);
}

.stat {
  padding: 28px;
}

.stat strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  color: var(--forest);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

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

.step {
  counter-increment: steps;
  padding: 28px;
  min-height: 210px;
}

.step::before {
  content: "0" counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-weight: 900;
  margin-bottom: 26px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--forest);
  color: white;
  transform: translateY(-14px);
}

.price-card.featured h3,
.price-card.featured .price {
  color: white;
}

.price-card.featured li,
.price-card.featured .muted {
  color: rgba(255, 255, 255, 0.78);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
}

.price {
  margin: 18px 0;
  font-size: 2.05rem;
  font-weight: 900;
  color: var(--forest-2);
}

.price-card ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  margin: 13px 0;
  color: var(--muted);
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wood);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.price-card .button {
  margin-top: auto;
}

.newsletter-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--forest), #355c43);
  color: white;
  box-shadow: var(--shadow);
}

.newsletter-band h2 {
  color: white;
}

.newsletter-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

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

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

.social-card,
.partner-card {
  padding: 26px;
  min-height: 150px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: var(--sand);
  color: var(--forest);
  font-weight: 950;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 690px;
  margin: 18px auto 0;
}

.site-footer {
  padding: 42px 0;
  background: #0b211c;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  min-width: 58px;
  height: 58px;
  border-radius: 999px;
  padding: 0 20px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
}

.subhero {
  min-height: 58vh;
  padding: 136px 0 72px;
  display: grid;
  align-items: end;
  background: linear-gradient(135deg, rgba(15, 44, 37, 0.88), rgba(24, 63, 52, 0.55)), url("assets/glamping-hero.png") center/cover;
  color: white;
}

.subhero h1 {
  max-width: 880px;
}

.subhero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

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

.stay-card {
  overflow: hidden;
}

.stay-photo {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, rgba(24, 63, 52, 0.94), rgba(156, 103, 62, 0.72)), url("assets/glamping-hero.png") center/cover;
}

.stay-photo span {
  max-width: 240px;
  font-weight: 850;
  line-height: 1.35;
}

.stay-body {
  padding: 24px;
}

.stay-meta {
  margin: 10px 0 14px;
  color: var(--wood);
  font-weight: 850;
}

.stay-body p {
  color: var(--muted);
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 940px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .story-grid,
  .newsletter-band {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .steps-grid,
  .pricing-grid,
  .social-grid,
  .partners-grid,
  .accommodation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 88vh;
    padding-top: 110px;
  }

  .brand-text small {
    display: none;
  }

  .stats-grid,
  .steps-grid,
  .pricing-grid,
  .social-grid,
  .partners-grid,
  .accommodation-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .newsletter-band {
    padding: 28px;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
