body { animation: pageIn 0.5s ease forwards; }
    @keyframes pageIn { from { opacity:0; } to { opacity:1; } }

    /* ── Espacios main grid ─────────────────────────────── */
    .espacios-section {
      padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem);
      background: #080808;
    }

    .espacios-controls {
      max-width: 1400px;
      margin: 0 auto 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .espacios-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
    }

    /* Featured espacio — full width */
    .espacio-featured {
      grid-column: 1 / -1;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      height: clamp(400px, 55vh, 600px);
    }

    .espacio-featured img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.65);
      transition: transform 1s cubic-bezier(0.22,1,0.36,1), filter 1s;
    }

    .espacio-featured:hover img {
      transform: scale(1.04);
      filter: brightness(0.8);
    }

    .espacio-featured-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(8,8,8,0.8) 0%, rgba(8,8,8,0.15) 60%);
      display: flex;
      align-items: flex-end;
      padding: clamp(2rem, 4vw, 4rem);
    }

    .espacio-featured-content {
      max-width: 600px;
    }

    .espacio-featured-content .label { margin-bottom: 1rem; }

    .espacio-featured-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 1rem;
    }

    .espacio-featured-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }

    .espacio-featured-meta span {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,242,238,0.55);
    }

    .espacio-featured-meta strong {
      color: #b89356;
      font-weight: 400;
    }

    /* Regular espacio card */
    .espacio-card-full {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: #111010;
      border-top: 2px solid transparent;
      transition: border-color 0.4s;
    }

    .espacio-card-full:hover {
      border-top-color: var(--gold);
    }

    .espacio-card-full-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .espacio-card-full-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.72);
      transition: transform 0.9s cubic-bezier(0.22,1,0.36,1), filter 0.9s;
    }

    .espacio-card-full:hover .espacio-card-full-img img {
      transform: scale(1.06);
      filter: brightness(0.88);
    }

    .espacio-card-full-body {
      padding: 1.75rem 1.75rem 2rem;
      border-top: 1px solid rgba(184,147,86,0.15);
    }

    .espacio-card-full-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: #f5f2ee;
      margin-bottom: 0.4rem;
    }

    .espacio-card-full-location {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #b89356;
      margin-bottom: 1rem;
    }

    .espacio-card-full-desc {
      font-size: 0.8rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(245,242,238,0.5);
      margin-bottom: 1.25rem;
    }

    .espacio-card-full-metas {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      padding-top: 1rem;
      border-top: 1px solid rgba(184,147,86,0.1);
    }

    .espacio-meta {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .espacio-meta-label {
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,242,238,0.35);
    }

    .espacio-meta-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: #b89356;
    }

    /* Tipos de evento tags */
    .espacio-tipos {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.75rem;
    }

    .tipo-tag {
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.25rem 0.65rem;
      border: 1px solid rgba(184,147,86,0.22);
      color: rgba(245,242,238,0.45);
    }

    /* ── Por qué nuestros espacios ──────────────────────── */
    .espacios-why {
      padding: clamp(5rem, 9vh, 8rem) clamp(1.5rem, 5vw, 4rem);
      background: #f5f2ee;
    }

    .why-grid {
      max-width: 1400px;
      margin: 3rem auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .why-item {
      padding: 0;
    }

    .why-icon {
      width: 3rem; height: 3rem;
      border: 1px solid rgba(138,109,63,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      color: #8a6d3f;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
    }

    .why-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: #0a0908;
      margin-bottom: 0.5rem;
    }

    .why-desc {
      font-size: 0.78rem;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(0,0,0,0.55);
    }

    @media (max-width: 1100px) {
      .espacios-grid { grid-template-columns: repeat(2, 1fr); }
      .espacio-featured { grid-column: 1 / -1; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 700px) {
      .espacios-grid { grid-template-columns: 1fr; }
      .espacio-featured { height: 70vw; }
      .why-grid { grid-template-columns: 1fr; }
    }
