/* ============================================
   CHATA MOEL — Premium Wellness Cabin Website
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --c-forest: #2C3E2D;
  --c-forest-deep: #1A2B1C;
  --c-moss: #4A6741;
  --c-moss-light: #6B8F63;
  --c-sage: #8BA888;
  --c-sand: #F5F0E8;
  --c-sand-light: #FAF8F4;
  --c-sand-dark: #E8E0D0;
  --c-stone: #B8AFA3;
  --c-warm: #D4C5B0;
  --c-text: #2A2A25;
  --c-text-light: #6B6860;
  --c-text-muted: #9A9590;
  --c-white: #FEFCF9;
  --c-overlay: rgba(26, 43, 28, 0.65);
  --c-overlay-light: rgba(26, 43, 28, 0.35);

  /* Typography */
  --f-heading: 'DM Serif Display', 'Georgia', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 1.5rem;
  --s-lg: 2.5rem;
  --s-xl: 4rem;
  --s-2xl: 6rem;
  --s-3xl: 8rem;
  --s-section: clamp(5rem, 10vw, 9rem);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-medium: 0.4s ease;
  --t-slow: 0.7s ease;

  /* Borders */
  --radius: 6px;
  --radius-lg: 12px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background-color: var(--c-sand-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--f-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-forest-deep);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  max-width: 65ch;
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-moss);
  margin-bottom: var(--s-md);
  display: block;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  color: var(--c-text-light);
  line-height: 1.8;
  margin-top: var(--s-md);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

section {
  padding: var(--s-section) 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--t-medium);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: var(--c-forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(44, 62, 45, 0.3);
}

.btn--outline {
  border: 1.5px solid var(--c-forest);
  color: var(--c-forest);
  background: transparent;
}

.btn--outline:hover {
  background-color: var(--c-forest);
  color: var(--c-white);
}

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

.btn--white:hover {
  background-color: var(--c-sand);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--ghost {
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn--ghost:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--c-white);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--t-medium);
}

.nav--scrolled {
  background-color: rgba(254, 252, 249, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.nav__logo {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  color: var(--c-white);
  transition: color var(--t-medium);
  letter-spacing: 0.02em;
}

.nav--scrolled .nav__logo {
  color: var(--c-forest-deep);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 450;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: currentColor;
  transition: width var(--t-medium);
}

.nav__link:hover::after {
  width: 100%;
}

.nav--scrolled .nav__link {
  color: var(--c-text);
}

.nav__link:hover {
  color: var(--c-white);
}

.nav--scrolled .nav__link:hover {
  color: var(--c-forest);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav__cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.78rem;
}

.nav--scrolled .nav__cta .btn--ghost {
  border-color: var(--c-forest);
  color: var(--c-white);
  background-color: var(--c-forest);
}

.nav--scrolled .nav__cta .btn--ghost:hover {
  background-color: var(--c-forest-deep);
  color: var(--c-white);
  border-color: var(--c-forest-deep);
}

/* Language switcher */
.nav__lang {
  display: none;  /* hidden in mobile nav by default */
}

.nav__lang--desktop {
  display: block;
}

.nav__lang-btn {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  text-decoration: none;
  transition: all var(--t-fast);
}

.nav__lang-btn:hover {
  color: var(--c-white);
  border-color: rgba(255,255,255,0.5);
  background-color: rgba(255,255,255,0.08);
}

.nav--scrolled .nav__lang-btn {
  color: var(--c-text-light);
  border-color: var(--c-stone);
}

.nav--scrolled .nav__lang-btn:hover {
  color: var(--c-text);
  border-color: var(--c-text);
  background-color: rgba(0,0,0,0.03);
}

.nav__right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Testimonial source badge */
.testimonial__source {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  margin-top: 0.5rem;
}

/* Mobile menu */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav__burger span {
  width: 24px;
  height: 1.5px;
  background-color: var(--c-white);
  transition: all var(--t-fast);
}

.nav--scrolled .nav__burger span {
  background-color: var(--c-text);
}

.nav__burger--active span:nth-child(1) {
  transform: rotate(45deg) translateY(4.5px) translateX(4.5px);
}

.nav__burger--active span:nth-child(2) {
  opacity: 0;
}

.nav__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 43, 28, 0.25) 0%,
    rgba(26, 43, 28, 0.1) 30%,
    rgba(26, 43, 28, 0.45) 60%,
    rgba(26, 43, 28, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding: 0 var(--s-md);
  max-width: 800px;
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--s-md);
}

.hero__title {
  font-family: var(--f-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: var(--s-md);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto var(--s-lg);
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero__actions {
  display: flex;
  gap: var(--s-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Intro Section --- */
.intro {
  background-color: var(--c-sand-light);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-xl);
  align-items: center;
}

.intro__text {
  padding-right: var(--s-lg);
}

.intro__text h2 {
  margin-bottom: var(--s-md);
}

.intro__text p {
  color: var(--c-text-light);
  margin-bottom: var(--s-md);
  font-size: 1.02rem;
}

.intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.intro__image:hover img {
  transform: scale(1.03);
}

/* --- Experience Section --- */
.experience {
  background-color: var(--c-sand);
}

.experience__header {
  text-align: center;
  margin-bottom: var(--s-2xl);
}

.experience__header h2 {
  margin-bottom: var(--s-md);
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.experience__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.experience__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.experience__card:hover img {
  transform: scale(1.05);
}

.experience__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,43,28,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-lg);
  transition: background var(--t-medium);
}

.experience__card:hover .experience__card-overlay {
  background: linear-gradient(0deg, rgba(26,43,28,0.8) 0%, rgba(26,43,28,0.1) 60%);
}

.experience__card h3 {
  color: var(--c-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.experience__card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Features / Benefits --- */
.features {
  background-color: var(--c-sand-light);
}

.features__header {
  text-align: center;
  margin-bottom: var(--s-2xl);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
}

.feature {
  text-align: center;
  padding: var(--s-lg) var(--s-sm);
}

.feature__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--s-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--c-moss);
  stroke-width: 1.5;
  fill: none;
}

.feature h4 {
  margin-bottom: var(--s-xs);
  font-family: var(--f-heading);
}

.feature p {
  font-size: 0.92rem;
  color: var(--c-text-light);
  line-height: 1.7;
  margin: 0 auto;
}

/* --- Gallery --- */
.gallery {
  background-color: var(--c-sand);
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--s-xl);
}

.gallery__strip {
  position: relative;
  overflow: hidden;
}

.gallery__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.gallery__scroll::-webkit-scrollbar {
  display: none;
}

.gallery__item {
  flex: 0 0 calc(25% - 5px);
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 28, 0);
  transition: background var(--t-medium);
}

.gallery__item:hover::after {
  background: rgba(26, 43, 28, 0.08);
}

.gallery__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all var(--t-fast);
  z-index: 2;
}

.gallery__nav-btn:hover {
  background: var(--c-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery__nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-text);
  stroke-width: 2;
  fill: none;
}

.gallery__nav-btn--prev {
  left: 12px;
}

.gallery__nav-btn--next {
  right: 12px;
}

/* --- Wellness --- */
.wellness {
  background-color: var(--c-forest-deep);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.wellness__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.wellness__photos {
  position: relative;
  overflow: hidden;
}

.wellness__photos-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.wellness__slide {
  min-width: 100%;
  height: 100%;
}

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

.wellness__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  z-index: 2;
}

.wellness__nav-btn:hover {
  background: rgba(0,0,0,0.65);
}

.wellness__nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.wellness__nav-btn--prev { left: 12px; }
.wellness__nav-btn--next { right: 12px; }

.wellness__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-xl) var(--s-2xl);
}

.wellness__content .section-label {
  color: var(--c-sage);
}

.wellness__content h2 {
  color: var(--c-white);
  margin-bottom: var(--s-md);
}

.wellness__content > p {
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem;
  margin-bottom: var(--s-md);
}

.wellness__features {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  margin-top: var(--s-lg);
}

.wellness__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
}

.wellness__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(139, 168, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wellness__feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-sage);
  fill: none;
  stroke-width: 1.5;
}

.wellness__feature h4 {
  color: var(--c-white);
  font-family: var(--f-body);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.wellness__feature p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Nature / Location --- */
.nature {
  background-color: var(--c-sand-light);
}

.nature__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--s-xl);
  aspect-ratio: 21/9;
}

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

.nature__hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--c-overlay-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-lg);
}

.nature__hero-overlay h2 {
  color: var(--c-white);
  margin-bottom: var(--s-sm);
}

.nature__hero-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
}

.nature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.nature__card {
  text-align: center;
  padding: var(--s-lg);
}

.nature__card-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: var(--s-md);
}

.nature__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.nature__card:hover .nature__card-image img {
  transform: scale(1.05);
}

.nature__card h3 {
  margin-bottom: var(--s-xs);
}

.nature__card p {
  color: var(--c-text-light);
  font-size: 0.92rem;
  margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials {
  background-color: var(--c-forest-deep);
  color: var(--c-white);
  overflow: hidden;
  padding: 0;
}

.testimonials__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.testimonials__photo {
  position: relative;
  overflow: hidden;
}

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

.testimonials__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-xl) var(--s-2xl);
}

.testimonials__header {
  margin-bottom: var(--s-lg);
}

.testimonials__header .section-label {
  color: var(--c-sage);
}

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

.testimonials__carousel {
  position: relative;
}

.testimonials__viewport {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials__page {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.testimonials__page .testimonial:nth-child(3) {
  display: none;
}

.testimonial {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--s-md) var(--s-lg);
}

/* old divider hidden */
.testimonials__divider {
  display: none;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--s-sm);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: #D4A853;
  stroke: none;
}

.testimonial__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--s-xs);
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--c-white);
}

.testimonial__author span {
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  margin-top: var(--s-lg);
}

.testimonials__nav-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
}

.testimonials__nav-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.testimonials__nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-white);
  stroke-width: 2;
  fill: none;
}

.testimonials__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  padding: 0;
}

.testimonials__dot--active {
  background: var(--c-white);
  width: 24px;
  border-radius: 4px;
}

/* --- Booking / Availability --- */
.booking {
  background-color: var(--c-sand-light);
  color: var(--c-text);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: start;
}

.booking__info .section-label {
  color: var(--c-moss);
}

.booking__info h2 {
  color: var(--c-forest-deep);
  margin-bottom: var(--s-md);
}

.booking__info > p {
  color: var(--c-text-light);
  font-size: 1.02rem;
  margin-bottom: var(--s-lg);
}

.booking__price {
  background-color: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
  margin-bottom: var(--s-lg);
}

.booking__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.booking__price-row:last-child {
  border-bottom: none;
}

.booking__price-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}

.booking__price-value {
  color: var(--c-white);
  font-weight: 600;
  font-size: 1rem;
}

.booking__airbnb {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  margin-top: var(--s-md);
}

.booking__airbnb p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Calendar */
.calendar {
  background-color: var(--c-white);
  border: 1px solid var(--c-sand-dark);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
}

.calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-md);
}

.calendar__title {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-forest-deep);
}

.calendar__nav {
  display: flex;
  gap: 0.5rem;
}

.calendar__nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-sand-dark);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}

.calendar__nav button:hover {
  background-color: var(--c-sand);
  border-color: var(--c-stone);
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
}

.calendar__weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  padding: 0.5rem 0;
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar__day {
  text-align: center;
  padding: 0.4rem 0.2rem;
  font-size: 0.88rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-fast);
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-height: 2.8rem;
}

.calendar__day-num {
  font-weight: 500;
}

.calendar__day-price {
  font-size: 0.6rem;
  opacity: 0.65;
  white-space: nowrap;
}

.calendar__day:hover {
  background-color: var(--c-sand);
}

.calendar__day--empty {
  cursor: default;
}

.calendar__day--empty:hover {
  background: none;
}

.calendar__day--unavailable {
  color: var(--c-stone);
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar__day--unavailable:hover {
  background: none;
}

.calendar__day--selected {
  background-color: var(--c-moss);
  color: var(--c-white);
}

.calendar__day--in-range {
  background-color: rgba(74, 103, 65, 0.15);
  color: var(--c-forest-deep);
}

.calendar__day--today {
  border: 1px solid var(--c-moss);
}

.calendar__legend {
  display: flex;
  gap: var(--s-md);
  margin-top: var(--s-md);
  padding-top: var(--s-md);
  border-top: 1px solid var(--c-sand-dark);
}

.calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.calendar__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.calendar__legend-dot--available {
  background-color: var(--c-stone);
}

.calendar__legend-dot--unavailable {
  background-color: var(--c-sand-dark);
}

.calendar__legend-dot--selected {
  background-color: var(--c-moss);
}

/* Booking Form */
.booking__form {
  margin-top: var(--s-lg);
}

.booking__form-title {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-forest-deep);
  margin-bottom: var(--s-md);
}

.form-group {
  margin-bottom: var(--s-md);
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-text-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--c-white);
  border: 1px solid var(--c-sand-dark);
  border-radius: var(--radius);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.95rem;
  transition: border-color var(--t-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-stone);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--c-moss);
}

.form-group select option {
  background-color: var(--c-white);
  color: var(--c-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-sm);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.booking__submit {
  margin-top: var(--s-md);
}

.booking__submit .btn {
  width: 100%;
  padding: 1rem;
}

.booking__note {
  text-align: center;
  margin-top: var(--s-sm);
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* Price Summary */
#priceSummary {
  display: none;
  margin-top: var(--s-md);
  padding: var(--s-sm) var(--s-md);
  background: rgba(74, 103, 65, 0.08);
  border: 1px solid rgba(74, 103, 65, 0.2);
  border-radius: var(--radius);
}

.price-summary__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-forest-deep);
  font-size: 0.95rem;
}

.price-summary__detail strong {
  font-size: 1.15rem;
}

.price-loading {
  color: var(--c-text-muted);
  font-size: 0.85rem;
}

.price-error {
  color: #e74c3c;
  font-size: 0.85rem;
}

/* Booking Messages */
.booking-success {
  margin-top: var(--s-sm);
  padding: var(--s-sm) var(--s-md);
  background: rgba(74, 103, 65, 0.1);
  border: 1px solid var(--c-moss);
  border-radius: var(--radius);
  color: var(--c-forest-deep);
  font-size: 0.9rem;
}

.booking-success p {
  margin: 0.3rem 0;
}

.booking-error {
  margin-top: var(--s-sm);
  padding: var(--s-sm) var(--s-md);
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: var(--radius);
  color: #e74c3c;
  font-size: 0.9rem;
}

/* --- FAQ --- */
.faq {
  background-color: var(--c-forest-deep);
  color: var(--c-white);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--s-2xl);
}

.faq__header .section-label {
  color: var(--c-sage);
}

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

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq__question {
  width: 100%;
  padding: var(--s-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: color var(--t-fast);
}

.faq__question:hover {
  color: var(--c-white);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: var(--s-sm);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: rgba(255,255,255,0.5);
  transition: transform var(--t-fast);
}

.faq__icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item--active .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-medium), padding var(--t-medium);
}

.faq__answer-inner {
  padding-bottom: var(--s-md);
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- Contact --- */
.contact {
  background-color: var(--c-sand);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: start;
}

.contact__info h2 {
  margin-bottom: var(--s-md);
}

.contact__info > p {
  color: var(--c-text-light);
  font-size: 1.02rem;
  margin-bottom: var(--s-lg);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--c-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-moss);
  fill: none;
  stroke-width: 1.5;
}

.contact__detail h4 {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact__detail p {
  color: var(--c-text-light);
  font-size: 0.9rem;
}

.contact__detail a {
  color: var(--c-forest);
  transition: color var(--t-fast);
}

.contact__detail a:hover {
  color: var(--c-moss);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--c-sand-dark);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Hero Trust & Price --- */
.hero__trust-wrap {
  margin-top: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}

.hero__trust-stars {
  color: #D4A853;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.hero__trust-rating {
  font-weight: 600;
  color: var(--c-white);
}

.hero__price {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
}

/* --- CTA Band --- */
.cta-band {
  background-color: var(--c-moss);
  text-align: center;
  padding: var(--s-xl) 0;
}

.cta-band h2 {
  color: var(--c-white);
  margin-bottom: var(--s-sm);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin: 0 auto var(--s-lg);
}

/* --- Pre-footer CTA --- */
.prefooter-cta {
  background: var(--c-sand);
  text-align: center;
  padding: var(--s-2xl) 0;
}

.prefooter-cta h2 {
  margin-bottom: var(--s-lg);
}

/* --- Booking Trust Badges --- */
.booking__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--c-sage);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* --- Booking Steps --- */
.booking__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--s-lg);
}

.booking__step {
  text-align: center;
}

.booking__step-num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-sand);
  border: 1px solid var(--c-sand-dark);
  color: var(--c-forest-deep);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.booking__step p {
  color: var(--c-text-light);
  font-size: 0.82rem;
  margin: 0;
}

.booking__step-arrow {
  color: var(--c-stone);
  font-size: 1.2rem;
  margin-top: -1rem;
}

/* --- Booking Direct Message --- */
.booking__direct {
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-moss);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* --- Sticky Mobile CTA --- */
.mobile-cta {
  display: none;
}

/* --- Footer --- */
.footer {
  background-color: var(--c-forest-deep);
  color: rgba(255,255,255,0.6);
  padding: var(--s-xl) 0 var(--s-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-xl);
}

.footer__col h4 {
  color: var(--c-white);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: var(--s-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__col p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer__col a {
  transition: color var(--t-fast);
}

.footer__col a:hover {
  color: var(--c-white);
}

.footer__tagline {
  margin-top: var(--s-sm);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer__logo {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  color: var(--c-white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.85rem;
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--c-white);
}

.footer__bottom {
  margin-top: var(--s-lg);
  padding-top: var(--s-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-medium);
}

.lightbox--active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
  border-radius: 50%;
  transition: background var(--t-fast);
}

.lightbox__close:hover {
  background-color: rgba(255,255,255,0.1);
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--t-fast);
}

.lightbox__nav:hover {
  background-color: rgba(255,255,255,0.1);
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* --- Mobile Styles --- */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__nav-btn--prev {
    left: 8px;
  }

  .gallery__nav-btn--next {
    right: 8px;
  }

  .booking__inner {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }

  .testimonials__content {
    padding: var(--s-xl) var(--s-lg);
  }

  .testimonials__split {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  :root {
    --s-section: clamp(3.5rem, 8vw, 6rem);
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--c-forest-deep);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--t-medium);
    z-index: 999;
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__links--open .nav__link {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
  }

  .nav__links--open .nav__link:hover {
    color: var(--c-white);
  }

  .nav__links--open .nav__cta .btn--ghost {
    border-color: rgba(255,255,255,0.5);
    color: var(--c-white);
  }

  .nav__burger {
    display: flex;
  }

  .nav__lang--desktop {
    display: none;
  }

  .nav__links--open .nav__lang {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }

  .nav__links--open .nav__lang .nav__lang-btn {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Grids */
  .intro__grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }

  .intro__text {
    padding-right: 0;
  }

  .intro__image {
    aspect-ratio: 4/3;
  }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: var(--s-md);
  }

  .experience__card {
    aspect-ratio: 3/2;
  }

  .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-md);
  }

  .wellness__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wellness__photos {
    height: 380px;
  }

  .wellness__content {
    padding: var(--s-lg) var(--s-md);
  }

  .nature__hero {
    aspect-ratio: 16/9;
  }

  .nature__grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }

  .testimonials__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .testimonials__photo {
    height: 250px;
  }

  .testimonials__content {
    padding: var(--s-lg) var(--s-md);
  }

  .testimonials__page .testimonial:nth-child(3) {
    display: block;
  }

  .testimonials__page {
    grid-template-columns: 1fr;
    gap: var(--s-sm);
  }

  .testimonials__page .testimonial:nth-child(3) {
    display: block;
  }

  .gallery__item {
    flex: 0 0 calc(50% - 6px);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
    text-align: center;
  }

  .footer__links {
    align-items: center;
  }

  /* Sticky Mobile CTA */
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(254, 252, 249, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    display: none;
    border-top: 1px solid var(--c-sand-dark);
  }

  .mobile-cta--visible {
    display: block;
  }

  .mobile-cta .btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.85rem;
  }

  .booking__steps {
    gap: 0.5rem;
  }

  .booking__step-arrow {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .gallery__carousel {
    margin: 0 -1rem;
  }

  .calendar__weekday {
    font-size: 0.65rem;
  }

  .calendar__day {
    padding: 0.45rem 0;
    font-size: 0.82rem;
  }
}
