/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
  --forest: #2B3D2F;
  --forest-deep: #1A2B1E;
  --moss: #4A6B52;
  --sage: #7A9B82;
  --lake: #5B8C7A;
  --lake-light: #8BBAA8;
  --amber: #C4944A;
  --amber-light: #D4AA6A;
  --amber-glow: #E8C48A;
  --bark: #5C4033;
  --bark-light: #7A5C4A;
  --cream: #F4EDE4;
  --cream-warm: #EDE4D6;
  --fog: #DDD6CA;
  --mist: #C8BFB2;
  --stone: #8A8278;
  --charcoal: #2A2A25;
  --night: #1A1A16;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(26, 43, 30, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 2.5rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo svg {
  width: 28px;
  height: 28px;
  fill: var(--amber);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  color: rgba(244, 237, 228, 0.8);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.4s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--amber);
  color: var(--night);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav__cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* Language switcher */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(244, 237, 228, 0.2);
  color: rgba(244, 237, 228, 0.8);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  background: transparent;
}
.lang-switcher__current:hover {
  border-color: rgba(244, 237, 228, 0.4);
  color: var(--cream);
}
.lang-switcher__current svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.lang-switcher.open .lang-switcher__current svg {
  transform: rotate(180deg);
}
.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(26, 43, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 237, 228, 0.1);
  border-radius: 10px;
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s var(--ease-out-expo);
  min-width: 120px;
  z-index: 110;
}
.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 7px;
  font-size: 0.75rem;
  color: rgba(244, 237, 228, 0.7);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.lang-switcher__option:hover {
  background: rgba(244, 237, 228, 0.08);
  color: var(--cream);
}
.lang-switcher__option.active {
  color: var(--amber);
  font-weight: 500;
}
.lang-switcher__flag {
  font-size: 1rem;
  line-height: 1;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--forest-deep);
  padding-top: 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1750951687807-72ed93f8c7ef?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* Dark overlay for readability */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26, 43, 30, 0.75) 0%, rgba(26, 43, 30, 0.4) 60%, rgba(26, 43, 30, 0.3) 100%),
    linear-gradient(to top, rgba(26, 43, 30, 0.6) 0%, transparent 40%);
  z-index: 1;
}

/* Mist overlay */
.hero__mist {
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 40%;
  z-index: 3;
  background:
    radial-gradient(ellipse 60% 100% at 20% 100%, rgba(244, 237, 228, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 100%, rgba(244, 237, 228, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(244, 237, 228, 0.08) 0%, transparent 70%);
  animation: mistDrift 12s ease-in-out infinite alternate;
}

@keyframes mistDrift {
  0% { transform: translateX(0); opacity: 0.7; }
  100% { transform: translateX(3%); opacity: 1; }
}

/* Subtle noise texture */
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Decorative tree silhouettes */
.hero__trees {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  z-index: 2;
}
.hero__trees svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  fill: var(--forest-deep);
  opacity: 0.3;
}

/* Water reflection line */
.hero__water {
  position: absolute;
  bottom: 15%;
  left: 5%;
  right: 5%;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent 0%, rgba(139, 186, 168, 0.3) 20%, rgba(139, 186, 168, 0.5) 50%, rgba(139, 186, 168, 0.3) 80%, transparent 100%);
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(196, 148, 74, 0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 0 5%;
  max-width: 800px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 0.3s forwards;
}
.hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--amber-glow);
  font-weight: 400;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(244, 237, 228, 0.7);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.9s forwards;
}

.btn-primary {
  background: var(--amber);
  color: var(--night);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 148, 74, 0.3);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  color: rgba(244, 237, 228, 0.8);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover { color: var(--cream); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(244, 237, 228, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.5s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(244, 237, 228, 0.5), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 1px;
  height: 50px;
  background: var(--amber);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50px; }
  100% { top: 50px; }
}

/* ═══════════════════════════════════════════
   SECTION SHARED STYLES
═══════════════════════════════════════════ */
.section {
  padding: var(--space-2xl) 5%;
}
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1rem;
}
.section__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--moss);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section__title em {
  font-style: italic;
  color: var(--moss);
}

/* ═══════════════════════════════════════════
   INTRO / ABOUT
═══════════════════════════════════════════ */
.intro {
  background: var(--cream);
  position: relative;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.intro__text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.intro__stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--fog);
}
.intro__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest-deep);
  line-height: 1;
}
.intro__stat-label {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.intro__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}
.intro__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 70%, rgba(196, 148, 74, 0.15) 0%, transparent 40%);
}
/* Decorative SVG lake illustration inside visual */
.intro__visual svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.2;
}
.intro__visual-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(26, 43, 30, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 300;
  z-index: 2;
}

/* ═══════════════════════════════════════════
   CABINS SECTION
═══════════════════════════════════════════ */
.cabins {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cabins::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 107, 82, 0.15) 0%, transparent 70%);
}
.cabins .section__label { color: var(--amber); }
.cabins .section__label::before { background: var(--amber); }
.cabins .section__title { color: var(--cream); }
.cabins .section__title em { color: var(--amber-glow); }

.cabins__header {
  max-width: 600px;
  margin-bottom: var(--space-xl);
}
.cabins__header p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(244, 237, 228, 0.6);
  line-height: 1.7;
  margin-top: 1rem;
}

.cabins__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.cabin-card {
  background: rgba(244, 237, 228, 0.05);
  border: 1px solid rgba(244, 237, 228, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s ease, background 0.4s ease;
  position: relative;
}
.cabin-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 148, 74, 0.3);
  background: rgba(244, 237, 228, 0.08);
}

.cabin-card__image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.cabin-card__image-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out-expo);
}
.cabin-card:hover .cabin-card__image-bg {
  transform: scale(1.05);
}

.cabin-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 26, 22, 0.6);
  backdrop-filter: blur(10px);
  color: var(--amber);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.cabin-card__body {
  padding: 1.5rem;
}
.cabin-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.cabin-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(244, 237, 228, 0.55);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.cabin-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.cabin-card__feature {
  font-size: 0.7rem;
  color: rgba(244, 237, 228, 0.5);
  background: rgba(244, 237, 228, 0.06);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.cabin-card__feature svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

.cabin-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 237, 228, 0.08);
}
.cabin-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--amber);
}
.cabin-card__price span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(244, 237, 228, 0.4);
  font-weight: 300;
}
.cabin-card__book {
  background: rgba(196, 148, 74, 0.15);
  color: var(--amber);
  border: 1px solid rgba(196, 148, 74, 0.3);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.cabin-card__book:hover {
  background: var(--amber);
  color: var(--night);
  border-color: var(--amber);
}

/* ═══════════════════════════════════════════
   NATURE / GALLERY SECTION
═══════════════════════════════════════════ */
.nature {
  background: var(--cream-warm);
  position: relative;
}

.nature__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-xl);
}
.nature__header .section__label { justify-content: center; }
.nature__header .section__label::before { display: none; }
.nature__header p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-top: 1rem;
}

.nature__gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.gallery-item:hover .gallery-item__bg {
  transform: scale(1.06);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 22, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 400;
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 6 / 10; grid-row: 2 / 4; }
.gallery-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 1 / 6; grid-row: 3 / 4; }
.gallery-item:nth-child(7) { grid-column: 10 / 13; grid-row: 3 / 4; }

/* ═══════════════════════════════════════════
   ACTIVITIES SECTION
═══════════════════════════════════════════ */
.activities {
  background: var(--cream);
  position: relative;
}
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: var(--space-xl) auto 0;
}
.activity-card {
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--fog);
  background: var(--cream);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--moss), var(--lake));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.activity-card:hover::before { transform: scaleX(1); }
.activity-card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(43, 61, 47, 0.08);
}
.activity-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74, 107, 82, 0.12), rgba(91, 140, 122, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.activity-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--moss);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.activity-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
}
.activity-card__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   NEWS / EVENTS SECTION
═══════════════════════════════════════════ */
.news {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.news::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(74, 107, 82, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(91, 140, 122, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.news .section__label {
  color: var(--amber);
}
.news .section__label::before {
  background: var(--amber);
}
.news .section__title {
  color: var(--cream);
}
.news .section__title em {
  color: var(--amber-light);
}
.news__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(244, 237, 228, 0.6);
  text-align: center;
  max-width: 550px;
  margin: 0.5rem auto 0;
  line-height: 1.7;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: var(--space-xl) auto 0;
  position: relative;
  z-index: 2;
}
.news-card {
  background: rgba(244, 237, 228, 0.04);
  border: 1px solid rgba(244, 237, 228, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.news-card:hover {
  background: rgba(244, 237, 228, 0.07);
  border-color: rgba(244, 237, 228, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.news-card__img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-card__badge.event {
  background: var(--amber);
  color: var(--night);
}
.news-card__badge.news-type {
  background: rgba(244, 237, 228, 0.9);
  color: var(--forest-deep);
}
.news-card__body {
  padding: 1.5rem;
}
.news-card__date {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.news-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.news-card__excerpt {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(244, 237, 228, 0.55);
  line-height: 1.7;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber);
  margin-top: 1rem;
  transition: gap 0.3s ease;
}
.news-card__link:hover { gap: 0.7rem; }
.news-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.news__cta {
  text-align: center;
  margin-top: var(--space-lg);
  position: relative;
  z-index: 2;
}
.news__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(244, 237, 228, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
}
.news__cta a:hover {
  background: rgba(244, 237, 228, 0.08);
  border-color: rgba(244, 237, 228, 0.35);
}
.news__cta a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .news__grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .news__grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   BOOKING OVERLAY — MULTI-STEP
═══════════════════════════════════════════ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 26, 22, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}
.booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Booking header */
.booking__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: var(--forest-deep);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}
.booking__topbar-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.booking__topbar-title svg {
  width: 22px;
  height: 22px;
  fill: var(--amber);
}
.booking__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244, 237, 228, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  color: var(--cream);
}
.booking__close:hover { background: rgba(244, 237, 228, 0.2); }
.booking__close svg { width: 18px; height: 18px; stroke: currentColor; }

/* Progress steps */
.booking__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 2.5rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.booking__step-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.4s ease;
  white-space: nowrap;
}
.booking__step-indicator.active { color: var(--forest-deep); }
.booking__step-indicator.completed { color: var(--moss); }
.booking__step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.booking__step-indicator.active .booking__step-num {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}
.booking__step-indicator.completed .booking__step-num {
  border-color: var(--moss);
  background: var(--moss);
  color: white;
}
.booking__step-line {
  width: 60px;
  height: 2px;
  background: var(--fog);
  margin: 0 0.75rem;
  position: relative;
  flex-shrink: 0;
}
.booking__step-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--moss);
  transition: width 0.5s var(--ease-out-expo);
}
.booking__step-line.filled::after { width: 100%; }

/* Step content area */
.booking__body {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 2.5rem 3rem;
  width: 100%;
}

.booking__step {
  display: none;
  animation: bookingStepIn 0.5s var(--ease-out-expo);
}
.booking__step.active { display: block; }
@keyframes bookingStepIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking__step-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
  text-align: center;
}
.booking__step-title em {
  font-style: italic;
  color: var(--moss);
}
.booking__step-subtitle {
  font-size: 0.95rem;
  color: var(--stone);
  font-weight: 300;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Step 1: Cabin selection */
.booking__cabins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.booking__cabin-option {
  border: 2px solid var(--fog);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  background: white;
}
.booking__cabin-option:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(43, 61, 47, 0.1);
}
.booking__cabin-option.selected {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(43, 61, 47, 0.15);
}
.booking__cabin-option.selected .booking__cabin-check {
  opacity: 1;
  transform: scale(1);
}
.booking__cabin-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.booking__cabin-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s var(--ease-out-expo);
}
.booking__cabin-check svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 3; }
.booking__cabin-info {
  padding: 1.25rem;
}
.booking__cabin-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest-deep);
  margin-bottom: 0.25rem;
}
.booking__cabin-meta {
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 300;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.booking__cabin-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.booking__cabin-meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--stone);
  fill: none;
  stroke-width: 1.5;
}

/* Step 2: Dates & guests */
.booking__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.booking__form-grid .form-full { grid-column: 1 / -1; }

.booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.booking__field label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}
.booking__field input,
.booking__field select,
.booking__field textarea {
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--fog);
  border-radius: 12px;
  background: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}
.booking__field input:focus,
.booking__field select:focus,
.booking__field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 155, 130, 0.12);
}

/* Counter field */
.booking__counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1.5px solid var(--fog);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  background: white;
}
.booking__counter-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--forest);
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-weight: 500;
}
.booking__counter-btn:hover {
  background: var(--fog);
}
.booking__counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.booking__counter-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  min-width: 2rem;
  text-align: center;
  flex: 1;
}

/* Availability calendar */
.booking__avail {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.booking__avail-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
}
.booking__calendar {
  background: white;
  border: 1.5px solid var(--fog);
  border-radius: 16px;
  overflow: hidden;
}
.booking__cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--forest-deep);
  color: var(--cream);
}
.booking__cal-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244, 237, 228, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.2s ease;
}
.booking__cal-nav button:hover { background: rgba(244, 237, 228, 0.2); }
.booking__cal-nav button svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.booking__cal-month {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
}
.booking__cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.75rem 0.75rem 0;
  gap: 2px;
}
.booking__cal-weekdays span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0.4rem 0;
}
.booking__cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.25rem 0.75rem 0.75rem;
  gap: 2px;
}
.booking__cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  color: var(--charcoal);
}
.booking__cal-day:hover:not(.booked):not(.empty):not(.past) {
  background: rgba(122, 155, 130, 0.12);
}
.booking__cal-day.empty { cursor: default; }
.booking__cal-day.past {
  color: var(--mist);
  cursor: default;
  opacity: 0.4;
}
.booking__cal-day.today {
  font-weight: 600;
  box-shadow: inset 0 0 0 1.5px var(--sage);
}
.booking__cal-day.booked {
  background: rgba(200, 60, 60, 0.08);
  color: rgba(180, 50, 50, 0.65);
  cursor: not-allowed;
  text-decoration: line-through;
}
.booking__cal-day.selected-start,
.booking__cal-day.selected-end {
  background: var(--forest);
  color: white;
  font-weight: 600;
}
.booking__cal-day.in-range {
  background: rgba(43, 61, 47, 0.1);
  color: var(--forest-deep);
  border-radius: 4px;
}
.booking__cal-legend {
  display: flex;
  gap: 1.25rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--fog);
  flex-wrap: wrap;
}
.booking__cal-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--stone);
}
.booking__cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.booking__cal-legend-dot.avail { background: rgba(122, 155, 130, 0.3); border: 1px solid var(--sage); }
.booking__cal-legend-dot.booked { background: rgba(200, 60, 60, 0.15); border: 1px solid rgba(180, 50, 50, 0.4); }
.booking__cal-legend-dot.selected { background: var(--forest); }
.booking__cal-hint {
  font-size: 0.8rem;
  color: var(--stone);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* Step 4: Confirmation */
.booking__confirm {
  max-width: 600px;
  margin: 0 auto;
}
.booking__confirm-card {
  background: white;
  border: 1.5px solid var(--fog);
  border-radius: 16px;
  overflow: hidden;
}
.booking__confirm-section {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--fog);
}
.booking__confirm-section:last-child { border-bottom: none; }
.booking__confirm-section-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booking__confirm-section-title svg {
  width: 14px;
  height: 14px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
}
.booking__confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}
.booking__confirm-label { color: var(--stone); font-weight: 300; }
.booking__confirm-value { color: var(--charcoal); font-weight: 500; text-align: right; }
.booking__confirm-notice {
  background: rgba(196, 148, 74, 0.08);
  border: 1px solid rgba(196, 148, 74, 0.2);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.booking__confirm-notice svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.booking__confirm-notice p {
  font-size: 0.85rem;
  color: var(--bark);
  line-height: 1.6;
  font-weight: 300;
}

/* Step 3: Contact info */
.booking__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.booking__contact-grid .form-full { grid-column: 1 / -1; }

/* Summary sidebar */
.booking__summary {
  background: var(--forest-deep);
  border-radius: 16px;
  padding: 2rem;
  color: var(--cream);
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.booking__summary-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booking__summary-title svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
}
.booking__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(244, 237, 228, 0.08);
  font-size: 0.85rem;
}
.booking__summary-row:last-child { border-bottom: none; }
.booking__summary-label { color: rgba(244, 237, 228, 0.6); font-weight: 300; }
.booking__summary-value { color: var(--cream); font-weight: 500; }

/* Navigation buttons */
.booking__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 0;
  max-width: 600px;
  margin: 0 auto;
}
.booking__nav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--stone);
  transition: color 0.3s ease;
  padding: 0.75rem 0;
}
.booking__nav-back:hover { color: var(--forest); }
.booking__nav-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.booking__nav-next {
  background: var(--forest);
  color: var(--cream);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease-out-expo);
  margin-left: auto;
}
.booking__nav-next:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43, 61, 47, 0.2);
}
.booking__nav-next svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.booking__nav-next.submit-btn {
  background: var(--amber);
  color: var(--night);
}
.booking__nav-next.submit-btn:hover {
  background: var(--amber-light);
  box-shadow: 0 8px 24px rgba(196, 148, 74, 0.3);
}

/* Success state */
.booking__success {
  text-align: center;
  padding: 4rem 2rem;
}
.booking__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss), var(--lake));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.booking__success-icon svg { width: 32px; height: 32px; stroke: white; fill: none; stroke-width: 2.5; }
.booking__success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
}
.booking__success p {
  font-size: 1rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.7;
  max-width: 450px;
  margin: 0 auto;
}
.booking__success-close {
  margin-top: 2rem;
  background: var(--forest);
  color: var(--cream);
  padding: 0.9rem 2.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
}
.booking__success-close:hover { background: var(--forest-deep); }

@media (max-width: 768px) {
  .booking__topbar { padding: 1rem 1.25rem; }
  .booking__body { padding: 1rem 1.25rem 2rem; }
  .booking__progress { padding: 1.5rem 1.25rem 1rem; }
  .booking__step-indicator span:not(.booking__step-num) { display: none; }
  .booking__step-line { width: 28px; margin: 0 0.4rem; }
  .booking__cabins-grid { grid-template-columns: 1fr; }
  .booking__cal-legend { gap: 0.75rem; }
  .booking__confirm-row { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .booking__form-grid,
  .booking__contact-grid { grid-template-columns: 1fr; }
  .booking__form-grid .form-full,
  .booking__contact-grid .form-full { grid-column: 1; }
  .booking__summary { margin-top: 1.5rem; padding: 1.5rem; }
}

/* ═══════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════ */
.testimonial {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(244, 237, 228, 0.04);
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.testimonial__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(244, 237, 228, 0.9);
  margin-bottom: 2rem;
}
.testimonial__author {
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 500;
}
.testimonial__author span {
  color: rgba(244, 237, 228, 0.4);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   CONTACT / MAP SECTION
═══════════════════════════════════════════ */
.contact {
  background: var(--cream);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact__info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--forest-deep);
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.contact__info h4:first-child { margin-top: 0; }
.contact__info p, .contact__info a {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
}
.contact__info a:hover { color: var(--forest); }

.contact__map {
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--fog);
  position: relative;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--night);
  color: rgba(244, 237, 228, 0.5);
  padding: var(--space-lg) 5%;
}
.footer__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 600;
}
.footer__text {
  font-size: 0.8rem;
}
.footer__credit {
  font-size: 0.7rem;
  color: rgba(244, 237, 228, 0.35);
  margin-top: 1.5rem;
}
.footer__credit a {
  color: rgba(244, 237, 228, 0.5);
  transition: color 0.3s ease;
}
.footer__credit a:hover { color: var(--amber); }
.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer__links a {
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cabins__grid { grid-template-columns: repeat(2, 1fr); }
  .nature__gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 160px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
  .gallery-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 4 / 7; grid-row: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 3 / 5; }
  .gallery-item:nth-child(5) { grid-column: 4 / 7; grid-row: 3 / 4; }
  .gallery-item:nth-child(6) { grid-column: 4 / 7; grid-row: 4 / 5; }
  .gallery-item:nth-child(7) { display: none; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__mobile-toggle { display: flex; }

  .hero__content { padding: 0 6% 12vh; }

  .intro__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .intro__visual { max-height: 400px; }

  .cabins__grid { grid-template-columns: 1fr; max-width: 420px; }

  .activities__grid { grid-template-columns: 1fr; max-width: 500px; }

  .nature__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 160px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: 3 / 4; }
  .gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 4 / 5; }
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) { display: none; }

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

  .footer__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer__links { justify-content: center; }

  .hero__scroll { display: none; }
  .section { padding: var(--space-xl) 5%; }
}

@media (max-width: 480px) {
  .nav { padding: 1rem 1.25rem; }
  .hero__title { font-size: 2.5rem; }
  .intro__stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 43, 30, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 300;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close svg {
  width: 24px;
  height: 24px;
  stroke: var(--cream);
}

/* ═══════════════════════════════════════════
   NEWS LISTING PAGE
═══════════════════════════════════════════ */
.page-nav {
  background: var(--forest-deep);
  backdrop-filter: blur(20px);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.page-nav .nav__logo { color: var(--cream); }

.news-hero {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 6rem 5% 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(74, 107, 82, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(91, 140, 122, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.news-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(244, 237, 228, 0.5);
  margin-bottom: 2rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}
.news-hero__back:hover { color: var(--cream); }
.news-hero__back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.news-hero__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.news-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.news-hero__title em { font-style: italic; color: var(--amber-light); }
.news-hero__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(244, 237, 228, 0.55);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Filter tabs */
.news-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 5% 0;
  background: var(--cream);
}
.news-filter-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--fog);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--stone);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.news-filter-btn:hover {
  border-color: var(--sage);
  color: var(--forest);
}
.news-filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

/* News listing grid */
.news-listing {
  background: var(--cream);
  padding: 2.5rem 5% var(--space-2xl);
}
.news-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.news-listing .news-card {
  background: white;
  border: 1px solid var(--fog);
}
.news-listing .news-card:hover {
  background: white;
  border-color: var(--sage);
  box-shadow: 0 20px 60px rgba(43, 61, 47, 0.08);
}
.news-listing .news-card__date { color: var(--moss); }
.news-listing .news-card__title { color: var(--forest-deep); }
.news-listing .news-card__excerpt { color: var(--stone); }
.news-listing .news-card__link { color: var(--moss); }

@media (max-width: 768px) {
  .news-listing__grid { grid-template-columns: 1fr; }
  .news-hero { padding: 5rem 5% 2.5rem; }
  .page-nav { padding: 1rem 1.25rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .news-listing__grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   ARTICLE PAGE
═══════════════════════════════════════════ */
.article-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  max-height: 520px;
  overflow: hidden;
}
.article-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.article-hero__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 22, 0.85) 0%, rgba(26, 26, 22, 0.3) 50%, rgba(26, 26, 22, 0.15) 100%);
}
.article-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 5%;
  max-width: 820px;
  margin: 0 auto;
  z-index: 2;
}
.article-hero__badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.article-hero__badge.event { background: var(--amber); color: var(--night); }
.article-hero__badge.news-type { background: rgba(244, 237, 228, 0.9); color: var(--forest-deep); }
.article-hero__date {
  font-size: 0.8rem;
  color: rgba(244, 237, 228, 0.6);
  margin-bottom: 0.75rem;
}
.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
}

/* Article body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 5% var(--space-xl);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 2.5rem;
  transition: color 0.3s ease;
}
.article-back:hover { color: var(--forest); }
.article-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest-deep);
  margin: 2.5rem 0 1rem;
}
.article-content h2 em { font-style: italic; color: var(--moss); }
.article-content img {
  width: 100%;
  border-radius: 16px;
  margin: 2rem 0;
}
.article-content blockquote {
  border-left: 3px solid var(--amber);
  padding: 1rem 0 1rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--forest-deep);
  line-height: 1.6;
}
.article-content ul {
  margin: 1rem 0 1.5rem 1.25rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
}
.article-content ul li { margin-bottom: 0.5rem; }

/* Related articles */
.related {
  background: var(--cream-warm);
  padding: var(--space-xl) 5%;
}
.related__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--forest-deep);
  text-align: center;
  margin-bottom: 2.5rem;
}
.related__title em { font-style: italic; color: var(--moss); }
.related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 800px;
  margin: 0 auto;
}
.related .news-card { background: white; border: 1px solid var(--fog); }
.related .news-card:hover { background: white; border-color: var(--sage); box-shadow: 0 20px 60px rgba(43, 61, 47, 0.08); }
.related .news-card__date { color: var(--moss); }
.related .news-card__title { color: var(--forest-deep); }
.related .news-card__excerpt { color: var(--stone); }
.related .news-card__link { color: var(--moss); }

@media (max-width: 768px) {
  .related__grid { grid-template-columns: 1fr; }
  .article-hero { min-height: 300px; }
  .article-hero__content { padding: 2rem 5%; }
}
