/* ==============================
   Pine & Pepper Farm — Styles
   ============================== */

:root {
  --green-dark:  #1e3a1c;
  --green:       #2d5a1b;
  --green-light: #4a7c2e;
  --cream:       #f8f4ec;
  --warm-white:  #fdfaf5;
  --gold:        #c8922a;
  --brown:       #7a4f2d;
  --text:        #2c2c2c;
  --text-light:  #666;
  --border:      #e0d8cc;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --radius:      12px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,90,27,0.3); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: #a97520; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,146,42,0.3); }

/* ── Layout helpers ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }


/* ═══════════════════════════════
   NAV
   ═══════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.1;
  transition: color 0.3s;
}
.nav-logo-text span { display: block; font-size: 0.65rem; font-family: var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
#nav.scrolled .nav-logo-text { color: var(--green-dark); }
#nav.scrolled .logo-white { display: none; }
#nav.scrolled .logo-green { display: inline-block !important; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
#nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: #fff; }
#nav.scrolled .nav-links a:hover { color: var(--green); }

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.nav-cta .btn { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
#nav.scrolled .hamburger span { background: var(--text); }


/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
#hero {
  min-height: 100svh;
  background: linear-gradient(160deg, #1a3a12 0%, #2d5a1b 60%, #3d7a25 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/dsc04218-4592x2576.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,45,12,0.6) 0%, rgba(20,45,12,0.4) 60%, rgba(20,45,12,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 7rem 0 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-badge span { color: var(--gold); }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-family: var(--font-head);
}
.hero-title em { color: #a8d87a; font-style: normal; }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { opacity: 0.6; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }


/* ═══════════════════════════════
   HIGHLIGHTS STRIP
   ═══════════════════════════════ */
#highlights {
  background: var(--green-dark);
  padding: 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.highlight-item {
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,0.05); }
.highlight-icon {
  width: 44px; height: 44px;
  background: rgba(168,216,122,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.highlight-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.highlight-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}


/* ═══════════════════════════════
   ABOUT
   ═══════════════════════════════ */
#about { background: var(--warm-white); }
.about-image-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--green);
}
.about-img-badge span {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0;
}
.about-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: #eaf3e0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-text strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 0.1rem; }
.about-feature-text span { font-size: 0.85rem; color: var(--text-light); }


/* ═══════════════════════════════
   EXPERIENCE
   ═══════════════════════════════ */
#experience { background: var(--cream); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.exp-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.exp-card-img {
  aspect-ratio: 3/2;
  background: #d4e8c2;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.exp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.exp-card-body { padding: 1.25rem; }
.exp-card-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--green-dark); }
.exp-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }


/* ═══════════════════════════════
   ACCOMMODATION
   ═══════════════════════════════ */
#accommodation { background: var(--warm-white); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.room-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.room-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #c8dba8 0%, #89b854 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.room-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-body { padding: 1.5rem; }
.room-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--green-dark); }
.room-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.amenity-tag {
  background: #eaf3e0;
  color: var(--green);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}
.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.room-price strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--green); }
.room-price span { font-size: 0.85rem; color: var(--text-light); }

/* Featured room hero */
.room-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.room-feature-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}
.room-feature-body {
  padding: 2rem 2rem 2rem 0;
}
.room-feature-body h3 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.room-feature-body p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .room-feature { grid-template-columns: 1fr; gap: 0; }
  .room-feature-body { padding: 1.5rem; }
  .room-feature-img img { min-height: 240px; }
}

/* Interior gallery inside Accommodation */
.interior-block {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.interior-title {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.interior-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 580px;
}
.interior-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .interior-grid { grid-template-columns: repeat(2, 1fr); } }
.interior-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 0;
}
.interior-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.interior-item figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
}
.interior-item figcaption strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-head);
}
@media (max-width: 768px) {
  .interior-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .interior-grid { grid-template-columns: 1fr; }
}

/* Gallery figcaption */
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 1.5rem 0.85rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item { margin: 0; }

.accommodation-note {
  margin-top: 2rem;
  background: #f0f9e8;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--green-dark);
}
.accommodation-note strong { display: block; margin-bottom: 0.3rem; }


/* ═══════════════════════════════
   CROPS / FARM
   ═══════════════════════════════ */
#farm { background: var(--cream); }
.crops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.crop-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.crop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.crop-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.crop-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.4rem; }
.crop-card p { font-size: 0.82rem; color: var(--text-light); }


/* ═══════════════════════════════
   GALLERY
   ═══════════════════════════════ */
#gallery { background: var(--green-dark); padding: 5rem 0; }
#gallery .section-title { color: #fff; }
#gallery .section-label { color: #a8d87a; }
#gallery .section-subtitle { color: rgba(255,255,255,0.65); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { color: #fff; }


/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
#testimonials { background: var(--warm-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--border);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }


/* ═══════════════════════════════
   HOW TO REACH
   ═══════════════════════════════ */
#reach { background: var(--cream); }
.reach-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.reach-steps { display: flex; flex-direction: column; gap: 0; }
.reach-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  position: relative;
}
.reach-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px; top: 40px;
  width: 2px; height: calc(100% - 20px);
  background: var(--border);
}
.reach-step-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}
.reach-step-text strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.reach-step-text span { font-size: 0.85rem; color: var(--text-light); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
  background: #d4e8c2;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1rem;
  text-align: center;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.reach-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.reach-extra-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
}
.reach-extra-item span:first-child { font-size: 1.1rem; }


/* ═══════════════════════════════
   BOOKING / CTA
   ═══════════════════════════════ */
#booking {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a4a10 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(168,216,122,0.08) 0%, transparent 60%);
}
.booking-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.booking-left .section-title { color: #fff; }
.booking-left .section-label { color: #a8d87a; }
.booking-left p { color: rgba(255,255,255,0.75); margin: 1rem 0 2rem; font-size: 1rem; }
.booking-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.booking-form {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.booking-form h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #a8d87a; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--green-dark); color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }


/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
footer {
  background: #111c0d;
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo-text { color: #fff; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #a8d87a; }
.footer-contact-item {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.85rem; margin-bottom: 0.75rem;
}
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: 2px; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #a8d87a; }


/* ═══════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.5); color: #fff; }
.wa-float svg { flex-shrink: 0; }
.wa-float-text { white-space: nowrap; }


/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4, .crops-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .grid-2, .reach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .experience-grid, .testimonials-grid, .rooms-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .about-img-badge { bottom: -1rem; right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .booking-actions { flex-direction: column; }
  .booking-actions .btn { width: 100%; justify-content: center; }
  .crops-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-float-text { display: none; }
  .wa-float { padding: 0.85rem; border-radius: 50%; }
}

/* ── Mobile nav open ── */
body.nav-open .nav-links,
body.nav-open .nav-cta {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 280px; height: 100vh;
  background: #fff;
  padding: 5rem 2rem 2rem;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
  z-index: 999;
  gap: 1.5rem;
}
body.nav-open .nav-links a { color: var(--text); font-size: 1rem; }
body.nav-open .nav-cta { flex-direction: row; padding-top: 1rem; height: auto; position: static; box-shadow: none; margin-left: 0; }
body.nav-open .nav-cta { position: fixed; top: auto; bottom: 2rem; right: 0; width: 280px; background: transparent; box-shadow: none; z-index: 999; padding: 0 2rem; }

/* ─────────── LIGHTBOX ─────────── */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.lb.open {
  opacity: 1;
  visibility: visible;
}
.lb-stage {
  position: relative;
  width: min(92vw, 1400px);
  height: min(88vh, 1000px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lb-img {
  max-width: 100%;
  max-height: calc(100% - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.lb.open .lb-img {
  transform: scale(1);
}
.lb-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.6rem 1.25rem;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 80%;
  text-align: center;
  backdrop-filter: blur(6px);
}
.lb-counter {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}
.lb-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}
.lb-close {
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
}
.lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-prev:hover, .lb-next:hover {
  transform: translateY(-50%) scale(1.06);
}

@media (max-width: 600px) {
  .lb-btn { width: 40px; height: 40px; font-size: 1.4rem; }
  .lb-close { top: 14px; right: 14px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-caption { font-size: 0.8rem; bottom: 14px; padding: 0.5rem 1rem; }
}

/* Hover hint on linked images */
#gallery .gallery-item img,
.interior-item img,
.room-feature-img img {
  transition: transform 0.4s ease;
}
.interior-item img:hover,
.room-feature-img img:hover {
  transform: scale(1.03);
}
