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

    :root {
      --white:      #ffffff;
      --off-white:  #faf9f7;
      --pearl:      #f4f2ee;
      --linen:      #ede9e2;
      --warm-gray:  #d6d0c7;
      --mid-gray:   #a09890;
      --text:       #2a2520;
      --text-light: #5c5248;
      --text-muted: #7a7068;
      --gold:       #8a6d42;
      --gold-light: #b8966a;
      --gold-pale:  #e8ddd0;
      --border:     rgba(138,109,66,0.18);

      --pad-x: clamp(1.25rem, 4vw, 4rem);
      --section-pad: clamp(4rem, 8vw, 8rem);
    }

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    body {
      font-family: 'Jost', system-ui, -apple-system, sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.5;
    }

    /* Cursor custom solo en dispositivos con puntero fino (no táctil) */
    @media (hover: hover) and (pointer: fine) {
      body { cursor: none; }
      a, button, input, textarea, select, .dot { cursor: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* Foco accesible */
    a:focus-visible, button:focus-visible, input:focus-visible,
    textarea:focus-visible, select:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    /* CURSOR */
    .cursor, .cursor-ring {
      position: fixed; pointer-events: none;
      transform: translate(-50%, -50%);
    }
    .cursor {
      width: 7px; height: 7px;
      background: var(--gold); border-radius: 50%; z-index: 9999;
    }
    .cursor-ring {
      width: 34px; height: 34px;
      border: 1px solid rgba(154,125,82,0.45);
      border-radius: 50%; z-index: 9998;
      transition: width 0.3s, height 0.3s;
    }
    @media (hover: none), (pointer: coarse) {
      .cursor, .cursor-ring { display: none; }
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1.5rem var(--pad-x);
      display: flex; justify-content: space-between; align-items: center;
      transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 1rem var(--pad-x);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 300;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--white); text-decoration: none;
      transition: color 0.4s;
    }
    nav.scrolled .nav-logo { color: var(--text); }
    .nav-links { display: flex; gap: 3rem; list-style: none; }
    .nav-links a {
      font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: rgba(255,255,255,0.78); text-decoration: none;
      transition: color 0.3s; font-weight: 400;
    }
    nav.scrolled .nav-links a { color: var(--text-light); font-weight: 400; }
    .nav-links a:hover, .nav-links a:focus-visible { color: var(--gold) !important; }

    /* Botón hamburguesa */
    .nav-toggle {
      display: none; background: none; border: none;
      width: 32px; height: 24px; position: relative; padding: 0;
    }
    .nav-toggle span {
      position: absolute; left: 0; right: 0; height: 1.5px;
      background: var(--white); transition: all 0.3s;
    }
    nav.scrolled .nav-toggle span { background: var(--text); }
    .nav-toggle span:nth-child(1) { top: 4px; }
    .nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .nav-toggle span:nth-child(3) { bottom: 4px; }
    .nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

    /* HERO */
    .hero { height: 100svh; min-height: 600px; position: relative; overflow: hidden; }
    .video-slide {
      position: absolute; inset: 0; opacity: 0;
      transition: opacity 1.3s ease; z-index: 1;
    }
    .video-slide.active { opacity: 1; z-index: 2; }
    .video-slide video,
    .video-slide .slide-img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.58) saturate(0.82);
    }
    .hero-fallback {
      position: absolute; inset: 0; z-index: 0;
      background:
        linear-gradient(135deg, #2a2520 0%, #5c5248 100%);
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 3;
      background: linear-gradient(
        to bottom,
        rgba(58,53,48,0.15) 0%,
        rgba(58,53,48,0.0) 40%,
        rgba(58,53,48,0.78) 100%
      );
    }

    .video-dots {
      position: absolute; bottom: 3rem; right: var(--pad-x); z-index: 5;
      display: flex; flex-direction: column; align-items: flex-end; gap: 1rem;
      opacity: 0; animation: fadeIn 1s 1.8s forwards;
    }
    .dots-row { display: flex; gap: 0.5rem; align-items: center; }
    .dot {
      width: 20px; height: 1px; background: rgba(255,255,255,0.3);
      border: none; padding: 0; position: relative; overflow: hidden;
      transition: width 0.3s;
    }
    .dot::before {
      content: ''; position: absolute; inset: -10px;
    }
    .dot.active { width: 44px; background: rgba(255,255,255,0.4); }
    .dot.active::after {
      content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 0;
      background: var(--white);
      animation: dotProgress var(--slide-duration, 6s) linear forwards;
    }
    @keyframes dotProgress { to { width: 100%; } }
    .slide-counter {
      font-size: 0.58rem; letter-spacing: 0.3em;
      color: rgba(255,255,255,0.4);
    }
    .slide-counter span { color: rgba(255,255,255,0.8); }

    .hero-content {
      position: absolute; bottom: 0; left: 0; z-index: 5;
      padding: 0 var(--pad-x) clamp(4rem, 10vw, 7rem);
      max-width: 700px;
    }
    .hero-eyebrow {
      font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
      color: rgba(255,255,255,0.85); margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp 1s 0.3s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300;
      line-height: 1.0; color: var(--white); margin-bottom: 2rem;
      opacity: 0; animation: fadeUp 1s 0.6s forwards;
    }
    .hero-title em { font-style: italic; color: rgba(255,255,255,0.75); }
    .hero-sub {
      font-size: clamp(0.85rem, 1.4vw, 0.95rem); font-weight: 300;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.85); line-height: 1.8;
      max-width: 480px; margin-bottom: 2.5rem;
      opacity: 0; animation: fadeUp 1s 0.9s forwards;
    }
    .hero-cta {
      display: inline-flex; align-items: center; gap: 1rem;
      font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--white); text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.6);
      padding-bottom: 0.4rem;
      transition: gap 0.3s, color 0.3s, border-color 0.3s;
      opacity: 0; animation: fadeUp 1s 1.2s forwards;
    }
    .hero-cta:hover, .hero-cta:focus-visible { gap: 1.5rem; border-color: var(--white); }

    .hero-scroll {
      position: absolute; right: var(--pad-x); bottom: 8rem; z-index: 5;
      display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
      opacity: 0; animation: fadeIn 1s 1.8s forwards;
    }
    .hero-scroll span {
      font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: rgba(255,255,255,0.7); writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      animation: scrollPulse 2s infinite;
    }
    @keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    /* STATEMENT */
    .statement {
      padding: var(--section-pad) var(--pad-x);
      background: var(--pearl);
      display: grid; grid-template-columns: 1fr 2fr;
      gap: 4rem; align-items: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .statement-label {
      font-size: 0.65rem; letter-spacing: 0.4em;
      text-transform: uppercase; color: var(--gold);
    }
    .statement-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3vw, 2.6rem); font-weight: 300;
      font-style: italic; line-height: 1.5; color: var(--text);
    }
    .statement-text strong { font-style: normal; font-weight: 600; color: var(--gold); }

    /* SECCIONES COMUNES */
    section { position: relative; overflow: hidden; }
    .section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
    .eyebrow {
      font-size: 0.63rem; letter-spacing: 0.45em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.2rem; display: block;
    }
    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 300;
      line-height: 1.1; color: var(--text);
    }
    h2 em { font-style: italic; color: var(--gold); }
    .section-desc {
      margin-top: 1.5rem; font-size: 0.9rem; font-weight: 300;
      line-height: 1.9; color: var(--text-light);
      max-width: 540px; margin-inline: auto; letter-spacing: 0.03em;
    }

    /* ESPACIOS */
    .the-space { padding: var(--section-pad) 0; background: var(--off-white); }
    .the-space .section-header { padding: 0 var(--pad-x); }
    .spaces-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-template-rows: 520px 380px;
      gap: 3px;
    }
    .space-card { position: relative; overflow: hidden; }
    .space-card.tall { grid-row: span 2; }
    .space-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  filter 0.5s ease;
      filter: brightness(0.72) saturate(0.85);
    }
    .space-card:hover img,
    .space-card:focus-within img { transform: scale(1.06); filter: brightness(0.85) saturate(0.95); }
    .space-card-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 2.5rem 2rem 2rem;
      background: linear-gradient(to top, rgba(58,53,48,0.92) 0%, transparent 100%);
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .space-card:hover .space-card-info,
    .space-card:focus-within .space-card-info { transform: translateY(0); }
    .space-card-label {
      position: absolute; bottom: 1.8rem; left: 2rem;
      font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
      font-weight: 300; color: var(--white); transition: opacity 0.3s;
    }
    .space-card:hover .space-card-label,
    .space-card:focus-within .space-card-label { opacity: 0; }
    .space-card-number {
      position: absolute; top: 1.5rem; right: 1.8rem;
      font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold-light);
    }
    .space-card-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 300; color: var(--white); margin-bottom: 0.7rem;
    }
    .space-card-info p {
      font-size: 0.82rem; font-weight: 300;
      line-height: 1.7; color: rgba(255,255,255,0.85);
      letter-spacing: 0.03em;
    }

    /* WHY US */
    .why-us { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
    .why-img { position: relative; overflow: hidden; min-height: 360px; }
    .why-img img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.7) saturate(0.82);
    }
    .why-content {
      background: var(--pearl); padding: var(--section-pad) var(--pad-x);
      display: flex; flex-direction: column; justify-content: center;
    }
    .why-content .eyebrow,
    .why-content h2 { text-align: left; }
    .why-intro {
      margin-top: 2rem; font-size: 0.92rem; font-weight: 300;
      line-height: 1.9; color: var(--text-light); letter-spacing: 0.03em;
      margin-bottom: 3rem;
      border-left: 2px solid var(--gold-pale); padding-left: 1.5rem;
    }
    .features { display: flex; flex-direction: column; }
    .feature {
      display: flex; gap: 1.5rem; align-items: flex-start;
      padding: 1.6rem 0;
      border-bottom: 1px solid var(--border);
      transition: padding-left 0.3s;
    }
    .feature:last-child { border-bottom: none; }
    .feature:hover { padding-left: 0.4rem; }
    .feature-num {
      font-family: 'Cormorant Garamond', serif; font-size: 2rem;
      font-weight: 300; color: var(--gold); line-height: 1;
      min-width: 2.5rem; opacity: 0.5;
    }
    .feature-text h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 400; color: var(--text); margin-bottom: 0.4rem;
    }
    .feature-text p {
      font-size: 0.85rem; font-weight: 300;
      line-height: 1.75; color: var(--text-light); letter-spacing: 0.02em;
    }

    /* NUMBERS */
    .numbers {
      background: var(--white);
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .number-item {
      padding: 3rem 1.5rem; text-align: center;
      border-right: 1px solid var(--border);
    }
    .number-item:last-child { border-right: none; }
    .number-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 300; color: var(--gold);
      line-height: 1; margin-bottom: 0.8rem;
    }
    .number-label {
      font-size: 0.65rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--text-light);
      font-weight: 400;
    }

    /* GALLERY — carrusel horizontal en home */
    .gallery-strip { padding: var(--section-pad) 0 4rem; background: var(--off-white); }
    .gallery-strip .section-header { padding: 0 var(--pad-x); }
    .gallery-carousel {
      position: relative; margin-top: 2rem;
    }
    .gallery-track {
      display: flex; gap: 8px;
      overflow-x: auto; scrollbar-width: none;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding: 0 var(--pad-x);
    }
    .gallery-track::-webkit-scrollbar { display: none; }
    .gallery-slide {
      flex: 0 0 clamp(260px, 32vw, 400px);
      height: clamp(360px, 50vw, 480px);
      position: relative; overflow: hidden;
      background: var(--linen);
      border: none; padding: 0;
      scroll-snap-align: start;
    }
    .gallery-slide img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.88) saturate(0.88);
      transition: transform 0.7s ease, filter 0.5s;
    }
    .gallery-slide:hover img,
    .gallery-slide:focus-visible img { transform: scale(1.05); filter: none; }
    .gallery-slide::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(58,53,48,0.5) 0%, transparent 50%);
      opacity: 0; transition: opacity 0.4s;
    }
    .gallery-slide:hover::after,
    .gallery-slide:focus-visible::after { opacity: 1; }
    .gallery-slide-tag {
      position: absolute; bottom: 1rem; left: 1rem;
      font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--white);
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.4s, transform 0.4s;
      pointer-events: none; z-index: 2;
    }
    .gallery-slide:hover .gallery-slide-tag,
    .gallery-slide:focus-visible .gallery-slide-tag {
      opacity: 1; transform: none;
    }

    .gallery-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      color: var(--text);
      width: 52px; height: 52px; border-radius: 50%;
      font-size: 1.4rem; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: background 0.3s, color 0.3s, opacity 0.3s, transform 0.3s;
      z-index: 3;
    }
    .gallery-arrow:hover, .gallery-arrow:focus-visible {
      background: var(--gold); color: var(--white); border-color: var(--gold);
    }
    .gallery-arrow:disabled {
      opacity: 0.3; cursor: default;
    }
    .gallery-arrow.prev { left: clamp(0.5rem, 2vw, 1.5rem); }
    .gallery-arrow.next { right: clamp(0.5rem, 2vw, 1.5rem); }

    .gallery-cta {
      display: flex; justify-content: center; margin-top: 3rem;
      padding: 0 var(--pad-x);
    }
    .gallery-cta a {
      display: inline-flex; align-items: center; gap: 1rem;
      font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); text-decoration: none;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 0.4rem;
      transition: gap 0.3s;
    }
    .gallery-cta a:hover, .gallery-cta a:focus-visible { gap: 1.5rem; }

    @media (max-width: 768px) {
      .gallery-arrow { display: none; }
    }

    /* TESTIMONIALS */
    .testimonials { padding: var(--section-pad) var(--pad-x); background: var(--pearl); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
      margin-top: 4rem;
    }
    .testimonial {
      padding: 2.5rem 2rem; background: var(--white);
      border: 1px solid var(--border);
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .testimonial:hover {
      border-color: var(--gold-pale);
      box-shadow: 0 8px 40px rgba(154,125,82,0.10);
      transform: translateY(-2px);
    }
    .testimonial-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 300; font-style: italic;
      line-height: 1.6; color: var(--text); margin-bottom: 1.8rem;
    }
    .testimonial-quote::before {
      content: '"'; font-size: 4rem; color: var(--gold-pale);
      display: block; line-height: 0.5; margin-bottom: 1.2rem;
    }
    .testimonial-author {
      font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
    }
    .testimonial-date {
      font-size: 0.62rem; letter-spacing: 0.2em; color: var(--text-muted); margin-top: 0.3rem;
    }

    /* LOCATION */
    .location { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
    .location-content {
      background: var(--white);
      padding: var(--section-pad) var(--pad-x);
      display: flex; flex-direction: column; justify-content: center;
    }
    .location-content .eyebrow,
    .location-content h2 { text-align: left; }
    .location-content h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
    .location-desc {
      margin-top: 2rem; font-size: 0.92rem; font-weight: 300;
      line-height: 1.9; color: var(--text-light); letter-spacing: 0.03em; margin-bottom: 2.5rem;
    }
    .location-details { display: flex; flex-direction: column; }
    .location-detail {
      display: flex; gap: 1rem; align-items: center;
      font-size: 0.82rem; letter-spacing: 0.04em;
      padding: 1rem 0; border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .location-detail:last-child { border-bottom: none; }
    .location-detail span:first-child {
      font-size: 0.58rem; letter-spacing: 0.38em; text-transform: uppercase;
      color: var(--gold); min-width: 90px;
    }
    .location-detail a, .location-detail span:last-child {
      color: var(--text-light); text-decoration: none; font-weight: 300;
      transition: color 0.3s;
    }
    .location-detail a:hover { color: var(--gold); }
    .location-map {
      background: var(--linen); position: relative; overflow: hidden;
      min-height: 360px;
    }
    .location-map iframe {
      width: 100%; height: 100%; border: 0; display: block;
      filter: grayscale(0.15) contrast(0.95);
    }
    .btn-directions {
      display: inline-flex; align-items: center; gap: 0.8rem;
      margin-top: 1.5rem; align-self: flex-start;
      padding: 1rem 2rem; background: transparent;
      border: 1px solid var(--gold); color: var(--gold);
      font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 400;
      letter-spacing: 0.38em; text-transform: uppercase;
      text-decoration: none;
      transition: background 0.35s, color 0.35s, gap 0.35s;
    }
    .btn-directions:hover, .btn-directions:focus-visible {
      background: var(--gold); color: var(--white); gap: 1.1rem;
    }
    .btn-directions svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* CONTACT */
    .contact {
      padding: var(--section-pad) var(--pad-x); background: var(--off-white);
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: clamp(2rem, 5vw, 6rem); align-items: start;
    }
    .contact-left .eyebrow,
    .contact-left h2 { text-align: left; }
    .contact-left h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
    .contact-desc {
      margin-top: 1.5rem; font-size: 0.92rem; font-weight: 300;
      line-height: 1.9; color: var(--text-light); letter-spacing: 0.03em; margin-bottom: 2.5rem;
    }
    .contact-info { display: flex; flex-direction: column; }
    .contact-info-item {
      display: flex; gap: 1.2rem; align-items: center;
      padding: 1rem 0; border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .contact-info-item:last-child { border-bottom: none; }
    .ci-label {
      font-size: 0.58rem; letter-spacing: 0.38em; text-transform: uppercase;
      color: var(--gold); min-width: 80px;
    }
    .contact-info-item a, .contact-info-item span:not(.ci-label) {
      font-size: 0.88rem; font-weight: 300; color: var(--text-light);
      text-decoration: none; letter-spacing: 0.03em; transition: color 0.3s;
    }
    .contact-info-item a:hover { color: var(--gold); }

    .contact-form { display: flex; flex-direction: column; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
    .form-group {
      display: flex; flex-direction: column; gap: 0.5rem;
      padding: 1.4rem 0; border-bottom: 1px solid var(--border);
      transition: border-color 0.3s;
    }
    .form-group:focus-within { border-bottom-color: var(--gold); }
    .form-group label {
      font-size: 0.58rem; letter-spacing: 0.38em;
      text-transform: uppercase; color: var(--gold);
    }
    .form-group input, .form-group select, .form-group textarea {
      background: transparent; border: none; outline: none;
      font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 300;
      color: var(--text); letter-spacing: 0.03em; padding: 0.3rem 0;
      width: 100%;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
    .form-group select { appearance: none; -webkit-appearance: none; color: var(--text-muted);
      background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                        linear-gradient(135deg, var(--gold) 50%, transparent 50%);
      background-position: calc(100% - 12px) center, calc(100% - 7px) center;
      background-size: 5px 5px; background-repeat: no-repeat;
    }
    .form-group select option { background: var(--white); color: var(--text); }
    .form-group textarea { resize: vertical; min-height: 80px; max-height: 240px; }
    .form-status {
      margin-top: 1rem; font-size: 0.8rem; color: var(--gold);
      min-height: 1.2em;
    }
    .btn-submit {
      margin-top: 2rem; align-self: flex-start;
      padding: 1.1rem 2.5rem; background: transparent;
      border: 1px solid var(--gold); color: var(--gold);
      font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 400;
      letter-spacing: 0.38em; text-transform: uppercase;
      transition: background 0.35s, color 0.35s, letter-spacing 0.35s;
    }
    .btn-submit:hover, .btn-submit:focus-visible {
      background: var(--gold); color: var(--white); letter-spacing: 0.46em;
    }
    .btn-submit:disabled { opacity: 0.6; }

    /* FOOTER */
    footer {
      padding: 4rem var(--pad-x) 3rem; background: var(--pearl);
      border-top: 1px solid var(--border);
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: end; gap: 2rem;
    }
    .footer-left p {
      font-size: 0.7rem; font-weight: 300;
      letter-spacing: 0.06em; color: var(--text-light); line-height: 1.9;
    }
    .footer-center {
      font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
      font-weight: 300; letter-spacing: 0.4em; text-transform: uppercase;
      color: var(--text); text-align: center;
    }
    .footer-right { text-align: right; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-right a {
      font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--text-light); text-decoration: none;
      transition: color 0.3s; font-weight: 300;
    }
    .footer-right a:hover { color: var(--gold); }

    /* REVEAL */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─────────────── LIGHTBOX ─────────────── */
    .space-card-btn {
      position: absolute; inset: 0; width: 100%; height: 100%;
      background: transparent; border: none; padding: 0;
      color: inherit; font: inherit;
      display: block; text-align: left;
    }
    .space-card-btn::after {
      content: ''; position: absolute; inset: 0;
    }

    .lightbox {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(20,17,14,0.96);
      display: flex; flex-direction: column;
      opacity: 0; visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s;
    }
    .lightbox.open { opacity: 1; visibility: visible; }

    .lb-header {
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.5rem var(--pad-x);
      color: var(--white);
    }
    .lb-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 300; letter-spacing: 0.15em;
    }
    .lb-counter {
      font-size: 0.65rem; letter-spacing: 0.3em;
      color: rgba(255,255,255,0.6);
    }
    .lb-close {
      background: none; border: 1px solid rgba(255,255,255,0.3);
      color: var(--white); width: 44px; height: 44px;
      border-radius: 50%; font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .lb-close:hover, .lb-close:focus-visible {
      background: rgba(255,255,255,0.1);
      border-color: var(--gold-light); transform: rotate(90deg);
    }

    .lb-stage {
      flex: 1; display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 0 clamp(1rem, 5vw, 4rem);
    }
    .lb-img-wrap {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
    }
    .lb-img {
      max-width: 100%; max-height: 100%;
      object-fit: contain;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      opacity: 0; transition: opacity 0.35s ease;
    }
    .lb-img.loaded { opacity: 1; }

    .lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      width: 52px; height: 52px; border-radius: 50%;
      font-size: 1.4rem; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, border-color 0.3s;
    }
    .lb-nav:hover, .lb-nav:focus-visible {
      background: rgba(255,255,255,0.18);
      border-color: var(--gold-light);
    }
    .lb-prev { left: clamp(0.5rem, 2vw, 2rem); }
    .lb-next { right: clamp(0.5rem, 2vw, 2rem); }

    .lb-caption {
      text-align: center; padding: 1rem var(--pad-x);
      color: rgba(255,255,255,0.7);
      font-size: 0.82rem; letter-spacing: 0.05em; min-height: 2em;
    }

    .lb-thumbs {
      display: flex; gap: 0.5rem; padding: 0.8rem var(--pad-x) 1.5rem;
      overflow-x: auto; scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      justify-content: center;
    }
    .lb-thumbs::-webkit-scrollbar { display: none; }
    .lb-thumb {
      flex: 0 0 70px; height: 50px;
      background: none; border: 1px solid transparent;
      padding: 0; overflow: hidden;
      opacity: 0.45; transition: opacity 0.3s, border-color 0.3s, transform 0.3s;
    }
    .lb-thumb img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .lb-thumb:hover { opacity: 0.85; }
    .lb-thumb.active {
      opacity: 1; border-color: var(--gold-light);
    }

    @media (max-width: 600px) {
      .lb-nav { width: 40px; height: 40px; font-size: 1.1rem; }
      .lb-thumb { flex: 0 0 56px; height: 40px; }
      .lb-thumbs { justify-content: flex-start; }
    }

    /* ─────────────── RESPONSIVE ─────────────── */

    /* Tablet horizontal / portátil pequeño */
    @media (max-width: 1024px) {
      .spaces-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 380px 380px 380px;
      }
      .space-card.tall { grid-row: auto; grid-column: span 2; }
      .testimonials-grid { grid-template-columns: 1fr; gap: 1.2rem; }
      .numbers { grid-template-columns: repeat(2, 1fr); }
      .number-item:nth-child(2) { border-right: none; }
      .number-item:nth-child(1), .number-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    }

    /* Tablet / móvil grande */
    @media (max-width: 768px) {
      .nav-links {
        position: fixed; inset: 0; background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 2rem; transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 99;
      }
      .nav-links.open { transform: translateY(0); }
      .nav-links a {
        color: var(--text) !important; font-size: 0.95rem !important;
        letter-spacing: 0.2em;
      }
      .nav-toggle { display: block; z-index: 101; }

      .why-us, .location, .contact, .statement {
        grid-template-columns: 1fr;
      }
      .statement { gap: 1.5rem; }
      .why-img, .location-map { min-height: 280px; }
      .why-content, .location-content { padding: 4rem var(--pad-x); }

      .form-row { grid-template-columns: 1fr; gap: 0; }

      footer {
        grid-template-columns: 1fr; text-align: center;
        gap: 2rem;
      }
      .footer-left, .footer-right { text-align: center; }
      .footer-right { align-items: center; }

      .video-dots, .hero-scroll { display: none; }
      .hero-content { padding-bottom: 4rem; }
    }

    /* Móvil pequeño */
    @media (max-width: 480px) {
      .spaces-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 320px);
      }
      .space-card.tall { grid-column: span 1; }
      .numbers { grid-template-columns: 1fr; }
      .number-item { border-right: none !important;
        border-bottom: 1px solid var(--border); }
      .number-item:last-child { border-bottom: none; }
      .nav-logo { font-size: 1rem; letter-spacing: 0.25em; }
    }
