/* ===== TOKENS ===== */
:root {
  --forest: #8a5326;        /* marrón terracota principal (títulos / nav) */
  --forest-2: #5e3a1f;      /* marrón cálido oscuro (no tan oscuro) */
  --forest-3: #a86c3c;      /* marrón medio claro */
  --green: #db8a47;         /* acento naranjo/terracota (botones) */
  --green-dark: #c46d2e;    /* terracota más intenso (hover/gradiente) */
  --leaf: #f3e4cf;          /* arena clara */
  --gold: #d8aa56;
  --gold-2: #f0cb7b;
  --cream: #faf3e7;         /* crema cálido de fondo */
  --white: #ffffff;
  --ink: #3a2c1d;           /* texto marrón cálido */
  --muted: #8c7866;         /* gris-tierra para texto secundario */
  --line: rgba(120, 80, 46, 0.14);
  --shadow: 0 26px 80px rgba(74, 47, 28, 0.18);
  --shadow-sm: 0 14px 40px rgba(74, 47, 28, 0.08);
  --radius: 26px;
  --max: 1220px;
  --header-h: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.center { text-align: center; }

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== BUTTONS ===== */
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #3a2410; box-shadow: 0 16px 34px rgba(217, 138, 78, 0.35); }
.btn-primary:hover { box-shadow: 0 20px 40px rgba(217, 138, 78, 0.45); }
.btn-dark { background: linear-gradient(135deg, var(--forest-2), var(--forest)); color: var(--white); box-shadow: 0 16px 34px rgba(74, 47, 28, 0.28); }
.btn-outline { background: var(--white); color: var(--forest); border: 1px solid var(--line); box-shadow: 0 12px 26px rgba(74, 47, 28, 0.08); }
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); }

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--forest-2), var(--forest));
  color: rgba(255, 255, 255, 0.94);
  padding: 11px 16px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 245, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 54px; width: auto; max-width: 62vw; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.92rem; font-weight: 600; color: var(--forest); }
.nav-links a { opacity: 0.85; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--green-dark); }
.nav-cta { color: #3a2410; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--forest); border-radius: 3px; transition: .3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  color: var(--white);
  min-height: calc(100vh - 122px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -8% 0 0 0;
  height: 116%;
  background: url('images/hero.jpg') center/cover no-repeat;
  z-index: -2;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(52, 33, 18, 0.92) 0%, rgba(74, 47, 28, 0.72) 46%, rgba(120, 80, 46, 0.42) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 70px 0 84px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  font-size: 0.8rem; font-weight: 700; margin-bottom: 20px;
}
.pulse { width: 8px; height: 8px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 6px rgba(217, 138, 78, 0.22); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(217,138,78,.4);} 70%{box-shadow:0 0 0 12px rgba(217,138,78,0);} 100%{box-shadow:0 0 0 0 rgba(217,138,78,0);} }

/* Eyebrow destacado rojo con glow */
.eyebrow-hot {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(225, 29, 42, 0.22);
  border-color: rgba(255, 120, 130, 0.55);
  text-shadow: 0 0 10px rgba(255, 60, 75, 0.9), 0 0 22px rgba(225, 29, 42, 0.7);
  box-shadow: 0 0 18px rgba(225, 29, 42, 0.55), inset 0 0 12px rgba(225, 29, 42, 0.25);
  animation: hotGlow 1.8s ease-in-out infinite;
}
.eyebrow-hot .pulse { background: #ff3b4a; box-shadow: 0 0 0 6px rgba(255, 59, 74, 0.3); }
@keyframes hotGlow {
  0%, 100% { box-shadow: 0 0 14px rgba(225, 29, 42, 0.45), inset 0 0 10px rgba(225, 29, 42, 0.2); }
  50% { box-shadow: 0 0 28px rgba(255, 60, 75, 0.85), inset 0 0 16px rgba(225, 29, 42, 0.35); }
}

.hero h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); line-height: 1.02; letter-spacing: -0.03em; font-weight: 800; max-width: 640px; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-copy { margin-top: 22px; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.6; color: rgba(255, 255, 255, 0.88); max-width: 560px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.hero-proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; max-width: 640px; }
.proof-card { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 18px; padding: 16px; backdrop-filter: blur(8px); }
.proof-card strong { display: block; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; }
.proof-card span { display: block; margin-top: 5px; color: rgba(255, 255, 255, 0.78); font-size: 0.74rem; line-height: 1.35; font-weight: 500; }

/* ===== LEAD CARD ===== */
.lead-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.lead-card::before {
  content: "Cotiza tu parcela";
  position: absolute; top: -15px; left: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #241805;
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(216,170,86,.3);
}
.lead-card h2 { color: var(--forest); font-size: 1.55rem; line-height: 1.1; letter-spacing: -0.02em; margin: 6px 0 8px; }
.lead-card > p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; margin-bottom: 20px; }
.form-grid { display: grid; gap: 13px; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; color: var(--forest); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(120, 80, 46, 0.18); border-radius: 14px;
  background: var(--white); color: var(--ink); padding: 13px 14px; outline: 0;
  transition: border 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(217, 138, 78, 0.14); }
.lead-card .btn { width: 100%; }
.lead-note { text-align: center; color: var(--muted); font-size: 0.74rem; margin-top: 12px; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--white); border-block: 1px solid var(--line); padding: 18px 0; }
.strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--forest); font-size: 0.9rem; font-weight: 600; }
.strip-item { display: flex; align-items: center; gap: 9px; opacity: 0.9; }
.dot { width: 9px; height: 9px; border-radius: 999px; background: var(--green); flex: 0 0 auto; }

/* ===== SECTION ===== */
.section { padding: 92px 0; }
.kicker { color: var(--green-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; margin-bottom: 12px; }
.kicker.light { color: var(--gold-2); }
.section-title { color: var(--forest); font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; }
.section-title.left { text-align: left; }
.section-title.white { color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 44px; }
.section-head.center-head { justify-content: center; text-align: center; margin-bottom: 40px; }
.section-lead { color: var(--muted); font-size: 1.02rem; line-height: 1.6; max-width: 540px; }
.section-lead.light { color: rgba(255, 255, 255, 0.78); margin-top: 16px; }
.section-lead.center-lead { margin: 14px auto 0; }

/* ===== LIFESTYLE ===== */
.lifestyle { background: linear-gradient(180deg, var(--cream), var(--white)); }
.lifestyle .section-title { margin: 6px auto 0; }
.lifestyle-text { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 300; color: var(--forest); max-width: 760px; margin: 26px auto 14px; }
.lifestyle-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== PROJECTS / BENEFITS ===== */
.projects { background: var(--white); border-block: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.benefit { background: var(--white); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease; }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-img { aspect-ratio: 4 / 3; overflow: hidden; }
.benefit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.benefit:hover .benefit-img img { transform: scale(1.07); }
.benefit-body { padding: 18px 18px 22px; }
.benefit-body h3 { color: var(--forest); font-size: 1.08rem; font-weight: 700; line-height: 1.15; margin-bottom: 7px; letter-spacing: -0.02em; }
.benefit-body p { color: var(--muted); font-size: 0.86rem; line-height: 1.5; }

/* ===== SHOWCASE ===== */
.showcase { background: var(--forest-2); color: var(--white); position: relative; overflow: hidden; }
.showcase::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 14% 18%, rgba(217, 138, 78, 0.22), transparent 30%), radial-gradient(circle at 88% 78%, rgba(216, 170, 86, 0.2), transparent 32%);
}
.showcase-grid { position: relative; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: center; }
.distance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.distance { background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 18px; padding: 20px; backdrop-filter: blur(8px); transition: transform .25s, background .25s; }
.distance:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.14); }
.distance strong { display: block; font-size: 1.9rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 4px; color: var(--green); }
.distance span { color: rgba(255, 255, 255, 0.8); font-size: 0.86rem; line-height: 1.35; font-weight: 500; }

/* ===== NEARBY ===== */
.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.near-card { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.near-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.near-card:hover img { transform: scale(1.08); }
.near-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; background: linear-gradient(to top, rgba(52, 33, 18, 0.85) 0%, rgba(52, 33, 18, 0.1) 60%, transparent 100%); color: #fff; }
.near-body h3 { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.near-time { display: inline-block; align-self: flex-start; margin-top: 6px; background: var(--green); color: #3a2410; font-size: 0.74rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; }

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.g-item { overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-sm); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ===== TOUR & MAP ===== */
.tour-frame, .map-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 32px; background: #000; }
.map-frame { aspect-ratio: 16 / 7; margin-bottom: 0; }
.tour-frame iframe, .map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.location { background: var(--white); }

/* ===== MASTER PLAN ===== */
.masterplan { background: var(--cream); }
.masterplan-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); max-width: 1000px; margin: 0 auto; }

/* ===== CLIENTS / CONFIDENCE ===== */
.clients { background: linear-gradient(180deg, var(--white), var(--cream)); }
.clients-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 36px; align-items: stretch; }
.client-photo { min-height: 480px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(52, 33, 18, 0.05), rgba(52, 33, 18, 0.4)), url('images/gal-7.jpg') center/cover no-repeat; box-shadow: var(--shadow); }
.client-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; }
.client-card .section-title { margin: 4px 0 0; }
.client-card > p { color: var(--muted); line-height: 1.65; margin: 18px 0 6px; }
.features { display: grid; gap: 12px; margin: 16px 0 24px; color: var(--forest); font-size: 0.95rem; font-weight: 600; }
.feature-row { display: flex; align-items: center; gap: 11px; }
.feature-check { width: 24px; height: 24px; border-radius: 999px; background: rgba(217, 138, 78, 0.16); color: var(--green-dark); display: grid; place-items: center; font-size: 0.8rem; font-weight: 800; flex: 0 0 auto; }

/* ===== FAQ ===== */
.faq { background: var(--white); border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 44px; align-items: start; }
.accordion { display: grid; gap: 12px; }
details { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px; box-shadow: 0 8px 22px rgba(74, 47, 28, 0.04); }
summary { cursor: pointer; color: var(--forest); font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-size: 1.02rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--green-dark); font-size: 1.5rem; line-height: 1; font-weight: 300; transition: transform .3s; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); line-height: 1.6; margin-top: 12px; }

/* ===== FINAL CTA ===== */
.final-cta { position: relative; color: var(--white); padding: 96px 0; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(52, 33, 18, 0.93), rgba(74, 47, 28, 0.7)), url('images/gal-1.jpg') center/cover no-repeat; }
.final-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.final-inner h2 { color: var(--white); font-size: clamp(2.1rem, 4.5vw, 3.6rem); line-height: 1; letter-spacing: -0.03em; font-weight: 800; max-width: 720px; }
.final-inner p { color: rgba(255, 255, 255, 0.82); font-size: 1.08rem; line-height: 1.55; margin-top: 16px; max-width: 560px; }

/* ===== FOOTER ===== */
footer { background: #08160f; color: rgba(255, 255, 255, 0.72); padding-top: 56px; font-size: 0.92rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand img { height: 58px; width: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 340px; color: #8fa094; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a:hover { color: var(--green); }
.social { display: flex; gap: 12px; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #fff; transition: background .25s, transform .25s; }
.social a:hover { background: var(--green); color: #3a2410; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; margin-top: 0; }
.footer-bottom p { font-size: 0.8rem; color: #6f8077; text-align: center; }

/* ===== STICKY MOBILE ===== */
.sticky-mobile { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: rgba(255, 255, 255, 0.97); border: 1px solid var(--line); box-shadow: 0 18px 42px rgba(74, 47, 28, 0.22); border-radius: 999px; padding: 8px; gap: 8px; }
.sticky-mobile .btn { flex: 1; padding: 13px 12px; font-size: 0.86rem; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 95; display: flex; align-items: center; gap: 12px; }
.wa-bubble { background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); font-size: 0.85rem; font-weight: 500; white-space: nowrap; }
.wa-icon { width: 58px; height: 58px; background: #25d366; color: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5); animation: wa-pulse 2.4s infinite; }
@keyframes wa-pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* ===== TOAST ===== */
.toast { position: fixed; left: 50%; bottom: 96px; transform: translateX(-50%) translateY(20px); background: var(--forest); color: #fff; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px; padding: 12px 18px; box-shadow: var(--shadow); font-size: 0.82rem; font-weight: 600; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 110; }
.toast.active { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1120px) {
  .hero-grid, .showcase-grid, .clients-grid, .faq-grid, .final-inner { grid-template-columns: 1fr; }
  .lead-card { max-width: 640px; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .nearby-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: var(--header-h); right: 0;
    width: min(80vw, 320px); height: calc(100vh - var(--header-h));
    background: #fff; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 28px; transform: translateX(100%); transition: transform .3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-cta { display: none; }
  .hero-bg { background-attachment: scroll; }
  .section-head { display: block; }
  .section-head .section-lead { margin-top: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}

@media (max-width: 760px) {
  .hero-proof, .benefit-grid, .nearby-grid, .distance-grid, .two-cols { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .hero-grid { padding: 50px 0 60px; }
  .sticky-mobile { display: flex; }
  body { padding-bottom: 80px; }
  .wa-bubble { display: none; }
  .wa-float { bottom: 82px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .client-photo { min-height: 360px; }
}

@media (max-width: 480px) {
  .hero-proof, .nearby-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 220px; }
  .g-tall, .g-wide { grid-row: auto; grid-column: auto; }
  .strip-inner { justify-content: center; gap: 10px 18px; font-size: 0.82rem; }
}
