  /* ── TOKENS DE DISEÑO (idénticos) ──────── */
  :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);
  }

  *, *::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 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;
  }

  .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; }

  /* ── NAV (idéntica) ────────────────────── */
  .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 ────────────────────────────── */
  .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 ──────────────────────────── */
  .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);
  }
  .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);
  }
  .hero-interior img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  }
  .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.85); line-height: 1.6; }

  /* ── DÓNDE ESTAMOS ─────────────────────── */
  .where-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl); margin-top: var(--space-lg); align-items: start;
  }
  .where-map {
    border-radius: var(--radius-lg); overflow: hidden;
    height: 450px; border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .where-map iframe { width: 100%; height: 100%; border: 0; }

  .where-info { padding-top: var(--space-sm); }
  .where-address {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
    color: var(--text-primary); margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md); border-bottom: 2px solid var(--accent);
  }
  .where-address small {
    display: block; font-family: var(--font-body);
    font-size: 0.95rem; color: var(--text-secondary); font-weight: 400; margin-top: 0.3rem;
  }

  .transport-item {
    display: flex; gap: 0.8rem; align-items: flex-start;
    padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  }
  .transport-item:last-child { border-bottom: none; }
  .transport-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(92,122,74,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .transport-icon .icon { color: var(--accent); width: 20px; height: 20px; }
  .transport-label { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); }
  .transport-detail { font-size: 0.95rem; color: var(--text-primary); opacity: 0.7; margin-top: 0.1rem; }

  /* ── PUNTOS DE INTERÉS ─────────────────── */
  .poi-section { background: var(--bg-secondary); }
  .poi-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm); margin-top: var(--space-xl);
  }
  .poi-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: var(--space-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex; flex-direction: column; gap: 0.6rem;
  }
  .poi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-dramatic); }
  .poi-card-icon {
    width: 44px; height: 44px; background: rgba(92,122,74,0.08);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
  }
  .poi-card-icon .icon { color: var(--accent); width: 22px; height: 22px; }
  .poi-card-name { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); }
  .poi-card-time {
    font-size: 0.92rem; font-weight: 600; color: var(--accent);
    background: rgba(92,122,74,0.08); padding: 0.25rem 0.7rem;
    border-radius: 20px; display: inline-block; width: fit-content;
  }

  /* ── CÓMO LLEGAR (fondo oscuro) ────────── */
  .arrive-section {
    background: var(--bg-dark); color: var(--text-light);
    position: relative; overflow: hidden;
  }
  .arrive-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;
  }
  .arrive-section .section-tag { color: var(--accent-light); }
  .arrive-section .section-tag::before { background: var(--accent-light); }
  .arrive-section .section-title { color: var(--text-light); }
  .arrive-section .section-desc { color: #d4d0c8; opacity: 1; }

  .arrive-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md); margin-top: var(--space-xl);
  }
  .arrive-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;
  }
  .arrive-card:hover { background: rgba(143,191,122,0.08); border-color: rgba(143,191,122,0.2); }
  .arrive-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);
  }
  .arrive-card-icon .icon { color: var(--accent-light); width: 28px; height: 28px; }
  .arrive-card h3 { font-size: 1.25rem; font-weight: 600; color: #ffffff; margin-bottom: 0.5rem; }
  .arrive-card p { font-size: 1.05rem; color: #d4d0c8; line-height: 1.65; }

  /* ── ACCESIBILIDAD EN LA ZONA ──────────── */
  .zone-access { background: var(--bg-primary); }
  .zone-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md); margin-top: var(--space-xl);
  }
  .zone-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: var(--space-lg);
    display: flex; gap: var(--space-sm); align-items: flex-start;
  }
  .zone-card-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(92,122,74,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .zone-card-icon .icon { color: var(--accent); width: 24px; height: 24px; }
  .zone-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.3rem; }
  .zone-card p { font-size: 1rem; color: var(--text-primary); opacity: 0.75; line-height: 1.65; }
  .zone-card .zone-phone {
    display: inline-block; margin-top: 0.4rem;
    font-weight: 600; color: var(--accent); font-size: 0.95rem;
  }

  /* ── CTA ────────────────────────────────── */
  .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 ─────────────────────────────── */
  .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) {
    .where-grid { grid-template-columns: 1fr; }
    .where-map { height: 350px; }
    .poi-grid { grid-template-columns: repeat(2, 1fr); }
    .arrive-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .hero-interior { height: 50vh; min-height: 320px; }
    .poi-grid { grid-template-columns: 1fr; }
    .arrive-grid { grid-template-columns: 1fr; }
    .zone-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; } }
  }
