/* Variables CSS */
    :root {
      --color-gold:        #C8A96B;
      --color-gold-hover:  #b89a55;
      --color-gold-subtle: rgba(200, 169, 107, 0.6);
      --color-gold-tint:   rgba(200, 169, 107, 0.1);
      --color-bg:          #0A0A0A;
      --color-surface:     #111111;
      --color-surface-2:   #151515;
      --color-surface-3:   #1a1a1a;
      --color-text:        #F5F5F5;
      --color-text-muted:  #BFBFBF;
    }

    /* Accesibilidad */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
      }
      .line-down { animation: none; }
      .mask-reveal-img { clip-path: none !important; transition: none; }
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: var(--color-bg);
      font-family: 'Montserrat', sans-serif;
      color: var(--color-text);
      overflow-x: hidden;
      scroll-behavior: auto;
    }

    /* Loader */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-bg);
      z-index: 10000;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .loader-line {
      width: 270px;
      height: 1px;
      background: var(--color-gold);
      transform: scaleX(0);
      transform-origin: left;
      margin-bottom: 1.5rem;
    }
    .loader-logo img {
      max-width: 80vw;
      height: clamp(60px, 10vh, 100px);
      width: auto;
      object-fit: contain;
      opacity: 0;
      filter: brightness(10);
    }
    .loader.hide {
      opacity: 0;
      pointer-events: none;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--color-surface); }
    ::-webkit-scrollbar-thumb { background: var(--color-gold); }

    /* Tipografía general */
    h1, h2, h3, .logo-font {
      font-family: 'Cinzel', serif;
      font-weight: 500;
    }
    .section-title {
      font-size: clamp(2.2rem, 6vw, 3.8rem);
      letter-spacing: -0.02em;
      margin-bottom: 3rem;
      font-weight: 600;
      border-left: 3px solid var(--color-gold);
      padding-left: 1.5rem;
    }
    .btn {
      background: transparent;
      border: 1px solid var(--color-gold-subtle);
      padding: 0.9rem 2.2rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 2px;
      color: var(--color-text);
      cursor: pointer;
      transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }
    .btn-premium {
      background: var(--color-gold);
      color: var(--color-bg);
      border: none;
    }
    .btn-premium:hover {
      background: var(--color-gold-hover);
      transform: translateY(-3px);
    }
    .btn-outline:hover {
      background: var(--color-gold-tint);
      border-color: var(--color-gold);
      transform: translateY(-3px);
    }

    /* Hero */
    .hero {
      height: 100vh;
      width: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    /* Carrusel */
    .hero-carousel {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
      will-change: transform;
    }
    
    .hero-slide.active img {
      animation: kenBurnsA 8s ease-in-out forwards;
    }
    .hero-slide:nth-child(2).active img {
      animation: kenBurnsB 8s ease-in-out forwards;
    }
    @keyframes kenBurnsA {
      0%   { transform: scale(1.0)  translate(0,    0);    }
      100% { transform: scale(1.12) translate(-2%, -1%); }
    }
    @keyframes kenBurnsB {
      0%   { transform: scale(1.12) translate(2%,   1%); }
      100% { transform: scale(1.0)  translate(0,    0);  }
    }
    .hero-slide:nth-child(3).active img {
      animation: kenBurnsC 8s ease-in-out forwards;
    }
    @keyframes kenBurnsC {
      0%   { transform: scale(1.0)  translate(1%,  1%); }
      100% { transform: scale(1.1)  translate(-1%, -2%); }
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 2rem;
    }
    .hero-title {
      font-size: clamp(2.5rem, 7vw, 5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .hero-sub {
      font-size: 1rem;
      color: var(--color-text-muted);
      max-width: 600px;
      margin: 0 auto 2rem auto;
      line-height: 1.6;
    }
    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Secciones generales */
    section {
      padding: 100px 5%;
      position: relative;
    }
    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Filosofía */
    .filosofia-grid {
      display: flex;
      gap: 5rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .filosofia-text { flex: 1.2; }
    .filosofia-text p {
      font-size: 1.2rem;
      line-height: 1.7;
      color: var(--color-text-muted);
    }
    .filosofia-img {
      flex: 0.9;
      min-width: 280px;
      height: 500px;
      background: #1e1e1e;
      overflow: hidden;
    }
    .slot-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s ease;
    }
    .slot-image:hover {
      transform: scale(1.02);
    }

    /* Servicios cards */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .service-card {
      position: relative;
      overflow: hidden;
      background: var(--color-surface);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 2.5rem 1.8rem;
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1),
                  border-color 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      z-index: 1;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-size: cover;
      background-position: center;
      background-image: var(--bg-img);
      opacity: 0.14; 
      transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1),
                  opacity 0.4s ease;
      z-index: -1;
    }
    .service-card:hover {
      border-color: var(--color-gold);
      transform: translateY(-8px);
    }
    .service-card:hover::before {
      opacity: 0.28; 
      transform: scale(1.08);
    }
    .service-icon {
      font-size: 2.4rem;
      margin-bottom: 1.5rem;
      color: var(--color-gold);
    }
    .service-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.8rem;
    }

    /* Portfolio Masonry */
    .masonry {
      column-count: 3;
      column-gap: 1.5rem;
    }
    .masonry-item {
      break-inside: avoid;
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
      background: var(--color-surface);
      border: 1px solid rgba(255,255,255,0.05);
      transition: transform 0.4s ease, border-color 0.4s ease;
      cursor: pointer;
    }
    .masonry-item:hover {
      border-color: var(--color-gold);
      transform: translateY(-5px);
    }
    /* Diseños de Aspect Ratio para Masonry y Slider */
    .ar-16-9 { aspect-ratio: 16 / 9; }
    .ar-4-3 { aspect-ratio: 4 / 3; }
    .ar-3-4 { aspect-ratio: 3 / 4; }

    .carousel-slide-container {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .carousel-slide.active {
      opacity: 1;
    }

    /* Flechas de navegación para Portafolio Manual */
    .portfolio-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(10, 10, 10, 0.7);
      border: 1px solid rgba(200, 169, 107, 0.3);
      color: var(--color-text);
      font-size: 1.1rem;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s, transform 0.3s;
      opacity: 0;
      pointer-events: auto;
    }
    .portfolio-arrow:hover {
      background: var(--color-gold);
      color: var(--color-bg);
      border-color: var(--color-gold);
      transform: translateY(-50%) scale(1.1);
    }
    .masonry-item:hover .portfolio-arrow {
      opacity: 1;
    }
    .prev-arrow {
      left: 12px;
    }
    .next-arrow {
      right: 12px;
    }

    /* Ocultar flechas físicas en celulares y tablets para usar swipe nativo */
    @media (max-width: 1024px) {
      .portfolio-arrow {
        display: none !important;
      }
    }

    /* Indicadores visuales animados "Desliza" para touch screen (Mobile/Tablet) */
    .swipe-hint-left, .swipe-hint-right {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(10, 10, 10, 0.75);
      border: 1px solid rgba(200, 169, 107, 0.25);
      color: var(--color-gold);
      font-size: clamp(0.55rem, 2vw, 0.65rem);
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 0.35rem 0.6rem;
      border-radius: 20px;
      pointer-events: none; /* No bloquea ni afecta los deslizamientos táctiles */
      z-index: 8;
      display: none; /* Oculto en PC de escritorio */
      box-shadow: 0 4px 10px rgba(0,0,0,0.4);
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .swipe-hint-left.hidden, .swipe-hint-right.hidden {
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }
    .swipe-hint-left {
      left: 10px;
      animation: swipePulseLeft 2s infinite ease-in-out;
    }
    .swipe-hint-right {
      right: 10px;
      animation: swipePulseRight 2s infinite ease-in-out;
    }

    @keyframes swipePulseLeft {
      0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.4;
      }
      50% {
        transform: translateY(-50%) translateX(-6px);
        opacity: 0.95;
      }
    }
    @keyframes swipePulseRight {
      0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.4;
      }
      50% {
        transform: translateY(-50%) translateX(6px);
        opacity: 0.95;
      }
    }

    /* Revelamos los indicadores animados solo en dispositivos táctiles/móviles */
    @media (max-width: 1024px) {
      .swipe-hint-left, .swipe-hint-right {
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }
    .slot-placeholder {
      background: var(--color-surface-3);
      width: 100%;
      aspect-ratio: 4 / 3;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
    }
    .slot-placeholder span {
      font-size: 2rem;
      font-family: 'Cinzel', serif;
      color: var(--color-gold);
      opacity: 0.5;
    }
    .slot-placeholder p {
      font-size: 0.8rem;
      letter-spacing: 2px;
      color: var(--color-text-muted);
    }
    .overlay-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      padding: 1.5rem;
      transform: translateY(0); /* Visible a primera instancia en PC y Móvil */
      transition: transform 0.4s ease, opacity 0.4s ease;
      opacity: 1;
      z-index: 6;
    }
    .overlay-info.hide-title {
      transform: translateY(100%) !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
    .overlay-info h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }
    @media (max-width: 900px) { .masonry { column-count: 2; } }
    @media (max-width: 600px) { .masonry { column-count: 1; } }

    /* Timeline proceso */
    .timeline {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 3rem;
      position: relative;
      overflow: hidden; 
    }
    .timeline-step { 
      flex: 1; 
      text-align: center; 
      padding: 1rem; 
      position: relative; 
      transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.5s ease;
    }
    .timeline-step.active {
      transform: scale(1.15);
      filter: drop-shadow(0 0 8px var(--color-gold-subtle));
      z-index: 5;
    }
    .timeline-step .step-number, .timeline-step .step-title {
      transition: color 0.5s ease, text-shadow 0.5s ease;
    }
    .timeline-step.active .step-number {
      color: #ffffff;
      text-shadow: 0 0 15px var(--color-gold);
    }
    .timeline-step.active .step-title {
      color: var(--color-gold);
      text-shadow: 0 0 10px var(--color-gold-subtle);
    }
    .step-number {
      font-family: 'Cinzel', serif; 
      font-size: 2rem;
      color: var(--color-gold);
      margin-bottom: 0.5rem;
    }
    .step-title { font-weight: 600; }
    .timeline-line {
      position: absolute;
      top: 32px;
      left: 0;
      width: 100%;
      height: 1px;
      background: rgba(200,169,107,0.3);
      z-index: 0;
    }
    .timeline-line .draw-line { width: 100%; height: 2px; background: var(--color-gold); transform: scaleX(0); transform-origin: left; }

    /* Estadísticas */
    .stats-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 2rem;
      text-align: center;
    }
    .stat-item {
      min-width: 140px;
      flex: 1;
    }
    .stat-item h3 {
      font-size: 3rem;
      font-family: 'Cinzel', serif;
      color: var(--color-gold);
    }

    /* Galeria bento grid */
    .gallery-bento {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 380px 240px;
      gap: 0.7rem;
    }
    .gb { overflow: hidden; position: relative; background: var(--color-surface); }
    .gb-1 { grid-column: 1; grid-row: 1 / 3; }   /* Hero izquierdo tall */
    .gb-2 { grid-column: 2; grid-row: 1; }
    .gb-3 { grid-column: 3; grid-row: 1; }
    .gb-4 { grid-column: 2 / 4; grid-row: 2; }   /* Ancho abajo derecha */
    .gb .carousel-slide-container {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
    }
    .gb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .gb:hover img { transform: scale(1.06); }
    /* Reveal con clip-path */
    .gb img { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.18, 1), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .gb.in-view img { clip-path: inset(0 0 0 0); }
    /* Etiqueta hover */
    .gb-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.2rem 1.4rem;
      background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-gold);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .gb:hover .gb-label { opacity: 1; transform: translateY(0); }
    /* Responsive */
    @media (max-width: 1024px) {
      .gallery-bento { grid-template-rows: 300px 200px; }
    }
    @media (max-width: 768px) {
      .gallery-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
      }
      .gb-1 { grid-column: 1 / 3; grid-row: 1; } /* full width arriba en movil */
      .gb-2 { grid-column: 1; grid-row: 2; }
      .gb-3 { grid-column: 2; grid-row: 2; }
      .gb-4 { grid-column: 1; grid-row: 3; }
      .gb-5 { grid-column: 2; grid-row: 3; }
    }

    /* Testimonios */
    /* Testimonios */
    .testimonials-marquee {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      /* Degradados en extremos */
      -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      );
      mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      );
    }
    .marquee-track {
      display: flex;
      width: max-content;
      gap: 1.2rem;
      will-change: transform;
    }
    /* Pausa al hacer hover */
    .testimonials-marquee:hover .marquee-track {
      animation-play-state: paused;
    }
    .testimonial-card {
      background: var(--color-surface);
      border: 1px solid rgba(255,255,255,0.06);
      border-top: 2px solid var(--color-gold);
      padding: 1.8rem 1.6rem 1.4rem;
      width: 320px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .quote-icon {
      font-size: 2.4rem;
      font-family: serif;
      color: var(--color-gold);
      opacity: 0.45;
      line-height: 1;
    }
    .testimonial-card p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: var(--color-text-muted);
      flex: 1;
    }
    .testimonial-card cite {
      font-style: normal;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--color-gold);
      border-top: 1px solid rgba(200,169,107,0.2);
      padding-top: 0.8rem;
    }
    }

    /* CTA */
    .cta-section { background: #070707; text-align: center; }
    .cta-title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 2rem; }

    /* Contacto */
    .contact-grid { display: flex; gap: 3rem; flex-wrap: wrap; }
    .contact-info { flex: 1; min-width: 260px; }
    .contact-form { flex: 1; min-width: 280px; }
    .contact-info p { margin-bottom: 0.75rem; }
    .contact-info a { color: var(--color-gold); text-decoration: none; }
    .contact-info a:hover { text-decoration: underline; }
    /* Screen readers only */
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      background: var(--color-surface);
      border: 1px solid #222;
      padding: 1rem;
      margin-bottom: 1rem;
      color: var(--color-text);
      font-family: 'Montserrat', sans-serif;
    }
    .contact-form button { width: 100%; }

    /* Footer */
    footer {
      background: #050505;
      padding: 3rem 5%;
      border-top: 1px solid rgba(200,169,107,0.2);
    }
    .footer-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
    }
    .footer-logo img { height: 45px; width: auto; filter: brightness(10); }
    .footer-nav a {
      color: var(--color-text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover { color: var(--color-gold); }
    .social-icons a {
      color: var(--color-text-muted);
      margin-right: 1rem;
      text-decoration: none;
      transition: color 0.3s;
    }
    .social-icons a:hover { color: var(--color-gold); }

    /* Responsive */

    /* Tablet */
    @media (max-width: 1024px) {
      .nav-links { gap: 1.5rem; }
      .filosofia-grid { gap: 3rem; }
      .gallery-block { height: 320px; }
      .timeline-step { min-width: 30%; }
    }

    /* Mobile */
    @media (max-width: 768px) {
      section { padding: 60px 5%; }

      /* Hero */
      .hero { padding-top: 70px; }
      .hero-buttons { flex-direction: column; align-items: center; gap: 1rem; }
      .hero-buttons .btn { width: 100%; max-width: 300px; }

      /* Filosofia */
      .filosofia-grid { flex-direction: column; gap: 2rem; }
      .filosofia-img { width: 100%; height: 280px; flex: none; }

      /* Servicios */
      .services-grid { grid-template-columns: 1fr 1fr; }

      /* Timeline: vertical en movil */
      .timeline { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .timeline-line { display: none; }
      .timeline-step {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1.2rem;
        padding: 0;
        flex: none;
        width: 100%;
      }
      .step-number { margin-bottom: 0; font-size: 1.6rem; min-width: 3rem; }

      /* Stats */
      .stats-container { gap: 1.5rem; }
      .stat-item { min-width: 120px; }
      .stat-item h3 { font-size: 2.2rem; }

      /* Galeria bento */

      /* Testimonios responsive */

      /* Contacto */
      .contact-grid { flex-direction: column; gap: 2rem; }
      .contact-info, .contact-form { min-width: unset; width: 100%; }

      /* Footer */
      .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
      }
      .social-icons { margin: 0 auto; }

      /* Section title */
      .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); margin-bottom: 2rem; }

      /* CTA title */
      .cta-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    }

    /* Movil pequeno */
    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .nav-logo img { height: 34px; }
      .stats-container { flex-direction: column; align-items: center; }
      .stat-item { width: 100%; }
      .btn { padding: 0.8rem 1.5rem; font-size: 0.78rem; }
    }
    .text-accent { color: var(--color-gold); }
    img, video { max-width: 100%; }

    /* ======================================================
       NAV
    ====================================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9000;
      padding: 1.4rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.5s ease, padding 0.4s ease, border-color 0.4s ease;
    }
    .navbar.scrolled {
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 0.8rem 5%;
      border-bottom: 1px solid rgba(200, 169, 107, 0.15);
    }
    /* Logo en nav */
    .nav-logo {
      mix-blend-mode: unset;
    }
    .nav-logo img {
      height: 44px;
      width: auto;
      transition: opacity 0.3s ease;
      display: block;
      filter: brightness(10); 
    }
    .nav-logo:hover img { opacity: 0.8; }
    /* Links desktop */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(245, 245, 245, 0.85);
      text-decoration: none;
      position: relative;
      transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--color-gold);
      transition: width 0.35s ease;
    }
    .nav-links a:hover { color: var(--color-gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      font-size: 0.75rem !important;
      letter-spacing: 2px !important;
      color: var(--color-gold) !important;
      border: 1px solid rgba(200, 169, 107, 0.5);
      padding: 0.5rem 1.2rem;
      transition: background 0.3s ease, color 0.3s ease !important;
    }
    .nav-cta:hover {
      background: var(--color-gold) !important;
      color: var(--color-bg) !important;
    }
    .nav-cta::after { display: none !important; }
    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 9100;
    }
    .nav-hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--color-text);
      transition: transform 0.35s ease, opacity 0.35s ease;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    /* Menu movil */
    .nav-mobile {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(10, 10, 10, 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      z-index: 9050;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .nav-mobile.open {
      opacity: 1;
      pointer-events: all;
    }
    .nav-mobile a {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.4rem, 5vw, 2rem);
      letter-spacing: 4px;
      color: var(--color-text);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .nav-mobile a:hover { color: var(--color-gold); }
    .nav-mobile .nav-cta-mobile {
      margin-top: 1rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 2px;
      border: 1px solid var(--color-gold);
      padding: 0.8rem 2rem;
      color: var(--color-gold);
    }
    /* Responsive: mostrar hamburger, ocultar links desktop */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
    }
    @media (max-width: 768px) {
      .navbar { padding: 1rem 5%; }
      .navbar.scrolled { padding: 0.7rem 5%; }
    }
    /* Hero baja un poco para no quedar bajo el nav */
    .hero { padding-top: 80px; }
