:root {
  --forest: #1a2e1a;
  --moss: #2d4a2d;
  --leaf: #4a7c59;
  --sage: #7aab8a;
  --mist: #b8d4c0;
  --cream: #f5f0e8;
  --earth: #8b6f47;
  --gold: #c9a84c;
  --water: #3d6b8a;
  --white: #fefefe;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--forest);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(26, 46, 26, 0.95);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-book {
  background: var(--gold);
  color: var(--forest);
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
  transition: all 0.3s;
}

/* ─── HOME ─── */
#home {
  min-height: 100vh;
  background: linear-gradient(
    160deg,
    var(--forest) 0%,
    var(--moss) 60%,
    #1e3d2a 100%
  );
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(74, 124, 89, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(61, 107, 138, 0.2) 0%,
      transparent 50%
    );
}
.floating-leaf {
  position: absolute;
  opacity: 0.07;
  font-size: 8rem;
  animation: floatLeaf 12s ease-in-out infinite;
}
.floating-leaf:nth-child(1) {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}
.floating-leaf:nth-child(2) {
  top: 60%;
  right: 8%;
  animation-delay: 4s;
  font-size: 5rem;
}
.floating-leaf:nth-child(3) {
  top: 40%;
  left: 45%;
  animation-delay: 8s;
  font-size: 12rem;
}
@keyframes floatLeaf {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease forwards;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title em {
  color: var(--sage);
  font-style: italic;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.6s both;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.45);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeUp 0.8s ease 0.8s both;
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.6);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SECTION COMMON ─── */
.section {
  padding: 6rem 2rem;
}
.section-alt {
  background: var(--forest);
}
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── FEATURES STRIP ─── */
.features-strip {
  background: var(--forest);
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.feature-item {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-item:last-child {
  border-right: none;
}
.feature-icon {
  font-size: 1.8rem;
}
.feature-label {
  color: var(--mist);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* ─── ABOUT ─── */
#about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 160px;
  height: 160px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--forest);
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.about-text .section-title {
  color: var(--forest);
}
.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 4px;
  border-left: 3px solid var(--leaf);
}
.about-feat-icon {
  font-size: 1.3rem;
  margin-top: 0.1rem;
}
.about-feat-text strong {
  font-size: 0.88rem;
  color: var(--forest);
  display: block;
  margin-bottom: 0.15rem;
}
.about-feat-text span {
  font-size: 0.8rem;
  color: #777;
}

/* ─── AMENITIES ─── */
#amenities {
  background: var(--forest);
}
.amenities-title {
  color: var(--white);
}
.amenities-sub {
  color: var(--mist);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.amenity-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.amenity-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}
.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.amenity-name {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.amenity-desc {
  color: var(--mist);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--cream);
}
.gallery-header {
  margin-bottom: 3rem;
}
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid #ccc;
  background: transparent;
  border-radius: 50px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  font-family: "DM Sans", sans-serif;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-thumb {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-caption {
  color: white;
  font-size: 0.85rem;
}

/* Instagram embed notice */
.instagram-note {
  background: linear-gradient(
    135deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 2rem;
}
.instagram-note a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* ─── VIDEOS ─── */
#videos {
  background: var(--forest);
}
.videos-title {
  color: white;
}
.videos-sub {
  color: var(--mist);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.video-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.video-card:hover {
  transform: translateY(-4px);
}
.video-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  cursor: pointer;
  color: white;
  z-index: 2;
}
.video-card:hover .play-btn {
  background: var(--gold);
  transform: scale(1.1);
}
.video-info {
  padding: 1rem 1.2rem;
}
.video-title {
  color: white;
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.video-meta {
  color: var(--mist);
  font-size: 0.8rem;
}

.reels-link-box {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.reels-link-box p {
  color: var(--mist);
  margin-bottom: 1.5rem;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-bottom: 3px solid var(--leaf);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.author-loc {
  font-size: 0.78rem;
  color: #999;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--forest);
}
.contact-title {
  color: white;
}
.contact-sub {
  color: var(--mist);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.contact-info {
}
.contact-block {
  margin-bottom: 2rem;
}
.contact-block-title {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.contact-block-content {
  color: var(--mist);
  line-height: 1.7;
  font-size: 0.95rem;
}
.contact-block-content a {
  color: var(--sage);
  text-decoration: none;
}
.contact-block-content a:hover {
  color: var(--gold);
}
.whatsapp-big {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #25d366;
  color: white;
  padding: 1.2rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
.whatsapp-big:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.whatsapp-icon {
  font-size: 1.8rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 420px;
  border: none;
}
.map-placeholder {
  height: 380px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--mist);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.map-placeholder-icon {
  font-size: 3rem;
}

/* ─── PACKAGES ─── */
#packages {
  background: #f0ebe0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.package-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.package-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.package-header {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--moss), var(--leaf));
  color: white;
  text-align: center;
}
.package-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.package-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.package-price span {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.8;
}
.package-body {
  padding: 1.5rem;
}
.package-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}
.package-includes li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  gap: 0.5rem;
}
.package-includes li::before {
  content: "✓";
  color: var(--leaf);
  font-weight: 700;
}
.package-cta {
  display: block;
  text-align: center;
  background: var(--forest);
  color: white;
  padding: 0.85rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.package-cta:hover {
  background: var(--gold);
  color: var(--forest);
}

/* ─── FLOATING WHATSAPP ─── */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 900;
  transition: all 0.3s;
  animation: waPulse 2s ease-in-out infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #128c7e;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8);
  }
}
.floating-whatsapp-label {
  position: fixed;
  bottom: 2.8rem;
  right: 5.5rem;
  background: var(--forest);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.floating-whatsapp:hover ~ .floating-whatsapp-label {
  opacity: 1;
}

/* ─── FOOTER ─── */
footer {
  background: #0f1f0f;
  color: var(--mist);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
}
.footer-logo span {
  color: var(--gold);
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-heading {
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a {
  color: var(--sage);
  text-decoration: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest);
    padding: 1.5rem;
    gap: 1.2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-img-accent {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .feature-item {
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }
}

/* Gallery items with real images */
.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-thumb {
  transform: scale(1.08);
}

/* active nav */
.page-section {
  display: block;
}

/* ─── PHOSPHOR ICON SIZING ─── */
.amenity-icon i {
  font-size: 2.5rem;
  color: var(--sage);
}
.package-icon i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.feature-icon i {
  font-size: 1.8rem;
  color: var(--sage);
}
.about-feat-icon i {
  font-size: 1.3rem;
  color: var(--leaf);
}
.whatsapp-icon i {
  font-size: 1.8rem;
}
.floating-leaf i {
  font-size: inherit;
  color: var(--sage);
}
.social-link i {
  font-size: 1.2rem;
  color: var(--mist);
}
.social-link:hover i {
  color: var(--gold);
}
