/* =============================================================
   Inversiones Fresh — styles.css
   Diseño web por KEROS — Cristóbal Zurita
   ============================================================= */

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

:root {
  --avocado-dark:   #1c2e14;
  --avocado-deep:   #2a4520;
  --avocado-main:   #3d6b2c;
  --avocado-mid:    #5a9042;
  --avocado-light:  #8dc16e;
  --avocado-pale:   #c8e6b8;
  --flesh:          #d4c47a;
  --cream:          #f5f2e8;
  --cream-dark:     #ebe5d3;
  --text-dark:      #141a0f;
  --text-mid:       #3a4a30;
  --text-muted:     #6b7a60;
  --white:          #ffffff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── BACK TO TOP ─────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 52px; height: 52px;
  background: var(--avocado-main);
  color: #fff;
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(61,107,44,.35);
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-to-top:hover { background: var(--avocado-dark); }
#back-to-top svg { pointer-events: none; }

/* ─── WHATSAPP FLOAT BUTTON ─────────────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: 32px; right: 96px;
  z-index: 999;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 32px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 0 20px;
  box-shadow: 0 4px 20px rgba(37,211,102,.40);
  text-decoration: none;
  font-size: 14px; font-weight: 600; font-family: inherit;
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
}
#whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.50);
}
#whatsapp-float svg { flex-shrink: 0; }
.wa-label { line-height: 1; }

/* ─── CONTACT SECTION (sin formulario) ──────────────────── */
.contact-centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.contact-items--centered {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
}
.contact-items--centered .contact-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-width: 120px;
}
.contact-items--centered .contact-item h5,
.contact-items--centered .contact-item p {
  text-align: center;
}
.contact-centered .section-title,
.contact-centered .section-label {
  text-align: center;
}
.contact-items--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.contact-items--row .contact-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 2.5rem;
}
.contact-items--row .contact-item h5,
.contact-items--row .contact-item p {
  text-align: center;
}
.contact-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,.13);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .contact-items--row { flex-direction: column; gap: 1.2rem; }
  .contact-items--row .contact-item { padding: 0; }
  .contact-divider { width: 48px; height: 1px; }
}
.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: .5rem;
}
.btn-whatsapp-cta:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.50);
}



/* ─── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: var(--avocado-dark);
  color: rgba(255,255,255,.7);
  font-size: 13px; padding: 9px 0;
}
.top-bar .wrap {
  max-width: 1200px; margin: auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.top-bar a { color: inherit; text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: var(--avocado-light); }
.top-bar .left, .top-bar .right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar .sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.top-bar .social a {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  color: rgba(255,255,255,.8);
}
.top-bar .social a:hover { background: var(--avocado-mid); border-color: var(--avocado-mid); color: #fff; }

/* ─── HEADER ──────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.1); }
.header-inner {
  max-width: 1200px; margin: auto; padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 65px;
}
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  text-decoration: none; color: var(--text-mid);
  font-size: 14px; font-weight: 500; letter-spacing: .3px;
  position: relative; padding-bottom: 2px;
  transition: color .2s; white-space: nowrap;
}
nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--avocado-mid); transition: width .3s;
}
nav a:hover { color: var(--avocado-main); }
nav a:hover::after { width: 100%; }
.btn-primary {
  background: var(--avocado-main); color: #fff;
  padding: 11px 24px; border-radius: 4px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  letter-spacing: .3px; transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; flex-shrink: 0;
}
.btn-primary:hover { background: var(--avocado-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; border-radius: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--avocado-main);
  transition: transform .3s, opacity .3s; border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid rgba(0,0,0,.08);
  z-index: 99; padding: 20px 24px 28px;
  flex-direction: column; gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-10px); opacity: 0;
  transition: opacity .2s, transform .2s;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); }
.mobile-nav a {
  display: block; text-decoration: none; color: var(--text-mid);
  font-size: 16px; font-weight: 500; padding: 12px 8px;
  border-bottom: 1px solid rgba(0,0,0,.06); transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--avocado-main); }
.mobile-nav .btn-mob {
  margin-top: 12px; background: var(--avocado-main); color: #fff;
  border-radius: 4px; text-align: center; border-bottom: none; font-weight: 600;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--avocado-dark);
}

/* Hero background image container */
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  /* Hidden until loaded — JS adds .loaded class */
  opacity: 0;
  transition: opacity .6s ease;
}
.hero-bg-img.loaded { opacity: 1; }

/* Animated pattern (fallback / shows under photo) */
.hero-pattern {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(6, 1fr);
  opacity: .07; pointer-events: none;
}
.hero-pattern-cell {
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(32px, 4vw, 56px); padding: 20px;
  animation: floatCell 6s ease-in-out infinite;
}
.hero-pattern-cell:nth-child(even) { animation-delay: -3s; }
@keyframes floatCell {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,46,20,.88) 0%, rgba(42,69,32,.72) 60%, rgba(90,144,66,.3) 100%);
}
.hero-deco-circle {
  position: absolute; right: -120px; top: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(141,193,110,.15); pointer-events: none;
}
.hero-deco-circle-2 {
  position: absolute; right: -60px; top: -20px;
  width: 460px; height: 460px; border-radius: 50%;
  border: 1px solid rgba(141,193,110,.1); pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: auto; padding: 80px 40px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px); color: #fff;
  padding: 8px 18px; border-radius: 40px;
  font-size: 13px; font-weight: 500; letter-spacing: .5px; margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; background: var(--avocado-light);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.3); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 88px); font-weight: 700;
  color: #fff; line-height: 1.0; margin-bottom: 24px; letter-spacing: -1px;
}
.hero h1 em { font-style: italic; color: var(--flesh); }
.hero p {
  color: rgba(255,255,255,.75); font-size: 17px;
  max-width: 460px; line-height: 1.7; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero {
  background: var(--avocado-mid); color: #fff;
  padding: 14px 30px; border-radius: 4px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero:hover { background: var(--avocado-main); transform: translateY(-2px); }
.btn-hero-ghost {
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; padding: 14px 30px; border-radius: 4px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.18); }
.hero-right {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-avocado-wrap {
  position: relative; width: 340px; height: 400px;
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.hero-avo-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 32px 60px rgba(0,0,0,.4));
}
.hero-tag-pill {
  position: absolute; background: rgba(255,255,255,.95); border-radius: 40px;
  padding: 10px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  font-size: 13px; font-weight: 600; color: var(--avocado-dark); white-space: nowrap;
}
.hero-tag-pill .pill-icon { font-size: 18px; }
.pill-1 { bottom: 40px; left: -20px; }
.pill-2 { top: 50px; right: -30px; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:.8} }

/* ─── FEATURES STRIP ──────────────────────────────────────── */
.features-strip { background: var(--avocado-deep); }
.features-grid {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  padding: 36px 28px; border-right: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: flex-start; gap: 16px; transition: background .2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,.04); }
.feature-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(141,193,110,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.feature-item h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.feature-item p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.55; }

/* ─── SECTION SHARED ──────────────────────────────────────── */
.section { padding: 100px 40px; }
.section-inner { max-width: 1200px; margin: auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; color: var(--avocado-mid);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--avocado-mid); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  color: var(--avocado-dark); line-height: 1.1; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--avocado-mid); }
.section-desc { color: var(--text-muted); font-size: 16px; line-height: 1.75; max-width: 540px; }

/* ─── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.about-images { position: relative; height: 520px; }

/* Image wrappers — position on top of each other */
.about-img-wrap {
  position: absolute; border-radius: 10px; overflow: hidden;
  background: var(--avocado-pale);
}
.about-img-wrap.img-main  { top: 0; left: 0; width: 75%; height: 86%; }
.about-img-wrap.img-accent {
  bottom: 0; right: 0; width: 50%; height: 52%;
  background: var(--avocado-mid);
  border: 5px solid var(--cream);
}

/* Real image fills the wrapper */
.about-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  opacity: 0; transition: opacity .5s ease;
}
.about-img.loaded { opacity: 1; }

/* Placeholder label — hidden once image loads */
.img-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: var(--avocado-main);
  font-size: 12px; letter-spacing: .4px; text-align: center; padding: 16px;
  pointer-events: none;
  transition: opacity .4s;
}
.img-ph b { font-size: 13px; }
.img-ph span { opacity: .7; font-size: 11px; }
.img-ph--light { color: rgba(255,255,255,.8); }
.img-ph.hidden { opacity: 0; }

.about-badge {
  position: absolute; top: 46%; left: 50%;
  transform: translate(-30%, -50%);
  background: var(--avocado-main); color: #fff;
  border-radius: 10px; padding: 18px 20px; text-align: center;
  z-index: 3; border: 4px solid var(--cream);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.about-badge .num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px; font-weight: 700; line-height: 1;
}
.about-badge .lbl { font-size: 11px; opacity: .75; margin-top: 4px; letter-spacing: .5px; }

.checklist {
  list-style: none; margin: 28px 0 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px;
}
.checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-mid); font-weight: 500;
}
.checklist li::before {
  content: '✓'; flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(90,144,66,.15); color: var(--avocado-mid);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.btn-outline {
  background: transparent; color: var(--avocado-main);
  border: 2px solid var(--avocado-main);
  padding: 11px 24px; border-radius: 4px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--avocado-main); color: #fff; }

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }
.gallery-header .section-label::after { content: ''; width: 28px; height: 2px; background: var(--avocado-mid); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  border-radius: 10px; overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--cream-dark);
  aspect-ratio: 3/4;
  transition: transform .3s, box-shadow .3s;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.gallery-card:first-child { grid-row: span 2; aspect-ratio: auto; min-height: 480px; }

/* Real gallery image */
.gallery-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  opacity: 0; transition: opacity .5s ease, transform .5s ease;
}
.gallery-img.loaded { opacity: 1; }
.gallery-card:hover .gallery-img { transform: scale(1.04); }

/* Placeholder label inside card */
.gallery-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--avocado-mid); padding: 20px; text-align: center;
  transition: opacity .4s; pointer-events: none;
}
.gallery-ph b { font-size: 13px; color: var(--avocado-main); font-weight: 700; word-break: break-all; }
.gallery-ph span { font-size: 11px; opacity: .65; font-weight: 500; }
.gallery-ph.hidden { opacity: 0; }

/* Tints while no image — Palta */
.gallery-card:nth-child(1) { background: #ddefd0; }
.gallery-card:nth-child(2) { background: #e8f5de; }
.gallery-card:nth-child(3) { background: #f0f7e8; }
.gallery-card:nth-child(4) { background: #d5e8c5; }
.gallery-card:nth-child(5) { background: #c8e6b8; }

/* Tints while no image — Cítricos */
.gallery-card--citrus:nth-child(1) { background: #fff0d6; }
.gallery-card--citrus:nth-child(2) { background: #fde8c0; }
.gallery-card--citrus:nth-child(3) { background: #fdf2dc; }
.gallery-card--citrus:nth-child(4) { background: #ffe4a8; }
.gallery-card--citrus:nth-child(5) { background: #ffebc4; }

/* Gallery section divider label */
.gallery-section-label {
  display: flex; align-items: center; gap: 16px;
  margin: 48px 0 24px;
  color: var(--avocado-dark);
}
.gallery-section-label::before,
.gallery-section-label::after {
  content: ''; flex: 1; height: 1px;
  background: var(--avocado-mid); opacity: .35;
}
.gallery-section-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--avocado-mid);
  white-space: nowrap;
}
.gallery-section-label--citrus span { color: #c17a00; }
.gallery-section-label--citrus::before,
.gallery-section-label--citrus::after { background: #c17a00; }

/* Citrus tag colour */
.gallery-tag--citrus { background: #d4880a; }

/* Second grid — no top-spanning card for citrus */
.gallery-grid--citrus .gallery-card:first-child {
  grid-row: auto; aspect-ratio: 3/4; min-height: auto;
}

.gallery-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--avocado-main); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: .5px; text-transform: uppercase;
}
.gallery-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(28,46,20,.8) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 24px;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  color: #fff; font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--avocado-dark); position: relative; overflow: hidden; }
.stats-bar::before {
  content: '🥑'; position: absolute;
  font-size: 320px; opacity: .04;
  right: -40px; top: -60px; pointer-events: none;
}
.stats-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: auto; padding: 80px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat-item { padding: 16px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 700; color: #fff; line-height: 1;
}
.stat-num sup { font-size: 28px; vertical-align: top; margin-top: 12px; display: inline-block; }
.stat-label { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 8px; letter-spacing: .5px; }
.stat-line { width: 36px; height: 2px; background: var(--avocado-light); margin: 12px auto 0; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--avocado-dark); margin-bottom: 14px;
}
.contact-info p { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--avocado-main); color: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-item h5 { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p { font-size: 15px; color: var(--text-dark); font-weight: 500; margin: 0; }
.contact-form {
  background: var(--white); border-radius: 14px; padding: 48px;
  border: 1px solid rgba(0,0,0,.07); box-shadow: 0 8px 48px rgba(0,0,0,.06);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--avocado-dark); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block; font-size: 12px; font-weight: 700; color: var(--text-mid);
  margin-bottom: 7px; letter-spacing: .5px; text-transform: uppercase;
}
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #ddd8cc; border-radius: 6px;
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text-dark);
  background: var(--cream); transition: border-color .2s, background .2s; outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--avocado-mid); background: #fff; }
.form-field textarea { height: 130px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--avocado-main); color: #fff;
  border: none; padding: 15px; border-radius: 6px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--avocado-dark); transform: translateY(-1px); }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--avocado-dark); color: rgba(255,255,255,.65); padding: 70px 40px 0; }
.footer-grid {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: 14px; line-height: 1.75; margin: 18px 0 24px; }
.footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: #fff; }
.footer-logo-text span { color: var(--avocado-light); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-social a:hover { background: var(--avocado-mid); border-color: var(--avocado-mid); color: #fff; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px;
  transition: color .2s, padding-left .2s; display: inline-block;
}
.footer-col ul li a:hover { color: var(--avocado-light); padding-left: 5px; }
.footer-col .contact-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.footer-col .contact-line .icon { color: var(--avocado-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--avocado-light); text-decoration: none; }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card:first-child { grid-row: auto; min-height: auto; aspect-ratio: 3/4; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .top-bar { display: none; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .btn-primary.desktop-only { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero h1 { font-size: clamp(40px, 11vw, 72px); }
  .hero-content { padding: 60px 24px; }
  .section { padding: 72px 24px; }
  .header-inner { padding: 0 20px; }
  .contact-form { padding: 32px 24px; }
  .footer-grid { gap: 36px; padding: 0 0 40px; }
  footer { padding: 48px 24px 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .gallery-card:first-child { grid-row: auto; aspect-ratio: 3/4; min-height: auto; }
}

@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .btn-hero, .btn-hero-ghost { justify-content: center; }
  #back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 16px; }
  #whatsapp-float { bottom: 80px; right: 16px; height: 46px; padding: 0 14px; font-size: 13px; }
  .wa-label { display: none; }
  #whatsapp-float { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
  .about-images { height: 300px; }
  .about-img-wrap.img-accent { width: 55%; height: 48%; }
}


/* ─── PRESENCE SECTION ────────────────────────── */
.presence-section {
  width: 100%;
  max-width: 900px;
  margin: 44px 0 40px;
}

.presence-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.presence-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--avocado-pale), transparent);
}
.presence-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--avocado-main);
  white-space: nowrap;
}

.presence-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

/* ─── Location Cards ──────────────────────────── */
.presence-locations {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ploc-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(61,107,44,0.10);
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  transition: all 0.22s ease;
  overflow: hidden;
}
.ploc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--avocado-pale);
  border-radius: 3px 0 0 3px;
  transition: background 0.22s;
}
.ploc-card:hover {
  box-shadow: 0 4px 20px rgba(61,107,44,0.10);
  border-color: rgba(61,107,44,0.22);
  transform: translateX(3px);
}
.ploc-card:hover::before { background: var(--avocado-main); }
.ploc-card--primary {
  background: linear-gradient(135deg, #f8fdf5 0%, #fff 100%);
  border-color: rgba(61,107,44,0.18);
}
.ploc-card--primary::before { background: var(--avocado-main); }

.ploc-type {
  position: absolute;
  top: 8px; right: 36px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ploc-icon-wrap {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(61,107,44,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--avocado-main);
}
.ploc-card--primary .ploc-icon-wrap {
  background: var(--avocado-main);
  color: #fff;
}

.ploc-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}
.ploc-info strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ploc-info span {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ploc-flag {
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ─── Presence Map ────────────────────────────── */
.presence-map {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(61,107,44,0.14);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.pmap-label {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--avocado-dark);
  color: var(--avocado-pale);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  margin: 0;
}
.pmap-label svg { color: #6bcf6b; flex-shrink: 0; }
.pmap-frame {
  flex: 1;
  min-height: 340px;
}
.pmap-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

/* ─── FOOTER MAP ──────────────────────────────── */
.footer-col--contact { min-width: 240px; }
.footer-map {
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-map iframe { display: block; filter: brightness(0.82) saturate(0.75); }

@media (max-width: 860px) {
  .presence-layout { grid-template-columns: 1fr; }
  .pmap-frame, .pmap-frame iframe { min-height: 260px; }
}
@media (max-width: 600px) {
  .ploc-info strong, .ploc-info span { white-space: normal; }
  .ploc-type { display: none; }
  .footer-map { display: none; }
}
