/*
Theme Name: La Fortaleza
Theme URI: https://lafortaleza.com.ec
Author: La Fortaleza
Author URI: https://lafortaleza.com.ec
Description: Tema premium para La Fortaleza Steak & Wine con soporte para Elementor Pro
Version: 1.0.0
Text Domain: lafortaleza
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

    :root {
      --color-vino: #7C0D0D;
      --color-crema: #FFF0DA;
      --color-dorado: #ECB953;
      --color-negro: #000000;
      --color-gris: #222222;
      --max-width: 1400px;
    }

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

    body {
      font-family: "Jost", system-ui, -apple-system, sans-serif;
      background: #000000;
      color: #f5f5f5;
      line-height: 1.6;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* NAVBAR - DiseÃ±o Innovador Premium */
    /* NAVBAR STYLES */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      background: rgba(26, 26, 26, 0);
      backdrop-filter: blur(0px);
      border-bottom: 1px solid transparent;
    }

    .navbar.scrolled {
      background: rgba(26, 26, 26, 0.95);
      backdrop-filter: blur(30px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
      border-bottom: 1px solid rgba(255, 240, 218, 0.1);
    }

    .navbar-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }

    .navbar-logo {
      font-family: "Jost", sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #f5f5f5;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      flex: 1;
      justify-content: center;
    }

    .navbar-logo:hover {
      color: var(--color-dorado);
    }

    .navbar-logo img {
      height: 40px;
      width: auto;
    }

    .navbar-menu {
      display: none;
      list-style: none;
      gap: 2rem;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .navbar-menu li {
      margin: 0;
    }

    .navbar-menu li a {
      color: #f5f5f5;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar-menu li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--color-dorado);
      transition: width 0.3s ease;
    }

    .navbar-menu li a:hover {
      color: var(--color-dorado);
    }

    .navbar-menu li a:hover::after {
      width: 100%;
    }

    .navbar-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .navbar-cta {
      background: var(--color-vino);
      color: #f5f5f5;
      padding: 0.6rem 1.5rem;
      border-radius: 2px;
      text-decoration: none;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      border: 1px solid var(--color-vino);
    }

    .navbar-cta:hover {
      background: transparent;
      color: var(--color-dorado);
      border-color: var(--color-dorado);
      transform: translateY(-2px);
    }

    .navbar-cta[data-lang] {
      display: none;
    }

    .navbar-cta[data-lang].visible {
      display: inline-block;
    }
    
    /* Ocultar botón reservar cuando se está en el hero */
    .navbar-cta[data-lang].visible.hide-on-hero {
      display: none;
    }
    
    /* Mostrar cuando se hace scroll */
    .navbar.scrolled .navbar-cta[data-lang].visible.hide-on-hero {
      display: inline-block;
    }

    .navbar-left {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }

    .navbar-toggle {
      display: flex;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .navbar-toggle span {
      width: 25px;
      height: 2px;
      background: #f5f5f5;
      transition: all 0.3s ease;
    }

    .navbar-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .navbar-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    .lang-switch {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .lang-switch button {
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      cursor: pointer;
      padding: 0.25rem 0.5rem;
      transition: all 0.3s ease;
      font-size: 0.7rem;
    }

    .lang-switch button.active {
      color: var(--color-dorado);
      border-bottom: 1px solid var(--color-dorado);
    }

    /* MEGA MENU OVERLAY */
    .mega-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(26, 26, 26, 0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mega-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .mega-menu-content {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      height: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0;
    }

    .mega-menu-left {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 2.5rem;
      padding-top: 4rem;
      position: relative;
      overflow-y: auto;
      max-height: 100vh;
    }

    .mega-menu-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: none;
      border: none;
      color: #f5f5f5;
      font-size: 3rem;
      cursor: pointer;
      line-height: 1;
      transition: all 0.3s ease;
      font-weight: 300;
      width: 50px;
      height: 50px;
      display: none !important;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    .mega-menu-close:hover {
      color: var(--color-dorado);
      transform: rotate(90deg);
    }

    .mega-menu-nav {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .mega-menu-nav li {
      margin-bottom: 0.75rem;
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mega-menu-overlay.active .mega-menu-nav li {
      opacity: 1;
      transform: translateX(0);
    }

    .mega-menu-overlay.active .mega-menu-nav li:nth-child(1) { transition-delay: 0.1s; }
    .mega-menu-overlay.active .mega-menu-nav li:nth-child(2) { transition-delay: 0.15s; }
    .mega-menu-overlay.active .mega-menu-nav li:nth-child(3) { transition-delay: 0.2s; }
    .mega-menu-overlay.active .mega-menu-nav li:nth-child(4) { transition-delay: 0.25s; }
    .mega-menu-overlay.active .mega-menu-nav li:nth-child(5) { transition-delay: 0.3s; }

    .mega-menu-nav a {
      font-family: "Jost", sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: #f5f5f5;
      text-decoration: none;
      display: inline-block;
      position: relative;
      transition: all 0.4s ease;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .mega-menu-nav a[data-lang] {
      display: none;
    }

    .mega-menu-nav a[data-lang].visible {
      display: inline-block;
    }

    .mega-menu-nav a::before {
      content: '';
      position: absolute;
      left: -3rem;
      top: 50%;
      width: 0;
      height: 2px;
      background: var(--color-dorado);
      transition: width 0.4s ease;
      transform: translateY(-50%);
    }

    .mega-menu-nav a:hover {
      color: var(--color-dorado);
      padding-left: 1rem;
    }

    .mega-menu-nav a:hover::before {
      width: 2rem;
    }

    .mega-menu-info {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 240, 218, 0.2);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease 0.4s;
    }

    .mega-menu-overlay.active .mega-menu-info {
      opacity: 1;
      transform: translateY(0);
    }

    .mega-menu-info p {
      color: rgba(255, 240, 218, 0.7);
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      letter-spacing: 0.05em;
    }

    .mega-menu-info a {
      color: var(--color-dorado);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .mega-menu-info a:hover {
      color: #f5f5f5;
    }

    .mega-menu-info p[data-lang] {
      display: none;
    }

    .mega-menu-info p[data-lang].visible {
      display: block;
    }

    .mega-menu-info strong[data-lang] {
      display: none;
    }

    .mega-menu-info strong[data-lang].visible {
      display: inline;
    }

    .mega-menu-right {
      position: relative;
      overflow: hidden;
      background: #5A0909;
    }

    .mega-menu-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .mega-menu-image.active {
      opacity: 0.6;
    }

    .mega-menu-image-overlay {
      position: absolute;
        top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(124, 13, 13, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
      z-index: 1;
    }

    .mega-menu-tagline {
      position: absolute;
      bottom: 4rem;
      right: 4rem;
      z-index: 2;
      font-family: "Jost", sans-serif;
      font-size: 1.5rem;
      color: #f5f5f5;
      font-style: italic;
      text-align: right;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease 0.5s;
    }

    .mega-menu-tagline[data-lang] {
      display: none;
    }

    .mega-menu-tagline[data-lang].visible {
      display: block;
    }

    .mega-menu-overlay.active .mega-menu-tagline.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 1024px) {
      .navbar-container {
        padding: 1rem 1.5rem;
      }

      .navbar-logo {
        flex: 1;
      }

      .navbar-actions {
        gap: 0.75rem;
      }

      .mega-menu-content {
        grid-template-columns: 1fr;
      }

      .mega-menu-right {
        display: none;
      }

      .mega-menu-left {
        padding: 2rem;
      }

      .mega-menu-close {
        top: 1rem;
        right: 1rem;
      }

      .mega-menu-nav a {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .mega-menu-info {
        margin-top: 2rem;
      }
    }

    @media (max-width: 640px) {
      .navbar-container {
        padding: 1rem 1.5rem;
      }

      .navbar-logo {
        font-size: 1.25rem;
      }

      .mega-menu-left {
        padding: 1.5rem;
        justify-content: flex-start;
        padding-top: 6rem;
      }

      .mega-menu-nav li {
        margin-bottom: 0.75rem;
      }
    }

    /* HERO - DiseÃ±o CinematogrÃ¡fico */
    .hero {
      position: relative;
      height: 100vh;
      max-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      object-position: center 75%;
      z-index: 1;
      opacity: 0.85;
      transition: opacity 0.5s ease;
    }

    .hero:hover .hero-video {
      opacity: 0.9;
    }

    /* Móviles - Ocultar video y mostrar imagen estática */
    @media (max-width: 768px) {
      .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        background-image: url('https://lafortaleza.com.ec/wp-content/uploads/2025/11/Portada-Web-26.png');
        background-size: 120% auto;
        background-position: 55% center;
        background-repeat: no-repeat;
      }
      
      .hero-video {
        display: none;
      }
      
      .hero-overlay {
        background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.4) 0%,
          rgba(0, 0, 0, 0.2) 20%,
          rgba(0, 0, 0, 0.2) 70%,
          rgba(0, 0, 0, 0.6) 100%
        );
      }
    }

    /* Pantallas muy anchas (ultrawide) - Asegurar que el video cubra bien */
    @media (min-width: 1920px) {
      .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 75%;
      }
    }

    /* Pantallas en modo horizontal/landscape en móviles */
    @media (max-width: 768px) and (orientation: landscape) {
      .hero {
        background-size: cover;
        background-position: center center;
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 30%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0.4) 100%
      );
      z-index: 2;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      width: 100%;
      max-width: 900px;
      padding: 0 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      animation: fadeInUp 1s ease-out;
    }

    @media (max-width: 768px) {
      .hero-content {
        padding: 2rem 1.5rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
      }
      
      .hero-kicker {
        font-size: 0.65rem;
        margin-bottom: 1rem;
        letter-spacing: 0.25em;
      }
      
      .hero-title {
        font-size: clamp(2.5rem, 11vw, 4rem);
        margin-bottom: 1.5rem;
        line-height: 1.15;
        font-weight: 300;
        text-transform: uppercase;
        text-align: center;
        text-shadow: 0 3px 20px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.8);
      }
      
      .hero-title span {
        font-size: 0.55em;
      }
      
      .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 0.5rem;
        line-height: 1.5;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.95);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-kicker {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--color-dorado);
      margin-bottom: 1.5rem;
      font-weight: 300;
      opacity: 0.9;
    }

    .hero-title {
      font-family: "Jost", sans-serif;
      font-size: clamp(3.5rem, 9vw, 6.5rem);
      line-height: 1.1;
      margin-bottom: 2rem;
      color: #ffffff;
      font-weight: 300;
      text-transform: uppercase;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
      letter-spacing: -0.02em;
    }

    .hero-title span {
      color: #ffffff;
      display: block;
      font-style: italic;
      font-weight: 400;
      font-size: 0.55em;
      margin-top: 0.3rem;
    }

    .hero-subtitle {
      font-size: clamp(1.3rem, 3.5vw, 2rem);
      max-width: 800px;
      margin: 0 auto 3rem;
      color: rgba(255, 255, 255, 0.98);
      font-weight: 300;
      line-height: 1.6;
      text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.8);
      letter-spacing: 0.02em;
      animation: fadeInUp 1.2s ease-out 0.2s both;
    }

    /* Botones debajo del título */
    .hero-actions {
      position: relative;
      z-index: 15;
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1.2s ease-out 1.3s both;
      margin: 0;
      margin-top: 2rem;
      padding: 0;
      width: 100%;
      pointer-events: auto;
    }

    @media (max-width: 768px) {
      .hero-actions {
        gap: 1rem;
        padding: 0;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero-actions .btn {
        width: 90%;
        max-width: 300px;
      }
      
      .hero-actions .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        border-radius: 4px;
      }
      
      .hero-actions .btn-primary {
        order: 1;
      }
      
      .hero-actions .btn-ghost {
        order: 2;
      }
    }
    

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.2rem 2.5rem;
      border-radius: 0;
      border: 2px solid transparent;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--color-dorado);
      color: #000;
      border-color: var(--color-dorado);
    }

    .btn-primary::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.1);
      transition: left 0.4s ease;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(236, 185, 83, 0.4);
    }

    .btn-ghost {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.5);
      color: #ffffff;
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.8);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      text-align: center;
      white-space: nowrap;
      animation: bounce 2s infinite;
    }

    .hero-scroll::after {
      content: "↓";
      font-size: 1.2rem;
      display: block;
      margin: 0 auto;
      text-align: center;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }
    
    @media (max-width: 768px) {
      .hero-scroll {
        bottom: 1.5rem;
        font-size: 0.6rem;
        gap: 0.3rem;
      }
      
      .hero-scroll::after {
        font-size: 1rem;
      }
    }

    /* SECTIONS */
    section {
      padding: 6rem 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-kicker {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--color-dorado);
      margin-bottom: 1rem;
      font-weight: 300;
    }

    .section-title {
      font-family: "Jost", sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 700px;
      margin: 0 auto;
      font-weight: 300;
      line-height: 1.8;
    }

    .section-dark {
      background: #000000;
    }

    .section-cream {
      background: linear-gradient(180deg, #0a0505 0%, #000000 100%);
    }

    /* EXPERIENCIA */
    .experience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    .experience-text p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 1.5rem;
      line-height: 1.9;
      font-weight: 300;
    }

    .experience-highlights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }

    .exp-chip {
      padding: 1.2rem 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.03);
      font-size: 0.9rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .exp-chip:hover {
      background: rgba(236, 185, 83, 0.1);
      border-color: rgba(236, 185, 83, 0.3);
      transform: translateY(-2px);
    }

    .experience-photos {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    /* Para la sección "Nuestra Esencia" con una sola imagen */
    #experiencia .experience-photos {
      grid-template-columns: 1fr;
    }

    .exp-photo-main {
      border-radius: 0;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 400px;
    }

    @media (min-width: 901px) {
      .exp-photo-main {
        min-height: 500px;
      }
    }

    /* CORTES */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .cut-card {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.4s ease;
      position: relative;
    }

    .cut-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
      z-index: 1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .cut-card:hover::before {
      opacity: 1;
    }

    .cut-card:hover {
      transform: translateY(-5px);
      border-color: var(--color-dorado);
    }

    .cut-card-top {
      height: 300px;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
    }

    .cut-card:hover .cut-card-top {
      transform: scale(1.05);
    }

    .cut-card-body {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      position: relative;
      z-index: 2;
    }

    .cut-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--color-dorado);
      margin-bottom: 0.5rem;
    }

    .cut-name {
      font-family: "Jost", sans-serif;
      font-weight: 600;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .cut-desc {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
    }

    /* VINOS */
    .wine-section {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .wine-section {
        grid-template-columns: 1fr;
      }
    }

    .wine-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }

    .pill {
      padding: 0.6rem 1.2rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.85rem;
      background: rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
    }

    .pill:hover {
      background: rgba(236, 185, 83, 0.15);
      border-color: var(--color-dorado);
    }

    .wine-photo {
      border-radius: 0;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      min-height: 400px;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    @media (min-width: 901px) {
      .wine-photo {
        aspect-ratio: 16/9;
        min-height: auto;
        height: auto;
      }
    }

    /* ============================
       RECONOCIMIENTOS - NUEVO DISEÑO
       ============================ */

    .lf-awards-section {
      position: relative;
      padding: 80px 0;
      color: #f7f5f3;
      overflow: hidden;
    }

    .lf-awards-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 60%),
        radial-gradient(circle at bottom right, rgba(124,13,13,0.4), #050306 70%);
      opacity: 0.95;
      z-index: -1;
    }

    .lf-awards-header {
      max-width: 720px;
      margin: 0 auto 48px;
      text-align: center;
    }

    .lf-kicker {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .18em;
      margin-bottom: 12px;
      color: rgba(255,255,255,0.7);
    }

    .lf-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
      font-family: "Jost", sans-serif;
    }

    .lf-subtitle {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255,255,255,0.78);
    }

    .lf-subtitle strong {
      color: var(--color-dorado);
      font-weight: 600;
    }

    .lf-awards-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 32px;
      align-items: stretch;
    }

    @media (max-width: 900px) {
      .lf-awards-grid {
        grid-template-columns: 1fr;
      }
    }

    .lf-main-card {
      background: rgba(9, 6, 4, 0.9);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 24px 60px rgba(0,0,0,0.7);
      display: flex;
      flex-direction: column;
    }

    .lf-main-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1206 / 772;
      max-width: 450px;
      margin: 0 auto;
    }

    .lf-main-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
      display: block;
      filter: saturate(1.15);
    }

    .lf-badge {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background: rgba(5,3,2,0.85);
      border-radius: 999px;
      padding: 8px 16px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.18);
    }

    .lf-badge-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: #f0b400;
    }

    .lf-badge-tag {
      font-size: 11px;
      color: rgba(255,255,255,0.85);
    }

    .lf-main-copy {
      padding: 22px 24px 24px;
    }

    .lf-main-text {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255,255,255,0.8);
      margin-bottom: 20px;
    }

    .lf-metrics {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .lf-metric {
      min-width: 140px;
    }

    .lf-metric-number {
      display: block;
      font-size: 20px;
      font-weight: 700;
      color: #f0b400;
    }

    .lf-metric-label {
      display: block;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(255,255,255,0.7);
    }

    .lf-awards-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .lf-experience-card {
      background: rgba(9, 6, 4, 0.9);
      border-radius: 20px;
      padding: 22px 22px 20px;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .lf-experience-title {
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: .18em;
      color: #f7f5f3;
      margin-bottom: 10px;
      font-family: "Jost", sans-serif;
    }

    .lf-experience-text {
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255,255,255,0.8);
    }

    .lf-mini-gallery {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 10px;
    }

    .lf-mini-item {
      position: relative;
      padding-top: 80%;
      border-radius: 18px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      isolation: isolate;
    }

    .lf-mini-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 55%);
      mix-blend-mode: multiply;
    }

    .lf-mini-overlay {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 10px;
      z-index: 1;
    }

    .lf-mini-title {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: #f7f5f3;
      margin: 0;
    }

    .lf-awards-cta {
      margin-top: 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .lf-btn {
      font-size: 14px;
      padding-inline: 18px;
      border-radius: 999px;
      background: #7c0d0d;
      color: #fff;
      text-decoration: none;
      padding: 12px 22px;
      transition: 0.3s;
      display: inline-block;
    }

    .lf-btn:hover {
      background: #a31212;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .lf-main-image img {
        height: 220px;
      }
      .lf-experience-card,
      .lf-main-copy {
        padding: 18px 16px;
      }
      .lf-awards-section {
        padding: 60px 0;
      }
    }

    /* MENÃš PDF */
    .menu-block {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .menu-description {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .menu-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }

    .menu-note {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 1.5rem;
    }

    /* RESEÃ‘AS */
    .reviews-strip {
      max-width: 1000px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 3rem;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (max-width: 768px) {
      .reviews-strip {
        grid-template-columns: 1fr;
        padding: 2rem;
      }
    }

    .reviews-quote {
      font-family: "Jost", sans-serif;
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.9);
      font-style: italic;
      line-height: 1.6;
    }

    .reviews-meta {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 1rem;
    }

    .review-badge {
      text-align: right;
      font-size: 0.9rem;
    }

    .review-badge span {
      display: inline-block;
      padding: 0.5rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 0.8rem;
      background: rgba(255, 255, 255, 0.05);
    }

    /* RESERVAS */
    .reservas-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
    }

    @media (max-width: 900px) {
      .reservas-grid {
        grid-template-columns: 1fr;
      }
    }

    .reservas-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 3rem;
    }

    .reservas-box h3 {
      font-family: "Jost", sans-serif;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .reservas-box p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .reservas-contact {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .reservas-contact div {
      margin-bottom: 1rem;
    }

    .reservas-contact span {
      color: var(--color-dorado);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      display: inline-block;
      margin-right: 0.8rem;
    }

    .map-box {
      border: 1px solid rgba(255, 255, 255, 0.1);
      min-height: 400px;
      overflow: hidden;
    }

    .map-box iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* FOOTER */
    footer {
      padding: 3rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      background: #000000;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.4);
      transition: all 0.3s ease;
      width: 28px;
      height: 28px;
      opacity: 0.6;
    }

    .footer-links a svg {
      width: 100%;
      height: 100%;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--color-dorado);
      opacity: 1;
      transform: translateY(-2px);
    }

    .footer-links a:hover svg {
      transform: scale(1.1);
    }

    /* LANGUAGE HANDLING */
    [data-lang] {
      display: none;
    }

    [data-lang].visible {
      display: block;
    }

    .nav-link[data-lang].visible {
      display: inline-block;
    }

    .btn[data-lang].visible {
      display: inline-flex;
    }

    .inline {
      display: inline;
    }

    /* ============================
       RESERVAS / CIERRE
       ============================ */

    .section-reservas {
      position: relative;
      padding: 4rem 0;
      background: #0a0806;
      color: #f7f5f3;
    }

    .reservas-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .reservas-kicker {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .18em;
      margin-bottom: 12px;
      color: var(--color-dorado);
      font-weight: 600;
    }

    .reservas-title {
      font-family: "Jost", sans-serif;
      font-size: clamp(28px, 4vw, 36px);
      font-weight: 500;
      color: #ffffff;
      margin: 0;
    }

    .reservas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: stretch;
      max-width: 1000px;
      margin: 0 auto;
    }

    .reservas-card {
      background: rgba(9, 6, 4, 0.9);
      border-radius: 20px;
      padding: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.06);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .reservas-subtitle {
      font-size: 1.1rem;
      font-weight: 600;
      color: #ffffff;
      margin: 0 0 0.75rem 0;
      font-family: "Jost", sans-serif;
    }

    .reservas-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
      margin: 0 0 1.25rem 0;
    }

    .reservas-contact {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.25rem;
      flex: 1;
    }

    .contact-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .contact-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--color-dorado);
      font-weight: 600;
    }

    .contact-label[data-lang] {
      display: none;
    }

    .contact-label[data-lang].visible {
      display: block;
    }

    .contact-value {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-value:hover {
      color: var(--color-dorado);
    }

    .reservas-cta {
      margin-top: auto;
    }

    .btn-reservar {
      display: inline-block;
      width: 100%;
      padding: 1.2rem 2rem;
      background: var(--color-dorado);
      color: #0a0806;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 8px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-reservar:hover {
      background: #d4a853;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(236, 185, 83, 0.3);
    }

    .btn-reservar[data-lang] {
      display: none;
    }

    .btn-reservar[data-lang].visible {
      display: inline-block;
    }

    .reservas-map {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(9, 6, 4, 0.9);
      height: 100%;
    }

    .map-container {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .map-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 900px) {
      .reservas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .reservas-map {
        order: -1;
      }

      .map-container {
        padding-bottom: 60%;
      }
    }

    @media (max-width: 768px) {
      .section-reservas {
        padding: 3rem 0;
      }

      .reservas-header {
        margin-bottom: 2rem;
      }

      .reservas-card {
        padding: 1.5rem;
      }

      .reservas-subtitle {
        font-size: 1rem;
      }

      .reservas-text {
        font-size: 0.9rem;
      }

      .map-container {
        padding-bottom: 50%;
      }
    }
  
