/*
Theme Name: Farmstay Chakkikavu
Theme URI: https://chakkikavufarmstay.com
Author: Farmstay Chakkikavu
Description: A warm, nature-inspired theme for a Kerala hill farmstay experience
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: farmstay-chakkikavu
*/

/* ========================================
   CSS VARIABLES & ROOT
======================================== */
:root {
  --green-deep:    #1a3d2b;
  --green-mid:     #2d6a4f;
  --green-light:   #74c69d;
  --cream:         #f5f0e8;
  --cream-dark:    #ede7d9;
  --earth:         #8b6914;
  --earth-light:   #c8973a;
  --pepper-red:    #7b2d00;
  --text-dark:     #1c1c1c;
  --text-mid:      #4a4a4a;
  --text-light:    #7a7a7a;
  --white:         #ffffff;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', 'Helvetica Neue', sans-serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;

  --radius:        6px;
  --radius-lg:     14px;
  --transition:    0.35s ease;
  --shadow:        0 4px 28px rgba(26,61,43,0.10);
  --shadow-lg:     0 12px 56px rgba(26,61,43,0.16);
}

/* ========================================
   RESET & BASE
======================================== */
*, *::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-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 700;
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--text-mid);
  font-style: italic;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

/* ========================================
   LAYOUT HELPERS
======================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-pad {
  padding: 90px 0;
}
.section-pad-sm {
  padding: 60px 0;
}
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
  transform: translateY(-2px);
}
.btn-earth {
  background: var(--earth);
  color: var(--white);
  border-color: var(--earth);
}
.btn-earth:hover {
  background: var(--pepper-red);
  border-color: var(--pepper-red);
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
======================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#site-header.scrolled {
  background: rgba(26,61,43,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
#site-header.transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-logo .logo-sub {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  color: var(--green-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: italic;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--earth-light);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }
.nav-book-btn {
  background: var(--earth);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-book-btn:hover { background: var(--pepper-red) !important; }
.nav-book-btn::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO / VIDEO SECTION
======================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(26,61,43,0.30) 50%,
    rgba(26,61,43,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth-light);
  display: block;
  margin-bottom: 1rem;
  font-style: italic;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounceDown 1.8s infinite;
}
.hero-scroll svg { opacity: 0.7; }
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   WHY SECTION (ICONS GRID)
======================================== */
#why {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  border-color: var(--green-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.why-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ========================================
   OUR STORY SECTION
======================================== */
#story-preview {
  background: var(--green-deep);
  color: var(--white);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
#story-preview .section-label { color: var(--earth-light); }
#story-preview .section-title { color: var(--white); }
#story-preview p { color: rgba(255,255,255,0.8); }
.story-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}
.story-video-wrap iframe,
.story-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-placeholder {
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  min-height: 280px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--earth);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.play-btn:hover { background: var(--earth-light); transform: scale(1.08); }

/* ========================================
   OUR FOOD SECTION
======================================== */
#food-preview { background: var(--cream-dark); }
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}
.food-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.food-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.food-card-img {
  height: 210px;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}
.food-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-card:hover .food-card-img img { transform: scale(1.06); }
.food-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--earth-light);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.food-card-body {
  padding: 1.2rem 1.4rem;
}
.food-card-body h4 {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}
.food-card-body p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin: 0;
}
.food-maker {
  font-size: 0.75rem;
  color: var(--earth);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

/* ========================================
   OUR PRODUCE SECTION
======================================== */
#produce-preview { background: var(--white); }
.produce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.produce-card {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.produce-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.produce-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.produce-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.produce-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.pinch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--earth);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  margin-top: 2.5rem;
}
.pinch-link:hover { background: var(--pepper-red); transform: translateY(-2px); }

/* ========================================
   NEARBY SLIDER
======================================== */
#nearby-preview { background: var(--cream-dark); overflow: hidden; }
.nearby-slider-wrap { position: relative; margin-top: 3rem; }
.nearby-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
}
.nearby-slider::-webkit-scrollbar { display: none; }
.nearby-slide {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 420px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.nearby-slide-bg {
  width: 100%; height: 100%;
  background: var(--green-mid);
  display: flex; align-items: flex-end;
  transition: transform 0.5s ease;
  position: relative;
}
.nearby-slide:hover .nearby-slide-bg { transform: scale(1.03); }
.nearby-slide-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.nearby-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: 0.4;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
}
.nearby-slide-info {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  width: 100%;
}
.nearby-slide-info h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.3rem; }
.nearby-slide-info p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; }
.slider-nav {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}
.slider-btn:hover { background: var(--green-deep); transform: scale(1.1); }

/* ========================================
   ACTIVITIES
======================================== */
#activities-preview { background: var(--white); }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.activity-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.activity-card-bg {
  width: 100%; height: 100%;
  background: var(--green-mid);
  transition: transform 0.5s ease;
  position: relative;
}
.activity-card:hover .activity-card-bg { transform: scale(1.05); }
.activity-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.activity-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: 0.5;
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 100%);
}
.activity-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,61,43,0.85) 0%, transparent 50%);
}
.activity-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: var(--white);
}
.activity-info h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.activity-info p { color: rgba(255,255,255,0.8); font-size: 0.82rem; margin: 0; }

/* ========================================
   PRICING
======================================== */
#pricing-preview { background: var(--green-deep); }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: var(--white);
  border-color: var(--white);
}
.pricing-card.featured h3 { color: var(--green-deep); }
.pricing-card.featured .price { color: var(--green-mid); }
.pricing-card.featured p { color: var(--text-mid); }
.pricing-card.featured .price-note { color: var(--text-light); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--earth);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--earth-light);
  font-weight: 700;
  line-height: 1;
  margin: 1rem 0 0.3rem;
}
.price-note { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.pricing-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 1.5rem; }
.pricing-card ul { margin: 1.2rem 0 2rem; text-align: left; }
.pricing-card ul li {
  color: rgba(255,255,255,0.75);
  font-size: 0.86rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 0.5rem;
}
.pricing-card.featured ul li { color: var(--text-mid); border-bottom-color: var(--cream-dark); }
.pricing-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-top: 2rem;
  font-style: italic;
}

/* ========================================
   BOOKING / ENQUIRY
======================================== */
#book { background: var(--cream); }
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.book-info h2 { margin-bottom: 1rem; }
.book-info p { margin-bottom: 1.5rem; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--cream-dark);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-option:hover { background: var(--green-light); }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-option strong { display: block; font-size: 0.88rem; color: var(--green-deep); }
.contact-option span { font-size: 0.82rem; color: var(--text-light); }
.enquiry-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.enquiry-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit { width: 100%; padding: 14px; font-size: 0.9rem; }

/* ========================================
   FOOTER
======================================== */
#site-footer {
  background: #111e17;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}
.footer-brand .logo-sub {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--green-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-btn:hover { background: var(--earth); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--earth-light); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--earth-light); }

/* ========================================
   DIVIDERS / DECORATIVE
======================================== */
.leaf-divider {
  text-align: center;
  font-size: 1.5rem;
  opacity: 0.4;
  margin: 1rem 0;
}

/* ========================================
   PAGE HERO (Inner Pages)
======================================== */
.page-hero {
  height: 50vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: var(--green-deep);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,61,43,0.5), rgba(26,61,43,0.88));
}
.page-hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  width: 90%; max-width: 1200px;
  margin: 0 auto;
}
.page-hero-content .section-label { color: var(--earth-light); }
.page-hero-content h1 { color: var(--white); }

/* ========================================
   GALLERY GRID
======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-grid .span2 { grid-column: span 2; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  position: relative;
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--earth-light);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .book-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--green-deep);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-menu.open a { font-size: 1.1rem; }

  .pricing-cards { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .span2 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .produce-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.wa-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Main round button */
.wa-float-btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* Pulse ring animation */
.wa-float-ping {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #25D366;
  opacity: 0;
  animation: wa-ping 2.2s ease-out infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(0.85); opacity: 0.7; }
  80%  { transform: scale(1.4);  opacity: 0; }
  100% { transform: scale(1.4);  opacity: 0; }
}

/* Tooltip bubble */
.wa-tooltip {
  background: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1.3rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  max-width: 240px;
  position: relative;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-tooltip.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* Tail */
.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--white);
}
.wa-tooltip-close {
  position: absolute;
  top: 8px; right: 10px;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
}
.wa-tooltip-close:hover { color: var(--text-dark); }
.wa-tooltip-msg {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin: 0 0 0.8rem;
  line-height: 1.5;
}
.wa-tooltip-btn {
  display: block;
  background: #25D366;
  color: var(--white);
  text-align: center;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}
.wa-tooltip-btn:hover { background: #1ebe5c; }

@media (max-width: 480px) {
  .wa-float-wrap { bottom: 18px; right: 16px; }
  .wa-tooltip { max-width: 200px; }
}

/* ========================================
   INSTAGRAM FEED SECTION
======================================== */
#instagram-feed { overflow: hidden; }

.fs-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 780px;
  margin: 2.5rem auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fs-insta-tile {
  display: block;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}

.fs-insta-tile-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s ease;
}
.fs-insta-tile:hover .fs-insta-tile-inner {
  transform: scale(1.06);
}
/* Give each tile a slightly different tint */
.fs-insta-tile:nth-child(1) .fs-insta-tile-inner { background: linear-gradient(135deg,#1a3d2b,#2d6a4f); }
.fs-insta-tile:nth-child(2) .fs-insta-tile-inner { background: linear-gradient(135deg,#3d2b1a,#8b6914); }
.fs-insta-tile:nth-child(3) .fs-insta-tile-inner { background: linear-gradient(135deg,#1a3d5c,#2d6a4f); }
.fs-insta-tile:nth-child(4) .fs-insta-tile-inner { background: linear-gradient(135deg,#2d1a3d,#6a2d5a); }
.fs-insta-tile:nth-child(5) .fs-insta-tile-inner { background: linear-gradient(135deg,#1a3d2b,#4a8a2d); }
.fs-insta-tile:nth-child(6) .fs-insta-tile-inner { background: linear-gradient(135deg,#5c3d1a,#c8973a); }
.fs-insta-tile:nth-child(7) .fs-insta-tile-inner { background: linear-gradient(135deg,#1a2d3d,#2d4f6a); }
.fs-insta-tile:nth-child(8) .fs-insta-tile-inner { background: linear-gradient(135deg,#2d3d1a,#6a8a2d); }
.fs-insta-tile:nth-child(9) .fs-insta-tile-inner { background: linear-gradient(135deg,#3d1a1a,#8b3a2d); }

.fs-insta-emoji {
  font-size: 2.4rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fs-insta-tile:hover .fs-insta-emoji {
  opacity: 0;
  transform: scale(0.7);
}

/* Hover overlay */
.fs-insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,61,43,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fs-insta-tile:hover .fs-insta-hover {
  opacity: 1;
}
.fs-insta-hover i {
  font-size: 2rem;
  color: var(--white);
}

/* Follow button */
.fs-insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(220,39,67,0.3);
  margin-top: 0.5rem;
}
.fs-insta-follow-btn i { font-size: 1.1rem; }
.fs-insta-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(220,39,67,0.4);
  color: var(--white);
}

/* When Smash Balloon plugin is active, constrain its output */
#instagram-feed .sbi_follow_btn,
#instagram-feed #sb_instagram {
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .fs-insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .fs-insta-emoji { font-size: 1.6rem; }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.wa-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Pulsing main button */
.wa-float-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  cursor: pointer;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-float-btn svg { flex-shrink: 0; }

/* Ping animation ring */
.wa-float-ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.6);
  animation: wa-ping 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ping {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip / popup bubble */
.wa-tooltip {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  max-width: 240px;
  position: relative;
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
  /* Hidden by default — shown via JS */
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85) translateY(8px);
}
.wa-tooltip.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}
.wa-tooltip-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 1.1rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.wa-tooltip-close:hover { color: #555; }
.wa-tooltip-msg {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
  margin: 0 0 12px;
  padding-right: 16px;
}
.wa-tooltip-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.wa-tooltip-btn:hover { background: #1ebe5a; color: #fff; }

/* Slide-in entrance animation */
.wa-float-wrap {
  animation: wa-slide-in 0.5s 1.5s both ease-out;
}
@keyframes wa-slide-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile: smaller, slightly repositioned */
@media (max-width: 480px) {
  .wa-float-wrap { bottom: 18px; right: 16px; }
  .wa-float-btn  { width: 52px; height: 52px; }
  .wa-tooltip    { max-width: 200px; }
}


/* ========================================
   INSTAGRAM FEED SECTION
======================================== */
#instagram-feed { background: var(--cream-dark); }

/* Grid of 9 tiles — 3 columns */
.fs-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 2.5rem auto 2rem;
  max-width: 880px;
}

/* Each placeholder tile */
.fs-insta-tile {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fs-insta-tile-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s ease;
}
.fs-insta-tile:hover .fs-insta-tile-inner {
  transform: scale(1.04);
}
.fs-insta-emoji {
  font-size: 2.8rem;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.fs-insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,61,43,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.8rem;
  color: white;
}
.fs-insta-tile:hover .fs-insta-hover { opacity: 1; }
.fs-insta-tile:hover .fs-insta-emoji { opacity: 0.3; }

/* "Follow us" button */
.fs-insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-top: 0.5rem;
}
.fs-insta-follow-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: white;
}
.fs-insta-follow-btn i { font-size: 1.1rem; }

/* When Smash Balloon plugin is active — let it handle its own grid styles */
.fs-insta-grid .sbi_load_btn_wrapper { margin-top: 1.5rem; }

/* Mobile */
@media (max-width: 600px) {
  .fs-insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .fs-insta-emoji { font-size: 2rem; }
}
