  /* ── TOKENS DE DISEÑO (idénticos a home) ── */
  :root {
    --bg-primary: #faf8f4;
    --bg-secondary: #f0ebe2;
    --bg-dark: #1e2a1f;
    --bg-dark-subtle: #263328;
    --text-primary: #1a1814;
    --text-secondary: #6b6358;
    --text-light: #f0ebe2;
    --accent: #5c7a4a;
    --accent-hover: #4a6b3a;
    --accent-light: #8fbf7a;
    --accent-warm: #c2703e;
    --border: #ddd5c8;
    --surface: #ffffff;
    --shadow-sm: 0 1px 3px rgba(26,24,20,0.06);
    --shadow-md: 0 4px 16px rgba(26,24,20,0.08);
    --shadow-lg: 0 8px 32px rgba(26,24,20,0.1), 0 2px 8px rgba(26,24,20,0.06);
    --shadow-dramatic: 0 1px 2px rgba(0,0,0,0.05), 0 4px 8px rgba(0,0,0,0.05), 0 16px 32px rgba(0,0,0,0.06);
    --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-section: clamp(5rem, 10vw, 8rem);
    --space-gutter: clamp(1.5rem, 5vw, 6rem);
  }

  /* ── RESET Y BASE ──────────────────────── */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }

  /* Textura sutil de grano */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
  }

  /* ── ICONOS SVG ────────────────────────── */
  .icon {
    width: 24px; height: 24px;
    stroke: currentColor; stroke-width: 1.5;
    fill: none; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
  }
  .icon-sm { width: 20px; height: 20px; }

  /* ── NAVEGACIÓN (idéntica a home) ──────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--space-sm) var(--space-gutter);
    background: rgba(250,248,244,0.88);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(221,213,200,0.5);
    transition: padding 0.3s ease, background 0.3s ease;
  }
  .nav--scrolled {
    padding-top: 0.7rem; padding-bottom: 0.7rem;
    background: rgba(250,248,244,0.96);
    box-shadow: var(--shadow-sm);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600; letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: var(--space-lg); align-items: center; }
  .nav-links a {
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.25s ease;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--text-primary); }
  .nav-links a.active::after { width: 100%; }
  .nav-lang {
    display: flex; gap: 0.35rem;
    margin-left: var(--space-md); padding-left: var(--space-md);
    border-left: 1px solid var(--border);
  }
  .nav-lang a {
    font-size: 0.75rem !important; padding: 0.3rem 0.55rem;
    border-radius: 4px; letter-spacing: 0.06em !important;
    transition: all 0.25s ease !important;
  }
  .nav-lang a::after { display: none; }
  .nav-lang a.active { background: var(--accent); color: var(--surface) !important; }
  .nav-lang a:not(.active):hover { background: var(--bg-secondary); }
  .nav-cta {
    background: var(--accent) !important; color: var(--surface) !important;
    padding: 0.6rem 1.4rem !important; border-radius: var(--radius-sm);
    transition: all 0.25s ease !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }
  .nav-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 0.5rem; color: var(--text-primary);
  }

  /* ── BOTONES (idénticos a home) ────────── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.8rem; background: var(--accent); color: var(--surface);
    border: none; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
    cursor: pointer; transition: all 0.25s ease; letter-spacing: 0.02em;
  }
  .btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

  /* ── SECCIONES BASE ────────────────────── */
  .section { padding: var(--space-section) var(--space-gutter); }
  .section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: var(--space-sm);
  }
  .section-tag::before { content: ''; width: 20px; height: 1.5px; background: currentColor; }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500; line-height: 1.18;
    margin-bottom: 1rem; color: var(--text-primary);
    letter-spacing: -0.005em;
  }
  .section-desc {
    font-size: 1.05rem; color: var(--text-primary);
    max-width: 560px; line-height: 1.75;
    opacity: 0.75;
  }

  /* ── HERO INTERIOR ─────────────────────── */
  .hero-interior {
    position: relative;
    height: 70vh; min-height: 480px; max-height: 700px;
    overflow: hidden;
    display: flex; align-items: flex-end;
    padding: var(--space-xl) var(--space-gutter);
    margin-top: 0;
  }
  .hero-interior img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 40%;
  }
  .hero-interior::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top,
      rgba(26,24,20,0.65) 0%,
      rgba(26,24,20,0.25) 40%,
      rgba(26,24,20,0.1) 100%
    );
    pointer-events: none;
  }
  .hero-interior-content {
    position: relative; z-index: 2;
    max-width: 600px;
  }
  .hero-interior .section-tag { color: var(--accent-light); }
  .hero-interior .section-tag::before { background: var(--accent-light); }
  .hero-interior h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 500; line-height: 1.1;
    color: var(--text-light); margin-bottom: 0.5rem;
  }
  .hero-interior-sub {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(240,235,226,0.75); line-height: 1.6;
  }

  /* ── TOUR: BLOQUES DE ESTANCIA ─────────── */
  .tour { padding: 0 var(--space-gutter); }

  .room {
    padding: var(--space-section) 0;
    border-bottom: 1px solid var(--border);
  }
  .room:last-child { border-bottom: none; }

  /* Cabecera de cada estancia */
  .room-header {
    display: flex; align-items: baseline; gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  .room-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 300;
    color: rgba(92,122,74,0.4);
    line-height: 1;
  }
  .room-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500; line-height: 1.2;
    color: var(--text-primary);
  }

  /* Texto descriptivo */
  .room-desc {
    font-size: clamp(1.05rem, 1.3vw, 1.18rem);
    color: var(--text-primary);
    line-height: 1.8; max-width: 600px;
    margin-bottom: var(--space-lg);
  }

  /* Galería de fotos de cada estancia */
  .room-gallery {
    display: grid;
    gap: var(--space-sm);
  }
  .room-gallery--two {
    grid-template-columns: 1fr 1fr;
  }
  .room-gallery--one {
    grid-template-columns: 1fr;
    max-width: 900px;
  }

  .room-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
  }
  .room-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .room-photo:hover img { transform: scale(1.04); }

  /* Indicador de zoom en desktop */
  @media (min-width: 769px) {
    .room-photo { cursor: zoom-in; }
    .room-photo::after {
      content: '';
      position: absolute; top: 0.8rem; right: 0.8rem;
      width: 32px; height: 32px;
      background: rgba(255,255,255,0.85);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c7a4a' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.35-4.35M11 8v6M8 11h6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }
    .room-photo:hover::after { opacity: 1; }
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(26,24,20,0.92);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    cursor: zoom-out;
    justify-content: center; align-items: center;
    padding: 2rem;
  }
  .lightbox.active { display: flex; }
  .lightbox img {
    max-width: 90vw; max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 64px rgba(0,0,0,0.4);
  }
  .lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.15);
    border: none; border-radius: 50%;
    width: 44px; height: 44px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.25); }
  .lightbox-close .icon { color: var(--text-light); }

  /* Variante vertical (pasillo) */
  .room-photo--vertical {
    aspect-ratio: 3/4;
    max-width: 500px;
  }

  /* Layout: siempre dos columnas (texto | foto), alternando posición */
  .room {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-section) 0;
  }
  .room .room-header { margin-bottom: var(--space-md); }
  .room .room-desc { margin-bottom: 0; }

  /* Variante invertida: foto a la izquierda, texto a la derecha */
  .room--reverse {
    grid-template-columns: 3fr 2fr;
  }
  .room--reverse .room-text { order: 2; }
  .room--reverse .room-gallery { order: 1; }

  /* ── ACCESIBILIDAD (fondo oscuro) ──────── */
  .access-section {
    background: var(--bg-dark); color: var(--text-light);
    position: relative; overflow: hidden;
  }
  .access-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(143,191,122,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
  }
  .access-section .section-tag { color: var(--accent-light); }
  .access-section .section-tag::before { background: var(--accent-light); }
  .access-section .section-title { color: var(--text-light); }
  .access-section .section-desc { color: rgba(240,235,226,0.85); opacity: 1; }

  .access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }
  .access-card {
    padding: var(--space-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(143,191,122,0.1);
    border-radius: var(--radius-md);
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .access-card:hover {
    background: rgba(143,191,122,0.08);
    border-color: rgba(143,191,122,0.2);
  }
  .access-card-icon {
    width: 52px; height: 52px;
    background: rgba(143,191,122,0.12);
    border: 1px solid rgba(143,191,122,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-sm);
  }
  .access-card-icon .icon { color: var(--accent-light); width: 28px; height: 28px; }
  .access-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem; font-weight: 600;
    color: #ffffff; margin-bottom: 0.5rem;
  }
  .access-card p {
    font-size: 1.05rem; color: #d4d0c8; line-height: 1.65;
  }

  /* ── EQUIPAMIENTO ──────────────────────── */
  .equip-section { background: var(--bg-secondary); }
  .equip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-xl);
  }
  .equip-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-sm);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .equip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dramatic);
  }
  .equip-card .icon {
    color: var(--accent);
    width: 40px; height: 40px;
    margin: 0 auto 0.4rem;
  }
  .equip-card-label {
    font-size: 1.15rem; font-weight: 600;
    color: var(--text-primary);
  }
  .equip-card-sub {
    font-size: 0.95rem; color: var(--text-primary);
    opacity: 0.65;
    margin-top: 0.25rem;
  }

  /* ── NORMAS ────────────────────────────── */
  .rules-section { background: var(--bg-primary); }
  .rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  .rule {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: var(--space-sm) 0;
  }
  .rule-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .rule-icon .icon { color: var(--accent); width: 18px; height: 18px; }
  .rule-label {
    font-size: 0.88rem; font-weight: 500;
    color: var(--text-primary); margin-bottom: 0.1rem;
  }
  .rule-detail {
    font-size: 0.8rem; color: var(--text-secondary);
  }

  /* ── CTA (idéntico a home) ─────────────── */
  .cta-section {
    background: var(--bg-dark); text-align: center;
    padding: var(--space-section) var(--space-gutter);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(92,122,74,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 50%, rgba(194,112,62,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-section .section-tag { color: var(--accent-light); }
  .cta-section .section-tag::before { background: var(--accent-light); }
  .cta-section .section-title {
    color: var(--text-light); max-width: 600px; margin: 0 auto 1rem;
  }
  .cta-section .section-desc {
    color: #d4d0c8; opacity: 1; max-width: 480px; margin: 0 auto var(--space-lg);
  }
  .cta-section .btn-primary {
    font-size: 1rem; padding: 1rem 2.5rem;
    position: relative; z-index: 1;
  }

  /* ── FOOTER (idéntico a home) ──────────── */
  .footer {
    padding: var(--space-lg) var(--space-gutter);
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: var(--space-sm);
  }
  .footer-left {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
  }
  .footer-left span { color: var(--accent); }
  .footer-links { display: flex; gap: var(--space-md); align-items: center; }
  .footer-links a {
    font-size: 0.8rem; color: var(--text-secondary);
    transition: color 0.25s ease;
  }
  .footer-links a:hover { color: var(--accent); }
  .footer-sep { width: 1px; height: 14px; background: var(--border); }

  /* ── RESPONSIVE ────────────────────────── */
  @media (max-width: 1024px) {
    .room,
    .room--reverse {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }
    .room--reverse .room-text { order: 0; }
    .room--reverse .room-gallery { order: 0; }
    .room-gallery--two { grid-template-columns: 1fr 1fr; }
    .access-grid { grid-template-columns: repeat(2, 1fr); }
    .equip-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .hero-interior { height: 50vh; min-height: 320px; }
    .room-gallery--two { grid-template-columns: 1fr; }
    .room-photo { aspect-ratio: 16/10; }
    .room-photo--vertical { aspect-ratio: 3/4; max-width: 100%; }
    .access-grid { grid-template-columns: 1fr; }
    .equip-grid { grid-template-columns: repeat(2, 1fr); }
    .rules-grid { grid-template-columns: 1fr; }
    .footer { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  /* ── ANIMACIONES ────────────────────────── */
  @media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .scroll-reveal.visible { opacity: 1; transform: translateY(0); }

    .hero-interior img {
      opacity: 0; animation: fadeIn 1s ease 0.2s forwards;
    }
    .hero-interior-content {
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.7s ease 0.4s forwards;
    }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { to { opacity: 1; } }
  }
