/**
 * BANNI Exclusive Properties — Inspirado en TheBrickInvest
 * Blanco hueso roto como base, diseño limpio y elegante.
 * Dorado para acentos, negro para textos.
 *
 * Tipografía: misma estructura que banni.es — Gotham Light (300) cuerpo y títulos,
 * Medium (500) para UI / énfasis suave, Bold (700) solo en strong/b y picos puntuales.
 * Plus Jakarta Sans como alternativa web (pesos 300/500/700).
 */

:root {
  /* Blanco hueso roto — color base de fondo */
  --color-cream: #f8f6f3;
  --color-cream-dark: #f0ede8;
  --color-cream-light: #faf8f5;
  --color-white: #ffffff;
  --color-off-white: #f8f6f3;
  --color-marble: rgba(248, 246, 243, 0.98);
  --hero-bg: url('/assets/images/hero/banner-01.png');
  --color-gold: #9a7b4f;
  --color-gold-light: #b8956a;
  --color-gold-dark: #8b6914;
  --color-black: #1a1a1a;
  /* Azul marino Grupo BANNI (www.grupobanni.es) */
  --color-navy-grupo: #1a2332;
  --color-navy-grupo-soft: #1e2a3b;
  --color-gray: #4a4a4a;
  --color-gray-light: #7a7a7a;
  /* banni.es: Gotham; fallback Plus Jakarta Sans (misma estructura de pesos 300/500/700) */
  --font-heading: 'Gotham', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-main: 'Gotham', 'Plus Jakarta Sans', system-ui, sans-serif;
  /* Alineado con banni.es (solo 300 / 500 / 700 en @font-face) */
  --fw-light: 300;
  --fw-medium: 500;
  --fw-bold: 700;
  --space: 1.5rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 5rem;
  --radius: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.35s;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body.banni-front {
  margin: 0;
  font-family: var(--font-main);
  font-weight: var(--fw-light);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
  background: var(--color-cream);
  line-height: 1.6em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.banni-front h1,
body.banni-front h2,
body.banni-front h3,
body.banni-front h4 {
  font-weight: var(--fw-light);
}

body.banni-front strong,
body.banni-front b {
  font-weight: var(--fw-bold);
}

body.banni-front button,
body.banni-front input,
body.banni-front select,
body.banni-front textarea {
  font-family: var(--font-main);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Barra de progreso de scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* Header — interior: barra sólida; home: transparente sobre hero → blanco al scroll (UXBAN) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  padding: var(--space) 0;
  background: var(--color-cream-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Home: logo y menú integrados en la imagen hasta hacer scroll */
.page-home .site-header:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.page-home .site-header.is-scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.site-main {
  flex: 1;
  width: 100%;
  padding-top: 80px;
}

.site-main--home {
  padding-top: 0;
}

@media (min-width: 768px) {
  .site-main {
    padding-top: 94px;
  }
  .site-main--home {
    padding-top: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
}

.header-inner-spacer {
  flex: 1;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: var(--fw-light);
  color: var(--color-black);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity var(--duration) var(--ease);
}

.logo:hover {
  opacity: 0.85;
}

.page-home .site-header:not(.is-scrolled) .logo {
  color: #fff;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 72px;
  }
}

.logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo-accent {
  color: var(--color-gold);
  font-weight: var(--fw-medium);
}

/* Cajón de navegación: entra desde la derecha */
.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 230;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  pointer-events: none;
}

.nav-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-main.nav-drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 240;
  height: 100vh;
  height: 100dvh;
  width: min(44vw, 440px);
  max-width: 100%;
  margin: 0;
  padding: calc(5.25rem + var(--space)) var(--space-lg) var(--space-xl);
  gap: 0;
  background: #c2b18f;
  border: none;
  border-radius: 0;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.nav-main.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-main.nav-drawer a {
  color: #2a2520;
  text-decoration: none;
  padding: 1rem 0;
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(42, 37, 32, 0.12);
  border-radius: 0;
  transition: color var(--duration) var(--ease), padding-left var(--duration) var(--ease);
}

.nav-main.nav-drawer a:last-child {
  border-bottom: none;
}

.nav-main.nav-drawer a:hover {
  color: var(--color-gold-dark);
  background: transparent;
  padding-left: 0.35rem;
}

.nav-main.nav-drawer a.nav-drawer-inversion {
  letter-spacing: 0.1em;
}
.nav-main.nav-drawer a.nav-drawer-inversion .nav-club-word {
  color: #2a2520;
}
.nav-main.nav-drawer a.nav-drawer-inversion .nav-club-word--gold {
  color: #5c4a32;
}
.nav-main.nav-drawer a.nav-drawer-inversion:hover .nav-club-word--gold {
  color: var(--color-gold-dark);
}

@media (max-width: 767px) {
  .nav-main.nav-drawer {
    width: min(88vw, 360px);
  }
}

/* BANNI CLUB + separador — tamaño destacado y toque dorado en CLUB */
.header-nav-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
/* BANNI CLUB y botón Menú: mismo tamaño y “pastilla” */
.nav-club-link,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.4vw, 1.35rem);
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    box-shadow 0.3s var(--ease), transform 0.2s var(--ease);
}

.nav-club-link {
  gap: 0.28em;
  text-decoration: none;
}

/* Club de inversión (header): una sola pieza, mismo color en todo el texto */
.nav-club-link--single {
  gap: 0;
}
.nav-club-link--single .nav-club-label {
  color: var(--color-black);
}
.nav-club-link--single:hover .nav-club-label {
  color: var(--color-black);
}
.page-home .site-header:not(.is-scrolled) .nav-club-link--single .nav-club-label {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.page-home .site-header:not(.is-scrolled) .nav-club-link--single:hover .nav-club-label {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.nav-toggle {
  gap: 0.5rem;
  cursor: pointer;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
}

.nav-club-link:hover,
.nav-toggle:hover {
  border-color: rgba(154, 123, 79, 0.45);
  background: linear-gradient(135deg, rgba(154, 123, 79, 0.1) 0%, rgba(184, 149, 106, 0.06) 100%);
  box-shadow: 0 4px 20px rgba(154, 123, 79, 0.18);
  transform: translateY(-1px);
}
.nav-club-word {
  color: var(--color-black);
}
.nav-club-word--gold {
  color: var(--color-gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.nav-club-link:hover .nav-club-word--gold {
  color: var(--color-gold-dark);
  text-shadow: 0 0 18px rgba(154, 123, 79, 0.35);
}

/* Home hero: BANNI en blanco, CLUB en dorado luminoso */
.page-home .site-header:not(.is-scrolled) .nav-club-word:first-child {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.page-home .site-header:not(.is-scrolled) .nav-club-word--gold {
  color: var(--color-gold-light);
  text-shadow:
    0 0 20px rgba(201, 162, 39, 0.55),
    0 2px 12px rgba(0, 0, 0, 0.35);
}
.page-home .site-header:not(.is-scrolled) .nav-club-link:hover,
.page-home .site-header:not(.is-scrolled) .nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.page-home .site-header:not(.is-scrolled) .nav-club-link:not(.nav-club-link--single):hover .nav-club-word--gold {
  color: #fff4d4;
  text-shadow: 0 0 28px rgba(201, 162, 39, 0.85);
}

/* MENÚ: una sola pieza, todo blanco sobre el hero */
.nav-toggle-label-text {
  color: var(--color-black);
}
.page-home .site-header:not(.is-scrolled) .nav-toggle-label-text {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.page-home .site-header:not(.is-scrolled) .nav-toggle:hover .nav-toggle-label-text {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.nav-header-sep {
  width: 1px;
  height: clamp(26px, 4vw, 34px);
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.page-home .site-header:not(.is-scrolled) .nav-header-sep {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
}

/* Footer: mismo tratamiento tipográfico, un poco más compacto */
.footer-club-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.2rem 0;
}
.footer-club-link .nav-club-word {
  color: var(--color-gray);
}
.footer-club-link .nav-club-word--gold {
  color: var(--color-gold);
}
.footer-club-link:hover .nav-club-word {
  color: var(--color-black);
}
.footer-club-link:hover .nav-club-word--gold {
  color: var(--color-gold-dark);
}

/* Icono hamburguesa: alineado al peso visual del texto CLUB */
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: clamp(21px, 3.2vw, 26px);
  height: clamp(15px, 2.6vw, 19px);
  flex-shrink: 0;
  color: var(--color-black);
}
.page-home .site-header:not(.is-scrolled) .nav-toggle-bars {
  color: #fff;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.nav-toggle-label {
  display: none;
  align-items: center;
  gap: 0.28em;
}

@media (min-width: 768px) {
  .nav-toggle-label {
    display: inline-flex;
  }
}

/* Header móvil: logo + BANNI CLUB + menú sin solaparse ni recortarse */
@media (max-width: 767px) {
  .site-main {
    padding-top: 88px;
  }
  .site-main--home {
    padding-top: 0;
  }

  .header-inner {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    gap: 0.35rem;
  }

  .header-inner-spacer {
    flex: 1;
    min-width: 0.25rem;
  }

  .logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-img {
    height: 42px;
    max-width: min(132px, 38vw);
    width: auto;
  }

  .header-nav-end {
    gap: 0.35rem;
    flex-shrink: 0;
    align-items: center;
  }

  .nav-header-sep {
    display: none;
  }

  .nav-club-link,
  .nav-toggle {
    font-size: 0.6875rem;
    letter-spacing: 0.07em;
    padding: 0.4rem 0.45rem;
    border-radius: 8px;
  }

  /* Área táctil mínima; solo icono en móvil */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .nav-toggle-bars {
    width: 22px;
    height: 16px;
    gap: 6px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (max-width: 380px) {
  .logo-img {
    height: 36px;
    max-width: min(112px, 36vw);
  }

  .nav-club-link,
  .nav-toggle {
    font-size: 0.625rem;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.38rem;
  }
}

/* Reveal al scroll — animaciones interactivas en toda la web */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }
.reveal-delay-9 { transition-delay: 0.72s; }
.reveal-delay-10 { transition-delay: 0.8s; }

/* Variantes de reveal para más dinamismo */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Reveal desde abajo (variante) */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Micro-interacciones globales — toda la web más viva */
a, button {
  transition: color var(--duration) var(--ease), background-color var(--duration) var(--ease), border-color var(--duration) var(--ease), transform var(--duration) var(--ease), opacity var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
*:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}
.section-title {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.property-card,
.choice-card,
.step-card,
.value-item,
.value-card,
.before-after-card {
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

/* Stats strip (home) — alternancia de tonos crema */
.stats-strip {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-cream-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-strip .container,
.stats-strip .stats-strip-inner {
  position: relative;
  z-index: 1;
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
@media (min-width: 600px) {
  .stats-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item {
  text-align: center;
}
.stat-item .stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fw-light);
  color: var(--color-gold);
  line-height: 1.2;
}
.stat-item .stat-label {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-top: 0.25rem;
}

/* Cita / testimonial */
.quote-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-cream-dark);
}
.quote-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg);
}
.quote-block .quote-text {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--color-black);
  line-height: 1.6;
  margin: 0 0 1rem;
  font-style: italic;
}
.quote-block .quote-author {
  font-size: 0.95rem;
  color: var(--color-gold);
  font-weight: var(--fw-medium);
}

/* Pasos / proceso */
.steps-section {
  padding: var(--space-xl) 0;
  background: var(--color-cream-dark);
}

.steps-section .container {
  position: relative;
  z-index: 1;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  counter-reset: step;
}
@media (min-width: 600px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step-card {
  position: relative;
  padding: var(--space-md) var(--space-md) var(--space-md) 3.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  counter-increment: step;
}
.step-card::before {
  content: counter(step);
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--color-white);
  background: var(--color-gold);
  border-radius: 50%;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.step-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--color-black);
}
.step-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.5;
}

/* Page hero (interior) */
.page-hero {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  background: var(--color-cream-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin: 0 0 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--color-gray);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p a {
  color: var(--color-gold-dark);
  font-weight: var(--fw-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-hero p a:hover {
  color: var(--color-gold);
}

/* Reformas: tipos */
.reform-types-section {
  padding: var(--space-xl) 0;
}
.reform-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 600px) {
  .reform-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .reform-types-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.reform-type-card {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform var(--duration) var(--ease), border-color var(--duration), box-shadow var(--duration);
}
.reform-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 123, 79, 0.25);
  box-shadow: var(--shadow-hover);
}
.reform-type-card .reform-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: var(--fw-medium);
}
.reform-type-card h3 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--color-black);
}

/* Proceso reformas */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
}
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
  }
}
.process-step {
  flex: 1;
  text-align: center;
  padding: var(--space-md);
}
.process-step .process-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-medium);
  font-size: 1.1rem;
}
.process-step h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: var(--color-black);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
}

/* Formulario en card */
.form-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  padding: var(--space-xl) var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}
.form-card h2 {
  font-size: 1.5rem;
  margin: 0 0 var(--space-md);
  color: var(--color-black);
}
@media (max-width: 599px) {
  .form-card {
    padding: var(--space-md);
  }
}

/* About: founder block */
.founder-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0;
}
@media (min-width: 768px) {
  .founder-block {
    grid-template-columns: 200px 1fr;
  }
}
.founder-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-white);
  font-weight: var(--fw-medium);
}
.founder-block h2 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--color-black);
}
.founder-block .role {
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.founder-block p {
  color: var(--color-gray);
  margin: 0;
  line-height: 1.6;
}

/* Valores en cards (about) */
.values-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 600px) {
  .values-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.value-card {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.value-card h3 {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin: 0 0 0.35rem;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.5;
}

/* Contact: dos columnas */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info {
  padding: var(--space-md) 0;
}
.contact-info h2 {
  font-size: 1.35rem;
  margin: 0 0 var(--space-md);
  color: var(--color-black);
}
.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--space);
  color: var(--color-gray);
}
.contact-info .contact-item a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: var(--fw-medium);
}
.contact-info .contact-item a:hover {
  text-decoration: underline;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(154, 123, 79, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: var(--fw-medium);
}
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--color-cream-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 0.95rem;
}
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
}
.contact-form-wrap h2 {
  font-size: 1.35rem;
  margin: 0 0 var(--space-md);
  color: var(--color-black);
}

/* ========== Página Contacto (estilo Uxban con retoques) ========== */
.page-contact {
  padding-bottom: var(--space-xl);
  background: var(--color-cream);
  min-height: 60vh;
}

.contact-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
  background: var(--color-cream-light);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fw-light);
  color: var(--color-black);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.contact-hero-lead {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

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

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
  }
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.contact-form-card:hover {
  box-shadow: var(--shadow-hover);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin: 0 0 var(--space-lg);
  letter-spacing: 0.02em;
}

.contact-form .form-group {
  margin-bottom: var(--space-md);
}

.contact-form .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin-bottom: 0.4rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-main);
  font-size: 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--duration), box-shadow var(--duration);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(154, 123, 79, 0.12);
}

.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-form .form-check input {
  width: auto;
  margin-top: 0.3rem;
}

.contact-form .form-check label {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.link-underline {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-underline:hover {
  color: var(--color-gold-dark);
}

.contact-form-legal {
  margin: var(--space-md) 0;
  padding: var(--space);
  background: var(--color-cream);
  border-radius: var(--radius);
}

.contact-form-legal .legal-text {
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.5;
  margin: 0;
}

.contact-form .form-actions {
  margin-top: var(--space-lg);
  margin-bottom: 0;
}

.btn-contact-submit {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  background: var(--color-black);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--duration) var(--ease), background var(--duration), box-shadow var(--duration);
}

.btn-contact-submit:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-data-block {
  background: var(--color-cream-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.contact-data-block:hover {
  box-shadow: var(--shadow);
}

.contact-data-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  letter-spacing: 0.1em;
  margin: 0 0 var(--space);
}

.contact-data-intro {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin: 0 0 var(--space-md);
  line-height: 1.5;
}

.contact-data-field {
  margin-bottom: var(--space-md);
}

.contact-data-field:last-child {
  margin-bottom: 0;
}

.contact-data-label {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 0.45rem;
}

.contact-data-value {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-black);
}

.contact-data-value:last-child {
  margin-bottom: 0;
}

.contact-data-item {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-data-link {
  color: var(--color-gold);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: color var(--duration);
}

.contact-data-link:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

.btn-contact-maps {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  background: transparent;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--duration), color var(--duration), transform var(--duration);
}

.btn-contact-maps:hover {
  background: var(--color-gold);
  color: #fff;
  transform: translateY(-2px);
}

.contact-data-empty {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin: 0;
}

.alert { padding: var(--space-md); border-radius: var(--radius); margin-bottom: var(--space-md); }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert ul { margin: 0; padding-left: 1.25rem; }

/* Hero full — primera pantalla, imágenes rotando, logo + frase centrados */
.hero-full {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slides-inner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-1 {
  background-image: url('/assets/images/hero/banner-01.png');
}
.hero-slide-2 {
  background-image: url('/assets/images/hero/banner-02.png');
}
.hero-slide-3 {
  background-image: url('/assets/images/hero/banner-03.png');
}
.hero-slide-4 {
  background-image: url('/assets/images/hero/banner-04.png');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
  max-width: 90%;
}

.hero-full .hero-logo {
  width: auto;
  height: clamp(48px, 10vw, 80px);
  max-width: 280px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  margin: 0;
  z-index: 3;
}

.hero-full .hero-tagline {
  font-family: var(--font-main);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: var(--fw-light);
  color: #fff;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Animación hero de la home: aparece desde abajo al cargar la imagen */
.hero-reveal-from-bottom {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

body.is-hero-ready .hero-reveal-from-bottom {
  opacity: 1;
  transform: translateY(0);
}

.hero-full::after {
  display: none;
}

/* Hero lujo: overlay y toques dorados */
.hero-overlay-luxury {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.4) 100%);
}
.hero-tagline-luxury {
  letter-spacing: 0.04em;
}
.hero-logo-gold {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.hero-tagline-luxury::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Hero clásico (otras páginas) — mantener por si se usa */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  background: var(--color-cream) center/cover no-repeat;
}

.hero-with-bg {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,246,243,0.92) 0%, rgba(248,246,243,0.85) 50%, rgba(248,246,243,0.95) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--color-cream), transparent);
  pointer-events: none;
}

.hero h1,
.hero .claim,
.hero .cta-group {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin: 0 0 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  position: relative;
}

.hero .claim {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-gray);
  margin: 0 0 var(--space-lg);
  max-width: 520px;
  position: relative;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

/* ¿Qué necesitas? — participación */
.choice-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-cream);
}
.choice-section .section-title {
  margin-bottom: var(--space-lg);
}
.choice-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .choice-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.choice-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration);
}
.choice-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(166, 124, 82, 0.35);
}
.choice-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-cream-dark);
}
.choice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.choice-card:hover .choice-card-image img {
  transform: scale(1.08);
}
.choice-card-body {
  padding: var(--space-md);
  text-align: center;
}
.choice-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
  color: var(--color-black);
}
.choice-card-body p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0 0 0.75rem;
}
.choice-card-body .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

/* Galería de ambientes */
.gallery-section {
  padding: var(--space-xl) 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: var(--space-md);
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}
.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow);
  transition: transform var(--duration) var(--ease);
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
}

/* Split imagen + texto */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  min-height: 400px;
}
@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }
}
.split-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-off-white);
}
@media (min-width: 900px) {
  .split-image {
    aspect-ratio: auto;
    min-height: 480px;
  }
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content {
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-cream-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.split-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  color: var(--color-black);
}
.split-content p {
  color: var(--color-gray);
  margin: 0 0 var(--space-md);
  line-height: 1.6;
}

/* Botón flotante CTA */
.floating-cta {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.floating-cta .btn-float {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(154, 123, 79, 0.45);
  text-decoration: none;
  font-size: 1.5rem;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.floating-cta .btn-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(154, 123, 79, 0.5);
}
.floating-cta .btn-float span.label {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  white-space: nowrap;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration);
}
.floating-cta .btn-float:hover span.label {
  opacity: 1;
}
.floating-cta .btn-float.whatsapp {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}
.floating-cta .btn-float.whatsapp:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* Botones — dorado elegante */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              color var(--duration),
              background var(--duration),
              border-color var(--duration);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 2px 12px rgba(154, 123, 79, 0.3);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(154, 123, 79, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-secondary:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Secciones — mucho espacio, mármol de fondo */
.section {
  padding: var(--space-xl) 0;
  position: relative;
  background: transparent;
}

/* Línea separadora dorada entre secciones */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--color-gold-light) 0, var(--color-gold) 40%, rgba(154, 123, 79, 0.1) 75%, transparent 100%);
  opacity: 0.9;
}

/* Evitar línea en la primera sección de cada página si se desea */
.page-hero + .section::before {
  top: -1px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--fw-light);
  color: var(--color-black);
  text-align: center;
  margin: 0 0 var(--space-lg);
  letter-spacing: 0.02em;
}

.section-title .accent {
  color: var(--color-gold);
}

/* Grid propiedades — cards con microanimación */
.properties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .properties-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.property-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: var(--shadow);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(154, 123, 79, 0.2);
}

.property-card-image {
  aspect-ratio: 4/3;
  background: var(--color-cream-dark);
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.property-card:hover .property-card-image img {
  transform: scale(1.04);
}

.property-card-body {
  padding: var(--space-md);
}

.property-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-light);
  margin: 0 0 0.35rem;
  color: var(--color-black);
}

.property-card-meta {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
}

.property-card-price {
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  color: var(--color-gold);
}

/* Valores — fondo crema alternado */
.values-section {
  background: var(--color-cream-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.values-section .container {
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.value-item .value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  color: var(--color-white);
}

.value-item h3 {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin: 0 0 0.5rem;
  font-weight: var(--fw-medium);
}

.value-item p {
  color: var(--color-gray);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-cream-dark);
}

.cta-section .section-title {
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--color-gray);
  margin: 0 0 var(--space-md);
  font-size: 1.05rem;
}

/* Formularios */
.form-section {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-white);
}
.form-section.form-section-wide {
  max-width: 900px;
  padding: var(--space-xl) var(--space-md);
}

.form-section h1 {
  font-size: 1.9rem;
  font-weight: var(--fw-medium);
  margin: 0 0 var(--space-lg);
  color: var(--color-black);
}

/* Grid de campos: aprovecha ancho, menos scroll */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md) var(--space-lg);
}
@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .form-grid.form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.form-grid .form-group-full {
  grid-column: 1 / -1;
}

.form-group {
  margin-bottom: var(--space-md);
}
.form-grid .form-group {
  margin-bottom: 0;
}
.form-grid .form-check,
.form-grid .form-actions {
  grid-column: 1 / -1;
}
.form-grid .form-check {
  margin-top: var(--space-md);
}
.form-grid .form-actions {
  margin-top: var(--space-lg);
}
.form-grid .form-actions:first-of-type {
  margin-top: var(--space-md);
}
.form-grid .form-check {
  margin-bottom: 0;
}
.form-actions {
  margin-top: var(--space-lg);
}
.form-section-wide .form-actions,
.form-card .form-actions {
  margin-top: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-main);
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-black);
  transition: border-color var(--duration), box-shadow var(--duration);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(154, 123, 79, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .required::after {
  content: ' *';
  color: var(--color-gold);
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  border: 1px solid #fecaca;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  border: 1px solid #bbf7d0;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check input {
  width: auto;
  margin-top: 0.35rem;
}

.form-check label {
  margin-bottom: 0;
}

/* Páginas de contenido */
.page-content {
  padding: var(--space-xl) var(--space-md);
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-white);
}

.page-content h1 {
  font-size: 2rem;
  font-weight: var(--fw-medium);
  margin: 0 0 var(--space-md);
  color: var(--color-black);
}

.page-content h2 {
  font-size: 1.35rem;
  margin: var(--space-lg) 0 0.5rem;
  color: var(--color-black);
}

.page-content p,
.page-content li {
  color: var(--color-gray);
  margin: 0 0 1rem;
}

.page-content ul {
  padding-left: 1.5rem;
}

/* Detalle propiedad */
.property-detail {
  padding: 0;
  max-width: none;
  margin: 0;
  background: #fff;
}

.property-gallery {
  aspect-ratio: 16/10;
  background: var(--color-cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.property-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-detail h1:not(.property-detail-hero-title) {
  font-size: 1.9rem;
  font-weight: var(--fw-medium);
  margin: 0 0 0.5rem;
  color: var(--color-black);
}

.property-detail .price {
  font-size: 1.6rem;
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.property-detail .meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-md);
  color: var(--color-gray);
  font-size: 0.95rem;
}

.property-detail .description {
  color: var(--color-gray);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

/* Ficha propiedad — cabecera dos columnas + galería redondeada + formulario */
.property-detail-showcase {
  padding-bottom: var(--space-xl);
}

.property-detail-split-wrap {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.property-detail-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 900px) {
  .property-detail-split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
  }
}

@media (max-width: 899px) {
  .property-detail-hero-card {
    order: -1;
  }
  .property-detail-split {
    display: flex;
    flex-direction: column;
  }
}

.property-detail-info {
  font-family: var(--font-main);
  font-weight: 300;
  font-synthesis: none;
}

.property-detail-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 0.65rem;
}

.property-detail-hero-loc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-black);
  margin: 0 0 1.35rem;
  max-width: 28rem;
}

.property-detail-hero-specs {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.property-detail-hero-specs li {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
}

.property-detail-hero-spec-label {
  font-weight: 300;
  margin-right: 0.35rem;
}

.property-detail-hero-spec-value {
  font-weight: 300;
}

.property-detail-hero-cta {
  margin-top: 0.25rem;
}

.property-detail-hero-price {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 300;
  color: var(--color-gold);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.property-detail-hero-sold {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin: 0 0 0.35rem;
}

.property-detail-hero-sold-note {
  font-size: 0.9rem;
  font-weight: 300;
  color: #888;
  line-height: 1.5;
  margin: 0 0 1rem;
  max-width: 22rem;
}

.btn-property-cta {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--color-black);
  background: linear-gradient(145deg, var(--color-gold-light), var(--color-gold));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: filter var(--duration) var(--ease), transform var(--duration) var(--ease);
  box-shadow: 0 2px 14px rgba(154, 123, 79, 0.25);
}

.btn-property-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: var(--color-black);
}

.property-detail-hero-card {
  border-radius: 14px;
  overflow: hidden;
  background: #ebeae8;
  line-height: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.property-detail-hero-card__zoom {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  line-height: 0;
  text-align: center;
}

.property-detail-hero-card__zoom:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.property-detail-hero-card-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 640px);
  object-fit: contain;
  object-position: center;
}

@media (max-width: 899px) {
  .property-detail-hero-card-img {
    max-height: min(52vh, 480px);
  }
}

.property-detail-rule-wrap {
  padding: 0 var(--space-md);
}

.property-detail-rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0;
}

.property-detail-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) 0;
}

.property-detail-block {
  margin-bottom: var(--space-xl);
}

.property-detail-block-title {
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 1rem;
}

.property-detail-lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
  margin: 0;
  max-width: 42rem;
}

.property-detail-features--showcase {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.property-detail-features--showcase li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--color-black);
  margin: 0;
  padding-left: 0;
}

.property-detail-gallery-block .property-detail-gallery--showcase {
  margin-top: 0;
}

.property-detail-gallery--showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 600px) {
  .property-detail-gallery--showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.property-detail-gallery--showcase button.property-detail-gallery-item {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: #f0efed;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: center;
  border-radius: 12px;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.property-detail-gallery--showcase button.property-detail-gallery-item:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.property-detail-gallery--showcase .property-detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.property-lightbox-open {
  overflow: hidden;
}

.property-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10060;
  box-sizing: border-box;
}

.property-lightbox[hidden] {
  display: none !important;
}

.property-lightbox__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.property-lightbox__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 1.5rem;
  box-sizing: border-box;
  pointer-events: none;
}

.property-lightbox__img {
  max-width: min(96vw, 1400px);
  max-height: calc(100vh - 5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}

.property-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10061;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background var(--duration), border-color var(--duration);
}

.property-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.property-lightbox__close:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.property-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10061;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background var(--duration), border-color var(--duration);
}

.property-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.12);
}

.property-lightbox__nav:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.property-lightbox__nav--prev {
  left: 0.75rem;
}

.property-lightbox__nav--next {
  right: 0.75rem;
}

.property-detail-form-section {
  max-width: 640px;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.property-detail-form-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-gray);
  line-height: 1.55;
  margin: 0 0 var(--space-md);
}

.property-detail-sold-section .property-detail-sold-box {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
}

.property-detail-sold-section .property-detail-sold-box p {
  margin: 0 0 0.75rem;
}

.property-detail-sold-section .property-detail-sold-box p:last-child {
  margin-bottom: 0;
}

.property-detail-sold-box-actions {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}

.btn-brick-consultar {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  background: var(--color-black);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration), transform var(--duration);
}

.btn-brick-consultar:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
}

.property-interest-form .form-group-full { grid-column: 1 / -1; }
.property-interest-form .form-actions { margin-top: var(--space-md); }

/* Paginación */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: var(--space-lg) 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  color: var(--color-black);
  text-decoration: none;
  transition: all var(--duration);
}

.pagination a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.pagination .current {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

/* ========== Página Propiedades (alineada con hero interior: crema, tipografía como Quiénes somos) ========== */
.page-propiedades {
  background: var(--color-cream-light);
  min-height: 60vh;
  padding-bottom: var(--space-xl);
}

.propiedades-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.propiedades-empty {
  text-align: center;
  color: #8a8a8a;
  font-size: 1rem;
  margin: var(--space-xl) 0;
}

.propiedades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .propiedades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .propiedades-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.propiedades-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  transition: opacity var(--duration);
}

.propiedades-card:hover {
  opacity: 0.92;
}

.propiedades-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f5;
}

.propiedades-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.propiedades-card:hover .propiedades-card-image img {
  transform: scale(1.03);
}

.propiedades-card-body {
  padding: var(--space-md) 0 0;
}

.propiedades-card-address {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  color: #2c2c2c;
  letter-spacing: 0.08em;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.propiedades-card-status {
  font-size: 0.85rem;
  color: #9a9a9a;
  margin: 0 0 0.35rem;
  font-weight: 500;
}

.propiedades-card-meta {
  font-size: 0.85rem;
  color: #9a9a9a;
  margin: 0;
  line-height: 1.4;
}

.propiedades-card-price {
  font-size: 0.9rem;
  color: var(--color-gold-dark);
  margin: 0.45rem 0 0;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
}
.propiedades-card-price--sold {
  color: #8a8a8a;
  letter-spacing: 0.04em;
}

.propiedades-pagination {
  margin-top: var(--space-xl);
}

.propiedades-pagination a,
.propiedades-pagination span {
  border-color: #e0e0e0;
  color: #2c2c2c;
}

.propiedades-pagination a:hover {
  border-color: #2c2c2c;
  color: #2c2c2c;
}

.propiedades-pagination .current {
  background: #2c2c2c;
  color: #fff;
  border-color: #2c2c2c;
}

/* Filtros */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-cream-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.filters-bar .form-group {
  margin-bottom: 0;
  min-width: 120px;
}

.filters-bar button.btn {
  padding: 0.85rem 1.5rem;
}

/* 404 */
.error-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
}

.error-404 h1 {
  font-size: 5rem;
  font-weight: var(--fw-medium);
  margin: 0;
  color: var(--color-gold);
}

.error-404 p {
  margin: 1rem 0 var(--space-md);
  color: var(--color-gray);
}

/* Footer — tipografía fina (300) alineada con el tagline; sin “falso negrita” en enlaces */
.site-footer {
  margin-top: auto;
  background: var(--color-navy-grupo);
  border-top: 1px solid rgba(154, 123, 79, 0.2);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-xl) 0 0;
  font-family: var(--font-main);
  font-weight: 300;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-inner > .footer-links--legal,
  .footer-inner > .footer-contact {
    padding-top: calc(46px + 0.5rem);
    min-width: 0;
  }
}

.footer-logo {
  display: inline-block;
  line-height: 0;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity var(--duration) var(--ease);
}

.footer-logo:hover .footer-logo-img {
  opacity: 1;
}

/* Rótulos Legal / Contacto: mismo peso fino, mismo interlineado */
.site-footer .footer-heading {
  display: block;
  margin: 0 0 0.5rem;
  padding: 0;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-synthesis: none;
}

/* Columnas: sin gap extra; cada línea = bloque con line-height 1.6 (como un párrafo) */
.site-footer .footer-links--legal,
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.site-footer .footer-contact-address {
  margin: 0;
  padding: 0;
  font-style: normal;
}

.site-footer .footer-brand .tagline,
.site-footer .footer-links--legal a,
.site-footer .footer-contact a,
.site-footer .footer-contact .footer-contact-line,
.site-footer .footer-contact .footer-placeholder {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  font-synthesis: none;
  margin: 0;
  padding: 0;
  display: block;
  max-width: 100%;
}

.site-footer .footer-brand .tagline {
  margin: 0.5rem 0 0;
  max-width: 280px;
}

.site-footer .footer-links a,
.site-footer .footer-contact a {
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  text-align: center;
  color: var(--color-gray-light);
  font-size: 0.9rem;
}

/* Bloque único centrado: copyright y crédito juntos, sin separación extrema */
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.footer-bottom-sep {
  opacity: 0.45;
  font-weight: 300;
  user-select: none;
}
@media (max-width: 520px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.35rem;
  }
  .footer-bottom-sep {
    display: none;
  }
}
.footer-bottom-credit a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  transition: color var(--duration) var(--ease);
}
.footer-bottom-credit a:hover {
  color: var(--color-gold-light);
}

/* ========== LUJO HOME ========== */
.section-title-luxury {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: var(--fw-light);
  color: var(--color-black);
  letter-spacing: 0.03em;
}
.section-title-light { color: #fff; }
.accent-gold { color: var(--color-gold); }
.section-subtitle {
  text-align: center;
  color: var(--color-gray);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  font-size: 1.05rem;
}
.section-subtitle-light { color: rgba(255,255,255,0.85); }
.luxury-section { padding: var(--space-xl) 0; }
.luxury-section-dark {
  background: var(--color-navy-grupo);
  color: #fff;
  padding: var(--space-xl) 0;
}
.mt-lg { margin-top: var(--space-lg); }
.text-center { text-align: center; }

.founder-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .founder-home-grid { grid-template-columns: 340px 1fr; }
}
.founder-home-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); }
.founder-home-photo img { width: 100%; height: auto; display: block; object-fit: cover; }
.founder-role { font-size: 0.95rem; color: var(--color-gold); margin: 0 0 var(--space-md); font-weight: var(--fw-medium); letter-spacing: 0.05em; }
.founder-bio { color: var(--color-gray); margin: 0 0 1rem; line-height: 1.7; }

.btn-luxury {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(154, 123, 79, 0.35);
}
.btn-luxury:hover {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(154, 123, 79, 0.4);
}
.btn-luxury-outline {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-gold);
}
.btn-luxury-outline:hover { background: var(--color-gold); color: #fff; transform: translateY(-2px); }
.luxury-section-dark .btn-luxury-outline { color: #fff; border-color: var(--color-gold); }
.luxury-section-dark .btn-luxury-outline:hover { background: var(--color-gold); color: #fff; }

.luxury-grid { margin-top: var(--space-lg); }

/* Home luxury: estado sobre la imagen (sin hueco en el cuerpo); cuerpo compacto */
.luxury-card .property-card-image {
  position: relative;
}
.luxury-card .property-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(14, 12, 10, 0.52) 0%, rgba(14, 12, 10, 0.06) 42%, transparent 68%);
}
.luxury-card-dark .property-card-image::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, transparent 52%);
}
.luxury-card .property-card-image .property-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  top: auto;
  right: auto;
  z-index: 2;
  margin: 0;
  font-size: 0.625rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}
.luxury-card .property-badge-available {
  background: rgba(255, 252, 247, 0.93);
  color: var(--color-gold-dark);
  border-color: rgba(154, 123, 79, 0.32);
}
.luxury-card .property-badge-sold {
  background: rgba(0, 0, 0, 0.48);
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.14);
}

.luxury-card .property-card-body {
  padding: 1.2rem 1.35rem 1.35rem;
}
@media (min-width: 768px) {
  .luxury-card .property-card-body {
    padding: 1.3rem 1.5rem 1.45rem;
  }
}
.luxury-card .property-card-title {
  font-size: 1.0625rem;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
}
.luxury-card .property-card-meta {
  font-size: 0.8125rem;
  margin-bottom: 0.55rem;
  letter-spacing: 0.02em;
}
.luxury-card .property-card-price {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  color: var(--color-gold);
}
.luxury-card-dark .property-card-title,
.luxury-card-dark .property-card-meta { color: rgba(255,255,255,0.95); }
.luxury-card-dark .property-card-body { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }

.luxury-card .property-badge-reserved {
  background: rgba(255, 248, 235, 0.93);
  color: #5c4d32;
  border-color: rgba(154, 123, 79, 0.38);
}

/* Portada: vendida — lectura en gris suave */
.luxury-card--sold {
  opacity: 0.94;
}
.luxury-card--sold .property-card-image img {
  filter: grayscale(32%) brightness(0.97);
}
.luxury-card--sold .property-card-image::after {
  background: linear-gradient(to top, rgba(30, 28, 26, 0.42) 0%, rgba(30, 28, 26, 0.08) 45%, transparent 68%);
}
.luxury-card--sold .property-card-body {
  background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
}
.luxury-card--sold .property-card-title,
.luxury-card--sold .property-card-meta {
  color: #6f6f6f;
}
.luxury-card--sold:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.luxury-card-price--sold-label {
  color: #8f8f8f !important;
}

/* Portada: hueco “Próximamente” (no enlazado) */
.luxury-card--placeholder {
  cursor: default;
  pointer-events: none;
  border: 1px dashed rgba(154, 123, 79, 0.28);
  background: linear-gradient(180deg, #fdfcfa 0%, #f5f3ef 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.luxury-card--placeholder:hover {
  transform: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(154, 123, 79, 0.38);
}
.luxury-card--placeholder .property-card-image::after {
  display: none;
}
.luxury-placeholder-image {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #ece8e2 0%, #e3ddd4 55%, #ebe7e1 100%);
}
.luxury-placeholder-label {
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(154, 123, 79, 0.42);
  text-align: center;
  padding: 0 0.75rem;
  line-height: 1.5;
}
.luxury-card--placeholder .property-card-title {
  color: #8a8580;
}
.luxury-card--placeholder .property-card-meta {
  color: #a39e98;
}
.luxury-placeholder-dash {
  color: rgba(154, 123, 79, 0.35) !important;
  font-weight: var(--fw-light);
}

.luxury-grid--home {
  align-items: stretch;
}
.luxury-grid--home > .property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.luxury-grid--home > .property-card .property-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.luxury-grid--home > .property-card .property-card-price,
.luxury-grid--home > .property-card .luxury-placeholder-dash {
  margin-top: auto;
}

.luxury-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-cream-light);
  border: 1px solid rgba(154, 123, 79, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
@media (min-width: 768px) {
  .before-after-grid { grid-template-columns: repeat(3, 1fr); }
}
.before-after-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.before-after-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after { z-index: 0; }
.ba-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}
.before-after-slider[data-percent] .ba-before {
  clip-path: inset(0 calc(100% - var(--ba-percent, 50%)) 0 0);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-percent, 50%);
  width: 4px;
  margin-left: -2px;
  background: var(--color-gold);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transition: left 0.05s ease-out;
}
.ba-handle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ba-label {
  display: block;
  padding: var(--space);
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

/* Ciudades alineadas a la izquierda; país centrado respecto al ancho de esa línea */
.footer-location {
  margin-top: 0.65rem;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.48);
}
.footer-location-cities,
.footer-location-country {
  margin: 0;
  font-size: clamp(0.7rem, 1.75vw, 0.78rem);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.footer-location-cities {
  text-align: left;
}
.footer-location-country {
  margin-top: 0.35rem;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Banner de cookies — RGPD / ePrivacy, esquina inferior izquierda */
.cookie-banner {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  left: max(1rem, env(safe-area-inset-left, 0px));
  right: auto;
  z-index: 10050;
  max-width: min(22.5rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem 1.05rem;
  background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(154, 123, 79, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  line-height: 1.45;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner--visible {
  animation: cookie-banner-in 0.35s var(--ease) forwards;
}
@keyframes cookie-banner-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-banner__text {
  margin: 0 0 0.85rem;
}
.cookie-banner__text a {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover {
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.cookie-banner__btn {
  flex: 1 1 auto;
  min-width: 6.5rem;
  padding: 0.55rem 0.85rem;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--duration), color var(--duration), border-color var(--duration);
}
.cookie-banner__btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}
.cookie-banner__btn--primary:hover {
  filter: brightness(1.06);
}
.cookie-banner__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.22);
}
.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(154, 123, 79, 0.45);
}
@media (max-width: 480px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    width: auto;
    padding: 0.95rem 1rem;
    font-size: 0.78rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }
}

/* Páginas legales */
.legal-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--color-cream-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.legal-hero h1 {
  font-family: var(--font-heading);
  font-weight: var(--fw-light);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0.5rem 0 0.75rem;
}
.legal-prose {
  padding-bottom: var(--space-xl);
}
.legal-prose-inner {
  max-width: 42rem;
  margin: 0 auto;
}
.legal-prose-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  margin: 2rem 0 0.75rem;
  color: var(--color-black);
}
.legal-prose-inner h2:first-child {
  margin-top: 0;
}
.legal-prose-inner h3 {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  margin: 1.25rem 0 0.5rem;
  color: var(--color-gray);
}
.legal-prose-inner p,
.legal-prose-inner li {
  color: var(--color-gray);
  line-height: 1.65;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}
.legal-prose-inner ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-prose-inner a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose-inner a:hover {
  color: var(--color-black);
}

.footer-placeholder {
  display: block;
}
.footer-bottom { border-top-color: rgba(154, 123, 79, 0.15); color: rgba(255,255,255,0.6); }

/* ========== Página Reformas — Luxury & Premium ========== */
.page-renovations {
  padding-bottom: 0;
  background: var(--color-cream);
}

.renovations-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Hero sólido: sin imagen externa, siempre carga bien */
.renovations-hero-solid {
  background: linear-gradient(160deg, var(--color-black) 0%, #2a2520 40%, #1f1c19 100%);
  color: #fff;
}
.renovations-hero-solid .renovations-hero-title,
.renovations-hero-solid .renovations-hero-lead {
  color: inherit;
}
.renovations-hero-solid .renovations-hero-title .logo-accent {
  color: var(--color-gold-light);
}
.renovations-hero-solid .renovations-hero-lead {
  color: rgba(255,255,255,0.9);
}

.renovations-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=1920&q=85');
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.renovations-hero:hover .renovations-hero-bg {
  transition-duration: 1.2s;
}

.renovations-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(26,26,26,0.6) 100%);
  pointer-events: none;
}

.renovations-hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
}

.renovations-hero-label {
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin: 0 0 0.75rem;
}

.renovations-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: var(--fw-light);
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.renovations-hero-title .logo-accent {
  color: var(--color-gold-light);
}

.renovations-hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.renovations-hero-cta {
  padding: 0.95rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(154, 123, 79, 0.45);
}

.renovations-hero-cta:hover {
  box-shadow: 0 8px 32px rgba(154, 123, 79, 0.5);
}

/* Scroll indicator — debajo del botón, en el flujo */
.renovations-hero-scroll {
  display: block;
  margin-top: var(--space-xl);
  text-align: center;
  width: 40px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}
.renovations-hero-scroll:hover {
  color: rgba(255,255,255,1);
}
.renovations-hero-scroll-icon {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.renovations-hero-scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scroll-dot 2.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.3; top: 18px; }
  100% { opacity: 1; top: 8px; }
}

.renovations-types-section {
  padding: var(--space-xl) 0;
  background: var(--color-cream-light);
}

/* Tipos de reforma — cards con contenido de valor (placeholder visual) */
.reform-types-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
@media (min-width: 600px) {
  .reform-types-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .reform-types-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .reform-types-cards {
    grid-template-columns: repeat(5, 1fr);
  }
}

.reform-type-card-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.reform-type-card-content:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.reform-type-card-visual {
  aspect-ratio: 4/3;
  min-height: 200px;
  width: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-cream-dark);
}
.reform-type-card-content .reform-type-card-body {
  padding: var(--space-md) var(--space-lg);
  flex: 1;
  min-height: 0;
}
.reform-type-card-content .reform-type-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin: 0 0 0.35rem;
}
.reform-type-card-content .reform-type-card-body p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.55;
}
.reform-type-card-cta {
  display: block;
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: auto;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.reform-type-card-cta:hover {
  background: rgba(154, 123, 79, 0.08);
  color: var(--color-gold-dark);
}

/* Por qué reformar con nosotros */
.renovations-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
@media (min-width: 768px) {
  .renovations-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.renovations-benefit-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.renovations-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.renovations-benefit-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}
.renovations-benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin: 0 0 0.5rem;
}
.renovations-benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.65;
}

/* Proceso reformas (estilo oscuro, numerado) */
.renovations-process {
  position: relative;
  z-index: 1;
}
.renovations-process .container {
  position: relative;
  z-index: 1;
}
.renovations-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
@media (min-width: 600px) {
  .renovations-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .renovations-process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.renovations-process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  min-height: 160px;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.renovations-process-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(154, 123, 79, 0.35);
}
.renovations-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  background: rgba(154, 123, 79, 0.25);
  border-radius: 50%;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}
.renovations-process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-medium);
  color: #fff;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.renovations-process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Qué obtienes */
.renovations-what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 768px) {
  .renovations-what-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.renovations-what-item {
  padding: var(--space-lg);
  background: var(--color-cream-light);
  border: 1px solid rgba(154, 123, 79, 0.12);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.renovations-what-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.renovations-what-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin: 0 0 0.5rem;
}
.renovations-what-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.reform-types-grid-luxury {
  margin-top: var(--space-lg);
}

/* Tipos de reforma — cards con imagen (sin iconos) */
.reform-types-grid-imgs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .reform-types-grid-imgs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .reform-types-grid-imgs {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1100px) {
  .reform-types-grid-imgs {
    grid-template-columns: repeat(5, 1fr);
  }
}

.reform-type-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--color-white);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.reform-type-card-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.12);
}

.reform-type-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.reform-type-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.reform-type-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.reform-type-card-img:hover .reform-type-card-img-wrap img {
  transform: scale(1.08);
}

.reform-type-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.reform-type-card-img:hover .reform-type-card-overlay {
  opacity: 1;
}

.reform-type-card-body {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.reform-type-card-img h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-medium);
  margin: 0 0 0.4rem;
  color: var(--color-black);
  transition: color 0.3s;
}

.reform-type-card-img:hover h3 {
  color: var(--color-gold);
}

.reform-type-card-img p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.45;
}

/* Galería de proyectos — grid interactivo */
.renovations-gallery-section {
  padding: var(--space-xl) 0;
  background: var(--color-cream);
}

.renovations-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .renovations-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 900px) {
  .renovations-gallery {
    gap: 1rem;
  }
}

.renovations-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: transform 0.5s var(--ease);
}

.renovations-gallery-item:hover {
  transform: scale(1.03);
}

.renovations-gallery-item-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.renovations-gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.renovations-gallery-item:hover .renovations-gallery-item-inner img {
  transform: scale(1.1);
}

.renovations-steps-section {
  background: var(--color-cream-light);
}

.process-steps-luxury,
.process-steps-with-imgs {
  margin-top: var(--space-lg);
}

/* Proceso con imagen por paso */
.process-steps-with-imgs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 600px) {
  .process-steps-with-imgs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .process-steps-with-imgs {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

.process-step-img {
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.process-step-img:hover {
  transform: translateY(-6px);
}

.process-step-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: box-shadow 0.4s var(--ease);
}

.process-step-img:hover .process-step-img-wrap {
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.process-step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.process-step-img:hover .process-step-img-wrap img {
  transform: scale(1.06);
}

.process-step-num {
  position: absolute;
  bottom: var(--space);
  right: var(--space);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: #fff;
  font-weight: var(--fw-medium);
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(154, 123, 79, 0.4);
}

.process-step-img h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-medium);
  margin: 0 0 0.4rem;
  color: var(--color-black);
}

.process-step-img p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.5;
}

/* Mantener compatibilidad con clases antiguas (ocultar iconos si existieran) */
.reform-type-card-luxury .reform-icon-luxury,
.reform-icon-luxury {
  display: none !important;
}

.reform-type-card-inner {
  padding: 0;
}

.reform-type-card-luxury {
  padding: 0;
  border: 1px solid rgba(154, 123, 79, 0.15);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.35s;
}

.reform-type-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  border-color: rgba(154, 123, 79, 0.35);
}

.process-step-luxury {
  padding: var(--space-lg) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.35s;
}

.process-step-luxury:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: rgba(154, 123, 79, 0.2);
}

.process-num-luxury {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-medium);
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(154, 123, 79, 0.35);
  transition: transform 0.35s var(--ease);
}

.process-step-luxury:hover .process-num-luxury {
  transform: scale(1.1);
}

.process-step-luxury h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-medium);
  margin: 0 0 0.4rem;
  color: var(--color-black);
}

.process-step-luxury p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.5;
}

.renovations-form-section {
  background: var(--color-cream-dark);
  padding: var(--space-xl) 0;
}

.renovations-form-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid rgba(154, 123, 79, 0.18);
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  transition: box-shadow 0.5s var(--ease);
}

.renovations-form-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}

.renovations-form-card-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.renovations-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.renovations-form-intro {
  font-size: 1rem;
  color: var(--color-gray);
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.renovations-form .form-group label {
  font-weight: var(--fw-medium);
  color: var(--color-black);
}

.renovations-form .form-group input,
.renovations-form .form-group textarea,
.renovations-form .form-group select {
  border-color: rgba(0,0,0,0.12);
}

.renovations-form .form-group input:focus,
.renovations-form .form-group textarea:focus,
.renovations-form .form-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(154, 123, 79, 0.15);
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-gray);
}

.renovations-alert-success {
  border-radius: var(--radius);
  padding: var(--space-md);
}

.renovations-alert-error ul {
  margin: 0;
  padding-left: 1.2rem;
}

.btn-renovations-submit {
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
}

@media (max-width: 599px) {
  .renovations-form-card {
    padding: var(--space-md);
  }
  .renovations-hero {
    min-height: 65vh;
  }
}

/* ========== Toasts (notificaciones emergentes) ========== */
.toast-container {
  position: fixed;
  top: calc(80px + var(--space-md));
  right: var(--space-md);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: calc(100vw - 2 * var(--space-md));
  pointer-events: none;
}

.toast-container > * {
  pointer-events: auto;
}

.toast {
  min-width: 300px;
  max-width: 420px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: toast-in 0.35s var(--ease) forwards;
  font-size: 0.95rem;
  line-height: 1.45;
}

.toast--hide {
  animation: toast-out 0.3s ease forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.toast--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.toast--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.toast__message {
  flex: 1;
}

.toast__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  opacity: 0.8;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius);
  transition: opacity var(--duration);
}

.toast__close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.06);
}

.toast--error .toast__close:hover {
  background: rgba(185, 28, 28, 0.12);
}

@media (max-width: 599px) {
  .toast-container {
    top: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
  }
  .toast {
    min-width: 0;
    max-width: none;
  }
  @keyframes toast-in {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes toast-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
  }
}

/* ========== BANNI CLUB (inversión) ========== */
.page-hero.investment-hero {
  padding-top: calc(var(--space-xl) + 1.25rem);
  padding-bottom: calc(var(--space-xl) + 1.5rem);
}

.page-hero.investment-hero h1.investment-hero-title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.22em;
  margin: 0 auto 2.5rem;
  max-width: 100%;
  line-height: 1.08;
}

.investment-hero-brand {
  color: var(--color-black);
  letter-spacing: inherit;
}

.investment-hero-brand--club {
  color: var(--color-gold);
  font-weight: var(--fw-medium);
}

.investment-hero-lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-gray);
}

.luxury-section.investment-intro {
  padding-top: calc(var(--space-xl) + 1rem);
  padding-bottom: calc(var(--space-xl) + 0.5rem);
}

.investment-intro .section-title-luxury {
  margin-bottom: 1.25rem;
}

.investment-intro .section-subtitle {
  margin-bottom: calc(var(--space-lg) + 0.5rem);
}

.investment-process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: calc(var(--space-lg) + 0.5rem);
}

.investment-process-step {
  flex: 1 1 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
}

.investment-process-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  min-height: 12.5rem;
  box-sizing: border-box;
  background: var(--color-navy-grupo);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.investment-process-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  border-color: rgba(154, 123, 79, 0.35);
}

.investment-process-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 1rem;
}

.investment-process-box p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.investment-process-arrow {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 767px) {
  .investment-process-flow {
    flex-direction: column;
    align-items: center;
  }
  .investment-process-step {
    flex: 0 1 auto;
    max-width: 320px;
    width: 100%;
  }
  .investment-process-box {
    max-width: none;
    min-height: 0;
  }
  .investment-process-arrow {
    width: 2px;
    height: 24px;
  }
}

.investment-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .investment-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.investment-param-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.investment-param-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(154, 123, 79, 0.4);
}

.investment-param-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: var(--fw-medium);
  color: #fff;
  margin: 0 0 var(--space-md);
  letter-spacing: 0.02em;
}

.investment-param-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.7;
}

.investment-param-card li {
  margin-bottom: 0.5rem;
}

.investment-rehab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .investment-rehab-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.investment-rehab-card {
  background: var(--color-navy-grupo);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.investment-rehab-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(154, 123, 79, 0.35);
}

.investment-rehab-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.investment-rehab-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 0.5rem;
}

.investment-rehab-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.investment-cta .cta-group a {
  text-decoration: none;
}

/* ========== PÁGINA ABOUT US ========== */
.page-hero.about-page-hero h1.about-hero-heading {
  margin-bottom: 2rem;
}

.page-hero.about-page-hero .about-hero-intro {
  margin-top: 0;
}

.about-hero-label {
  display: block;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.founder-avatar-lg {
  width: 200px;
  height: 200px;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .founder-avatar-lg {
    width: 240px;
    height: 240px;
    font-size: 3rem;
  }
}

/* Por qué nos eligen — grid oscuro */
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
@media (min-width: 600px) {
  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-why-card {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.about-why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(154, 123, 79, 0.4);
}
.about-why-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.about-why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-medium);
  color: #fff;
  margin: 0 0 0.5rem;
}
.about-why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

/* Valores */
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-values .about-value-item {
  padding: var(--space-lg);
  background: var(--color-navy-grupo);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.about-values .about-value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border-color: rgba(154, 123, 79, 0.35);
}
.about-values .about-value-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}
.about-values .about-value-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 0.5rem;
}
.about-values .about-value-item p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* Cifras About us — misma familia cromática que el footer */
.stats-strip.about-stats {
  background: var(--color-navy-grupo);
  border-top-color: rgba(255, 255, 255, 0.08);
}
.about-stats .stat-item .stat-label {
  color: rgba(255, 255, 255, 0.72);
}
