    /* ─── Variables ───────────────────────────────────────────────────── */
    :root {
      --bg:          #FAFAF8;
      --bg-alt:      #E8E3DA;
      --bg-card:     #F3EFE8;
      --text:        #2C2C2C;
      --text-muted:  rgba(44,44,44,0.55);
      --gold:        #8B9B7E;
      --gold-dark:   #6B7A60;
      --gold-glow:   rgba(139,155,126,0.12);
      --sep:         rgba(139,155,126,0.22);
      --serif:       'orpheus-pro', Georgia, serif;
      --sans:        'Inter', system-ui, sans-serif;
      --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
      --ease-io:     cubic-bezier(0.45, 0, 0.55, 1);
      --mono:        'Inter', system-ui, sans-serif;
    }

    /* ─── Reset ───────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      cursor: none;
    }
    @media (hover: none) { body { cursor: auto; } }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ul { list-style: none; }

    /* ─── Custom Cursor ───────────────────────────────────────────────── */
    #cursor {
      position: fixed;
      top: 0; left: 0;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--gold);
      pointer-events: none;
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s;
      transform: translate(-50%, -50%);
      mix-blend-mode: difference;
    }
    #cursor.visible { opacity: 1; }
    #cursor.big { transform: translate(-50%, -50%) scale(5); opacity: 0.35; }
    @media (hover: none) { #cursor { display: none; } }

    /* ─── Layout ──────────────────────────────────────────────────────── */
    .section { position: relative; padding: 120px 0; }
    .section--alt { background: var(--bg-alt); }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
    @media (max-width: 768px) {
      .section { padding: 80px 0; }
      .container { padding: 0 24px; }
    }

    /* ─── Section Header ──────────────────────────────────────────────── */
    .s-label {
      display: block;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .s-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      line-height: 1.15;
      position: relative;
      display: inline-block;
    }
    .s-title::after {
      content: '';
      position: absolute;
      bottom: -14px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 1.3s var(--ease-out);
    }
    .s-title.lined::after { width: 52px; }
    .s-desc {
      margin-top: 32px;
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 520px;
      line-height: 1.85;
    }

    /* ─── Buttons ─────────────────────────────────────────────────────── */
    .btn-gold {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 16px 34px;
      background: var(--gold);
      color: var(--bg);
      border-radius: 3px;
      transition: background 0.3s;
      will-change: transform;
    }
    .btn-gold:hover { background: #d4b57e; }
    .btn-outline {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 15px 34px;
      border: 1px solid rgba(44,44,44,0.28);
      color: var(--text);
      border-radius: 3px;
      transition: border-color 0.3s, color 0.3s;
      will-change: transform;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .btn-reserve {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 9px 20px;
      border: 1px solid var(--gold);
      color: var(--gold);
      border-radius: 3px;
      transition: background 0.3s, color 0.3s;
    }
    .btn-reserve:hover { background: var(--gold); color: var(--bg); }

    /* ─── Header ──────────────────────────────────────────────────────── */
    .header {
      position: fixed;
      inset: 0 0 auto;
      height: 72px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.5s var(--ease-io),
                  backdrop-filter 0.5s,
                  border-color 0.5s;
    }
    .header.scrolled {
      background: rgba(250,250,248,0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--sep);
    }
    .logo {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      white-space: nowrap;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-links a:not(.btn-reserve) {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.3s;
    }
    .nav-links a:not(.btn-reserve):hover { color: var(--gold); }
    .hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      width: 40px;
      height: 40px;
      background: none;
      border: 1px solid rgba(44,44,44,0.15);
      border-radius: 6px;
      padding: 0;
      transition: border-color .2s;
    }
    .hamburger:hover { border-color: rgba(44,44,44,0.3); }
    .hamburger span {
      display: block;
      width: 16px;
      height: 1px;
      background: var(--text);
      transition: transform .35s cubic-bezier(.76,0,.24,1), opacity .2s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    /* mobile fix */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(10, 18, 28, 0.75);
      backdrop-filter: blur(20px) saturate(120%);
      -webkit-backdrop-filter: blur(20px) saturate(120%);
      z-index: 998;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      opacity: 0;
      transform: translateX(100%);
      pointer-events: none;
      transition: opacity 280ms ease-out, transform 280ms ease-out;
    }
    .mobile-menu.open {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .mob-menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      color: rgba(255,255,255,0.7);
      font-size: 22px;
      cursor: pointer;
      transition: color 0.2s;
    }
    .mob-menu-close:hover { color: rgba(255,255,255,1); }
    .mob-link {
      font-family: var(--serif) !important;
      font-size: clamp(1.3rem, 4.5vw, 1.8rem) !important;
      font-weight: 400 !important;
      color: rgba(255,255,255,0.88) !important;
      letter-spacing: 0.02em;
      padding: 22px 0;
      width: 100%;
      max-width: 360px;
      text-align: center;
      text-transform: none !important;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      opacity: 0;
      transform: translateY(16px);
      transition: color 0.3s, opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
    }
    .mob-link:last-child { border-bottom: none; }
    .mob-link:hover { color: var(--gold) !important; }
    .mobile-menu.open .mob-link { opacity: 1; transform: none; }
    .mobile-menu.open .mob-link:nth-child(2) { transition-delay: 0.08s; }
    .mobile-menu.open .mob-link:nth-child(3) { transition-delay: 0.14s; }
    .mobile-menu.open .mob-link:nth-child(4) { transition-delay: 0.20s; }
    .mobile-menu.open .mob-link:nth-child(5) { transition-delay: 0.26s; }
    .mobile-menu.open .mob-link:nth-child(6) { transition-delay: 0.32s; }
    .mobile-menu.open .mob-link:nth-child(7) { transition-delay: 0.40s; }
    @media (max-width: 960px) {
      .header { padding: 0 24px; }
      .nav-links { display: none !important; }
      .hamburger { display: flex; }
    }

    /* Header transparente — texto claro sobre hero (solo links de primer nivel) */
    .header:not(.scrolled) .logo,
    .header:not(.scrolled) .nav-links > a:not(.btn-reserve),
    .header:not(.scrolled) .nav-item > a:not(.btn-reserve) {
      color: rgba(245, 240, 232, 0.92) !important;
    }
    .header:not(.scrolled) .nav-links > a:not(.btn-reserve):hover,
    .header:not(.scrolled) .nav-item > a:not(.btn-reserve):hover {
      color: #ffffff !important;
    }
    .header:not(.scrolled) .btn-reserve {
      border-color: rgba(245, 240, 232, 0.45) !important;
      color: rgba(245, 240, 232, 0.82) !important;
    }
    .header:not(.scrolled) .btn-reserve:hover {
      background: rgba(245, 240, 232, 0.15);
      border-color: rgba(245, 240, 232, 0.85) !important;
      color: #ffffff !important;
    }
    .header:not(.scrolled) .hamburger {
      border-color: rgba(245, 240, 232, 0.35) !important;
    }
    .header:not(.scrolled) .hamburger span {
      background: rgba(245, 240, 232, 0.9) !important;
    }

    /* ─── Nav Dropdown System ─────────────────────────────────────────────── */
    .nav-item { position: relative; }
    .nav-item > a { display: flex; align-items: center; gap: 5px; }
    .nav-item > a::after {
      content: '';
      width: 4px; height: 4px;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 0.25s;
      opacity: 0.6;
      flex-shrink: 0;
    }
    .nav-item.drop-open > a::after { transform: rotate(-135deg) translateY(2px); }

    .nav-drop {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: rgba(250,250,248,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--sep);
      border-radius: 6px;
      box-shadow: 0 20px 60px rgba(44,44,44,0.12);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
      z-index: 2000;
      min-width: 220px;
    }
    .nav-item.drop-open .nav-drop {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-item.drop-open .nav-drop-right {
      transform: translateY(0);
    }

    /* Drop: lista simple */
    .nav-drop-list { padding: 16px 0; }
    .nav-drop-list a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 24px;
      font-size: 12px !important;
      letter-spacing: 0.1em !important;
      text-transform: uppercase !important;
      color: var(--text) !important;
      transition: color 0.2s, background 0.2s, padding-left 0.2s;
      white-space: nowrap;
    }
    .nav-drop-list a:hover {
      color: var(--gold-dark) !important;
      background: var(--gold-glow);
      padding-left: 28px;
    }
    .nav-drop-list a::after { display: none !important; }
    .drop-icon { color: var(--gold); flex-shrink: 0; }

    /* Drop: thumbnails grid (El departamento) */
    .nav-drop-gallery {
      padding: 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      min-width: 680px;
      max-width: 760px;
    }
    .dd-thumb {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
    .dd-thumb-img {
      width: 100%;
      height: 90px;
      object-fit: cover;
      object-position: center;
      border-radius: 3px;
      border: 1px solid var(--sep);
      transition: transform 0.25s, box-shadow 0.25s;
      display: block;
    }
    .dd-thumb:hover .dd-thumb-img {
      transform: scale(1.03);
      box-shadow: 0 6px 20px rgba(44,44,44,0.12);
    }
    .dd-thumb-name {
      font-size: 9px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      opacity: 0.75;
      text-align: center;
      margin-top: 6px;
      line-height: 1.3;
    }

    /* Drop: contacto CTA */
    .nav-drop-cta {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 240px;
    }
    .drop-cta-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 4px;
      background: var(--bg-card);
      border: 1px solid var(--sep);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text) !important;
      transition: border-color 0.25s, background 0.25s, color 0.25s;
    }
    .drop-cta-btn:hover { border-color: var(--gold); background: var(--gold-glow); color: var(--gold) !important; }
    .drop-cta-btn svg { color: var(--gold); flex-shrink: 0; }

    /* Mega-menu (El departamento) — AT style */
    .nav-item.dd-wide { position: static; }
    .nav-item.dd-wide .nav-drop {
      left: 0;
      right: 0;
      top: 100%;
      transform: translateY(-6px);
      border-radius: 0;
      border-left: none;
      border-right: none;
      border-bottom: none;
    }
    .nav-item.dd-wide.drop-open .nav-drop {
      transform: translateY(0);
    }
    .nav-item.dd-wide .nav-drop-gallery {
      padding: 28px 48px;
      grid-template-columns: repeat(6, 1fr);
      max-width: none;
      min-width: 0;
      gap: 10px 16px;
    }
    .nav-item.dd-wide .dd-thumb-img {
      height: auto;
      aspect-ratio: 4/3;
    }
    /* Stagger entrada thumbnails */
    .dd-thumb {
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.22s ease-out, transform 0.22s ease-out;
    }
    .nav-item.drop-open .dd-thumb {
      opacity: 1;
      transform: translateY(0);
    }

    .nav-drop-right {
      right: 0;
      left: auto;
      transform: translateY(-6px);
    }
    .nav-item > .btn-reserve::after { display: none; }

    @media (max-width: 960px) {
      .nav-item > a::after { display: none; }
      .nav-drop { display: none !important; }
    }

    /* ─── Stats Bar ──────────────────────────────────────────────────────── */
    .stats-bar {
      background: linear-gradient(180deg, var(--bg-alt) 0%, #e2ddd4 100%);
      border-top: 1px solid var(--sep);
      border-bottom: 1px solid var(--sep);
      padding: 52px 48px 44px;
    }
    .stats-tagline {
      text-align: center;
      font-size: 9px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 52px;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .stats-tagline::before,
    .stats-tagline::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--sep);
    }
    .stats-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: 0 64px;
      text-align: center;
    }
    .stat-icon { display: none; }
    .stat-value {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
      font-weight: 300;
      letter-spacing: -0.02em;
      color: var(--text);
      line-height: 1;
      margin-bottom: 10px;
    }
    .stat-underline {
      width: 32px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 12px;
    }
    .stat-label {
      font-size: 9px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--text-muted);
      line-height: 1.5;
      max-width: 100px;
    }
    .stat-sep {
      width: 1px;
      align-self: stretch;
      background: var(--sep);
      margin: 8px 0;
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .stats-bar { padding: 48px 24px 40px; }
      .stat-item { padding: 0 28px; }
      .stats-tagline { margin-bottom: 36px; }
    }
    @media (max-width: 480px) {
      .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
      .stat-sep { display: none; }
      .stat-item { padding: 0; }
    }

    /* ─── Hero ────────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100svh;
      min-height: 640px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: -20% 0;
      z-index: 0;
      will-change: transform;
    }
    .hero-bg img { object-position: center 35%; }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to bottom,
        rgba(13,13,13,0.25) 0%,
        rgba(13,13,13,0.0)  25%,
        rgba(13,13,13,0.55) 65%,
        rgba(13,13,13,0.90) 100%
      );
    }
    .hero-corner {
      position: absolute;
      top: 96px;
      right: 48px;
      z-index: 3;
      font-size: 9px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.45);
      writing-mode: vertical-rl;
      animation: fadeUp 1s var(--ease-out) 1.6s both;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 48px 88px;
      width: 100%;
      max-width: 900px;
    }
    .hero-eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.92);
      text-shadow: 0 1px 12px rgba(0,0,0,0.5);
      margin-bottom: 22px;
      animation: fadeUp 0.9s var(--ease-out) 0.2s both;
    }
    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(3.5rem, 9vw, 7rem);
      font-weight: 400;
      line-height: 1.0;
      letter-spacing: -0.01em;
      color: #F5F0E8;
      margin-bottom: 22px;
      clip-path: inset(0 0 100% 0);
      animation: revealUp 1.5s var(--ease-out) 0.4s both;
    }
    .hero h1 em { font-style: italic; color: var(--gold); }
    .hero-sub {
      font-family: var(--serif);
      font-size: clamp(1.1rem, 2.2vw, 1.45rem);
      font-weight: 400;
      font-style: italic;
      color: rgba(245,240,232,0.7);
      margin-bottom: 16px;
      clip-path: inset(0 0 100% 0);
      animation: revealUp 1.5s var(--ease-out) 0.65s both;
    }
    .hero-desc {
      font-size: 0.9375rem;
      color: var(--text-muted);
      max-width: 460px;
      line-height: 1.85;
      margin-bottom: 48px;
      animation: fadeUp 1s var(--ease-out) 0.9s both;
    }
    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp 1s var(--ease-out) 1.1s both;
    }
    @media (max-width: 768px) {
      .hero-content { padding: 0 24px 64px; }
      .hero-corner { display: none; }
      /* Sin parallax en mobile → inset normal, no overflow */
      .hero-bg { inset: 0; }
      .hero-bg img { object-position: center top; }
      /* "Stay" legible sobre cualquier foto */
      .hero h1 em { text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
      /* Overlay más fuerte en la zona inferior del hero mobile */
      .hero-overlay {
        background: linear-gradient(
          to bottom,
          rgba(13,13,13,0.3)  0%,
          rgba(13,13,13,0.0)  20%,
          rgba(13,13,13,0.65) 60%,
          rgba(13,13,13,0.95) 100%
        );
      }
    }

    /* ─── Galería Masonry ─────────────────────────────────────────────────── */
    .gallery-grid {
      margin-top: 64px;
      columns: 3;
      column-gap: 12px;
      padding: 0 48px;
    }
    .g-item {
      break-inside: avoid;
      margin-bottom: 12px;
      position: relative;
      cursor: pointer;
      overflow: hidden;
      border-radius: 3px;
    }
    .g-item img {
      display: block;
      width: 100%;
      height: auto;
      transition: transform 0.7s var(--ease-out);
    }
    .g-item:hover img { transform: scale(1.04); }
    .g-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,13,13,0.82) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s var(--ease-out);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-num {
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .g-name {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      color: #F5F0E8;
    }
    /* ─── Lightbox ─────────────────────────────────────────────────────────── */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(13,13,13,0.96);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s var(--ease-out);
      padding: 32px;
    }
    .lightbox.open { opacity: 1; pointer-events: auto; }
    .lightbox-img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 3px;
      box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    }
    .lightbox-close {
      position: absolute;
      top: 24px; right: 28px;
      font-size: 28px;
      color: rgba(245,240,232,0.6);
      cursor: pointer;
      transition: color 0.3s;
      line-height: 1;
      background: none;
      border: none;
    }
    .lightbox-close:hover { color: #F5F0E8; }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: 1px solid rgba(245,240,232,0.2);
      border-radius: 3px;
      color: rgba(245,240,232,0.7);
      padding: 14px 18px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s, background 0.3s;
    }
    .lightbox-nav:hover { border-color: var(--gold); color: var(--gold); background: rgba(139,155,126,0.08); }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
    .lightbox-caption {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--serif);
      font-style: italic;
      font-size: 0.95rem;
      color: rgba(245,240,232,0.5);
      white-space: nowrap;
    }
    @media (max-width: 900px) {
      .gallery-grid { columns: 2; padding: 0 24px; }
      .lightbox-nav { display: none; }
    }
    @media (max-width: 560px) {
      .gallery-grid { columns: 1; }
    }

    /* ─── Amenities ─────────────────────────────────────────────────────── */
    #amenities {
      padding: 0;
      background: none;
    }
    .am-img-wrap {
      width: 100%;
      height: 65vh;
      min-height: 400px;
      overflow: hidden;
    }
    .am-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      transform: scale(1.04);
      transition: transform 8s ease-out;
    }
    .am-img-wrap.in-view img {
      transform: scale(1);
    }
    .am-content {
      background: var(--bg);
      padding: 96px 0 80px;
    }
    .am-counters-row {
      display: flex;
      gap: 0;
      margin-bottom: 72px;
      border: 1px solid var(--sep);
      border-radius: 3px;
      overflow: hidden;
    }
    .am-counter-box {
      flex: 1;
      padding: 48px 24px;
      border-right: 1px solid var(--sep);
      text-align: center;
      background: var(--bg-card);
      transition: background 0.3s;
    }
    .am-counter-box:hover { background: var(--bg-alt); }
    .am-counter-box:last-child { border-right: none; }
    .am-counter-val {
      display: block;
      font-family: var(--mono);
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 200;
      letter-spacing: -0.04em;
      color: var(--gold-dark);
      line-height: 1;
      margin-bottom: 12px;
    }
    .am-counter-lbl {
      font-size: 9px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .am-grid-wrap { padding: 0 48px; }
    .am-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--sep);
      border-radius: 3px;
      overflow: hidden;
    }
    .am-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 32px 28px;
      border-right: 1px solid var(--sep);
      border-bottom: 1px solid var(--sep);
      transition: background 0.3s, transform 0.3s;
      position: relative;
    }
    .am-item:hover {
      background: var(--bg-alt);
    }
    .am-item:nth-child(3n) { border-right: none; }
    .am-item:nth-last-child(-n+3) { border-bottom: none; }
    .am-icon {
      width: 40px; height: 40px;
      border: 1px solid var(--sep);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
      background: var(--bg);
      transition: background 0.3s, border-color 0.3s;
    }
    .am-item:hover .am-icon {
      background: var(--gold-glow);
      border-color: var(--gold);
    }
    .am-text { font-size: 0.9375rem; font-weight: 400; color: var(--text); line-height: 1.4; }
    @media (max-width: 768px) {
      .am-img-wrap { height: 50vh; }
      .am-counter-box { padding: 32px 16px; }
      .am-grid { grid-template-columns: 1fr 1fr; }
      .am-content { padding: 64px 0 56px; }
    }
    @media (max-width: 480px) {
      .am-counters-row { flex-direction: column; }
      .am-counter-box { border-right: none; border-bottom: 1px solid var(--sep); }
      .am-counter-box:last-child { border-bottom: none; }
      .am-grid { grid-template-columns: 1fr; }
      .am-item { border-right: none !important; border-bottom: 1px solid var(--sep) !important; }
      .am-item:last-child { border-bottom: none !important; }
    }

    /* ─── Turismo ─────────────────────────────────────────────────────── */
    .tur-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 64px;
    }
    .tur-card {
      position: relative;
      height: 360px;
      border-radius: 3px;
      overflow: hidden;
      cursor: default;
      border: none;
    }
    .tur-desc {
      font-size: 0.82rem;
      color: rgba(245,240,232,0.55);
      line-height: 1.55;
      margin-bottom: 10px;
      margin-top: 6px;
    }
    .tur-card-bg {
      position: absolute;
      inset: 0;
      background: var(--bg-card);
    }
    .tur-card-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease-out);
    }
    .tur-card:hover .tur-card-bg img { transform: scale(1.06); }
    .tur-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.3) 55%, transparent 100%);
      transition: background 0.4s;
    }
    .tur-card:hover .tur-card-overlay {
      background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.45) 55%, rgba(13,13,13,0.15) 100%);
    }
    .tur-card-body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      z-index: 2;
    }
    .tur-roman {
      font-family: var(--serif);
      font-size: 0.75rem;
      font-style: italic;
      color: var(--gold);
      letter-spacing: 0.1em;
      display: block;
      margin-bottom: 8px;
    }
    .tur-name {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 500;
      line-height: 1.35;
      margin-bottom: 10px;
      color: #F5F0E8;
    }
    .tur-dist {
      font-size: 9px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.55);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .tur-dist::before {
      content: '';
      display: inline-block;
      width: 16px; height: 1px;
      background: var(--gold);
    }
    @media (max-width: 900px) {
      .tur-grid { grid-template-columns: repeat(2, 1fr); }
      .tur-card { height: 280px; }
    }
    @media (max-width: 560px) {
      .tur-grid { grid-template-columns: 1fr; }
      .tur-card { height: 240px; }
    }

    /* ─── Contacto ────────────────────────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      margin-top: 64px;
      align-items: start;
    }
    .contact-aside h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 16px;
    }
    .contact-aside p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.85; }
    .contact-links { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
    .c-link {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 12px;
      transition: gap 0.35s;
    }
    .c-link:hover { gap: 20px; }
    .c-link::before {
      content: '';
      display: inline-block;
      width: 24px; height: 1px;
      background: var(--gold);
      transition: width 0.35s;
    }
    .c-link:hover::before { width: 38px; }
    .contact-form {
      background: #fff;
      border: 1px solid var(--sep);
      border-radius: 3px;
      padding: 48px;
    }
    .f-row { margin-bottom: 24px; }
    .f-row label {
      display: block;
      font-size: 9px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text);
      opacity: 0.7;
      margin-bottom: 8px;
    }
    .f-row input, .f-row textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(139,155,126,0.4);
      padding: 10px 0;
      font-family: var(--sans);
      font-size: 0.9375rem;
      font-weight: 300;
      color: var(--text);
      outline: none;
      transition: border-color 0.3s;
      -webkit-appearance: none;
    }
    .f-row input::placeholder, .f-row textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
    .f-row input:focus, .f-row textarea:focus { border-color: var(--gold); }
    .f-row textarea { resize: vertical; min-height: 90px; }
    .f-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    input[type="date"]::-webkit-calendar-picker-indicator {
      filter: invert(0.6) sepia(1) saturate(1.5) hue-rotate(3deg);
      opacity: 0.45;
    }
    .btn-submit {
      width: 100%;
      padding: 18px;
      background: var(--gold);
      color: var(--bg);
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border-radius: 3px;
      margin-top: 8px;
      transition: background 0.3s;
    }
    .btn-submit:hover { background: #d4b57e; }
    .btn-submit:disabled { opacity: 0.6; cursor: default; }
    .form-ok {
      display: none;
      text-align: center;
      padding: 32px 0;
    }
    .form-ok.show { display: block; }
    .form-ok p {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-style: italic;
      color: var(--gold);
    }
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .contact-form { padding: 36px 28px; }
      .f-dates { grid-template-columns: 1fr; gap: 0; }
    }

    /* ─── Contacto rediseñado ─────────────────────────────────────────────── */
    .contact-intro {
      text-align: center;
      margin-bottom: 64px;
    }
    .contact-intro h2 {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 400;
      font-style: italic;
      margin-top: 12px;
      margin-bottom: 16px;
    }
    .contact-intro > p {
      color: var(--text-muted);
      max-width: 440px;
      line-height: 1.7;
      margin: 0 auto;
    }
    /* Layout 2 columnas: form izquierda, CTAs derecha */
    .contact-layout {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .contact-form-col .form-ok p { color: var(--gold); }
    /* CTAs panel — columna derecha */
    .contact-ctas-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding-top: 8px;
    }
    .contact-ctas-col .col-title {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 400;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .contact-ctas-col .col-desc {
      color: var(--text-muted);
      font-size: 0.9375rem;
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .contact-cta-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 24px;
      border: 1px solid var(--sep);
      border-radius: 4px;
      background: var(--bg-card);
      transition: border-color 0.3s, background 0.3s, transform 0.25s;
      text-decoration: none;
    }
    .contact-cta-card:hover {
      border-color: var(--gold);
      background: var(--bg);
      transform: translateX(4px);
    }
    .contact-cta-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-cta-text strong {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 2px;
    }
    .contact-cta-text span {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .contact-sep {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-muted);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .contact-sep::before,
    .contact-sep::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--sep);
    }
    @media (max-width: 900px) {
      .contact-layout { grid-template-columns: 1fr; gap: 48px; }
      .contact-ctas-col { order: -1; }
      .contact-form-col .contact-form { padding: 32px 24px; }
    }
    @media (max-width: 640px) {
      .contact-cta-card { padding: 16px 18px; }
    }

    /* ─── CTA Final ──────────────────────────────────────────────────────── */
    .cta-final {
      background: var(--bg-alt);
      border-top: 1px solid var(--sep);
      border-bottom: 1px solid var(--sep);
      padding: 104px 48px;
    }
    .cta-final-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .cta-left h2 {
      font-family: var(--serif);
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      font-weight: 400;
      font-style: italic;
      margin-bottom: 40px;
      line-height: 1.25;
    }
    .cta-final-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .cta-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }
    .globe-canvas {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 1.4s ease;
    }
    .globe-caption {
      font-family: var(--serif);
      font-style: italic;
      font-size: 1rem;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.55;
    }
    @media (max-width: 900px) {
      .cta-final { padding: 72px 24px; }
      .cta-final-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
      }
      .cta-final-btns { justify-content: center; }
      .globe-canvas { width: 260px; height: 260px; }
    }

    /* ─── Footer ──────────────────────────────────────────────────────── */
    .footer {
      padding: 28px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--sep);
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-brand {
      font-family: var(--serif);
      font-size: 0.875rem;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a {
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    @media (max-width: 768px) {
      .footer { padding: 24px; flex-direction: column; text-align: center; }
    }

    /* ─── Floating Buttons ────────────────────────────────────────────── */
    .float-group {
      position: fixed;
      right: 24px;
      bottom: 28px;
      z-index: 500;
      display: flex;
      flex-direction: column;
      gap: 14px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
      pointer-events: none;
    }
    .float-group.show { opacity: 1; transform: none; pointer-events: auto; }
    .float-btn {
      position: relative;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      box-shadow: 0 3px 12px rgba(0,0,0,0.22);
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    }
    .float-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 5px 20px rgba(0,0,0,0.30);
    }
    .float-btn-airbnb { background: #FF5A5F; }
    .float-btn-wa     { background: var(--gold); }
    .float-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
    .float-tip {
      position: absolute;
      right: calc(100% + 12px);
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      color: var(--text);
      border: 1px solid var(--sep);
      box-shadow: 0 4px 16px rgba(0,0,0,0.09);
      font-family: var(--serif);
      font-style: italic;
      font-size: 12px;
      padding: 7px 14px;
      border-radius: 3px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s var(--ease-out);
    }
    .float-btn:hover .float-tip { opacity: 1; }

    /* Pulsos de marca cada 10 s */
    .float-btn::before {
      content: '';
      position: absolute;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      pointer-events: none;
      animation-duration: 10s;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
    }
    .float-btn-airbnb::before {
      animation-name: pulse-airbnb;
      animation-delay: 0s;
    }
    .float-btn-wa::before {
      animation-name: pulse-wa;
      animation-delay: 5s;
    }
    @keyframes pulse-airbnb {
      0%   { box-shadow: 0 0 0 0   rgba(255,90,95,0.55); }
      9%   { box-shadow: 0 0 0 20px rgba(255,90,95,0);   }
      100% { box-shadow: 0 0 0 0   rgba(255,90,95,0);    }
    }
    @keyframes pulse-wa {
      0%   { box-shadow: 0 0 0 0   rgba(139,155,126,0.55); }
      9%   { box-shadow: 0 0 0 20px rgba(139,155,126,0);   }
      100% { box-shadow: 0 0 0 0   rgba(139,155,126,0);    }
    }
    @media (max-width: 560px) {
      /* mobile fix */
      .float-group { right: 16px; bottom: calc(32px + env(safe-area-inset-bottom, 0px)); }
      .float-btn svg { width: 38px; height: 38px; }
    }

    /* ─── Reseñas ────────────────────────────────────────────────────────── */
    .rv-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .rv-meta {
      margin-top: 14px;
      color: var(--text-muted);
      font-size: 0.9375rem;
    }
    .rv-meta strong {
      color: var(--gold-dark);
      font-weight: 500;
    }
    .rv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }
    .rv-card {
      background: #fff;
      border: 1px solid var(--sep);
      border-radius: 4px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: box-shadow 0.3s;
    }
    .rv-card:hover { box-shadow: 0 8px 32px rgba(44,44,44,0.08); }
    .rv-stars {
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 3px;
    }
    .rv-card blockquote {
      font-family: var(--mono);
      font-style: normal;
      font-size: 0.9rem;
      line-height: 1.78;
      color: var(--text);
      flex: 1;
    }
    .rv-card footer {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding-top: 16px;
      border-top: 1px solid var(--sep);
    }
    .rv-name {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text);
    }
    .rv-origin {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .rv-cta {
      text-align: center;
    }
    .rv-more-link {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-dark);
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
      transition: color 0.25s;
    }
    .rv-more-link:hover { color: var(--text); }
    @media (max-width: 900px) {
      .rv-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .rv-grid { grid-template-columns: 1fr; }
      .rv-header { margin-bottom: 40px; }
    }

    /* ─── Reveal / Animations ─────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity  0.85s var(--ease-out) calc(var(--d, 0) * 1ms),
        transform 0.85s var(--ease-out) calc(var(--d, 0) * 1ms);
    }
    .reveal.in { opacity: 1; transform: none; }

    /* Hero text siempre claro — está sobre imagen oscura */
    .hero-desc { color: rgba(245,240,232,0.75); }
    .hero .btn-outline {
      border-color: rgba(245,240,232,0.32);
      color: #F5F0E8;
    }
    .hero .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    @keyframes revealUp {
      from { clip-path: inset(0 0 100% 0); opacity: 0; }
      to   { clip-path: inset(0 0 0% 0);   opacity: 1; }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: none; }
    }

    /* ─── Mobile fixes (FIX 4–7) ─────────────────────────────────────────── */

    /* FIX 4 — Hero mobile: refuerzo de legibilidad */
    @media (max-width: 768px) {
      .hero-eyebrow { text-shadow: 0 2px 16px rgba(0,0,0,0.7); }
      .hero h1 { text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
      .hero-sub { text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
    }

    /* FIX 5 — Gallery: 2 columnas en mobile */
    @media (max-width: 560px) {
      .gallery-grid { columns: 2; padding: 0 16px; column-gap: 8px; }
      .g-item { margin-bottom: 8px; }
    }

    /* FIX 6 — Turismo: overlay más denso y texto legible en mobile */
    @media (max-width: 768px) {
      .tur-card { height: 260px; }
      .tur-card-overlay {
        background: linear-gradient(
          to bottom,
          rgba(0,0,0,0.05) 0%,
          rgba(0,0,0,0.75) 100%
        );
      }
      .tur-name { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
      .tur-dist { color: rgba(255,255,255,0.7); }
      .tur-roman { color: rgba(255,255,255,0.55); }
    }

    /* FIX 7 — Footer: columna centrada en mobile */
    @media (max-width: 768px) {
      .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
        gap: 18px;
      }
      .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
    }

    /* FIX 1 — Hero: "Stay" (em) en crema para contraste en mobile */
    @media (max-width: 768px) {
      .hero h1 em { color: #F5F0E8; }
    }

    /* FIX 3 — Stats bar: líneas laterales y tagline una sola línea */
    @media (max-width: 480px) {
      .stats-tagline::before,
      .stats-tagline::after { display: none; }
      .stats-tagline { justify-content: center; letter-spacing: 0.12em; }
    }

    /* FIX 5 — Botones flotantes: más margen inferior en mobile */
    @media (max-width: 768px) {
      .float-group { bottom: 36px; }
    }
