:root {
  /* Paleta naturaleza — verdes profundos, crema orgánica */
  --forest-950: #0a1f12;
  --forest-900: #0f2c19;
  --forest-800: #17361f;
  --forest-700: #1e5631;
  --forest-600: #2d6b3f;
  --forest-500: #4a7c59;
  --forest-400: #7a9b7a;
  --moss-300: #a8bda0;
  --sage-200: #d4dfc4;

  --cream-50: #faf8f1;
  --cream-100: #f5f2e8;
  --cream-200: #ece7d5;
  --stone-300: #c9c2ad;

  --earth-700: #5a4a34;
  --earth-500: #8a7b5f;

  --accent: #c9d94e; /* verde lima brillante — solo acentos */

  --ink: #0a1f12;
  --ink-soft: #2a3a2e;
  --muted: #6b7566;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body.menu-open {
  overflow: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Text wrap */
h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }

/* Focus visible accesible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--forest-900);
}

/* Skip link a11y */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--forest-900); color: var(--cream-50);
  padding: 12px 20px; z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  white-space: normal;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
section[id],
main[id],
footer[id] {
  scroll-margin-top: 110px;
}
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* ═══════════════════════════ NAVBAR ═══════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background .4s ease, backdrop-filter .4s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(15, 44, 25, 0.92);
  backdrop-filter: blur(14px);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand {
  display: flex; align-items: center;
  color: var(--cream-50);
  transition: transform .3s ease;
}
.brand:hover { transform: scale(1.04); }
.brand-mark {
  width: 120px; height: 120px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 248, 241, 0.98) 0%, rgba(250, 248, 241, 0.92) 65%, rgba(250, 248, 241, 0.85) 100%);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(201, 217, 78, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: width .3s ease, height .3s ease, box-shadow .3s ease;
  padding: 8px;
}
.brand:hover .brand-mark {
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 0 3px var(--accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(15, 44, 25, 0.15));
}
.nav.scrolled .brand-mark {
  width: 78px; height: 78px;
  padding: 6px;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(201, 217, 78, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
@media (max-width: 980px) {
  .brand-mark { width: 90px; height: 90px; padding: 7px; }
  .nav.scrolled .brand-mark { width: 62px; height: 62px; padding: 5px; }
}
@media (max-width: 480px) {
  .brand-mark { width: 68px; height: 68px; padding: 5px; box-shadow: 0 4px 14px rgba(0,0,0,.35), 0 0 0 2px rgba(201, 217, 78, 0.4); }
  .nav.scrolled .brand-mark { width: 52px; height: 52px; padding: 4px; }
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(245, 242, 232, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  background: var(--accent);
  color: var(--forest-900);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,217,78,.35); }
.btn-wa svg { width: 16px; height: 16px; }

.nav-burger {
  display: none;
  background: rgba(245, 242, 232, 0.08);
  border: 1px solid rgba(245, 242, 232, 0.14);
  color: var(--cream-50);
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav-burger:hover {
  background: rgba(245, 242, 232, 0.14);
  border-color: rgba(245, 242, 232, 0.2);
  transform: translateY(-1px);
}
.nav-burger svg {
  display: block;
}
.nav-burger[aria-expanded="true"] {
  background: rgba(201, 217, 78, 0.16);
  border-color: rgba(201, 217, 78, 0.35);
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* dynamic viewport para móviles */
  background: var(--forest-950);
  color: var(--cream-50);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  padding-top: 140px;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.72) saturate(1.05);
  transform: scale(1.02);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1.08); }
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,31,18,.55) 0%, rgba(10,31,18,.15) 30%, rgba(10,31,18,.85) 100%),
    linear-gradient(90deg, rgba(10,31,18,.5) 0%, transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 15ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--moss-300);
}
.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  max-width: 52ch;
  color: rgba(245, 242, 232, 0.82);
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: var(--cream-50);
  color: var(--forest-900);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all .25s;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform .25s; }
.btn-primary:hover .arrow { transform: translate(3px, -3px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border: 1px solid rgba(245, 242, 232, 0.35);
  color: var(--cream-50);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  transition: all .25s;
}
.btn-ghost:hover { background: rgba(245, 242, 232, 0.08); border-color: var(--cream-50); }

.hero-meta {
  display: flex; flex-direction: column; gap: 22px;
  align-self: end;
  padding-bottom: 8px;
}
.hero-meta-item {
  padding: 14px 0;
  border-top: 1px solid rgba(245, 242, 232, 0.18);
  min-width: 200px;
}
.hero-meta-item:last-child { border-bottom: 1px solid rgba(245, 242, 232, 0.18); }
.hero-meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss-300);
  margin-bottom: 4px;
}
.hero-meta-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  color: rgba(245, 242, 232, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .line {
  width: 1px; height: 30px;
  background: linear-gradient(180deg, rgba(245,242,232,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* ═══════════════════════════ VALORES BAR ═══════════════════════════ */
.values {
  background: var(--forest-900);
  color: var(--cream-50);
  padding: 80px 0;
  position: relative;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.value-item {
  padding-right: 30px;
  border-left: 1px solid rgba(245, 242, 232, 0.12);
  padding-left: 30px;
}
.value-item:first-child { border-left: 0; padding-left: 0; }
.value-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.value-num::after {
  content: ''; flex: 1; height: 1px; background: rgba(201, 217, 78, 0.3);
}
.value-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.value-text {
  color: rgba(245, 242, 232, 0.7);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ═══════════════════════════ SECTION SHELL ═══════════════════════════ */
section { position: relative; }
.section-pad {
  padding: clamp(90px, 12vw, 160px) 0;
}
.transform,
.gallery,
.services,
.why,
.process,
.zones,
.faq,
.contact,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--forest-600);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--forest-900);
  max-width: 22ch;
  margin-bottom: 22px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest-600);
}
.section-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.55;
}

/* ═══════════════════════════ ANTES / DESPUÉS ═══════════════════════════ */
.transform {
  background: var(--cream-50);
}
.transform-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: end;
}
.transform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.tcard {
  background: var(--forest-900);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  position: relative;
}
.tcard.after { background: var(--forest-700); }
.tcard-tag {
  position: absolute; top: 24px; left: 24px;
  z-index: 3;
  background: rgba(10, 31, 18, 0.6);
  backdrop-filter: blur(10px);
  color: var(--cream-50);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 242, 232, 0.15);
}
.tcard.after .tcard-tag { background: rgba(201, 217, 78, 0.9); color: var(--forest-900); border-color: transparent; }
.tcard-img {
  flex: 1;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.tcard-img::before,
.tcard-img::after {
  content: '';
  position: absolute;
  inset: 0;
}
.tcard.before .tcard-img {
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.14) 0 8%, transparent 9%),
    linear-gradient(180deg, #b8c4b6 0%, #dde4d4 42%, #66724d 43%, #3c4d2d 100%);
}
.tcard.before .tcard-img::before {
  inset: auto -5% 0;
  height: 72%;
  background:
    linear-gradient(180deg, transparent 0 18%, rgba(0,0,0,.08) 19% 100%),
    repeating-linear-gradient(92deg,
      rgba(24, 43, 18, 0.00) 0 18px,
      rgba(24, 43, 18, 0.85) 18px 21px,
      rgba(83, 106, 49, 0.95) 21px 24px,
      rgba(24, 43, 18, 0.00) 24px 34px),
    repeating-linear-gradient(103deg,
      rgba(0,0,0,0) 0 14px,
      rgba(61, 87, 33, 0.88) 14px 18px,
      rgba(112, 136, 69, 0.95) 18px 21px,
      rgba(0,0,0,0) 21px 30px);
  clip-path: polygon(0 100%, 0 48%, 7% 37%, 14% 46%, 19% 28%, 27% 43%, 34% 24%, 41% 41%, 48% 22%, 57% 40%, 64% 25%, 71% 43%, 79% 31%, 87% 47%, 94% 35%, 100% 49%, 100% 100%);
  filter: drop-shadow(0 -12px 18px rgba(0,0,0,.18));
}
.tcard.before .tcard-img::after {
  background:
    radial-gradient(circle at 15% 84%, rgba(17,34,15,.82) 0 12%, transparent 13%),
    radial-gradient(circle at 34% 80%, rgba(17,34,15,.78) 0 10%, transparent 11%),
    radial-gradient(circle at 56% 85%, rgba(17,34,15,.8) 0 14%, transparent 15%),
    radial-gradient(circle at 76% 82%, rgba(17,34,15,.75) 0 11%, transparent 12%),
    linear-gradient(180deg, transparent 0 58%, rgba(8, 17, 10, .18) 100%);
  mix-blend-mode: multiply;
}
.tcard.after .tcard-img {
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.18) 0 8%, transparent 9%),
    linear-gradient(180deg, #ccd8cf 0%, #edf3ee 44%, #93a269 45%, #6f8245 64%, #8d7450 65%, #786243 100%);
}
.tcard.after .tcard-img::before {
  inset: auto 0 0;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(233, 225, 195, .12) 0%, rgba(84, 109, 45, 0) 34%),
    repeating-linear-gradient(96deg,
      rgba(112, 132, 67, .55) 0 18px,
      rgba(143, 161, 92, .22) 18px 30px,
      rgba(103, 124, 60, .6) 30px 34px,
      rgba(130, 149, 79, .15) 34px 48px),
    linear-gradient(180deg, rgba(110, 131, 65, .12) 0%, rgba(112, 91, 63, .85) 100%);
  clip-path: polygon(0 100%, 0 42%, 100% 12%, 100% 100%);
}
.tcard.after .tcard-img::after {
  left: 16%;
  right: 16%;
  top: 36%;
  bottom: 0;
  border-radius: 45% 45% 8% 8% / 58% 58% 6% 6%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 18%),
    linear-gradient(180deg, rgba(198, 210, 142, .6) 0%, rgba(162, 177, 103, .42) 38%, rgba(140, 118, 84, .75) 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), inset 0 12px 24px rgba(255,255,255,.12);
}
.scene-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 48px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 31, 18, 0.62);
  backdrop-filter: blur(10px);
  color: var(--cream-50);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 242, 232, 0.14);
}
.tcard.after .scene-note {
  background: rgba(245, 242, 232, 0.88);
  color: var(--forest-900);
  border-color: rgba(10, 31, 18, 0.08);
}
.tcard-body {
  padding: 30px 32px 32px;
}
.tcard-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.tcard-text {
  color: rgba(245, 242, 232, 0.75);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.tcard-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.9rem;
}
.tcard-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(245, 242, 232, 0.85);
}
.tcard-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.tcard.before .tcard-list li::before { background: var(--stone-300); }

/* ═══════════════════════════ GALERÍA BENTO ═══════════════════════════ */
.gallery {
  background: var(--forest-950);
  color: var(--cream-50);
}
.gallery .section-title { color: var(--cream-50); }
.gallery .section-title em { color: var(--moss-300); }
.gallery .eyebrow { color: var(--accent); }
.gallery .eyebrow::before { background: var(--accent); }
.gallery .section-lead { color: rgba(245, 242, 232, 0.75); }

.gallery-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: end;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gitem {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.gitem img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1), filter .5s;
}
.gitem::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 18, 0.92) 100%);
  transition: opacity .3s;
}
.gitem:hover img { transform: scale(1.06); }
.gitem-caption {
  position: absolute;
  bottom: 20px; left: 22px; right: 22px;
  z-index: 2;
  color: var(--cream-50);
}
.gitem-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.gitem-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.g1 { grid-column: span 4; grid-row: span 2; }
.g2 { grid-column: span 2; grid-row: span 2; }
.g3 { grid-column: span 2; grid-row: span 2; }
.g4 { grid-column: span 2; grid-row: span 2; }
.g5 { grid-column: span 2; grid-row: span 2; }

/* ═══════════════════════════ SERVICIOS ═══════════════════════════ */
.services {
  background: var(--cream-100);
}
.svc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--stone-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc {
  background: var(--cream-50);
  padding: 48px 42px 44px;
  display: flex; flex-direction: column;
  min-height: 340px;
  transition: background .4s;
  position: relative;
  overflow: hidden;
}
.svc:hover { background: var(--forest-900); color: var(--cream-50); }
.svc-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest-600);
  letter-spacing: 0.15em;
  margin-bottom: auto;
  transition: color .4s;
}
.svc:hover .svc-num { color: var(--accent); }
.svc-icon {
  margin-bottom: 24px;
  color: var(--forest-700);
  transition: color .4s;
}
.svc:hover .svc-icon { color: var(--accent); }
.svc-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--forest-900);
  transition: color .4s;
}
.svc:hover .svc-title { color: var(--cream-50); }
.svc-text {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin-bottom: 26px;
  transition: color .4s;
  line-height: 1.55;
}
.svc:hover .svc-text { color: rgba(245, 242, 232, 0.8); }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--forest-700);
  transition: color .4s;
}
.svc-link svg { transition: transform .3s; }
.svc:hover .svc-link { color: var(--accent); }
.svc:hover .svc-link svg { transform: translate(4px, -4px); }

/* ═══════════════════════════ POR QUÉ ═══════════════════════════ */
.why {
  background: var(--cream-50);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.why-visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest-900);
}
.why-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.why-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream-50);
  padding: 18px 22px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 10px 30px rgba(10, 31, 18, 0.2);
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--forest-700);
  line-height: 1;
  letter-spacing: -0.03em;
}
.why-badge-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.25;
  max-width: 14ch;
}

.why-list {
  list-style: none;
  margin-top: 40px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--stone-300);
}
.why-list li {
  padding: 26px 0;
  border-bottom: 1px solid var(--stone-300);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: start;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.why-list h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--forest-900);
  margin-bottom: 4px;
}
.why-list p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ═══════════════════════════ PROCESO ═══════════════════════════ */
.process {
  background: var(--forest-900);
  color: var(--cream-50);
  overflow: hidden;
}
.process .section-title { color: var(--cream-50); }
.process .section-title em { color: var(--moss-300); }
.process .eyebrow { color: var(--accent); }
.process .eyebrow::before { background: var(--accent); }
.process .section-lead { color: rgba(245, 242, 232, 0.75); }

.process-head { margin-bottom: 70px; max-width: 700px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 34px; left: 40px; right: 40px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(201,217,78,.4) 0 8px, transparent 8px 16px);
}
.step {
  padding: 0 24px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--forest-800);
  border: 1px solid rgba(201, 217, 78, 0.4);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.step p {
  color: rgba(245, 242, 232, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ═══════════════════════════ ZONAS ═══════════════════════════ */
.zones {
  background: var(--cream-100);
}
.zones-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.zones-list {
  list-style: none;
  margin-top: 34px;
}
.zones-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--stone-300);
  display: flex; align-items: center; gap: 16px;
  font-size: 1.05rem;
  color: var(--forest-900);
  font-weight: 500;
}
.zones-list li:first-child { border-top: 1px solid var(--stone-300); }
.zones-list li svg { color: var(--forest-600); flex-shrink: 0; }

.zones-map {
  aspect-ratio: 1/1;
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  padding: 40px;
  color: var(--cream-50);
  display: flex; flex-direction: column; justify-content: space-between;
}
.zones-map svg { max-width: 100%; height: auto; }
.zones-map-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.zones-map-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq {
  background: var(--cream-50);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  border-top: 1px solid var(--stone-300);
}
.faq-item {
  border-bottom: 1px solid var(--stone-300);
}
.faq-q {
  width: 100%;
  padding: 26px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-900);
  letter-spacing: -0.01em;
  transition: color .2s;
}
.faq-q:hover { color: var(--forest-600); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-100);
  display: grid; place-items: center;
  color: var(--forest-700);
  transition: transform .3s, background .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--forest-900); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-a[hidden] {
  padding-bottom: 0 !important;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 26px; }
.faq-a p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 60ch;
  line-height: 1.6;
}

/* ═══════════════════════════ CTA / CONTACT ═══════════════════════════ */
.contact {
  background: var(--forest-950);
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; font-weight: 400; color: var(--moss-300); }
.contact-lead {
  color: rgba(245, 242, 232, 0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 45ch;
}
.contact-info {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 34px;
}
.info-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 242, 232, 0.12);
}
.info-item:first-child { border-top: 1px solid rgba(245, 242, 232, 0.12); }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201, 217, 78, 0.15);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 232, 0.55);
  margin-bottom: 3px;
}
.info-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.info-value a:hover { color: var(--accent); }

.form-card {
  background: rgba(245, 242, 232, 0.04);
  border: 1px solid rgba(245, 242, 232, 0.1);
  padding: 44px 42px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-card > p {
  color: rgba(245, 242, 232, 0.65);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 20px;
}
.field label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 242, 232, 0.6);
}
.field input, .field textarea, .field select {
  padding: 14px 16px;
  background: rgba(245, 242, 232, 0.06);
  border: 1px solid rgba(245, 242, 232, 0.12);
  border-radius: 8px;
  color: var(--cream-50);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--accent);
  background: rgba(245, 242, 232, 0.09);
}
.field textarea { min-height: 100px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card button {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--forest-900);
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  margin-top: 8px;
}
.form-card button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(201,217,78,.3); }

/* Contenido WordPress / SEO editorial */
.wp-page-content {
  overflow-wrap: anywhere;
}
.wp-page-content > * + * {
  margin-top: 1em;
}
.wp-page-content img,
.wp-page-content iframe,
.wp-page-content video,
.wp-page-content embed,
.wp-page-content object {
  max-width: 100%;
  height: auto;
}
.wp-page-content iframe,
.wp-page-content embed,
.wp-page-content object {
  width: 100%;
  min-height: 320px;
  border: 0;
}
.wp-page-content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
.wp-page-content th,
.wp-page-content td {
  padding: 12px 14px;
  border: 1px solid var(--stone-300);
  text-align: left;
}
.wp-page-content th {
  background: var(--cream-100);
  color: var(--forest-900);
}
.wp-page-content pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 18px;
  border-radius: 14px;
  background: var(--forest-950);
  color: var(--cream-50);
}
.wp-page-content .wp-block-image img {
  border-radius: 14px;
}

/* Decorative leaf on contact */
.leaf-deco {
  position: absolute;
  right: -80px; top: 10%;
  width: 500px; opacity: 0.05;
  transform: rotate(20deg);
  pointer-events: none;
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
footer {
  background: var(--forest-950);
  color: rgba(245, 242, 232, 0.7);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(245, 242, 232, 0.08);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.footer-brand-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-50);
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3), 0 0 0 2px rgba(201, 217, 78, 0.25);
}
.footer-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-desc { max-width: 42ch; margin-bottom: 20px; line-height: 1.55; }
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 232, 0.15);
  display: grid; place-items: center;
  transition: all .2s;
  color: rgba(245, 242, 232, 0.85);
}
.footer-social a:hover { background: var(--accent); color: var(--forest-900); border-color: var(--accent); }

.footer-col h5 {
  color: var(--cream-50);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(245, 242, 232, 0.08);
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(245, 242, 232, 0.5);
  flex-wrap: wrap; gap: 14px;
}

/* Franja de contacto destacada — email + teléfono */
.footer-contact-bar {
  padding: 30px 0;
  border-top: 1px solid rgba(245, 242, 232, 0.1);
  border-bottom: 1px solid rgba(245, 242, 232, 0.1);
  margin-bottom: 26px;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.footer-contact-bar .fc-item {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-bar .fc-item svg { color: var(--accent); flex-shrink: 0; }
.footer-contact-bar .fc-item:hover { color: var(--accent); }
@media (max-width: 720px) {
  .footer-contact-bar { gap: 20px; padding: 24px 0; flex-direction: column; }
  .footer-contact-bar .fc-item { font-size: 1rem; }
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: #25D366;
  opacity: .3;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: .4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — mobile-first refinado con breakpoints escalonados
   ═══════════════════════════════════════════════════════════════════ */

/* ═══ TABLET horizontal (≤1200px) ═══ */
@media (max-width: 1200px) {
  .container { padding: 0 clamp(20px, 3.5vw, 40px); }
  .nav-inner { gap: 20px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.88rem; }
  .brand-mark { width: 102px; height: 102px; }
  .nav.scrolled .brand-mark { width: 72px; height: 72px; }
  .btn-wa { padding: 10px 16px; }
  .hero-title { font-size: clamp(2.4rem, 6vw, 5rem); }
  .hero-content { max-width: 760px; }
  .section-title { font-size: clamp(1.9rem, 4vw, 3.2rem); }
  .transform-head, .gallery-head, .svc-head { gap: 40px; }
  .why-inner { gap: 60px; }
  .contact-inner { gap: 60px; }
}

/* ═══ TABLET vertical (≤980px) ═══ */
@media (max-width: 980px) {
  .nav { padding-top: calc(10px + env(safe-area-inset-top)); }
  .nav-inner {
    position: relative;
    gap: 14px;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(15, 44, 25, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 18px 18px 24px;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
    animation: navSlide .3s ease;
    max-height: min(70vh, 520px);
    overflow-y: auto;
  }
  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open li {
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links.open li:last-child { border-bottom: 0; }
  .nav-links.open a {
    display: block;
    padding: 16px 6px;
    font-size: 1rem;
  }
  .nav-actions { margin-left: auto; }
  .nav-burger { display: block; }
  .btn-wa span { display: none; }
  .btn-wa {
    padding: 10px 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: 0;
  }
  .hero-meta-item { min-width: 45%; flex: 1; padding: 12px 0; }
  .values-grid { grid-template-columns: 1fr; gap: 30px; }
  .value-item {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid rgba(245, 242, 232, 0.12);
    padding-top: 30px;
  }
  .value-item:first-child { border-top: 0; padding-top: 0; }
  .transform-head, .gallery-head, .svc-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .transform-cards { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .g1, .g2, .g3, .g4, .g5 { grid-column: span 1; grid-row: span 1; }
  .g1 { grid-column: span 2; grid-row: span 1; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 50px; }
  .why-visual { max-width: 500px; margin: 0 auto; aspect-ratio: 4/3; }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .process-steps::before { display: none; }
  .zones-inner, .faq-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .zones-map { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 34px 30px; }
}

/* ═══ MÓVIL grande (≤720px) ═══ */
@media (max-width: 720px) {
  html { scroll-padding-top: 88px; }
  .container { padding: 0 20px; }
  .section-pad { padding: clamp(70px, 14vw, 100px) 0; }

  /* Hero */
  .hero {
    min-height: 92vh;
    min-height: 92dvh; /* usa dvh donde exista */
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero-media img { object-position: 62% center; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.4rem); margin-bottom: 22px; max-width: 100%; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 30px; max-width: 100%; }
  .hero-eyebrow { font-size: 0.72rem; margin-bottom: 20px; }
  .hero-ctas { gap: 10px; }
  .btn-primary, .btn-ghost {
    padding: 14px 22px;
    font-size: 0.92rem;
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
  .hero-meta-item { min-width: 100%; padding: 10px 0; }
  .hero-meta-value { font-size: 1rem; }
  .scroll-hint { display: none; }

  /* Secciones */
  .section-title { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .section-lead { font-size: 0.98rem; }
  .eyebrow { font-size: 0.72rem; }

  /* Valores */
  .values { padding: 60px 0; }
  .value-title { font-size: 1.7rem; }

  /* Antes / Después */
  .tcard { min-height: 420px; }
  .tcard-img { min-height: 220px; }
  .tcard-body { padding: 24px 26px 26px; }
  .tcard-title { font-size: 1.3rem; }

  /* Galería */
  .gitem-caption { bottom: 14px; left: 14px; right: 14px; }
  .gitem-title { font-size: 0.95rem; }
  .gitem-cat { font-size: 0.62rem; }

  /* Servicios */
  .svc { padding: 34px 28px; min-height: auto; }
  .svc-title { font-size: 1.5rem; }
  .svc-icon svg { width: 36px; height: 36px; }

  /* Por qué */
  .why-list li {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 22px 0;
  }
  .why-icon { width: 40px; height: 40px; }
  .why-list h4 { font-size: 1.1rem; }
  .why-list p { font-size: 0.9rem; }
  .why-badge { padding: 14px 18px; gap: 12px; }
  .why-badge-num { font-size: 2rem; }
  .why-badge-label { font-size: 0.72rem; }

  /* Proceso */
  .process-steps { grid-template-columns: 1fr; gap: 30px; }
  .step { padding: 0; }
  .step-num { width: 56px; height: 56px; font-size: 1.25rem; margin-bottom: 18px; }

  /* Zonas */
  .zones-list li { font-size: 0.98rem; padding: 14px 0; }
  .zones-map { padding: 30px 24px; }
  .zones-map-title { font-size: 1.35rem; }

  /* FAQ */
  .faq-q { font-size: 1.02rem; padding: 22px 0; gap: 14px; }
  .faq-icon { width: 28px; height: 28px; }
  .faq-a p { font-size: 0.94rem; }

  /* Contacto */
  .contact-title { font-size: clamp(2rem, 8vw, 3rem); }
  .contact-lead { font-size: 0.98rem; }
  .form-card { padding: 30px 26px; border-radius: 14px; }
  .form-card h3 { font-size: 1.35rem; }
  .info-item { padding: 14px 0; gap: 14px; }
  .info-icon { width: 40px; height: 40px; }
  .info-value { font-size: 1rem; }
  .field-row { grid-template-columns: 1fr; }
  .field input, .field textarea, .field select { padding: 13px 15px; font-size: 16px; /* evita zoom iOS */ }
  .wp-page-content iframe,
  .wp-page-content embed,
  .wp-page-content object { min-height: 220px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 34px; margin-bottom: 40px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 0.78rem;
  }

  /* WhatsApp flotante — no bloquear contenido */
  .wa-float {
    bottom: 18px; right: 18px;
    width: 52px; height: 52px;
  }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ═══ MÓVIL medio (≤480px) ═══ */
@media (max-width: 480px) {
  html { scroll-padding-top: 80px; }
  .container { padding: 0 16px; }
  .nav-actions { gap: 8px; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); line-height: 1.02; }
  .hero-sub { font-size: 0.94rem; }
  .btn-primary, .btn-ghost {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  .btn-ghost { border-width: 1px; }
  .section-title { font-size: clamp(1.55rem, 7.2vw, 2.1rem); }
  .value-title { font-size: 1.5rem; }
  .svc { padding: 30px 22px; }
  .svc-title { font-size: 1.35rem; }
  .tcard-body { padding: 20px 22px 22px; }
  .tcard-title { font-size: 1.2rem; }

  /* Galería: 1 columna limpia */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 12px;
  }
  .g1, .g2, .g3, .g4, .g5 { grid-column: span 1; grid-row: span 1; }

  /* Zonas map SVG más pequeño */
  .zones-map { padding: 24px 20px; aspect-ratio: 4/5; }
  .zones-map-title { font-size: 1.2rem; }

  /* Form legible */
  .form-card { padding: 26px 22px; }

  /* WhatsApp botón hero: ocultamos icono para ganar espacio */
  .btn-primary .arrow { display: none; }
}

/* ═══ MÓVIL pequeño (≤380px) ═══ */
@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; }
  .btn-wa { padding: 9px 12px; }
  .value-title { font-size: 1.35rem; }
  .svc-title { font-size: 1.25rem; }
}

/* ═══ ANCHO extra (≥1600px) — desktops grandes ═══ */
@media (min-width: 1600px) {
  .container { max-width: 1500px; }
  .hero-title { font-size: 6rem; }
  .section-title { font-size: 4rem; }
}

/* ═══ Prefer reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media img { animation: none !important; transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══ Landscape móvil — hero más corto ═══ */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding: 100px 0 40px; }
  .hero-title { font-size: 2rem; margin-bottom: 14px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 20px; }
}
/* ─────────────────────────────────────────────
   Antes/Después con imágenes reales
   Si .tcard-img contiene <picture>/<img>, ocultamos
   los pseudo-elementos ilustrativos y mostramos la foto.
   ───────────────────────────────────────────── */
.tcard-img:has(img) { background: #000; }
.tcard-img:has(img)::before,
.tcard-img:has(img)::after { display: none; content: none; }
.tcard-img > picture,
.tcard-img > picture > img,
.tcard-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.tcard:hover .tcard-img > picture > img,
.tcard:hover .tcard-img > img { transform: scale(1.04); }
/* La etiqueta de escena queda legible sobre la foto */
.tcard-img:has(img) .scene-note {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);
  padding: 40px 22px 18px;
  border-radius: 0;
  left: 0; right: 0; bottom: 0;
  color: #fff;
}

.footer-contact-bar {
  padding: 30px 0;
  border-top: 1px solid rgba(245, 242, 232, 0.14);
  border-bottom: 1px solid rgba(245, 242, 232, 0.14);
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
  text-align: center;
}
.footer-contact-bar .fc-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #faf8f1;                       /* fallback sólido */
  color: var(--cream-50);
  font-family: var(--font-display, "Bricolage Grotesque", system-ui, sans-serif);
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: .01em;
}
.footer-contact-bar .fc-item svg {
  color: #c9d94e;                       /* fallback sólido */
  color: var(--accent);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.footer-contact-bar .fc-item:hover,
.footer-contact-bar .fc-item:focus { color: var(--accent, #c9d94e); }
.footer-contact-bar .fc-item span { color: inherit; }

/* ════════════════════════════════════════════════════════
   BANNER DE COOKIES
   ════════════════════════════════════════════════════════ */
.cookie-banner{
  position:fixed;bottom:20px;left:20px;right:20px;
  max-width:520px;margin:0 auto;
  background:#0f2c19;color:#f5f2e8;
  border-radius:16px;padding:24px 24px 20px;
  box-shadow:0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(201,217,78,.2);
  z-index:9998;
  transform:translateY(120%);opacity:0;
  transition:transform .5s cubic-bezier(.2,.8,.2,1), opacity .3s;
  font-family:var(--font-body, 'Inter', system-ui, sans-serif);
}
.cookie-banner.show{transform:translateY(0);opacity:1}
.cookie-banner .cb-icon{
  width:44px;height:44px;border-radius:12px;
  background:rgba(201,217,78,.15);
  display:flex;align-items:center;justify-content:center;
  color:#c9d94e;margin-bottom:14px;
}
.cookie-banner h3{
  font-family:var(--font-display, 'Bricolage Grotesque', system-ui, sans-serif);
  font-size:1.15rem;font-weight:600;margin:0 0 8px;letter-spacing:-.01em;
  color:#f5f2e8;
}
.cookie-banner p{
  font-size:.9rem;line-height:1.55;margin:0 0 18px;
  color:rgba(245,242,232,.82);
}
.cookie-banner p a{color:#c9d94e;text-decoration:underline;text-underline-offset:2px}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap}
.cb-btn{
  flex:1;min-width:120px;
  padding:11px 20px;border-radius:999px;border:none;cursor:pointer;
  font-family:var(--font-display, 'Bricolage Grotesque', system-ui, sans-serif);
  font-size:.9rem;font-weight:600;letter-spacing:.01em;
  transition:transform .15s, background .2s, color .2s;
}
.cb-btn:hover{transform:translateY(-1px)}
.cb-accept{background:#c9d94e;color:#0f2c19}
.cb-accept:hover{background:#dae65a}
.cb-reject{background:transparent;color:#f5f2e8;border:1px solid rgba(245,242,232,.25)}
.cb-reject:hover{background:rgba(245,242,232,.08);border-color:#c9d94e;color:#c9d94e}
@media (max-width:480px){
  .cookie-banner{left:12px;right:12px;bottom:12px;padding:20px}
  .cb-btn{width:100%;flex:none}
}

