      :root {
        --modal-bg: #30372a;
        --modal-overlay: #232522d9;
      }
      *, *::before, *::after { box-sizing: border-box; }
      body { font-family: 'DM Sans', sans-serif; margin: 0; padding: 0; background: #30372a; }
      .font-display { font-family: 'Cormorant Garamond', serif; }
      .glass { background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
      .glass-warm { background: rgba(139,111,71,0.08); backdrop-filter: blur(12px); }
      .grain {
        position: relative;
      }
      .grain::after {
        content: '';
        position: absolute; 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none; border-radius: inherit;
      }
      @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
      @keyframes slideRight { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
      @keyframes scaleIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
      @keyframes shimmer { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
      .anim-up { animation: fadeUp 0.5s ease-out forwards; }
      .anim-right { animation: slideRight 0.5s ease-out forwards; }
      .anim-scale { animation: scaleIn 0.3s ease-out forwards; }
      .hover-lift { transition: transform 0.2s ease, box-shadow 0.2s ease; }
      .hover-lift:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
      /* Scrollbar */
      ::-webkit-scrollbar { width: 6px; height: 6px; }
      ::-webkit-scrollbar-track { background: transparent; }
      ::-webkit-scrollbar-thumb { background: rgba(139,111,71,0.4); border-radius: 3px; }
      /* Leaflet customization */
      .leaflet-container { background: #1a3a2e !important; border-radius: 12px; }
      .leaflet-popup-content-wrapper { background: #1e2d26; color: #f4ebe1; border-radius: 12px; }
      .leaflet-popup-tip { background: #1e2d26; }
      .leaflet-control-zoom a { background: #1e2d26 !important; color: #f4ebe1 !important; border-color: rgba(139,111,71,0.3) !important; }
      /* Anchor nav smooth */
      html { scroll-behavior: smooth; font-size: 18px; }
      /* Custom select */
      select { appearance: none; -webkit-appearance: none; }
      /* Progress bar */
      .progress-bar { height: 6px; border-radius: 3px; overflow: hidden; background: rgba(255,255,255,0.08); }
      .progress-fill { height: 100%; border-radius: 3px; transition: width 0.8s ease; }
      /* Galería */
      .gallery-thumb { cursor: pointer; overflow: hidden; border-radius: 8px; aspect-ratio: 1; transition: transform 0.2s, box-shadow 0.2s; }
      .gallery-thumb:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
      .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
      /* Lightbox */
      @keyframes lightboxIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
      .lightbox-img { animation: lightboxIn 0.25s ease-out; }
      /* Expand btn en mapa */
      .map-expand-btn { position: absolute; top: 10px; right: 10px; z-index: 999; background: rgba(48,55,42,0.9); border-radius: 8px; padding: 6px 10px; color: #c4a06b; font-size: 12px; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: background 0.2s; backdrop-filter: blur(8px); }
      .map-expand-btn:hover { background: rgba(139,111,71,0.25); }
      /* Fullscreen map modal */
      .map-fullscreen { position: fixed; inset: 0; z-index: 9999; background: #30372a; display: flex; flex-direction: column; }
      .map-fullscreen-header { padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; background: rgba(48,55,42,0.95); flex-shrink: 0; }
      .map-fullscreen-body { flex: 1; min-height: 0; }
      .map-fullscreen-body .leaflet-container { border-radius: 0 !important; height: 100% !important; }
      /* === MODALES FULLSCREEN MOBILE === */
      @media (max-width: 640px) {
        .modal-outer { padding: 0 !important; align-items: flex-end !important; }
        .modal-inner { border-radius: 0 !important; width: 100vw !important; max-width: 100vw !important; position: fixed !important; inset: 0 !important; max-height: 100dvh !important; height: 100dvh !important; overflow-y: auto !important; }
        .modal-header { position: relative !important; }
        .modal-scroll { max-height: none !important; overflow-y: visible !important; }
      }
      @media (min-width: 641px) {
        .modal-inner { border-radius: 1rem !important; max-height: 90vh; overflow-y: auto; }
        .modal-scroll { max-height: none !important; overflow-y: visible !important; }
      }
