/* ═══════════════════════════════════════════════
   CHICUYA JUNGLE LODGE — Stylesheet
   Mobile-first · Dark tropical aesthetic · Redesign
═══════════════════════════════════════════════ */

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

:root {
  /* New palette */
  --color-bg:        #0d1f0e;
  --color-bg-alt:    #1a1208;
  --color-green:     #2d5a1b;
  --color-terra:     #c4773a;
  --color-text:      #f2ead8;
  --color-text-muted:#b8a98a;
  --color-accent:    #8ab87a;

  /* Legacy aliases (used throughout) */
  --bg:          var(--color-bg);
  --bg-mid:      #12200f;
  --bg-light:    #182a14;
  --primary:     var(--color-green);
  --primary-light: #3a7022;
  --accent:      var(--color-terra);
  --accent-hover:#d9884a;
  --text:        var(--color-text);
  --text-muted:  var(--color-text-muted);
  --highlight:   var(--color-accent);
  --border:      rgba(242, 234, 216, 0.10);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   10px;
  --transition:  0.3s ease;

  --container:   1200px;
  --gutter:      1.5rem;
  --section-padding: clamp(60px, 8vw, 120px);
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  position: relative;
  overflow-x: clip; /* clip (not hidden) so position:sticky still works for the pinned hero */
}

/* Subtle global grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

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

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

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn--primary {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 119, 58, 0.25);
}
.btn--primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 119, 58, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--text);
  border: 1px solid rgba(242, 234, 216, 0.4);
}
.btn--outline:hover {
  border-color: var(--text);
  background-color: rgba(242, 234, 216, 0.07);
  transform: translateY(-2px);
}

.btn--full {
  display: block;
  width: 100%;
}

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle {
  background: none;
  border: 1px solid rgba(242, 234, 216, 0.25);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle:hover {
  border-color: var(--text);
  color: var(--text);
}
.lang-toggle--mobile {
  font-size: 0.7rem;
  padding: 0.3rem 0.55rem;
}

.nav__right-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.fade-in-up   { opacity: 0; transform: translateY(40px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in      { opacity: 0;                                transition: opacity 0.7s ease; }
.scale-in     { opacity: 0; transform: scale(0.92);        transition: opacity 0.6s ease, transform 0.6s ease; }
.is-visible   { opacity: 1; transform: none; }

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

@media (prefers-reduced-motion: reduce) {
  .fade-in-up, .fade-in-left, .fade-in, .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 1.5rem 0;
}

.nav.scrolled {
  background-color: rgba(13, 31, 14, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.75rem 0;
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
}
.nav__logo-img {
  height: 72px;
  width: auto;
  border-radius: 6px;
  display: block;
  transition: height 0.3s ease;
}
.nav.scrolled .nav__logo-img {
  height: 56px;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1;
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: var(--highlight);
  transition: width var(--transition);
}
.nav__link:hover {
  color: var(--text);
}
.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: var(--accent);
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text);
  transition: all var(--transition);
}

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 2000;
}
.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav__overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.nav__overlay-close:hover {
  color: var(--text);
}

.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.nav__overlay-link {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.nav__overlay-link:hover {
  color: var(--highlight);
}
.nav__overlay-cta {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: var(--accent);
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color var(--transition);
}
.nav__overlay-cta:hover {
  background-color: var(--accent-hover);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 31, 14, 0.35) 0%,
    rgba(13, 31, 14, 0.15) 40%,
    rgba(13, 31, 14, 0.75) 80%,
    rgba(13, 31, 14, 0.95) 100%
  );
  z-index: 1;
}

/* Grain overlay on hero */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--gutter);
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  color: rgba(242, 234, 216, 0.78);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll-icon {
  display: block;
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(242, 234, 216, 0.35);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 2px;
  animation: scroll-dot 2s ease infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ═══════════════════════════════════════════════
   INTRO / PHILOSOPHY
═══════════════════════════════════════════════ */
.intro {
  padding: var(--section-padding) 0 calc(var(--section-padding) * 0.7);
  background-color: var(--bg);
}

.intro__text {
  max-width: 720px;
  margin-bottom: 4rem;
}

.intro__body {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.intro__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pillar {
  padding: 2.25rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 184, 122, 0.3);
}

.pillar__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats {
  padding: calc(var(--section-padding) * 0.8) 0;
  background-color: var(--bg-alt, var(--color-bg-alt));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__number .stat__suffix {
  color: var(--accent);
}

.stat__label {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   BUNGALOWS
═══════════════════════════════════════════════ */
.bungalows {
  padding: var(--section-padding) 0;
  background-color: var(--bg-mid);
}

.section-header {
  margin-bottom: 3.5rem;
}

.bungalows__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.bungalow-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bungalow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.bungalow-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.bungalow-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bungalow-card:hover .bungalow-card__img {
  transform: scale(1.06);
}

.bungalow-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}

.bungalow-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.bungalow-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}

.bungalow-card__target {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.bungalow-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.bungalow-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--highlight);
  background-color: rgba(138, 184, 122, 0.1);
  border: 1px solid rgba(138, 184, 122, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.bungalows__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   ACTIVITIES
═══════════════════════════════════════════════ */
.activities {
  padding: var(--section-padding) 0;
  background-color: var(--bg);
}

.activities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.activity-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.9rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.activity-card:hover {
  border-color: rgba(196, 119, 58, 0.4);
  transform: translateY(-4px);
}

.activity-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.activity-card__body {
  flex: 1;
}

.activity-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.activity-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.activity-card__price {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.activity-card__price--free {
  color: var(--highlight);
}

.activity-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   ATMOSPHERE / THE LODGE
═══════════════════════════════════════════════ */
.atmosphere {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}

.atmosphere__img-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
}

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

.atmosphere__content {
  background-color: var(--bg-mid);
  padding: var(--section-padding) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin-inline: auto;
}

.atmosphere__body {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 1.25rem;
}

.atmosphere__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-top: 2rem;
  max-width: 500px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   ARRIVAL
═══════════════════════════════════════════════ */
.arrival {
  padding: var(--section-padding) 0;
  background-color: var(--bg);
}

.arrival__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.arrival__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.arrival__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.arrival__step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-light);
  opacity: 0.55;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.arrival__step-text h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.arrival__step-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.arrival__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.arrival__whatsapp {
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════
   CONTACT STRIP
═══════════════════════════════════════════════ */
.contact-strip {
  padding: var(--section-padding) 0;
  background-color: var(--bg-mid);
  border-top: 1px solid var(--border);
}

.contact-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-strip__review {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.contact-strip__attribution {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-strip__cta-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.contact-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__logo-img {
  height: auto;
  width: 160px;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  display: block;
  object-fit: contain;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
}

.footer__detail {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 0.25rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__link:hover {
  color: var(--highlight);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET 768px
═══════════════════════════════════════════════ */
@media (min-width: 768px) {

  :root {
    --gutter: 2.5rem;
  }

  .nav__links {
    display: flex;
  }
  .nav__right-mobile {
    display: none;
  }

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

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

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

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

  .atmosphere {
    grid-template-columns: 1fr 1fr;
  }
  .atmosphere__img-wrap {
    height: auto;
    min-height: 500px;
  }
  .atmosphere__content {
    padding: var(--section-padding) 4rem;
  }

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

  .contact-strip__inner {
    grid-template-columns: 1fr auto;
  }
  .contact-strip__actions {
    flex-direction: row;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — DESKTOP 1200px
═══════════════════════════════════════════════ */
@media (min-width: 1200px) {

  :root {
    --gutter: 3rem;
  }

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

  .bungalow-card__img-wrap {
    height: 260px;
  }

  .atmosphere__img-wrap {
    min-height: 580px;
  }
}

/* ═══════════════════════════════════════════════
   PINNED SCROLL-ZOOM HERO
═══════════════════════════════════════════════ */
.hero-pin {
  position: relative;
  height: 260vh;            /* pin scroll length — raise (e.g. 340vh) for slower */
  z-index: 0;
}
.hero {
  position: sticky;
  top: 0;
}
.hero__img {
  transform: scale(1.1);
  transform-origin: center 52%;
  will-change: transform;
}
/* The next section rises up over the pinned, still-zooming hero */
.intro {
  position: relative;
  z-index: 2;
  margin-top: -100vh;       /* keep fixed regardless of pin length */
  box-shadow: 0 -60px 100px 12px rgba(13, 31, 14, 0.85);
  /* Must fully cover the final viewport of the pin so the hero never
     peeks through before the next section scrolls in. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
