/* ===========================
   PROPERTY LANDING — UX/UI SYSTEM
   Flow: Hero → Data → Story → Gallery → Transform → Place → Invest → Convert
   =========================== */

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.68, 0, 1.1),
              transform 0.8s cubic-bezier(0.22, 0.68, 0, 1.1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ===========================
   HERO — Full emotional impact
   =========================== */
.prop-hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.prop-hero__image {
  position: absolute; inset: 0;
}
.prop-hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}

.prop-hero__overlay {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: var(--space-7);
  background: linear-gradient(
    to top,
    rgba(8,14,22,0.92) 0%,
    rgba(8,14,22,0.55) 45%,
    rgba(8,14,22,0.1)  75%,
    transparent        100%
  );
}

.prop-hero__content { max-width: 760px; }

.prop-hero__label {
  font-size: var(--text-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: var(--space-2);
  display: block;
  opacity: 1;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 0px 3px rgba(0,0,0,0.9);
}

.prop-hero__title {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--white);
  line-height: 0.92;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}

.prop-hero__location {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.52);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
}
.prop-hero__location svg { flex-shrink: 0; }

.prop-hero__pills {
  display: flex; flex-wrap: wrap; gap: var(--space-1);
}
.prop-hero__pills span {
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  padding: 7px 18px;
  font-size: var(--text-xs); font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, color 0.2s;
}
.prop-hero__pills span:hover {
  border-color: rgba(184,150,90,0.5);
  color: var(--gold-light);
}

.prop-hero__scroll {
  position: absolute; bottom: var(--space-4); right: var(--space-5);
  z-index: 3; color: rgba(255,255,255,0.22);
  animation: scrollPulse 2.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: translateY(0); opacity: 0.22; }
  50% { transform: translateY(12px); opacity: 0.55; }
}

/* ===========================
   INSIGHTS BAR — Immediate data
   =========================== */
.prop-insights {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.insight-item {
  display: flex; align-items: center; gap: 16px;
  padding: var(--space-5) var(--space-4);
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: background 0.25s;
}
.insight-item:last-child { border-right: none; }
.insight-item:hover { background: rgba(255,255,255,0.025); }

.insight-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); opacity: 0.7; }

.insight-value {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400; color: var(--white);
  line-height: 1; letter-spacing: -0.01em;
}
.insight-label {
  display: block; font-size: var(--text-xs);
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 5px;
}

/* ===========================
   DESCRIPTION — Story + Credibility
   Hierarchy: eyebrow → H2 (bold) → body → highlights
   =========================== */
.prop-description {
  padding: var(--space-10) 0 var(--space-9);
  background: var(--white);
}

.prop-description__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-9);
  align-items: start;
}

/* Section eyebrow */
.section-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-2);
  display: block;
}

/* H2 with real authority */
.prop-description h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.8vw, var(--text-4xl));
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}

.prop-description__text p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-3);
  font-weight: 300;
}

.prop-description__text strong { color: var(--navy); font-weight: 600; }

/* Pull quote — highlight a key stat */
.prop-pullquote {
  margin: var(--space-5) 0;
  padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--gold);
  background: var(--off-white);
}
.prop-pullquote p {
  font-family: var(--font-serif);
  font-size: var(--text-lg) !important;
  font-style: italic;
  color: var(--navy) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

.prop-highlights {
  margin-top: var(--space-5);
  border-top: 1px solid var(--border);
}
.highlight-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--text);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em; font-weight: 400;
}
.highlight-rule { width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

.prop-legal {
  font-size: var(--text-xs) !important;
  color: rgba(90,106,122,0.5) !important;
  font-style: italic;
  margin-top: var(--space-5) !important;
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

/* ===========================
   ASIDE — Sticky price + stats
   =========================== */
.prop-description__aside {
  position: sticky;
  top: 90px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-card {
  background: var(--navy);
  padding: var(--space-5);
}
.price-card__label {
  font-size: var(--text-xs); letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: var(--space-1);
}
.price-card__value {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 400; color: var(--white);
  margin-bottom: 6px; letter-spacing: -0.02em; line-height: 1;
}
.price-card__note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.22);
  margin-bottom: var(--space-4);
  font-style: italic; line-height: 1.6;
}
.btn-primary-inv {
  display: block; width: 100%; text-align: center;
  border: 1px solid rgba(184,150,90,0.4); color: var(--gold);
  padding: 13px; font-size: var(--text-xs);
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 400; transition: all 0.3s;
}
.btn-primary-inv:hover {
  background: var(--gold); color: var(--navy-deep); border-color: var(--gold);
}
.price-card__divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.06);
  margin: var(--space-4) 0;
}
.price-card__meta {
  display: flex; justify-content: space-between;
  font-size: var(--text-xs); color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
}

.aside-stats { border: 1px solid var(--border); background: var(--white); }
.aside-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px var(--space-3);
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}
.aside-stat:last-child { border-bottom: none; }
.aside-stat__key { color: var(--text-muted); font-weight: 300; }
.aside-stat__val { font-weight: 600; color: var(--navy); font-size: var(--text-sm); }

/* ===========================
   SECTION INTRO PATTERN
   Used at top of each major section
   =========================== */
.section-intro {
  max-width: 640px;
  margin-bottom: var(--space-7);
}

.section-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-2);
}
.section-intro h2.white { color: var(--white); }

.section-intro p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-top: var(--space-2);
}
.section-intro p.white { color: rgba(255,255,255,0.38); }

/* Shared h2 for sections that don't use .section-intro */
.prop-gallery h2,
.prop-gallery--interior h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 700; color: var(--navy);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}
.prop-before-after h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 700; color: var(--white);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: var(--space-2);
}
.prop-location h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 700; color: var(--navy);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}
.prop-investment h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 700; color: var(--white);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}

.section-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.28);
  margin-bottom: var(--space-5);
  letter-spacing: 0.04em; font-weight: 300;
}

/* ===========================
   GALLERY TAB NAV
   =========================== */
.gallery-tab-nav {
  display: inline-flex;
  border: 1px solid var(--border);
  margin-bottom: var(--space-5);
}
.gallery-tab {
  background: transparent; border: none;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  padding: 11px 32px;
  font-size: var(--text-xs); cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400;
  transition: all 0.2s;
}
.gallery-tab:last-child { border-right: none; }
.gallery-tab:hover { color: var(--navy); background: var(--off-white); }
.gallery-tab.active {
  background: var(--navy); color: var(--white); font-weight: 500;
}

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

/* ===========================
   GALLERY SECTIONS
   =========================== */
.prop-gallery {
  padding: var(--space-9) 0;
  background: var(--off-white);
}

/* Gallery slider */
.gallery-slider { position: relative; }

.gs-main {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-deep);
}
.gs-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity 0.28s ease, transform 0.28s ease;
  cursor: zoom-in;
}

.gs-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; display: flex;
  justify-content: space-between;
  width: 100%; padding: 0 var(--space-2);
  pointer-events: none;
}
.gs-prev, .gs-next {
  pointer-events: all;
  background: rgba(13,27,42,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.gs-prev:hover, .gs-next:hover {
  background: rgba(184,150,90,0.85);
  border-color: var(--gold);
}

.gs-counter {
  position: absolute; bottom: var(--space-2); right: var(--space-2);
  background: rgba(13,27,42,0.6);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs); letter-spacing: 0.12em;
  padding: 5px 12px; backdrop-filter: blur(8px);
  pointer-events: none;
}

.gs-expand {
  position: absolute; bottom: var(--space-2); left: var(--space-2);
  background: rgba(13,27,42,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px);
  transition: all 0.2s; z-index: 5; pointer-events: all;
}
.gs-expand:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

.gs-thumbs {
  margin-top: 3px;
  display: flex; gap: 3px;
  overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth;
}
.gs-thumbs::-webkit-scrollbar { display: none; }

.gs-thumb {
  flex-shrink: 0; width: 88px; height: 58px;
  overflow: hidden; cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.25s, transform 0.25s;
  position: relative;
}
.gs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.gs-thumb.active { opacity: 1; }
.gs-thumb:hover { opacity: 0.78; }
.gs-thumb.active::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 2px var(--gold);
}

/* ===========================
   BEFORE / AFTER
   =========================== */
.prop-before-after {
  padding: var(--space-10) 0;
  background: var(--navy-deep);
}

.prop-before-after .section-intro h2 { color: var(--white); }
.prop-before-after .section-intro p { color: rgba(255,255,255,0.35); }

.slider-tabs {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.slider-tab {
  background: transparent; border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
  padding: 11px 24px;
  font-size: var(--text-xs); cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.2s;
}
.slider-tab:last-child { border-right: none; }
.slider-tab:hover { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.04); }
.slider-tab.active { background: rgba(255,255,255,0.08); color: var(--white); font-weight: 500; }

.before-after-slider {
  position: relative; width: 100%;
  aspect-ratio: 16/9; max-height: 600px;
  overflow: hidden; user-select: none; cursor: ew-resize;
}

.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { z-index: 1; }
.ba-after { z-index: 2; clip-path: inset(0 50% 0 0); }

.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; pointer-events: none;
  transition: opacity 0.2s;
}

.ba-label {
  position: absolute; bottom: var(--space-3);
  padding: 6px 18px;
  font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
}
.ba-label--before { left: var(--space-3); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.6); }
.ba-label--after  { right: var(--space-3); border: 1px solid rgba(184,150,90,0.45); color: var(--gold); }

.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); z-index: 10;
  width: 44px; display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
}
.ba-handle__line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(255,255,255,0.5); transform: translateX(-50%);
}
.ba-handle__circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
  position: relative; z-index: 1; color: var(--navy);
}

.slider-hint {
  text-align: center; margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.18); letter-spacing: 0.14em; text-transform: uppercase;
}

/* ===========================
   LOCATION
   =========================== */
.prop-location { padding: var(--space-10) 0; background: var(--white); }

.prop-location .section-intro h2 { color: var(--navy); }

.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-8); align-items: start;
}

.location-text > p {
  font-size: var(--text-base);
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: var(--space-5); font-weight: 300;
}

.distances-list h3 {
  font-size: var(--text-xs); letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: var(--space-2); font-weight: 500;
}

.distance-item {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}
.distance-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--text-muted); opacity: 0.45; }
.distance-label { flex: 1; color: var(--text); font-weight: 400; }
.distance-val { color: var(--text-muted); font-size: var(--text-xs); white-space: nowrap; letter-spacing: 0.04em; }

.map-container { border: 1px solid var(--border); overflow: hidden; }

.location-badges { display: flex; flex-wrap: wrap; gap: var(--space-1); margin-top: var(--space-2); }
.loc-badge {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid var(--border);
  padding: 7px 14px; font-size: var(--text-xs);
  color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.loc-badge svg { width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; }

/* ===========================
   INVESTMENT — Dark, high energy
   =========================== */
.prop-potential { padding: var(--space-10) 0; background: var(--navy); }
.prop-potential .section-eyebrow { color: var(--gold); }
.prop-potential h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 700; color: var(--white);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
}
.pot-lead {
  font-size: var(--text-base); color: rgba(255,255,255,0.42);
  line-height: 1.9; font-weight: 300; max-width: 760px;
  margin-bottom: var(--space-8);
}

/* SNAPSHOT KPIs */
.pot-snapshot {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--space-8);
}
.pot-kpi {
  background: var(--navy);
  padding: var(--space-5) var(--space-4);
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.pot-kpi:hover { background: var(--navy-mid); }
.pot-kpi__value {
  font-family: var(--font-serif);
  font-size: var(--text-2xl); font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: var(--space-2);
}
.pot-kpi__label {
  font-size: var(--text-xs); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--white);
  font-weight: 500; margin-bottom: var(--space-1);
}
.pot-kpi__note {
  font-size: var(--text-xs); color: rgba(255,255,255,0.3);
  line-height: 1.6; font-weight: 300;
}

/* ZONA & PÚBLICO */
.pot-context {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-6); margin-bottom: var(--space-9);
}
.pot-context__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: var(--text-xl); font-weight: 600;
  color: var(--white); margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pot-context__title svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.pot-context__list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.pot-context__list li {
  font-size: var(--text-sm); color: rgba(255,255,255,0.4);
  line-height: 1.7; font-weight: 300;
  padding-left: var(--space-3); position: relative;
}
.pot-context__list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}
.pot-context__list strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* DIVIDER */
.pot-divider {
  font-size: var(--text-xs); letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: var(--space-5);
  display: flex; align-items: center; gap: var(--space-3);
}
.pot-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,0.1);
}

/* CONCEPTOS INSIGNIA */
.pot-concepts {
  display: flex; flex-direction: column; gap: var(--space-2);
  margin-bottom: var(--space-9);
}
.pot-concept {
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.pot-concept--reverse .pot-concept__media { order: 2; }
.pot-concept__media { position: relative; min-height: 340px; overflow: hidden; }
.pot-concept__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,0.68,0,1.05);
}
.pot-concept:hover .pot-concept__media img { transform: scale(1.05); }
.pot-concept__tag {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: rgba(13,27,42,0.78); color: var(--gold);
  font-size: var(--text-xs); letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  padding: 6px 14px; backdrop-filter: blur(8px);
}
.pot-concept__body { padding: var(--space-6); display: flex; flex-direction: column; justify-content: center; }
.pot-concept__body h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl); font-weight: 600;
  color: var(--white); line-height: 1.15; margin-bottom: var(--space-3);
}
.pot-concept__body > p {
  font-size: var(--text-sm); color: rgba(255,255,255,0.42);
  line-height: 1.85; font-weight: 300; margin-bottom: var(--space-4);
}
.pot-concept__points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pot-concept__points li {
  font-size: var(--text-sm); color: rgba(255,255,255,0.55);
  padding-left: 24px; position: relative; line-height: 1.5;
}
.pot-concept__points li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 12px; height: 7px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* LÍNEAS DE DESARROLLO */
.pot-lines {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--space-9);
}
.pot-line {
  background: var(--navy);
  padding: var(--space-5) var(--space-4);
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.pot-line:hover { border-top-color: var(--gold); background: rgba(255,255,255,0.025); }
.pot-line__icon { display: block; width: 24px; height: 24px; color: var(--gold); opacity: 0.7; margin-bottom: var(--space-3); }
.pot-line h4 {
  font-family: var(--font-serif);
  font-size: var(--text-lg); font-weight: 600;
  color: var(--white); margin-bottom: var(--space-2); line-height: 1.2;
}
.pot-line p { font-size: var(--text-sm); color: rgba(255,255,255,0.32); line-height: 1.75; font-weight: 300; }

/* ESTRATEGIA */
.pot-strategy {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2); margin-bottom: var(--space-6);
}
.pot-step {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid var(--gold);
  padding: var(--space-5);
  position: relative;
}
.pot-step__num {
  font-family: var(--font-serif);
  font-size: var(--text-3xl); font-weight: 600;
  color: rgba(184,150,90,0.35); line-height: 1;
  display: block; margin-bottom: var(--space-3);
}
.pot-step h4 {
  font-family: var(--font-serif);
  font-size: var(--text-lg); font-weight: 600;
  color: var(--white); margin-bottom: var(--space-2); line-height: 1.2;
}
.pot-step p {
  font-size: var(--text-sm); color: rgba(255,255,255,0.38);
  line-height: 1.75; font-weight: 300; margin-bottom: var(--space-3);
}
.pot-step__horizon {
  font-size: var(--text-xs); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}

.pot-note {
  font-size: var(--text-xs); color: rgba(255,255,255,0.28);
  line-height: 1.8; font-weight: 300; font-style: italic;
  max-width: 820px;
}

/* ===========================
   CONTACT — Conversion
   =========================== */
.prop-contact { padding: var(--space-10) 0; background: var(--navy-deep); }

.prop-contact__grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: var(--space-9); align-items: start;
}

.prop-contact__text .section-eyebrow { color: var(--gold); }

.prop-contact__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.8vw, var(--text-4xl));
  font-weight: 700; color: var(--white);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}

.prop-contact__text > p {
  color: rgba(255,255,255,0.32);
  line-height: 1.9; margin-bottom: var(--space-5);
  font-size: var(--text-base); font-weight: 300;
}

.contact-agent {
  display: flex; align-items: center; gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.agent-photo {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.agent-name { font-weight: 500; color: var(--white); font-size: var(--text-base); margin-bottom: 4px; }

/* FORM */
.contact-form { background: var(--white); padding: var(--space-6); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-2); }

.form-group label {
  font-size: var(--text-xs); font-weight: 600;
  color: var(--navy); letter-spacing: 0.1em; text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border); border-radius: 0;
  padding: 12px 14px;
  font-size: var(--text-sm); font-family: var(--font-sans);
  color: var(--navy); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; font-weight: 300; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
}

.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: var(--space-3);
  font-size: var(--text-xs); color: var(--text-muted); line-height: 1.6; font-weight: 300;
}
.form-check input { margin-top: 2px; flex-shrink: 0; accent-color: var(--navy); }
.form-check a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

.btn-submit {
  width: 100%; text-align: center; padding: 16px;
  background: var(--navy); color: var(--white); border: none;
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; font-family: var(--font-sans);
  cursor: pointer; transition: background 0.3s; display: block;
}
.btn-submit:hover { background: var(--navy-mid); }
.btn-submit:disabled { opacity: 0.5; cursor: default; }

.form-success {
  margin-top: var(--space-2); padding: var(--space-2) var(--space-3);
  background: #f0f7f0; border-left: 3px solid #4caf50;
  color: #2e6b2e; font-size: var(--text-sm); font-weight: 300;
}

/* ===========================
   LIGHTBOX
   =========================== */
#lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.active { opacity: 1; pointer-events: all; }

.lb-overlay {
  position: absolute; inset: 0;
  background: rgba(5,10,18,0.97);
  backdrop-filter: blur(16px);
}

.lb-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; max-width: 94vw; max-height: 94vh;
}

#lbImg {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; display: block;
  transition: opacity 0.25s ease;
  box-shadow: 0 32px 100px rgba(0,0,0,0.7);
}

.lb-close {
  position: fixed; top: var(--space-3); right: var(--space-4);
  background: none; border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: all 0.2s;
}
.lb-close:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }

.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45); width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; z-index: 2;
}
.lb-prev { left: var(--space-3); }
.lb-next { right: var(--space-3); }
.lb-prev:hover, .lb-next:hover {
  color: var(--white); border-color: var(--gold);
  background: rgba(184,150,90,0.1);
}

.lb-caption {
  margin-top: var(--space-2);
  font-size: var(--text-sm); color: rgba(255,255,255,0.35);
  font-style: italic; font-family: var(--font-serif);
  letter-spacing: 0.02em; text-align: center;
}
.lb-counter {
  font-size: var(--text-xs); letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2); margin-top: 6px; text-transform: uppercase;
}

/* ===========================
   AERIAL GRID
   =========================== */
.aerial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; background: var(--border); }
.aerial-main { grid-column: span 2; aspect-ratio: 16/7; overflow: hidden; }
.aerial-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aerial-thumbs { grid-column: span 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.aerial-thumbs img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: repeat(3, 1fr); }
  .prop-description__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .prop-description__aside { position: static; }
  .location-grid { grid-template-columns: 1fr; }
  .pot-lines { grid-template-columns: repeat(2, 1fr); }
  .pot-strategy { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .prop-hero__title { font-size: 4rem; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-contact__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .form-row { grid-template-columns: 1fr; }
  .before-after-slider { aspect-ratio: 4/3; }
  .slider-tabs { flex-wrap: wrap; }
  .prop-gallery, .prop-gallery--interior { padding: var(--space-7) 0; }
  .prop-before-after, .prop-location, .prop-potential, .prop-contact { padding: var(--space-8) 0; }
  .pot-snapshot { grid-template-columns: repeat(2, 1fr); }
  .pot-context { grid-template-columns: 1fr; gap: var(--space-5); }
  .pot-concept, .pot-concept--reverse { grid-template-columns: 1fr; }
  .pot-concept--reverse .pot-concept__media { order: 0; }
  .pot-concept__media { min-height: 240px; }
  .pot-lines { grid-template-columns: repeat(2, 1fr); }
  .pot-strategy { grid-template-columns: 1fr; }
  .prop-description { padding: var(--space-8) 0; }
  .keys-grid { grid-template-columns: repeat(2, 1fr); }
  .history-grid { grid-template-columns: 1fr; }
  .history-images { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .history-images img:first-child, .history-images img:last-child { aspect-ratio: 4/3; }
  .plans-slider .plan-card { flex: 0 0 calc((100% - var(--space-2)) / 2); }
  .prop-virtualtour { padding: var(--space-7) 0; }
  .matterport-wrap { aspect-ratio: 16/9; }
}

/* ===========================
   KEY FEATURES STRIP
   =========================== */
.prop-keys {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: var(--space-7) 0;
}

.keys-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.key-item {
  background: var(--navy-deep);
  padding: var(--space-4) var(--space-4) var(--space-5);
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.key-item:hover {
  border-top-color: var(--gold);
  background: rgba(255,255,255,0.02);
}
.key-icon {
  display: block; width: 22px; height: 22px;
  color: var(--gold); opacity: 0.65; margin-bottom: 6px;
}
.key-title {
  font-family: var(--font-serif);
  font-size: var(--text-base); font-weight: 600;
  color: var(--white); line-height: 1.2;
}
.key-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em; line-height: 1.5; font-weight: 300;
}

/* ===========================
   VIRTUAL TOUR
   =========================== */
.prop-virtualtour {
  padding: var(--space-9) 0;
  background: var(--navy);
}
.prop-virtualtour .section-eyebrow { color: var(--gold); }
.prop-virtualtour h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 700; color: var(--white);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: var(--space-2);
}
.prop-virtualtour > .container > p {
  color: rgba(255,255,255,0.32);
  font-size: var(--text-base); font-weight: 300;
  margin-bottom: var(--space-5);
}

.matterport-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy-deep);
  overflow: hidden;
}
.matterport-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.matterport-note {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.16);
  letter-spacing: 0.06em; text-align: right; font-style: italic;
}

/* ===========================
   HISTORY SECTION
   =========================== */
.prop-history {
  padding: var(--space-10) 0;
  background: var(--off-white);
}
.prop-history .section-eyebrow { color: var(--gold); }
.prop-history h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 700; color: var(--navy);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}

/* History: images left, text right — equal columns */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

/* Left column: stacked images fill the column */
.history-images {
  display: grid;
  grid-template-rows: auto auto;
  gap: 3px;
}
.history-images img {
  width: 100%; display: block;
  object-fit: cover; cursor: zoom-in;
  transition: opacity 0.2s;
}
.history-images img:first-child { aspect-ratio: 3/4; }
.history-images img:last-child  { aspect-ratio: 3/2; }
.history-images img:hover { opacity: 0.88; }

/* Right column: text + timeline */
.history-text p {
  font-size: var(--text-base);
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: var(--space-3); font-weight: 300;
}
.history-text strong { color: var(--navy); font-weight: 600; }

.history-timeline {
  margin-top: var(--space-5);
  border-top: 1px solid var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: var(--text-lg); font-weight: 400;
  color: var(--gold); letter-spacing: -0.01em;
}
.timeline-event {
  font-size: var(--text-sm);
  color: var(--text-muted); line-height: 1.7; font-weight: 300;
}
.timeline-event strong { color: var(--navy); font-weight: 500; }

/* Historical photos: 4 columns × 2 rows — perfectly symmetric */
.history-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px; margin-top: var(--space-5);
}
.history-photo-grid img {
  width: 100%; display: block;
  aspect-ratio: 1/1; object-fit: cover;
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.history-photo-grid img:hover { opacity: 0.85; }

/* ===========================
   PLANS SECTION
   =========================== */
.prop-plans {
  padding: var(--space-9) 0;
  background: var(--off-white);
}
.prop-plans .section-eyebrow { color: var(--gold); }
.prop-plans h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 2.8vw, var(--text-3xl));
  font-weight: 700; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.prop-plans > .container > p {
  color: var(--text-muted); font-size: var(--text-sm);
  font-weight: 300; margin-bottom: var(--space-6);
}

/* 4-col top row + 4-col bottom row = 2 perfect rows */
.plans-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.plans-track-wrap {
  overflow: hidden;
  flex: 1;
}
.plans-track {
  display: flex;
  gap: var(--space-2);
  transition: transform 0.55s cubic-bezier(0.22, 0.68, 0, 1.05);
  will-change: transform;
}
.plans-prev, .plans-next {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  z-index: 2;
}
.plans-prev:hover, .plans-next:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.plans-prev:disabled, .plans-next:disabled {
  opacity: 0.3; cursor: default;
}
.plans-prev:disabled:hover, .plans-next:disabled:hover {
  background: var(--white); color: var(--navy); border-color: var(--border);
}
.plans-dots {
  position: absolute;
  bottom: -32px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.plans-dots button {
  width: 7px; height: 7px; border-radius: 50%;
  border: none; padding: 0;
  background: var(--border);
  cursor: pointer; transition: background 0.25s, width 0.25s;
}
.plans-dots button.active { background: var(--gold); width: 22px; border-radius: 4px; }

.plan-card {
  flex: 0 0 calc((100% - (var(--space-2) * 3)) / 4);
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: zoom-in;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.plan-card__img {
  width: 100%; display: block;
  aspect-ratio: 3/4; object-fit: contain;
  background: var(--white);
  padding: var(--space-2);
  transition: opacity 0.2s;
}
.plan-card:hover .plan-card__img { opacity: 0.88; }
.plan-card__label {
  padding: 9px var(--space-2);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--text-muted); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 400;
  text-align: center;
}

.plan-note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-muted); font-style: italic;
  letter-spacing: 0.04em; line-height: 1.6;
}

/* ===========================
   LOCATION — compact zenital
   =========================== */
.location-zenital {
  position: relative; overflow: hidden; margin-bottom: 3px;
}
.location-zenital img {
  width: 100%; display: block;
  aspect-ratio: 16/9; object-fit: cover;
  cursor: zoom-in; transition: transform 0.4s ease;
}
.location-zenital:hover img { transform: scale(1.02); }
.location-zenital__label {
  position: absolute; bottom: var(--space-2); left: var(--space-2);
  background: rgba(13,27,42,0.65);
  color: rgba(255,255,255,0.55);
  font-size: var(--text-xs); letter-spacing: 0.14em;
  padding: 5px 12px; backdrop-filter: blur(8px);
  text-transform: uppercase;
}

/* ===========================
   STANDALONE LIGHTBOX TRIGGER
   =========================== */
[data-lb-single] { cursor: zoom-in; }

@media (max-width: 1024px) {
  .keys-grid { grid-template-columns: repeat(2, 1fr); }
  .history-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .keys-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-slider .plan-card { flex: 0 0 100%; }
  .plans-prev, .plans-next { width: 38px; height: 38px; }
  .history-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tab { padding: 10px 18px; }
}

/* ===========================
   OPCIONES DE ADQUISICIÓN
   =========================== */
.prop-acquisition {
  padding: var(--space-10) 0;
  background: var(--off-white);
}

.prop-acquisition h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.acquisition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-7);
}

.acq-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.acq-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.acq-card--featured {
  border-color: var(--gold);
  border-width: 1px;
  background: var(--navy);
}

.acq-card__badge {
  position: absolute;
  top: -1px; right: var(--space-4);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
}

.acq-card__header {
  padding: var(--space-6) var(--space-5) var(--space-4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.acq-card--featured .acq-card__header {
  border-bottom-color: rgba(255,255,255,0.08);
}

.acq-card__tag {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.acq-card--featured .acq-card__tag {
  color: var(--gold);
}

.acq-card__price {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-1);
}
.acq-card--featured .acq-card__price {
  color: var(--white);
}

.acq-card__subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}
.acq-card--featured .acq-card__subtitle {
  color: rgba(255,255,255,0.45);
}

.acq-card__body {
  padding: var(--space-5);
  flex: 1;
}

.acq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.acq-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

.acq-list svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
}

.acq-card--featured .acq-list li {
  color: rgba(255,255,255,0.55);
}

.acq-card__footer {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.acq-btn {
  display: block;
  text-align: center;
  padding: 14px 28px;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.acq-btn--outline {
  border: 1px solid rgba(22,39,62,0.25);
  color: var(--navy);
}
.acq-btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.acq-btn--solid {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
}
.acq-btn--solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.acq-note {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.8;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .acquisition-grid { grid-template-columns: 1fr; }
}
