    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #E8E0D0;
      --cream-light: #F5F0E8;
      --navy: #1B2A4A;
      --navy-dark: #111C33;
      --red: #C8222A;
      --red-light: #E03040;
      --white: #FAF7F2;
      --text-dark: #1A1A1A;
      --text-mid: #4A4540;
      --font-head: 'Space Grotesk', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      height: 68px;
      transition: background 0.35s, box-shadow 0.35s;
    }
    nav.scrolled {
      background: var(--navy-dark);
      box-shadow: 0 2px 24px rgba(0,0,0,0.25);
    }
    .nav-logo {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--white);
      letter-spacing: -0.02em;
      text-decoration: none;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .nav-logo span.dot { color: var(--red); }
    .nav-links {
      display: flex; gap: 2rem; list-style: none;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      padding: 0.45rem 1.1rem;
      border-radius: 50px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--red-light) !important; }
    .nav-burger {
      display: none;
      flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
    }
    .nav-burger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: all 0.3s;
    }
    .mobile-menu {
      display: none;
      position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
      background: var(--navy-dark);
      z-index: 99;
      flex-direction: column;
      padding: 2.5rem 2rem;
      gap: 2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 1.5rem;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--red); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background: var(--navy-dark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0 clamp(1.5rem, 6vw, 6rem);
      padding-top: 68px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(200,34,42,0.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-noise {
      position: absolute; inset: 0; opacity: 0.03;
      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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      pointer-events: none;
    }
    .hero-content { z-index: 1; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(200,34,42,0.15);
      border: 1px solid rgba(200,34,42,0.4);
      color: var(--red-light);
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }
    .hero-badge::before { content: '●'; font-size: 0.5rem; animation: blink 1.5s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 0.95;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--red);
      display: block;
    }
    .hero-sub {
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      color: rgba(255,255,255,0.6);
      max-width: 480px;
      line-height: 1.65;
      margin-bottom: 2.5rem;
    }
    .hero-actions {
      display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--red);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 0.85rem 2rem;
      border-radius: 50px;
      border: none; cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
      letter-spacing: -0.01em;
    }
    .btn-primary:hover {
      background: var(--red-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(200,34,42,0.4);
    }
    .btn-ghost {
      color: rgba(255,255,255,0.7);
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 0.85rem 1.5rem;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.2);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: all 0.2s;
      background: transparent;
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.5);
      color: var(--white);
      background: rgba(255,255,255,0.05);
    }
    .hero-visual {
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }
    .hero-img-wrap {
      width: clamp(260px, 38vw, 520px);
      aspect-ratio: 1;
      position: relative;
    }
    .hero-img-wrap img {
      width: 100%; height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 20px 60px rgba(200,34,42,0.25));
      animation: float 5s ease-in-out infinite;
    }
    @keyframes float {
      0%,100% { transform: translateY(0px) rotate(-2deg); }
      50% { transform: translateY(-18px) rotate(2deg); }
    }
    .hero-ring {
      position: absolute; inset: -10%;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.06);
      animation: spin 30s linear infinite;
    }
    .hero-ring-2 {
      position: absolute; inset: -25%;
      border-radius: 50%;
      border: 1px dashed rgba(200,34,42,0.15);
      animation: spin 50s linear infinite reverse;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ─── STATS STRIP ─── */
    .stats-strip {
      background: var(--red);
      padding: 1.25rem 0;
      display: flex;
      overflow: hidden;
    }
    .stats-ticker {
      display: flex; gap: 4rem; align-items: center;
      white-space: nowrap;
      width: max-content;
      will-change: transform;
      animation-name: ticker;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      animation-duration: 20s;
      animation-play-state: paused;
    }
    .stats-ticker.is-ready { animation-play-state: running; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(var(--ticker-distance, -50%)); }
    }
    @media (prefers-reduced-motion: reduce) {
      .stats-ticker { animation: none; }
    }
    .stat-item {
      display: flex; align-items: center; gap: 1rem;
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .stat-sep { color: rgba(255,255,255,0.4); font-size: 1.2rem; }

    /* ─── SECTION BASE ─── */
    section { padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem); }
    .section-label {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1rem;
    }
    .section-label.light { color: rgba(255,255,255,0.5); }

    /* ─── ABOUT / HISTORIA ─── */
    .about {
      background: var(--cream-light);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 8vw, 8rem);
      align-items: center;
    }
    .about h2 {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--navy-dark);
      margin-bottom: 1.5rem;
    }
    .about h2 span { color: var(--red); }
    .about p {
      font-size: clamp(1rem, 1.3vw, 1.15rem);
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }
    .about-visual {
      position: relative;
    }
    .about-img-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .about-img-placeholder::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 20px,
        rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px
      );
    }
    .placeholder-label {
      font-family: var(--font-body);
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      text-align: center;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 1rem;
    }
    .about-img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 1;
    }
    .about-tag {
      position: absolute;
      bottom: -1.5rem; right: -1.5rem;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 1.25rem 1.5rem;
      line-height: 1.3;
      border-radius: 4px;
      max-width: 180px;
      text-align: center;
      letter-spacing: -0.01em;
    }

    /* ─── EXPERIENCIA ─── */
    .experience {
      position: relative;
      background: var(--navy-dark) url('../assets/experiencia.webp') center/cover no-repeat;
      color: var(--white);
      min-height: 65vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .experience::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(17,28,51,0.92) 0%, rgba(17,28,51,0.72) 45%, rgba(17,28,51,0.4) 100%);
      pointer-events: none;
    }
    .experience-content {
      position: relative;
      z-index: 1;
      max-width: 620px;
    }
    .experience-content h2 {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.03em;
      margin: 1rem 0 1.5rem;
    }
    .experience-desc {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
    }

    /* ─── MENU / PRODUCTOS ─── */
    .menu-section {
      background: var(--cream);
    }
    .menu-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 4rem;
      flex-wrap: wrap; gap: 1.5rem;
    }
    .menu-header h2 {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--navy-dark);
    }
    .menu-header h2 span { color: var(--red); }
    .menu-tabs {
      display: flex; gap: 0.5rem;
    }
    .menu-tab {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.5rem 1.1rem;
      border-radius: 50px;
      border: 1px solid rgba(0,0,0,0.15);
      background: transparent;
      color: var(--text-mid);
      cursor: pointer;
      transition: all 0.2s;
    }
    .menu-tab.active, .menu-tab:hover {
      background: var(--navy-dark);
      color: var(--white);
      border-color: var(--navy-dark);
    }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .menu-card {
      background: var(--cream-light);
      padding: 2rem;
      position: relative;
      transition: all 0.3s;
      cursor: default;
      border: 1px solid rgba(0,0,0,0.06);
    }
    .menu-card:hover {
      background: var(--navy-dark);
      color: var(--white);
    }
    .menu-card:hover .menu-card-name,
    .menu-card:hover .menu-card-desc { color: var(--white); }
    .menu-card:hover .menu-card-origin { color: rgba(255,255,255,0.5); }
    .menu-card:hover .menu-card-price { color: var(--red-light); }
    .menu-card-img {
      width: 100%; aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, #2A3F6A 100%);
      margin-bottom: 1.5rem;
      border-radius: 2px;
      overflow: hidden;
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .menu-card-img::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent, transparent 12px,
        rgba(255,255,255,0.025) 12px, rgba(255,255,255,0.025) 13px
      );
    }
    .menu-card-img span {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-family: var(--font-body);
      z-index: 1;
    }
    .menu-card-star {
      position: absolute; top: 1.25rem; right: 1.25rem;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 50px;
    }
    .menu-card-origin {
      font-size: 0.72rem;
      color: var(--red);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-family: var(--font-body);
      margin-bottom: 0.4rem;
      transition: color 0.3s;
    }
    .menu-card-name {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy-dark);
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
      transition: color 0.3s;
    }
    .menu-card-desc {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 1.25rem;
      transition: color 0.3s;
    }
    .menu-card-price {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--navy-dark);
      transition: color 0.3s;
    }
    .menu-card-price span {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--text-mid);
      margin-left: 0.25rem;
    }
    .menu-origin-note {
      margin-top: 3rem;
      display: flex; align-items: stretch; gap: 2.5rem;
      background: var(--navy-dark);
      padding: 2rem 2.5rem;
      border-radius: 8px;
    }
    @media (max-width: 768px) {
  .menu-origin-note {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .origin-img-placeholder {
    width: 100%;
    min-height: 140px;
  }

  .origin-content {
    width: 100%;
  }

  .origin-text p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}
    .origin-img-placeholder {
      flex-shrink: 0;
      width: 200px;
      min-height: 150px;
      border-radius: 6px;
      background: rgba(255,255,255,0.07);
      overflow: hidden;
    }
    .origin-img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 4px;
    }
    .origin-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .origin-icon {
      font-size: 2rem; flex-shrink: 0;
    }
    .origin-text p:first-child {
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .origin-text p:last-child {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

    /* ─── MENU TEASER (home) ─── */
    .menu-teaser-text {
      font-size: clamp(1rem, 1.3vw, 1.15rem);
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .menu-invite-grid {
      max-width: 640px;
      margin: 0 0 3rem;
    }

    /* ─── RITUAL QUOTE ─── */
    .quote-section {
      background: var(--red);
      padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 6rem);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .quote-section::before {
      content: '"';
      position: absolute;
      top: -2rem; left: 5%;
      font-family: var(--font-head);
      font-size: 20rem;
      font-weight: 700;
      color: rgba(255,255,255,0.06);
      line-height: 1;
      pointer-events: none;
    }
    .quote-section blockquote {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 4vw, 3.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.03em;
      max-width: 900px;
      margin: 0 auto 1.5rem;
      position: relative; z-index: 1;
    }
    .quote-attr {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* ─── ESPACIO ─── */
    .space-section {
      background: var(--cream-light);
    }
    .space-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center;
    }
    .space-grid h2 {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 4vw, 4rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--navy-dark);
      margin-bottom: 1.5rem;
    }
    .space-grid h2 span { color: var(--red); }
    .space-grid p {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .space-features {
      display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem;
    }
    .space-feat {
      display: flex; align-items: center; gap: 1rem;
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--text-dark);
    }
    .space-feat-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--red); flex-shrink: 0;
    }
    .space-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 4px;
    }
    .mosaic-img {
      background: linear-gradient(135deg, var(--navy) 0%, #2A3F6A 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .mosaic-img::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 15px,
        rgba(255,255,255,0.02) 15px, rgba(255,255,255,0.02) 16px
      );
    }
    .mosaic-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 1;
    }
    .mosaic-img.tall { grid-row: span 2; aspect-ratio: 3/4; height: auto; }
    .mosaic-img.short { aspect-ratio: 4/3; }
    .mosaic-img.accent { background: linear-gradient(135deg, var(--red) 0%, #9A1820 100%); }

    /* ─── UBICACIÓN ─── */
    .location-section {
      background: var(--navy-dark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .location-info {
      padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem);
    }
    .location-info h2 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    .location-info h2 span { color: var(--red); }
    .location-detail {
      display: flex; align-items: flex-start; gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .loc-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 1rem;
    }
    .loc-text p:first-child {
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.2rem;
    }
    .loc-text p:last-child {
      font-size: 1rem;
      color: var(--white);
      line-height: 1.5;
    }
    .location-actions {
      display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem;
    }
    .btn-maps {
      background: var(--white);
      color: var(--navy-dark);
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.8rem 1.75rem;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: all 0.2s;
    }
    .btn-maps:hover { background: var(--cream); transform: translateY(-2px); }
    .btn-wa {
      background: #25D366;
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.8rem 1.75rem;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: all 0.2s;
    }
    .btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
    .location-map {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      min-height: 400px;
      display: flex; align-items: center; justify-content: center;
    }
    .map-placeholder {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent, transparent 40px,
        rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px
      ),
      repeating-linear-gradient(
        90deg,
        transparent, transparent 40px,
        rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px
      );
    }
    .map-pin {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    }
    .map-pin-dot {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 8px rgba(200,34,42,0.2), 0 0 0 20px rgba(200,34,42,0.08);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 8px rgba(200,34,42,0.2), 0 0 0 20px rgba(200,34,42,0.08); }
      50% { box-shadow: 0 0 0 14px rgba(200,34,42,0.15), 0 0 0 30px rgba(200,34,42,0.05); }
    }
    .map-label {
      background: var(--white);
      color: var(--navy-dark);
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      white-space: nowrap;
    }
    .map-consent {
      position: absolute; inset: 0;
      z-index: 2;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 1.25rem;
      text-align: center;
      padding: 2rem;
      transition: opacity 0.3s;
    }
    .map-consent.hidden { opacity: 0; pointer-events: none; }
    .map-consent-text {
      position: relative; z-index: 1;
      max-width: 320px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }
    .map-consent-btn {
      position: relative; z-index: 1;
      background: var(--red);
      color: var(--white);
      border: none;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 0.7rem 1.5rem;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .map-consent-btn:hover { background: var(--red-light); transform: translateY(-2px); }

    /* ─── SOCIAL / INSTAGRAM ─── */
    .social-section {
      background: var(--cream);
      text-align: center;
    }
    .social-section h2 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--navy-dark);
      margin-bottom: 0.75rem;
    }
    .social-section h2 span { color: var(--red); }
    .social-sub {
      font-size: 1rem;
      color: var(--text-mid);
      margin-bottom: 3rem;
    }
    .ig-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 4px;
      margin-bottom: 2.5rem;
    }
    .ig-item {
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--navy) 0%, #2A3F6A 100%);
      position: relative; overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .ig-item:nth-child(2n) { background: linear-gradient(135deg, #2A3F6A 0%, var(--navy-dark) 100%); }
    .ig-item:nth-child(3n) { background: linear-gradient(135deg, var(--red) 0%, #9A1820 100%); }
    .ig-item::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent, transparent 10px,
        rgba(255,255,255,0.025) 10px, rgba(255,255,255,0.025) 11px
      );
    }
    .ig-item img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .ig-item:hover { transform: scale(0.97); }
    .ig-item .ig-hover {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.5);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .ig-item:hover .ig-hover { opacity: 1; }
    .ig-hover span {
      color: var(--white);
      font-size: 1.5rem;
    }
    .ig-handle {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: var(--navy-dark);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 600;
      padding: 0.85rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.2s;
      letter-spacing: -0.01em;
    }
    .ig-handle:hover {
      background: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(27,42,74,0.3);
    }

    /* ─── FINAL CTA ─── */
    .final-cta {
      background: var(--navy-dark);
      text-align: center;
      padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 6vw, 6rem);
      position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: 'FUNKY';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-head);
      font-size: 20vw;
      font-weight: 700;
      color: rgba(255,255,255,0.025);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: -0.05em;
    }
    .final-cta h2 {
      font-family: var(--font-head);
      font-size: clamp(2.5rem, 5vw, 5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
      position: relative; z-index: 1;
    }
    .final-cta h2 span { color: var(--red); }
    .final-cta p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.55);
      max-width: 560px;
      margin: 0 auto 3rem;
      line-height: 1.7;
      position: relative; z-index: 1;
    }
    .final-cta-actions {
      display: flex; gap: 1rem; justify-content: center;
      flex-wrap: wrap;
      position: relative; z-index: 1;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--navy-dark);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 2.5rem clamp(1.5rem, 6vw, 6rem);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-brand {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
    }
    .footer-brand span { color: var(--red); }
    .footer-links {
      display: flex; gap: 2rem; list-style: none;
    }
    .footer-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s;
      font-family: var(--font-body);
    }
    .footer-links a:hover { color: rgba(255,255,255,0.7); }
    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
      font-family: var(--font-body);
    }
    .mediaxpace-link {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }
    .mediaxpace-link:hover {
      color: rgba(255,255,255,0.9);
      border-bottom-color: rgba(255,255,255,0.6);
    }
    .footer-socials {
      display: flex; gap: 1rem;
    }
    .social-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.2s;
    }
    .social-icon:hover {
      border-color: var(--red);
      color: var(--red);
      background: rgba(200,34,42,0.1);
    }

    /* ─── FLOATING WA ─── */
    .floating-wa {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 24px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: waPulse 3s ease-in-out infinite;
    }
    .floating-wa:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(37,211,102,0.5);
    }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 4px 40px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.08); }
    }
    .floating-wa svg { width: 28px; height: 28px; fill: white; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .hero { grid-template-columns: 1fr; text-align: center; padding-top: 80px; }
      .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
      .hero-sub { margin: 0 auto 2rem; }
      .hero-actions { justify-content: center; }
      .hero-visual { order: -1; }
      .hero-img-wrap { width: clamp(200px, 60vw, 320px); }
      .about { grid-template-columns: 1fr; }
      .about-visual { order: -1; }
      .about-tag { bottom: -1rem; right: 0; }
      .experience { min-height: 55vh; }
      .experience::before { background: linear-gradient(180deg, rgba(17,28,51,0.88) 0%, rgba(17,28,51,0.8) 100%); }
      .experience-content { max-width: 100%; }
      .menu-grid { grid-template-columns: 1fr 1fr; }
      .menu-header { flex-direction: column; align-items: flex-start; }
      .space-grid { grid-template-columns: 1fr; }
      .location-section { grid-template-columns: 1fr; }
      .location-map { min-height: 280px; }
      .ig-grid { grid-template-columns: repeat(3, 1fr); }
      .footer { flex-direction: column; align-items: flex-start; }
      .footer-links { flex-wrap: wrap; gap: 1rem; }
    }
    @media (max-width: 560px) {
      .menu-grid { grid-template-columns: 1fr; }
      .ig-grid { grid-template-columns: repeat(2, 1fr); }
      .founders { flex-direction: column; }
    }

    /* ─── COOKIE BANNER ─── */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
      background: var(--navy-dark);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1rem clamp(1.5rem, 5vw, 4rem);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }
    .cookie-banner.visible { transform: translateY(0); }
    .cookie-banner-text {
      font-family: var(--font-body);
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      max-width: 640px;
      line-height: 1.55;
    }
    .cookie-banner-text a {
      color: rgba(255,255,255,0.85);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .cookie-banner-actions {
      display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap;
    }
    .cookie-btn-accept {
      background: var(--red);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      border: none; cursor: pointer;
      transition: background 0.2s;
    }
    .cookie-btn-accept:hover { background: var(--red-light); }
    .cookie-btn-settings {
      background: transparent;
      color: rgba(255,255,255,0.5);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.15);
      cursor: pointer;
      transition: all 0.2s;
    }
    .cookie-btn-settings:hover {
      color: rgba(255,255,255,0.8);
      border-color: rgba(255,255,255,0.35);
    }

    /* ─── INNER PAGES (legal, privacy, cookies) ─── */
    .inner-hero {
      background: var(--navy-dark);
      padding: 7rem clamp(1.5rem, 6vw, 6rem) 4rem;
      position: relative; overflow: hidden;
    }
    .inner-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(200,34,42,0.1) 0%, transparent 65%);
      pointer-events: none;
    }
    .inner-hero-content { position: relative; z-index: 1; max-width: 760px; }
    .inner-hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 0.75rem;
    }
    .inner-hero h1 span { color: var(--red); }
    .inner-hero-meta {
      font-family: var(--font-body);
      font-size: 0.82rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .inner-content {
      background: var(--cream-light);
      padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 6rem);
    }
    .inner-content-wrap {
      max-width: 760px;
    }
    .legal-notice {
      background: rgba(200,34,42,0.08);
      border-left: 3px solid var(--red);
      padding: 1rem 1.25rem;
      border-radius: 4px;
      font-size: 0.92rem;
      color: var(--text-dark);
      line-height: 1.6;
      margin-bottom: 2.5rem;
    }
    .legal-notice strong { color: var(--red); }
    .legal-todo {
      background: rgba(200,34,42,0.12);
      color: var(--red);
      padding: 0.1em 0.4em;
      border-radius: 3px;
      font-weight: 600;
    }
    .inner-content h2 {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy-dark);
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
      margin-top: 2.5rem;
    }
    .inner-content h2:first-child { margin-top: 0; }
    .inner-content p {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .inner-content ul {
      padding-left: 1.25rem;
      margin-bottom: 1rem;
    }
    .inner-content ul li {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 0.35rem;
    }
    .inner-content a {
      color: var(--red);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .inner-back-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      transition: color 0.2s;
    }
    .inner-back-link:hover { color: rgba(255,255,255,0.85); }

    /* ─── MENU PAGE (imagen única) ─── */
    .menu-image-section {
      background: var(--cream-light);
      text-align: center;
    }
    .menu-image-note {
      max-width: 640px;
      margin: 0 auto 3rem;
      font-size: 1.05rem;
      color: var(--text-mid);
      line-height: 1.7;
    }
    .menu-image-wrap {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(17,28,51,0.15);
    }
    .menu-image-wrap img {
      width: 100%;
      height: auto;
      display: block;
    }
    @media (max-width: 768px) {
      .menu-image-section {
        padding-left: 0;
        padding-right: 0;
      }
      .menu-image-wrap {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
      }
    }
