/* =========================================================
   ORGANIC JOURNEY — MAIN STYLESHEET
   Design system: Forest / Leaf / Turmeric Gold / Earth Brown / Beige
   Type: Playfair Display (display) + Poppins (body)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  --forest: #1F4D36;
  --forest-dark: #163827;
  --leaf: #4CAF50;
  --gold: #DFAF2B;
  --gold-light: #f0cf6e;
  --brown: #7B5E3B;
  --beige: #F8F5EF;
  --beige-dark: #EFE9DC;
  --white: #FFFFFF;
  --charcoal: #222222;
  --ink-soft: #555a56;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --radius-organic: 63% 37% 41% 59% / 51% 45% 55% 49%;

  --shadow-soft: 0 10px 40px -12px rgba(31,77,54,0.18);
  --shadow-strong: 0 25px 60px -15px rgba(31,77,54,0.30);
  --glass-bg: rgba(255,255,255,0.55);
  --glass-border: rgba(255,255,255,0.35);

  --ease-premium: cubic-bezier(.16,.84,.44,1);
  --container-w: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: auto; }
body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--beige);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }
button{ font: inherit; background:none; border:none; cursor:pointer; color: inherit; }
input, textarea, select{ font: inherit; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--forest); }
svg{ display:block; }

::selection{ background: var(--gold); color: var(--forest-dark); }

:focus-visible{
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position:absolute; left:-999px; top:0; z-index: 9999;
  background: var(--forest); color:#fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left:0; }

.container{ width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 28px; }

.text-gold{ color: var(--gold); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Page loader ---------- */
#loader{
  position: fixed; inset:0; z-index: 10000;
  background: var(--forest);
  display:flex; align-items:center; justify-content:center;
}
.loader-inner{ display:flex; flex-direction:column; align-items:center; gap:18px; }
.loader-leaf{ animation: leafPulse 1.6s ease-in-out infinite; }
@keyframes leafPulse{ 0%,100%{ transform: scale(1); opacity:.85;} 50%{ transform: scale(1.08); opacity:1;} }
.loader-word{ font-family: var(--font-display); color:#fff; letter-spacing: 0.08em; font-size: 1rem; text-transform: uppercase; }
.loader-bar{ width: 180px; height: 2px; background: rgba(255,255,255,0.2); overflow:hidden; border-radius: 2px; }
.loader-bar-fill{ display:block; height:100%; width:0%; background: var(--gold); }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring{
  position: fixed; top:0; left:0; pointer-events:none; z-index: 9998;
  border-radius: 50%; transform: translate(-50%,-50%);
}
.cursor-dot{ width:7px; height:7px; background: var(--gold); }
.cursor-ring{ width:34px; height:34px; border: 1.5px solid rgba(223,175,43,0.6); transition: width .25s var(--ease-premium), height .25s var(--ease-premium), border-color .25s; }
.cursor-ring.is-active{ width: 54px; height:54px; border-color: var(--gold); background: rgba(223,175,43,0.08); }
@media (hover:none), (pointer:coarse){ .cursor-dot, .cursor-ring{ display:none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress{
  position: fixed; top:0; left:0; width:100%; height:3px; z-index: 9997;
  background: transparent;
}
.scroll-progress span{
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--gold), var(--leaf));
}

/* ---------- Particles ---------- */
.particles-layer{ position: fixed; inset:0; pointer-events:none; z-index: 2; overflow: hidden; }
.particle{
  position:absolute; border-radius:50%; opacity:.55;
  background: radial-gradient(circle, var(--gold) 0%, rgba(223,175,43,0) 70%);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header{
  position: fixed; top:0; left:0; width:100%; z-index: 900;
  transition: background .4s var(--ease-premium), box-shadow .4s var(--ease-premium), padding .3s;
}
.site-header.is-scrolled{
  background: rgba(248,245,239,0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -14px rgba(0,0,0,0.15);
}
.navbar{
  max-width: var(--container-w); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px 28px;
}
.nav-logo{ display:flex; align-items:center; gap:10px; z-index: 2; }
.nav-logo img{ border-radius: 50%; }
.nav-logo-text{
  font-family: var(--font-display); font-weight:700; font-size: 1.25rem; color: var(--forest);
  letter-spacing: 0.01em;
}
.site-header:not(.is-scrolled) .nav-logo-text{ color:#fff; }
.nav-logo-text em{ font-style: normal; color: var(--gold); }

.nav-menu{ display:flex; align-items:center; gap: 32px; }
.nav-link{
  position: relative; font-size: 0.92rem; font-weight:500; color: var(--forest);
  padding: 6px 0;
}
.site-header:not(.is-scrolled) .nav-link{ color:#fff; }
.nav-link::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:1.5px; background: var(--gold);
  transition: width .3s var(--ease-premium);
}
.nav-link:hover::after, .nav-link:focus-visible::after{ width:100%; }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.icon-btn{
  width:42px; height:42px; display:flex; align-items:center; justify-content:center;
  border-radius:50%; border:1px solid rgba(31,77,54,0.25); color: var(--forest);
  transition: all .3s var(--ease-premium);
}
.site-header:not(.is-scrolled) .icon-btn{ color:#fff; border-color: rgba(255,255,255,0.4); }
.icon-btn:hover{ background: var(--gold); border-color: var(--gold); color: var(--forest-dark); transform: translateY(-2px); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:32px; z-index:2; }
.nav-toggle span{ height:2px; width:100%; background: var(--forest); transition: all .3s; border-radius: 2px; }
.site-header:not(.is-scrolled) .nav-toggle span{ background:#fff; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 30px; border-radius: 999px; font-weight:600; font-size: 0.92rem;
  transition: transform .35s var(--ease-premium), box-shadow .35s var(--ease-premium), background .3s, color .3s;
  white-space: nowrap;
}
.btn i{ font-size: 0.95em; }
.btn-primary{ background: var(--forest); color:#fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover{ background: var(--forest-dark); transform: translateY(-3px); box-shadow: var(--shadow-strong); }
.btn-whatsapp{ background: var(--leaf); color:#fff; padding: 12px 22px; }
.btn-whatsapp:hover{ background:#3f9843; transform: translateY(-2px); }
.btn-outline-light{ border: 1.5px solid rgba(255,255,255,0.7); color:#fff; }
.btn-outline-light:hover{ background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-ghost-light{ color:#fff; padding: 15px 20px; }
.btn-ghost-light:hover{ color: var(--gold); }
.glow-cta{ position: relative; }
.glow-cta::before{
  content:''; position:absolute; inset:-2px; border-radius: inherit; z-index:-1;
  background: linear-gradient(120deg, var(--gold), var(--leaf), var(--gold));
  background-size: 200% 200%; opacity:0; filter: blur(14px);
  transition: opacity .4s;
}
.glow-cta:hover::before{ opacity:.65; animation: glowShift 3s linear infinite; }
@keyframes glowShift{ 0%{background-position:0% 50%;} 100%{background-position:200% 50%;} }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative; min-height: 100svh; display:flex; flex-direction:column;
  justify-content:center; align-items:center; overflow:hidden; color:#fff;
  padding-top: 90px;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-video{ width:100%; height:100%; object-fit:cover; }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(22,56,39,0.55) 0%, rgba(22,56,39,0.45) 40%, rgba(15,35,25,0.85) 100%);
}
.hero-grain{
  position:absolute; inset:0; opacity:.05; mix-blend-mode: overlay; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content{ position:relative; z-index:2; text-align:center; max-width: 920px; padding: 0 24px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 0.8rem; font-weight:600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.eyebrow.light{ color: var(--gold-light); }
.eyebrow-dot{ width:6px; height:6px; border-radius:50%; background: var(--gold); display:inline-block; }

.hero-title{ font-size: clamp(2.6rem, 7vw, 5.4rem); color:#fff; letter-spacing: -0.01em; }
.hero-title .line{ display:block; overflow:hidden; padding: 4px 0; }
.hero-title .word{ display:inline-block; }
.word-gold{ color: var(--gold); font-style: italic; }

.hero-subtitle{
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.88); font-weight:300;
  margin: 22px auto 40px; max-width: 620px;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap: 16px; justify-content:center; }

.hero-counters{
  position: relative; z-index:2; width:100%; max-width: var(--container-w);
  display:grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  padding: 40px 28px 60px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.counter-item{ text-align:center; color:#fff; }
.counter-num, .counter-suffix{
  font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.6rem); font-weight:700; color: var(--gold);
}
.counter-label{ display:block; margin-top:6px; font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.75); }

.scroll-cue{
  position:absolute; bottom: 18px; left:50%; transform: translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color: rgba(255,255,255,0.75); font-size: 0.72rem; letter-spacing: 0.12em; text-transform:uppercase;
}
.scroll-cue-line{ width:1px; height: 34px; background: linear-gradient(180deg, var(--gold), transparent); position: relative; overflow:hidden; }
.scroll-cue-line::after{
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background: #fff;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }

/* Section divider */
.section-divider{ line-height:0; margin-top:-2px; position: relative; z-index: 1; }
.section-divider.flip svg{ transform: scaleY(-1); }
.divider-svg{ width:100%; height:60px; display:block; }
.divider-path{ fill:none; stroke: var(--gold); stroke-width:2; opacity:.55; stroke-dasharray: 2400; stroke-dashoffset: 2400; }

/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */
section{ position: relative; padding: 110px 0; }
.section-head{ margin-bottom: 60px; }
.section-head.center{ text-align:center; max-width: 680px; margin-left:auto; margin-right:auto; }
.section-title{ font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.section-title.light{ color:#fff; }
.section-lead{ color: var(--ink-soft); font-size: 1.02rem; max-width: 520px; margin: 12px auto 0; }
.section-lead.light{ color: rgba(255,255,255,0.72); }

/* =========================================================
   ABOUT
   ========================================================= */
.about{ background: var(--beige); overflow: hidden; }
.about-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items:center; }
.about-media{ position: relative; min-height: 520px; }
.blob-frame{ position:absolute; overflow:hidden; box-shadow: var(--shadow-strong); }
.blob-frame img{ width:100%; height:100%; object-fit:cover; }
.blob-frame-1{ width:78%; left:0; top:0; border-radius: var(--radius-organic); aspect-ratio: 4/5; }
.blob-frame-2{
  width:46%; right:-6%; bottom:-8%; border-radius: 50% 50% 50% 12% / 50% 50% 12% 50%;
  aspect-ratio: 1/1; border: 6px solid var(--beige);
}
.about-badge{
  position:absolute; top: 8%; right:-4%; z-index:3;
  background: var(--glass-bg); backdrop-filter: blur(10px); border:1px solid var(--glass-border);
  padding: 12px 18px; border-radius: 999px; font-size:0.78rem; font-weight:600; color: var(--forest);
  box-shadow: var(--shadow-soft); display:flex; align-items:center; gap:8px;
}
.about-badge i{ color: var(--gold); }

.about-copy p{ color: var(--ink-soft); margin-bottom: 18px; max-width: 540px; }
.about-points{ margin: 26px 0 34px; display:flex; flex-direction:column; gap:12px; }
.about-points li{ display:flex; align-items:center; gap:12px; font-weight:500; color: var(--forest); }
.about-points i{ width:26px; height:26px; flex-shrink:0; border-radius:50%; background: var(--leaf); color:#fff; display:flex; align-items:center; justify-content:center; font-size:0.7rem; }

/* =========================================================
   WHY US
   ========================================================= */
.why-us{ background: var(--white); }
.why-grid{ display:grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-card{
  background: var(--beige); border-radius: var(--radius-md); padding: 38px 26px;
  text-align:center; transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium), background .4s;
  border: 1px solid transparent;
}
.why-card:hover{ background:#fff; box-shadow: var(--shadow-strong); border-color: rgba(223,175,43,0.35); }
.why-icon{
  width:64px; height:64px; margin: 0 auto 20px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:1.4rem;
  background: linear-gradient(135deg, var(--forest), var(--leaf)); color:#fff;
}
.why-card h3{ font-size: 1.1rem; margin-bottom: 10px; }
.why-card p{ font-size: 0.88rem; color: var(--ink-soft); }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products{ background: var(--beige); }
.products-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.product-card{
  position: relative; background:#fff; border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-soft); transition: transform .1s linear, box-shadow .4s var(--ease-premium);
  transform-style: preserve-3d; perspective: 800px;
}
.product-card:hover{ box-shadow: var(--shadow-strong); }
.product-badge{
  position:absolute; top:18px; left:18px; z-index:2;
  background: var(--gold); color: var(--forest-dark); font-size:0.68rem; font-weight:700;
  padding: 6px 14px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase;
}
.product-media{ aspect-ratio: 1/1; overflow:hidden; }
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease-premium); }
.product-card:hover .product-media img{ transform: scale(1.08); }
.product-body{ padding: 26px 26px 30px; }
.product-body h3{ font-size: 1.2rem; margin-bottom: 8px; }
.product-body p{ font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 18px; min-height: 62px; }
.product-link{ display:inline-flex; align-items:center; gap:8px; font-weight:600; color: var(--forest); font-size:0.88rem; }
.product-link i{ transition: transform .3s var(--ease-premium); color: var(--gold); }
.product-link:hover i{ transform: translateX(5px); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery{ background: var(--white); }
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 18px; }
.gallery-item{ position:relative; overflow:hidden; border-radius: var(--radius-md); }
.gallery-item.span-2{ grid-column: span 2; grid-row: span 2; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease-premium); }
.gallery-item:hover img{ transform: scale(1.1); }
.gallery-item::after{ content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(22,56,39,0.75) 0%, rgba(22,56,39,0) 45%); }
.gallery-item figcaption{
  position:absolute; left:18px; bottom:16px; z-index:2; color:#fff; font-size:0.85rem; font-weight:500;
  opacity:0; transform: translateY(10px); transition: all .4s var(--ease-premium);
}
.gallery-item:hover figcaption{ opacity:1; transform: translateY(0); }

/* =========================================================
   VIDEO GALLERY
   ========================================================= */
.video-gallery{ background: var(--beige); }
.video-swiper{ padding-bottom: 10px; overflow: visible; }
.video-card{
  position: relative; width:100%; aspect-ratio: 4/5; border-radius: var(--radius-md); overflow:hidden;
  display:block; box-shadow: var(--shadow-soft);
}
.video-card img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease-premium); }
.video-card:hover img{ transform: scale(1.06); }
.video-card::after{ content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(22,56,39,0.85), rgba(22,56,39,0.1) 55%); }
.play-btn{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); z-index:2;
  width:64px; height:64px; border-radius:50%; background: var(--gold); color: var(--forest-dark);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem;
  transition: transform .35s var(--ease-premium), background .3s;
}
.video-card:hover .play-btn{ transform: translate(-50%,-50%) scale(1.1); background:#fff; }
.video-title{ position:absolute; left:18px; bottom:16px; z-index:2; color:#fff; font-weight:600; }
.video-swiper-nav{ display:flex; gap:12px; justify-content:center; margin-top: 30px; }
.swiper-btn{
  width:46px; height:46px; border-radius:50%; border:1.5px solid var(--forest); color: var(--forest);
  display:flex; align-items:center; justify-content:center; transition: all .3s;
}
.swiper-btn:hover{ background: var(--forest); color:#fff; }
.video-swiper .swiper-pagination{ position: static; margin-top: 24px; }
.swiper-pagination-bullet{ background: var(--forest); opacity:.3; }
.swiper-pagination-bullet-active{ opacity:1; background: var(--gold); }

.video-modal{
  position: fixed; inset:0; z-index: 9500; display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition: opacity .35s var(--ease-premium);
}
.video-modal.is-open{ opacity:1; pointer-events:all; }
.video-modal-backdrop{ position:absolute; inset:0; background: rgba(15,25,20,0.9); }
.video-modal-inner{ position:relative; z-index:2; width:min(900px, 92vw); }
.video-modal-inner video{ width:100%; max-height:82vh; border-radius: var(--radius-md); background:#000; }
.video-modal-close{
  position:absolute; top:-46px; right:0; color:#fff; font-size:1.4rem;
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
}

/* =========================================================
   PROCESS TIMELINE
   ========================================================= */
.process{ background: var(--forest); }
.timeline{ position: relative; display:grid; grid-template-columns: repeat(6, 1fr); gap: 20px; padding-top: 30px; }
.timeline-line{ position:absolute; top:44px; left:0; right:0; height:2px; background: rgba(255,255,255,0.15); }
.timeline-line-fill{ display:block; height:100%; width:0%; background: var(--gold); }
.timeline-step{ text-align:center; position:relative; padding-top: 30px; }
.timeline-icon{
  width:64px; height:64px; margin:0 auto 20px; border-radius:50%; position:relative; z-index:2;
  background: var(--forest-dark); border: 2px solid var(--gold); color: var(--gold);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem;
}
.timeline-step h3{ color:#fff; font-size: 1.05rem; margin-bottom:8px; }
.timeline-step p{ color: rgba(255,255,255,0.65); font-size: 0.82rem; }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits{ background: var(--white); }
.benefits-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.benefit-card{
  background: linear-gradient(160deg, var(--beige), #fff); border-radius: var(--radius-md);
  padding: 40px 32px; border: 1px solid rgba(123,94,59,0.12);
  transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium);
}
.benefit-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.benefit-icon{
  width:60px; height:60px; border-radius: var(--radius-organic); margin-bottom: 22px;
  background: var(--gold); color: var(--forest-dark); display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.benefit-card h3{ margin-bottom: 16px; }
.benefit-card li{ position:relative; padding-left: 22px; margin-bottom:10px; color: var(--ink-soft); font-size:0.92rem; }
.benefit-card li::before{ content:''; position:absolute; left:0; top:9px; width:7px; height:7px; border-radius:50%; background: var(--leaf); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{ background: var(--beige); }
.testimonial-swiper{ padding-bottom: 50px; }
.testimonial-card{
  background:#fff; border-radius: var(--radius-md); padding: 40px 32px; height:100%;
  box-shadow: var(--shadow-soft); position:relative;
}
.quote-icon{ color: var(--gold); font-size: 1.6rem; opacity:.5; margin-bottom: 12px; }
.stars{ color: var(--gold); font-size:0.85rem; margin-bottom: 14px; display:flex; gap:4px; }
.testimonial-card p{ color: var(--charcoal); margin-bottom: 24px; font-size: 0.96rem; }
.testimonial-author{ display:flex; align-items:center; gap:12px; }
.testimonial-author img{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
.testimonial-author strong{ display:block; font-size:0.9rem; color: var(--forest); }
.testimonial-author span{ font-size:0.78rem; color: var(--ink-soft); }
.testimonial-swiper .swiper-pagination-bullet{ background: var(--forest); }
.testimonial-swiper .swiper-pagination-bullet-active{ background: var(--gold); }

/* =========================================================
   FAQ
   ========================================================= */
.faq{ background: var(--white); }
.faq-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items:start; }
.faq-intro .btn{ margin-top: 20px; }
.faq-item{ border-bottom: 1px solid rgba(123,94,59,0.18); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding: 22px 4px; text-align:left; font-weight:600; color: var(--forest); font-size:1.02rem;
}
.faq-question i{ color: var(--gold); transition: transform .35s var(--ease-premium); flex-shrink:0; margin-left:16px; }
.faq-question[aria-expanded="true"] i{ transform: rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .45s var(--ease-premium); }
.faq-answer p{ padding: 0 4px 22px; color: var(--ink-soft); font-size:0.92rem; max-width: 560px; }

/* =========================================================
   MAP
   ========================================================= */
.map-section{ background: var(--beige); padding-bottom: 0; }
.map-wrap{ filter: saturate(0.9); }
.map-wrap iframe{ display:block; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact{ background: var(--white); }
.contact-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; }
.contact-info p.section-lead{ margin-left:0; }
.contact-cards{ margin-top: 34px; display:flex; flex-direction:column; gap:14px; }
.contact-card{
  display:flex; align-items:center; gap:16px; padding: 18px 22px; border-radius: var(--radius-md);
  background: var(--beige); transition: transform .35s var(--ease-premium), box-shadow .35s var(--ease-premium);
}
.contact-card:hover{ transform: translateX(6px); box-shadow: var(--shadow-soft); }
.contact-card i{ width:44px; height:44px; border-radius:50%; background: var(--forest); color:#fff; display:flex; align-items:center; justify-content:center; }
.contact-card strong{ display:block; color: var(--forest); font-size:0.92rem; }
.contact-card span{ font-size: 0.85rem; color: var(--ink-soft); }

.contact-form{
  background: var(--beige); border-radius: var(--radius-lg); padding: 42px;
  display:flex; flex-direction:column; gap: 20px; box-shadow: var(--shadow-soft);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field span{ font-size:0.8rem; font-weight:600; color: var(--forest); }
.form-field input, .form-field textarea, .form-field select{
  padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(31,77,54,0.18); background:#fff;
  color: var(--charcoal); transition: border-color .3s, box-shadow .3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(223,175,43,0.15); outline:none;
}
.form-note{ font-size:0.75rem; color: var(--ink-soft); text-align:center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--forest-dark); color: rgba(255,255,255,0.8); }
.footer-top{ padding: 80px 0 50px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 50px; }
.footer-brand p{ margin: 18px 0 24px; font-size: 0.88rem; max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-social{ display:flex; gap: 12px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center; transition: all .3s;
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--forest-dark); }
.footer-col h4{ color:#fff; font-size:1rem; margin-bottom: 20px; }
.footer-col ul{ display:flex; flex-direction:column; gap: 12px; }
.footer-col a{ font-size:0.88rem; color: rgba(255,255,255,0.65); transition: color .3s; }
.footer-col a:hover{ color: var(--gold); }
.footer-col a i{ width:16px; color: var(--gold); }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom-inner{ display:flex; justify-content:space-between; font-size:0.78rem; color: rgba(255,255,255,0.5); flex-wrap:wrap; gap:8px; }

/* =========================================================
   FLOATING ACTIONS
   ========================================================= */
.fab{
  position: fixed; right: 26px; z-index: 850;
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-strong); transition: transform .35s var(--ease-premium), opacity .35s;
}
.fab-whatsapp{ bottom: 26px; background: var(--leaf); color:#fff; font-size:1.5rem; }
.fab-whatsapp:hover{ transform: scale(1.08); }
.fab-top{
  bottom: 94px; background: var(--forest); color:#fff; font-size:1.1rem;
  opacity:0; pointer-events:none; transform: translateY(10px);
}
.fab-top.is-visible{ opacity:1; pointer-events:all; transform: translateY(0); }

/* =========================================================
   REVEAL / SCROLL ANIMATION BASE STATES
   ========================================================= */
.reveal-up{ opacity:0; transform: translateY(36px); }
.tilt-card{ will-change: transform; }
