  /* ── TOKENS DE DISEÑO ──────────────────── */
  :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 en toda la página */
  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; }
  .icon-lg { width: 28px; height: 28px; }

  /* ── NAVEGACIÓN ────────────────────────── */
  .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-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); }

  /* Menú hamburguesa móvil */
  .nav-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 0.5rem;
    color: var(--text-primary);
  }

  /* ── HERO FULLSCREEN — VERSIÓN A (texto centrado) ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
  }
  .hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 40%;
  }
  /* Sin overlay — la foto se ve tal cual */
  .hero-content {
    position: absolute;
    bottom: var(--space-lg); left: 50%; transform: translateX(-50%);
    z-index: 2;
    width: 88%; max-width: 600px;
    background: rgba(250,248,244,0.94);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    text-align: center;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500; line-height: 1.1;
    color: var(--text-primary); margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic; color: var(--accent);
    font-weight: 400;
  }
  .hero-inline {
    display: flex; align-items: center; gap: 0.6rem;
    justify-content: center;
    font-size: 0.92rem; color: var(--text-primary); opacity: 0.75;
  }
  .hero-inline .icon { color: var(--accent); width: 20px; height: 20px; opacity: 1; }

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

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.8rem; background: transparent; color: var(--text-primary);
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
    cursor: pointer; transition: all 0.25s ease;
  }
  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
  .btn-secondary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

  /* CTA flotante abajo izquierda */
  .hero-cta-float {
    position: absolute; bottom: var(--space-lg); left: var(--space-gutter);
    z-index: 2;
  }

  /* ── DATOS RÁPIDOS ─────────────────────── */
  .facts {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .fact {
    padding: var(--space-lg) var(--space-sm);
    text-align: center;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    transition: background 0.3s ease;
  }
  .fact:last-child { border-right: none; }
  .fact:hover { background: rgba(92,122,74,0.03); }
  .fact .icon { color: var(--accent); }
  .fact-value {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600;
    color: var(--text-primary);
  }
  .fact-label {
    font-size: 0.8rem; color: var(--text-secondary);
    letter-spacing: 0.03em;
  }

  /* ── 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;
  }

  /* ── GALERÍA ───────────────────────────── */
  .gallery-section { background: var(--bg-secondary); }
  .gallery-header { margin-bottom: 3rem; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 0.75rem;
  }

  .g-item {
    border-radius: var(--radius-md); overflow: hidden;
    position: relative; cursor: pointer;
  }
  .g-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .g-item:hover img { transform: scale(1.06); }
  .g-item:first-child { grid-row: span 2; }

  .g-label {
    position: absolute; bottom: 0.8rem; left: 0.8rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 0.35rem 0.75rem; border-radius: var(--radius-sm);
    font-size: 0.78rem; font-weight: 500; color: var(--text-primary);
    letter-spacing: 0.02em;
    transform: translateY(4px); opacity: 0;
    transition: all 0.3s ease;
  }
  .g-item:hover .g-label { transform: translateY(0); opacity: 1; }

  .gallery-cta { margin-top: var(--space-lg); text-align: center; }

  /* ── ACCESIBILIDAD ─────────────────────── */
  .access-section {
    background: var(--bg-dark); color: var(--text-light);
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 520px; position: relative;
    overflow: hidden;
  }
  /* Textura sutil sobre fondo oscuro */
  .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-content {
    padding: var(--space-section) var(--space-gutter);
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 1;
  }
  .access-content .section-tag { color: var(--accent-light); }
  .access-content .section-tag::before { background: var(--accent-light); }
  .access-content .section-title { color: var(--text-light); }
  .access-content .section-desc { color: #d4d0c8; max-width: 480px; opacity: 1; }

  .access-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: var(--space-lg);
  }

  .access-feat { display: flex; gap: 0.8rem; align-items: flex-start; }
  .access-feat-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;
    flex-shrink: 0;
    transition: background 0.3s ease;
  }
  .access-feat:hover .access-feat-icon { background: rgba(143,191,122,0.18); }
  .access-feat-icon .icon { color: var(--accent-light); width: 28px; height: 28px; }
  .access-feat h4 {
    font-family: var(--font-body);
    font-size: 1.1rem; font-weight: 600;
    color: #ffffff; margin-bottom: 0.3rem;
  }
  .access-feat p {
    font-size: 0.95rem; color: #d4d0c8; line-height: 1.6;
  }

  .access-image { overflow: hidden; position: relative; }
  .access-image img { width: 100%; height: 100%; object-fit: cover; }
  .access-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 30%);
    pointer-events: none;
  }

  /* ── UBICACIÓN ─────────────────────────── */
  .location-section { background: var(--bg-primary); }
  .location-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; margin-top: 3rem; align-items: start;
  }

  .location-map {
    border-radius: var(--radius-lg); overflow: hidden;
    height: 460px; background: var(--bg-secondary);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    position: relative;
  }
  .location-map-placeholder {
    text-align: center; color: var(--text-secondary); font-size: 0.88rem;
  }
  .location-map-placeholder .icon {
    color: var(--accent); width: 36px; height: 36px;
    margin: 0 auto 0.6rem; display: block;
  }
  .location-map-placeholder small { font-size: 0.78rem; opacity: 0.7; }

  .location-right-header {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.2rem; padding-bottom: 0.9rem;
    border-bottom: 2px solid var(--accent);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .location-right-header .icon { color: var(--accent); }

  .distance-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.85rem 0; border-bottom: 1px solid var(--border);
    transition: padding-left 0.2s ease;
  }
  .distance-item:hover { padding-left: 0.3rem; }
  .distance-left { display: flex; align-items: center; gap: 0.65rem; }
  .distance-left .icon { color: var(--accent); width: 18px; height: 18px; }
  .distance-name { font-size: 0.9rem; font-weight: 500; color: var(--text-primary); }
  .distance-value {
    font-size: 0.82rem; color: var(--accent); font-weight: 600;
    background: rgba(92,122,74,0.07);
    padding: 0.25rem 0.7rem; border-radius: 20px;
    white-space: nowrap;
  }

  /* ── TESTIMONIOS ───────────────────────── */
  .testimonials-section { background: var(--bg-secondary); }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; margin-top: 3rem;
  }

  .testimonial {
    background: var(--surface); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--border);
    display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-dramatic); }

  .testimonial-stars {
    color: var(--accent-warm); font-size: 0.85rem;
    margin-bottom: 1rem; letter-spacing: 0.15em;
  }
  .testimonial-text {
    font-family: var(--font-display);
    font-size: 1.08rem; font-weight: 400; font-style: italic;
    line-height: 1.6; color: var(--text-primary);
    margin-bottom: 1.2rem; flex-grow: 1;
  }
  .testimonial-footer {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding-top: 1rem; border-top: 1px solid var(--border);
  }
  .testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
  .testimonial-origin { font-size: 0.78rem; color: var(--text-secondary); margin-top: 0.1rem; }
  .testimonial-source { font-size: 0.72rem; color: var(--text-secondary); opacity: 0.6; font-style: italic; }

  /* ── CTA FINAL ─────────────────────────── */
  .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) {
    .hero { min-height: 90vh; }
    .access-section { grid-template-columns: 1fr; }
    .access-image { height: 350px; order: -1; }
    .access-image::after {
      background: linear-gradient(to top, var(--bg-dark) 0%, transparent 40%);
    }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 260px 260px 260px;
    }
    .gallery-grid .g-item:first-child { grid-row: span 2; }
    .g-label { transform: none; opacity: 1; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .facts { grid-template-columns: repeat(2, 1fr); }
    .fact { border-bottom: 1px solid var(--border); }
    .fact:nth-child(2) { border-right: none; }
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    .gallery-grid .g-item { height: 240px; }
    .gallery-grid .g-item:first-child { grid-row: span 1; }
    .location-grid { grid-template-columns: 1fr; gap: 2rem; }
    .location-map { height: 300px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .access-features { grid-template-columns: 1fr; }
    .access-image { height: 280px; }
    .hero-content { bottom: 5rem; width: 95%; padding: 1.2rem 1.5rem; }
    .hero-cta-float { bottom: 1rem; left: 1rem; }
    .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-content {
      opacity: 0; transform: translateY(24px);
      animation: fadeUp 0.8s ease 0.15s forwards;
    }
    .hero-image {
      opacity: 0;
      animation: fadeIn 1s ease 0.3s forwards;
    }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { to { opacity: 1; } }

    .fact { opacity: 0; transform: translateY(16px); animation: fadeUp 0.5s ease forwards; }
    .fact:nth-child(1) { animation-delay: 0.4s; }
    .fact:nth-child(2) { animation-delay: 0.5s; }
    .fact:nth-child(3) { animation-delay: 0.6s; }
    .fact:nth-child(4) { animation-delay: 0.7s; }
  }
