    /* ── TOKENS ─────────────────────────────────────────── */
    :root {
      --teal:    #E4002B;
      --teal-lt: #FF3355;
      --orange:  #231F20;
      --sand:    #F5EFE6;
      --white:   #FAFAFA;
      --ink:     #1E1E1E;
      --mid:     #5A5A5A;
      --border:  #E2DDD6;
      --radius:  10px;
      --shadow:  0 4px 24px rgba(228,0,43,.10);
    }

    /* ── RESET ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--ink); }
    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: #E4002B;
      z-index: 1000;
      pointer-events: none;
    }
    ::selection { background: #E4002B; color: #FFFFFF; }
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: #231F20; }
    img  { display: block; max-width: 100%; }
    a    { text-decoration: none; color: inherit; }
    ul   { list-style: none; }
    a:focus-visible,
    button:focus-visible,
    select:focus-visible {
      outline: 2px solid #E4002B;
      outline-offset: 3px;
    }
    .icon {
      width: 1.1em;
      height: 1.1em;
      vertical-align: -0.15em;
      flex-shrink: 0;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .icon--lg { width: 1.35em; height: 1.35em; }

    /* ── NAVBAR ─────────────────────────────────────────── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 68px;
      background: rgba(20,18,17,.88);
      backdrop-filter: blur(8px);
    }
    .navbar--scrolled { background: rgba(20,18,17,.97); }
    .navbar__logo {
      display: flex; align-items: center; gap: .5rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1.5rem;
      color: var(--white);
      letter-spacing: -.5px;
    }
    .navbar__logo span { color: var(--orange); }
    .navbar__logo-img { height: 52px; width: auto; max-width: none; flex-shrink: 0; }
    .navbar__links {
      display: flex; gap: 2rem; align-items: center;
    }
    .navbar__links a {
      position: relative;
      color: rgba(250,250,250,.82);
      font-size: .875rem;
      font-weight: 500;
      letter-spacing: .02em;
      transition: color .2s;
    }
    .navbar__links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -.3rem;
      width: 100%;
      height: 2px;
      background: #E4002B;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 200ms ease;
    }
    .navbar__links a:hover::after { transform: scaleX(1); }
    .navbar__links a:hover { color: var(--white); }
    .navbar__cta {
      background: var(--orange);
      color: var(--white) !important;
      padding: .45rem 1.1rem;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: background .2s, transform .15s !important;
    }
    .navbar__cta:hover { background: #3B3637 !important; transform: translateY(-1px); }
    .navbar__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: 0; font: inherit; }
    .navbar__burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
    .navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ───────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      /* Foto hero provisional de stock/local hasta tener foto real de Cuernavaca (T5). */
      background:
        linear-gradient(180deg, rgba(20,18,17,.35) 0%, rgba(20,18,17,.58) 48%, rgba(20,18,17,.78) 100%),
        url('../img/hero.webp?v=20260709b') center/cover no-repeat;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 110px 5vw 70px;
      text-align: center;
      position: relative;
    }
    @media (max-width: 768px) {
      .hero {
        background:
          linear-gradient(180deg, rgba(20,18,17,.35) 0%, rgba(20,18,17,.58) 48%, rgba(20,18,17,.78) 100%),
          url('../img/hero-mobile.webp?v=20260709c') center/cover no-repeat;
      }
    }
    .hero__eyebrow {
      display: inline-block;
      background: rgba(228,0,43,.92);
      border: 1px solid rgba(250,250,250,.35);
      color: var(--white);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .35rem .9rem;
      border-radius: 999px;
      margin-bottom: 1.2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,.18);
    }
    .hero__title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 4.4vw, 4.1rem);
      letter-spacing: -.02em;
      line-height: 1.12;
      text-wrap: balance;
      color: var(--white);
      max-width: 920px;
      margin-bottom: 1rem;
    }
    .hero__title em { font-style: italic; color: #FFD0AE; }
    .hero__subtitle {
      color: var(--white);
      font-size: clamp(1rem, 1.45vw, 1.12rem);
      max-width: 680px;
      line-height: 1.7;
      margin-bottom: 2.4rem;
    }

    /* ── SEARCH BOX ─────────────────────────────────────── */
    .search-box {
      background: var(--white);
      border-radius: 16px;
      padding: 1.4rem 1.6rem;
      width: 100%;
      max-width: 780px;
      box-shadow: 0 26px 80px rgba(0,0,0,.30);
    }
    .search-tabs {
      display: flex; gap: .5rem; margin-bottom: 1.1rem;
    }
    .search-tab {
      padding: .38rem .9rem;
      border-radius: 6px;
      font-size: .8rem;
      font-weight: 600;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--mid);
      transition: .2s;
    }
    .search-tab.active, .search-tab:hover {
      background: var(--teal);
      border-color: var(--teal);
      color: var(--white);
    }
    .search-fields {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr auto;
      gap: .7rem;
      align-items: end;
    }
    .search-field label {
      display: block;
      font-size: .72rem;
      font-weight: 600;
      color: var(--mid);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: .3rem;
    }
    .search-field select,
    .search-field input {
      width: 100%;
      padding: .6rem .85rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: .88rem;
      color: var(--ink);
      background: var(--white);
      outline: none;
      transition: border-color .2s;
    }
    .search-field select:focus,
    .search-field input:focus { border-color: var(--teal); }
    .search-btn {
      background: var(--teal);
      color: var(--white);
      border: none;
      padding: .65rem 1.4rem;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s, transform .15s;
      white-space: nowrap;
    }
    .search-btn:hover { background: #C90025; transform: translateY(-1px); }

    .hero__stats {
      display: flex; gap: clamp(1rem, 3vw, 2.8rem); margin-top: 2.5rem;
      flex-wrap: wrap; justify-content: center;
    }
    .hero__stat { text-align: center; }
    .hero__stat strong {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      color: var(--white);
      line-height: 1;
    }
    .hero__stat span {
      font-size: .78rem;
      color: rgba(250,250,250,.78);
      letter-spacing: .04em;
    }

    /* ── SECTION COMMONS ────────────────────────────────── */
    .section { padding: 80px 5vw; }
    @media (min-width: 1024px) {
      .section { padding-top: 8rem; padding-bottom: 8rem; }
    }
    .section--sand { background: var(--sand); }
    .section__header { margin-bottom: 2.8rem; }
    .section__eyebrow {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: .5rem;
      line-height: 1.2;
    }
    .section__title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.9rem, 3.2vw, 2.75rem);
      color: var(--teal);
      line-height: 1.2;
    }
    .section__sub {
      color: var(--mid);
      font-size: .95rem;
      margin-top: .55rem;
      max-width: 520px;
      line-height: 1.65;
    }
    .section__header--between {
      display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem;
    }
    .link-ver-todas {
      font-size: .85rem;
      font-weight: 600;
      color: var(--teal);
      border-bottom: 1.5px solid var(--teal);
      padding-bottom: 1px;
      transition: color .2s;
    }
    .link-ver-todas:hover { color: var(--orange); border-color: var(--orange); }

    /* ── PROPERTY GRID ──────────────────────────────────── */
    .props-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
      gap: 1.4rem;
    }
    .prop-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(45,41,38,.08);
      transition: transform 250ms cubic-bezier(.2,.6,.2,1), box-shadow 250ms cubic-bezier(.2,.6,.2,1);
      cursor: pointer; min-width: 0;
    }
    .prop-card__img {
      position: relative;
      aspect-ratio: 3 / 2;
      overflow: hidden;
    }
    .prop-card__img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 250ms cubic-bezier(.2,.6,.2,1);
    }
    @media (prefers-reduced-motion: no-preference) {
      .prop-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 48px rgba(30,30,30,.14);
      }
      .prop-card:hover .prop-card__img img { transform: scale(1.04); }
    }
    @media (prefers-reduced-motion: reduce) {
      .prop-card { transition: box-shadow 250ms cubic-bezier(.2,.6,.2,1); }
      .prop-card:hover { box-shadow: 0 24px 48px rgba(30,30,30,.14); }
    }
    .prop-card__badge {
      position: absolute; top: .75rem; left: .75rem;
      background: var(--teal);
      color: var(--white);
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .22rem .65rem;
      border-radius: 999px;
    }
    .prop-card__badge--rent { background: var(--teal); }
    .prop-card__fav {
      position: absolute; top: .75rem; right: .75rem;
      width: 32px; height: 32px;
      background: rgba(255,255,255,.92);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--ink);
      transition: transform .15s, background-color .15s, box-shadow .15s;
      box-shadow: 0 1px 4px rgba(0,0,0,.18);
    }
    .prop-card__fav .icon { width: 1.05em; height: 1.05em; stroke-width: 2.2; transition: fill .15s, stroke .15s; }
    .prop-card__fav:hover { background: var(--white); transform: scale(1.08); }
    .prop-card__fav:active { transform: scale(.94); }
    .prop-card__fav.active { background: #FFF0F1; color: var(--teal); }
    .prop-card__fav.active .icon { fill: var(--teal); stroke: var(--teal); }
    .prop-card__body { padding: 1rem 1.1rem 1.2rem; min-width: 0; }
    .prop-card__price {
      font-family: 'Oswald', sans-serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: #E4002B;
      line-height: 1.05;
      overflow-wrap: anywhere;
    }
    .prop-card__price sub {
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem;
      font-weight: 500;
      color: var(--mid);
      vertical-align: baseline;
    }
    .prop-card__title {
      font-family: 'Montserrat', sans-serif;
      font-size: .92rem;
      font-weight: 600;
      color: var(--ink);
      margin: .3rem 0 .2rem;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }
    .prop-card__location {
      font-size: .78rem;
      color: var(--mid);
      display: flex; align-items: center; gap: .3rem;
      margin-bottom: .75rem;
      overflow-wrap: anywhere;
    }
    .prop-card__location svg { flex-shrink: 0; }
    .prop-card__features {
      display: flex; gap: .4rem; flex-wrap: wrap;
      padding-top: .1rem;
    }
    .prop-card__feat {
      font-size: .74rem;
      color: #4A4540;
      background: #F5EFE6;
      border-radius: 999px;
      padding: .28rem .58rem;
      display: flex; align-items: center; gap: .3rem;
      max-width: 100%;
    }
    .prop-card__feat svg { color: var(--teal); }

    @keyframes shimmer { from { background-position: -200% 0; } to { background-position: 200% 0; } }
    .skeleton {
      background: linear-gradient(90deg, #ECE8E2 25%, #F7F4EF 50%, #ECE8E2 75%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite;
      border-radius: 6px;
    }

    /* ── TIPO CARDS ─────────────────────────────────────── */
    .tipo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      justify-content: center;
    }
    .tipo-card {
      background: var(--white);
      border-radius: 12px;
      padding: 1.5rem 1.2rem;
      text-align: center;
      box-shadow: var(--shadow);
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color .2s, transform .2s;
    }
    .tipo-card:hover, .tipo-card.active {
      border-color: var(--teal);
      transform: translateY(-3px);
    }
    .tipo-card__icon {
      font-size: 2rem;
      margin-bottom: .6rem;
    }
    .tipo-card__label {
      font-size: .88rem;
      font-weight: 600;
      color: var(--ink);
    }
    .tipo-card__count {
      font-size: .75rem;
      color: var(--mid);
      margin-top: .2rem;
    }

    /* ── ZONAS ──────────────────────────────────────────── */
    /* "Explorar por ubicación" solo en escritorio (≥1024px) — en móvil/
       tablet la sección se oculta aunque loadZonasSection() la muestre. */
    @media (max-width: 1023px) {
      #zonas { display: none !important; }
      #mobileNavZonasLink { display: none !important; }
    }
    .zonas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 200px;
      gap: 1rem;
    }
    .zona-card {
      position: relative;
      height: 100%;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }
    .zona-card:first-child { grid-row: span 2; }
    .zona-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }
    .zona-card:hover img { transform: scale(1.06); }
    .zona-card::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(228,0,43,.75) 0%, transparent 60%);
    }
    .zona-card__label {
      position: absolute;
      bottom: 1rem; left: 1.1rem;
      z-index: 2;
      color: var(--white);
    }
    .zona-card__label strong {
      display: block;
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
    }
    .zona-card__label span {
      font-size: .75rem;
      opacity: .78;
    }

    /* ── WHY US ─────────────────────────────────────────── */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem 3rem;
      align-items: start;
    }
    .why-img {
      grid-row: span 2;
      border-radius: 16px;
      overflow: hidden;
      height: 480px;
      box-shadow: var(--shadow);
    }
    .why-img img { width: 100%; height: 100%; object-fit: contain; background: #fff; padding: 2rem; }
    .why-items { display: flex; flex-direction: column; gap: 1.4rem; }
    .why-item {
      display: flex; gap: 1rem; align-items: flex-start;
    }
    .why-item__icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--sand);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      border: 1.5px solid var(--border);
    }
    .why-item__title {
      font-size: .95rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: .2rem;
    }
    .why-item p { font-size: .84rem; color: var(--mid); line-height: 1.6; }

    /* ── AGENTS ─────────────────────────────────────────── */
    .agents-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.4rem;
    }
    .agent-card {
      background: var(--white);
      border-radius: 12px;
      padding: 1.5rem 1.2rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: transform .2s;
    }
    .agent-card:hover { transform: translateY(-4px); }
    .agent-card__avatar {
      width: 80px; height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto .8rem;
      border: 3px solid var(--sand);
    }
    .agent-card h3 { font-size: .95rem; font-weight: 600; color: var(--ink); }
    .agent-card p { font-size: .78rem; color: var(--mid); margin: .2rem 0 .8rem; }
    .agent-card__contact {
      display: flex; justify-content: center; gap: .7rem;
    }
    .agent-contact-btn {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .agent-contact-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

    /* ── CTA STRIP ──────────────────────────────────────── */
    .cta-strip {
      background: var(--orange);
      padding: 70px 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .cta-strip__text h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      color: var(--white);
      margin-bottom: .5rem;
    }
    .cta-strip__text p {
      color: var(--white);
      font-size: .95rem;
      max-width: 440px;
      line-height: 1.6;
    }
    .cta-strip__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn { display: inline-flex; align-items: center; gap: .4rem; padding: .75rem 1.5rem; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 600; cursor: pointer; transition: .2s; border: none; }
    .btn--orange { background: var(--teal); color: var(--white); }
    .btn--orange:hover { background: #C90025; transform: translateY(-1px); }
    .btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.45); }
    .btn--outline:hover { background: rgba(255,255,255,.10); }

    /* ── TESTIMONIALS ───────────────────────────────────── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.4rem;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--orange);
    }
    .testimonial-card__stars { color: #F5A623; font-size: .95rem; margin-bottom: .6rem; }
    .testimonial-card__text {
      font-size: .88rem;
      color: var(--mid);
      line-height: 1.65;
      font-style: italic;
      margin-bottom: 1rem;
    }
    .testimonial-card__author {
      display: flex; align-items: center; gap: .7rem;
    }
    .testimonial-card__author img {
      width: 38px; height: 38px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testimonial-card__author strong { font-size: .85rem; color: var(--ink); display: block; }
    .testimonial-card__author span  { font-size: .75rem; color: var(--mid); }
    .testimonials-empty {
      max-width: 600px;
      margin: 0 auto;
      padding: 1.5rem 1.75rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: var(--shadow);
      color: var(--mid);
      font-size: .9rem;
      line-height: 1.6;
      text-align: center;
    }

    /* ── FOOTER ─────────────────────────────────────────── */
    .footer {
      background: var(--ink);
      padding: 60px 5vw 30px;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer__brand p {
      font-size: .84rem;
      color: rgba(250,250,250,.5);
      line-height: 1.65;
      margin: .8rem 0 1.2rem;
      max-width: 280px;
    }
    .footer__social { display: flex; gap: .7rem; }
    .footer__soc-btn {
      width: 34px; height: 34px;
      border-radius: 7px;
      background: rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
      cursor: pointer;
      transition: background .2s;
    }
    .footer__soc-btn:hover { background: var(--orange); }
    .footer__heading {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #9E9E9E;
      margin-bottom: 1rem;
    }
    .footer__col a {
      display: block;
      font-size: .84rem;
      color: rgba(250,250,250,.65);
      margin-bottom: .55rem;
      transition: color .2s;
    }
    .footer__col a:hover { color: var(--white); }
    .footer__contact-item {
      display: flex; gap: .6rem; align-items: flex-start;
      margin-bottom: .7rem;
    }
    .footer__contact-item span:first-child { font-size: .9rem; margin-top: 1px; }
    .footer__contact-item span:last-child { font-size: .82rem; color: rgba(250,250,250,.6); line-height: 1.5; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    .footer__bottom p { font-size: .78rem; color: #9E9E9E; }
    .footer__bottom a { font-size: .78rem; color: #9E9E9E; transition: color .2s; }
    .footer__bottom a:hover { color: var(--white); }
    .footer__bottom-links { display: flex; gap: 1.5rem; }

    /* ── WHATSAPP FAB ───────────────────────────────────── */
    .wa-fab {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
      width: 54px; height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
      animation: pulse-wa 3s ease-in-out infinite;
    }
    .wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
    @keyframes pulse-wa {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
      50%      { box-shadow: 0 4px 32px rgba(37,211,102,.65); }
    }
    .wa-fab svg { width: 28px; height: 28px; fill: white; }

    /* ── MOBILE NAV ─────────────────────────────────────── */
    .mobile-nav {
      position: fixed; inset: 0; z-index: 99;
      visibility: hidden;
      pointer-events: none;
    }
    .mobile-nav.open { visibility: visible; pointer-events: auto; }
    .mobile-nav--overlay { background: transparent; }
    .mobile-nav__overlay { display: none; }
    .mobile-nav__panel {
      position: relative; z-index: 1;
      width: 100vw; max-width: none;
      height: 100vh; height: 100dvh;
      overflow-x: hidden; overflow-y: auto;
      padding: clamp(5.25rem, 12vh, 7rem) clamp(1.25rem, 6vw, 3rem) max(1.5rem, env(safe-area-inset-bottom));
      display: flex; flex-direction: column;
      background: #1A1817;
      counter-reset: mobile-nav-item;
      opacity: 0; transform: scale(.97);
      transform-origin: center;
      transition: opacity 280ms ease, transform 280ms ease;
    }
    .mobile-nav.open .mobile-nav__panel { opacity: 1; transform: scale(1); }
    .mobile-nav__panel a { color: #FAFAFA; }
    .mobile-nav__link {
      counter-increment: mobile-nav-item;
      position: relative;
      display: grid; grid-template-columns: 2.75rem minmax(0, 1fr); align-items: center;
      min-width: 0; padding: clamp(.75rem, 2vh, 1.1rem) .6rem;
      margin: 0 -.6rem;
      border-radius: 10px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-family: 'Oswald', sans-serif; font-weight: 600;
      font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.08;
      letter-spacing: .01em;
    }
    .mobile-nav__link:hover, .mobile-nav__link:active { background: rgba(255,255,255,.05); }
    .mobile-nav__link:focus-visible {
      outline: none;
      background: rgba(228,0,43,.10);
      box-shadow: inset 3px 0 0 #E4002B;
    }
    .mobile-nav__link::before {
      content: "0" counter(mobile-nav-item);
      display: inline-flex; align-items: center; justify-content: center;
      width: 1.9rem; height: 1.9rem;
      border-radius: 50%;
      background: rgba(228,0,43,.12);
      color: #E4002B; font-size: .68rem; letter-spacing: .2em;
    }
    .mobile-nav__panel a:hover { color: #FFFFFF; }
    .mobile-nav__panel .navbar__cta,
    .mobile-nav__panel .mobile-nav__login {
      display: flex; align-items: center; justify-content: center;
      width: 100%; min-height: 3rem; padding: .75rem 1rem;
      border-radius: 999px; font-size: .9rem; font-weight: 700;
    }
    .mobile-nav__panel .navbar__cta {
      position: relative; margin-top: auto;
      background: #E4002B; color: #FFFFFF;
    }
    .mobile-nav__panel .navbar__cta::before {
      content: ""; position: absolute; left: 0; right: 0; top: -.75rem;
      height: 1px; background: rgba(228,0,43,.3);
    }
    .mobile-nav__panel .mobile-nav__login {
      margin-top: .65rem; border: 1px solid rgba(255,255,255,.28);
      background: transparent;
    }
    .mobile-nav__link, .mobile-nav__panel .navbar__cta, .mobile-nav__login {
      opacity: 0; transform: translateY(14px);
      transition: opacity 280ms ease, transform 280ms ease;
    }
    .mobile-nav__panel .navbar__cta { transition: opacity 280ms ease, transform 280ms ease !important; }
    .mobile-nav.open .mobile-nav__link, .mobile-nav.open .navbar__cta, .mobile-nav.open .mobile-nav__login { opacity: 1; transform: translateY(0); }
    .mobile-nav__panel > :nth-child(1) { transition-delay: 60ms; }
    .mobile-nav__panel > :nth-child(2) { transition-delay: 120ms; }
    .mobile-nav__panel > :nth-child(3) { transition-delay: 180ms; }
    .mobile-nav__panel > :nth-child(4) { transition-delay: 240ms; }
    .mobile-nav__panel > :nth-child(5) { transition-delay: 300ms; }
    .mobile-nav__panel > :nth-child(6) { transition-delay: 360ms; }
    .mobile-nav__panel > :nth-child(7) { transition-delay: 420ms; }
    .mobile-nav__panel > :nth-child(8) { transition-delay: 480ms; }

    /* ── SCROLL REVEAL ──────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s, transform .55s; }
    .reveal:nth-child(2) { transition-delay: 80ms; }
    .reveal:nth-child(3) { transition-delay: 160ms; }
    .reveal:nth-child(4) { transition-delay: 240ms; }
    .reveal:nth-child(5) { transition-delay: 320ms; }
    .reveal:nth-child(6) { transition-delay: 400ms; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .skeleton { animation: none; background: #ECE8E2; }
      .mobile-nav__panel,
      .mobile-nav__link,
      .mobile-nav__panel .navbar__cta,
      .mobile-nav__login {
        opacity: 1; transform: none; transition: none !important; transition-delay: 0ms;
      }
    }

    /* ── RESPONSIVE ─────────────────────────────────────── */
    /* El navbar tiene 8 items (links + Publicar propiedad + Iniciar
       sesión) — necesita su propio breakpoint, más ancho que el resto,
       porque empieza a encimarse mucho antes que el resto del layout. */
    @media (max-width: 1100px) {
      .navbar__links { display: none; }
      .navbar__burger { display: flex; }
    }
    @media (max-width: 900px) {
      .search-fields { grid-template-columns: 1fr 1fr; }
      .zonas-grid { grid-template-columns: 1fr 1fr; }
      .zona-card:first-child { grid-row: auto; }
      .why-grid { grid-template-columns: 1fr; }
      .why-img { grid-row: auto; height: 280px; }
      .footer__top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .hero__title {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
      }
      .search-box {
        max-width: 100%;
        padding: 1.15rem;
      }
      .search-fields { grid-template-columns: 1fr; }
      .search-field,
      .search-field select,
      .search-btn { min-width: 0; width: 100%; }
      .zonas-grid { grid-template-columns: 1fr; }
      .footer__top { grid-template-columns: 1fr; }
      .cta-strip { flex-direction: column; text-align: center; }
      .cta-strip__actions { justify-content: center; }
      .footer__bottom { flex-direction: column; text-align: center; }
    }
