
  :root {
    --sand: #F5EFE0;
    --cream: #FAF7F2;
    --deep-green: #1C3320;
    --mid-green: #2D5235;
    --light-green: #4A7C59;
    --ocean: #1E4B6B;
    --ocean-light: #4A8BAA;
    --gold: #C9A84C;
    --gold-light: #E8CC80;
    --text: #1A1A18;
    --text-muted: #5A5A52;
    --white: #FDFCF9;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    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: 1.2rem 3rem;
    transition: all 0.4s ease;
  }

  nav.scrolled {
    background: rgba(28, 51, 32, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.8rem 3rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  .nav-logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: var(--gold);
    color: var(--deep-green) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    transition: background 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    color: var(--deep-green) !important;
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
  }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--deep-green);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }
  .mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
  .mobile-menu .mobile-cta {
    background: var(--gold);
    color: var(--deep-green);
    padding: 0.9rem 3rem;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    border-radius: 2px;
    margin-top: 1rem;
  }
  .mobile-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 8vh;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.1) 0%,
      rgba(10,25,15,0.35) 50%,
      rgba(10,25,15,0.75) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5vw;
    max-width: 800px;
    animation: heroReveal 1.2s ease forwards;
    opacity: 0;
    transform: translateY(30px);
  }

  @keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: white;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero p {
    color: rgba(255,255,255,0.8);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--deep-green);
    padding: 1rem 2.2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 1rem 2.2rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
  }

  .btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 5vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
  }

  @keyframes scrollAnim {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
  }

  /* ── STRIP ── */
  .amenities-strip {
    background: var(--deep-green);
    padding: 1.2rem 5vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 3rem;
  }

  .amenity-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .amenity-item span.icon {
    font-size: 1rem;
    opacity: 0.9;
  }

  /* ── SECTION COMMON ── */
  section { position: relative; }

  .section-label {
    display: inline-block;
    color: var(--light-green);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--deep-green);
  }

  .section-title em {
    font-style: italic;
    color: var(--light-green);
  }

  /* ── INTRO ── */
  .intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }

  .intro-text {
    background: var(--cream);
    padding: 8vw 5vw 8vw 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .intro-text p {
    color: var(--text-muted);
    line-height: 1.85;
    font-weight: 300;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    max-width: 440px;
  }

  .intro-text .stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--deep-green);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
  }

  .intro-image {
    position: relative;
    overflow: hidden;
  }

  .intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
  }

  .intro-image:hover img { transform: scale(1.04); }

  .intro-image-badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--gold);
    color: var(--deep-green);
    padding: 1.2rem 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    max-width: 220px;
    line-height: 1.3;
  }

  /* ── HABITACIONES ── */
  .rooms {
    padding: 7rem 5vw;
    background: var(--white);
  }

  .rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .room-card {
    background: var(--cream);
    overflow: hidden;
    border-radius: 3px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(28,51,32,0.12);
  }

  .room-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
  }

  .room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .room-card:hover .room-card-img img { transform: scale(1.06); }

  .room-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--deep-green);
    color: white;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
  }

  .room-card-body {
    padding: 1.8rem;
  }

  .room-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--deep-green);
    margin-bottom: 0.6rem;
  }

  .room-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .room-feature {
    background: rgba(74,124,89,0.1);
    color: var(--mid-green);
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
  }

  .room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .room-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--light-green);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s;
  }

  .room-cta:hover { gap: 0.7rem; }

  /* ── EXPERIENCE ── */
  .experience {
    background: var(--deep-green);
    padding: 7rem 5vw;
    position: relative;
    overflow: hidden;
  }

  .experience::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .experience-header {
    margin-bottom: 4rem;
    max-width: 500px;
  }

  .experience-header .section-label { color: var(--gold-light); }
  .experience-header .section-title { color: white; }
  .experience-header .section-title em { color: var(--gold-light); }

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

  .exp-item {
    position: relative;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
  }

  .exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.7);
  }

  .exp-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.55);
  }

  .exp-item-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10,25,15,0.9), transparent);
    transform: translateY(2rem);
    transition: transform 0.4s ease;
  }

  .exp-item:hover .exp-item-content { transform: translateY(0); }

  .exp-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
  }

  .exp-item-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
  }

  .exp-item-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
  }

  .exp-item:hover .exp-item-content p { opacity: 1; }

  /* ── GALLERY ── */
  .gallery {
    padding: 7rem 5vw;
    background: var(--cream);
  }

  .gallery-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }

  .gallery-tab {
    background: none;
    border: 1px solid rgba(28,51,32,0.2);
    color: var(--text-muted);
    padding: 0.5rem 1.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
  }

  .gallery-tab.active, .gallery-tab:hover {
    background: var(--deep-green);
    color: white;
    border-color: var(--deep-green);
  }

  .gallery-masonry {
    columns: 4;
    column-gap: 1rem;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
  }

  .gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img { transform: scale(1.05); }

  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,51,32,0);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-item:hover .gallery-item-overlay {
    background: rgba(28,51,32,0.3);
  }

  /* ── PLANS ── */
  .plans {
    padding: 7rem 5vw;
    background: var(--sand);
    position: relative;
  }

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

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .plan-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 3px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
  }

  .plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--light-green);
  }

  .plan-card.featured::before {
    background: var(--gold);
  }

  .plan-card.featured {
    background: var(--deep-green);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(28,51,32,0.2);
  }

  .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  }

  .plan-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
  }

  .plan-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--deep-green);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
  }

  .plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
  }

  .plan-card.featured .plan-name { color: white; }

  .plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .plan-card.featured .plan-desc { color: rgba(255,255,255,0.65); }

  .plan-includes {
    list-style: none;
    margin-bottom: 2rem;
  }

  .plan-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 300;
  }

  .plan-card.featured .plan-includes li {
    color: rgba(255,255,255,0.75);
    border-color: rgba(255,255,255,0.08);
  }

  .plan-includes li::before {
    content: '✓';
    color: var(--light-green);
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .plan-card.featured .plan-includes li::before { color: var(--gold-light); }

  .plan-btn {
    display: block;
    text-align: center;
    padding: 0.9rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
  }

  .plan-btn-outline {
    border: 1px solid var(--light-green);
    color: var(--light-green);
  }

  .plan-btn-outline:hover {
    background: var(--deep-green);
    color: white;
    border-color: var(--deep-green);
  }

  .plan-btn-gold {
    background: var(--gold);
    color: var(--deep-green);
  }

  .plan-btn-gold:hover {
    background: var(--gold-light);
  }

  /* ── LOCATION ── */
  .location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }

  .location-map {
    position: relative;
    overflow: hidden;
    background: #1a2e1a;
  }

  .location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    filter: saturate(0.7) brightness(0.9);
  }

  .location-info {
    background: var(--deep-green);
    padding: 6rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .location-info .section-label { color: var(--gold-light); }
  .location-info .section-title { color: white; margin-bottom: 2rem; }

  .location-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .location-detail-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .location-detail-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.6;
  }

  .location-detail-text strong {
    display: block;
    color: white;
    font-weight: 400;
    margin-bottom: 0.2rem;
    font-size: 0.92rem;
  }

  .waze-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    width: fit-content;
  }

  .waze-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
  }

  /* ── CTA BAND ── */
  .cta-band {
    position: relative;
    padding: 7rem 5vw;
    overflow: hidden;
    text-align: center;
  }

  .cta-band-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.35);
  }

  .cta-band-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
  }

  .cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .cta-band h2 em { font-style: italic; color: var(--gold-light); }

  .cta-band p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  .cta-band-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  footer {
    background: #0E1F10;
    padding: 4rem 5vw 2.5rem;
    color: rgba(255,255,255,0.6);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.2rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 260px;
  }

  .footer-col h4 {
    color: white;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.2rem;
  }

  .footer-col ul { list-style: none; }

  .footer-col li {
    margin-bottom: 0.7rem;
  }

  .footer-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s;
  }

  .footer-col a:hover { color: var(--gold-light); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
  }

  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 0.85rem 1.4rem 0.85rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: pulse 3s ease infinite;
  }

  .whatsapp-float:hover {
    background: #1FAD56;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(37,211,102,0.5);
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: white;
    flex-shrink: 0;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 35px rgba(37,211,102,0.65); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
    .plan-card.featured { transform: none; }
    .gallery-masonry { columns: 3; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    
    .hero {
      min-height: 75vh !important;
    }

    nav.scrolled { padding: 0.7rem 1.5rem; }
    .nav-links { display: none; }
    .nav-cta-desktop { display: none; }
    .hamburger { display: flex; }

    .hero h1 { font-size: clamp(1.8rem, 9vw, 2.8rem); line-height: 1.08; word-wrap: break-word; }
    .hero-buttons { flex-direction: column; gap: 0.8rem; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .hero-scroll { display: none; }

    .intro { grid-template-columns: 1fr; }
    .intro-text { padding: 3rem 1.5rem; }
    .intro-text p { max-width: 100%; }
    .intro-image { height: 350px; }
    .intro-image-badge { left: 1rem; bottom: 1rem; }
    .intro-text .stats { gap: 2rem; }

    .rooms { padding: 4rem 1.5rem; }
    .rooms-header { flex-direction: column; align-items: flex-start; }
    .rooms-grid { grid-template-columns: 1fr; }

    .experience { padding: 4rem 1.5rem; }
    .experience-grid { grid-template-columns: 1fr; }
    .exp-item { height: 300px; }
    .exp-item-content { transform: translateY(0); }
    .exp-item-content p { opacity: 1; }

    .gallery { padding: 4rem 1.5rem; }
    .gallery-masonry { columns: 2; }

    .plans { padding: 4rem 1.5rem; }
    .plans-grid { max-width: 100%; }

    .location { grid-template-columns: 1fr; }
    .location-info { padding: 3rem 1.5rem; }

    .cta-band { padding: 4rem 1.5rem; }
    .cta-band-buttons { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .amenities-strip { gap: 0.5rem 1.5rem; }
  }

  @media (max-width: 480px) {
    .gallery-masonry { columns: 2; }
    .hero-content { padding: 0 1.5rem; }
    .plans-grid { max-width: 100%; }
  }

  /* ── REVEAL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* Image loading states */
  img {
    background: linear-gradient(135deg, #1C3320 0%, #2D5235 50%, #4A7C59 100%);
    min-height: 20px;
  }
  img.loaded { background: none; }
  
  /* Fallback gradient for broken images */
  .room-card-img img[src*="PISCINA"] { background: linear-gradient(135deg, #1E4B6B, #4A8BAA); }
  .room-card-img img[src*="PLAYA"] { background: linear-gradient(135deg, #C9A84C, #E8CC80); }

  
  @media (max-width: 768px) {
    .hero {
      background-image: url('https://ecohotelebenezer.com/wp-content/uploads/2026/02/PISCINA_PEQ3-1-scaled.jpg');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }
    
    .hero-video {
      display: none !important;
    }
    
    .hero-overlay {
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(10,25,15,0.45) 50%,
        rgba(10,25,15,0.8) 100%
      ) !important;
    }
  }

  /* ══════════════════════════════════════════════════════
     OPTIMIZACIÓN MÓVIL COMPLETA
     ══════════════════════════════════════════════════════ */
  
  @media (max-width: 768px) {
    /* ── Reducir espacios en blanco ── */
    section {
      padding: 3rem 1.5rem !important;
    }
    
    .intro, .rooms, .experience, .gallery, .plans, .cta-band {
      padding: 3rem 1.5rem !important;
    }
    
    /* ── Hero ── */
    .hero {
      background-image: url('https://ecohotelebenezer.com/wp-content/uploads/2026/02/PISCINA_PEQ3-1-scaled.jpg');
      background-size: cover;
      background-position: center center;
      min-height: 80vh !important;
    }
    
    .hero-video { display: none !important; }
    
    .hero h1 {
      font-size: 2.2rem !important;
      line-height: 1.1 !important;
      margin-bottom: 1rem !important;
    }
    
    .hero p {
      font-size: 0.95rem !important;
      line-height: 1.6 !important;
      margin-bottom: 1.8rem !important;
    }
    
    .hero-content {
      padding: 0 1.5rem !important;
    }
    
    .hero-buttons {
      flex-direction: column !important;
      gap: 0.8rem !important;
    }
    
    .btn-primary, .btn-secondary {
      width: 100% !important;
      justify-content: center !important;
      padding: 1.1rem 2rem !important;
      font-size: 0.9rem !important;
    }
    
    /* ── Intro section ── */
    .intro-text, .intro-image {
      padding: 2rem 1.5rem !important;
    }
    
    .intro-text p {
      font-size: 0.95rem !important;
    }
    
    .intro-text .stats {
      gap: 1.5rem !important;
      margin-top: 2rem !important;
      padding-top: 1.5rem !important;
    }
    
    .stat-num {
      font-size: 2.2rem !important;
    }
    
    /* ── Habitaciones ── */
    .rooms-grid {
      grid-template-columns: 1fr !important;
      gap: 1.5rem !important;
    }
    
    .room-card {
      margin-bottom: 0 !important;
    }
    
    .room-card-img {
      height: 220px !important;
    }
    
    .room-card-body {
      padding: 1.5rem !important;
    }
    
    .room-card-body h3 {
      font-size: 1.5rem !important;
    }
    
    .room-card-body p {
      font-size: 0.9rem !important;
    }
    
    /* ── Experience ── */
    .experience-grid {
      grid-template-columns: 1fr !important;
      gap: 1rem !important;
    }
    
    .exp-item {
      height: 280px !important;
    }
    
    .exp-item-content {
      transform: translateY(0) !important;
      padding: 1.5rem !important;
    }
    
    .exp-item-content p {
      opacity: 1 !important;
    }
    
    /* ── Gallery ── */
    .gallery {
      padding: 3rem 1.5rem !important;
    }
    
    .gallery-masonry {
      columns: 2 !important;
      column-gap: 0.8rem !important;
    }
    
    .gallery-item {
      margin-bottom: 0.8rem !important;
    }
    
    .gallery-tabs {
      gap: 0.4rem !important;
      margin-bottom: 1.5rem !important;
    }
    
    .gallery-tab {
      font-size: 0.7rem !important;
      padding: 0.4rem 1rem !important;
    }
    
    /* ── Plans ── */
    .plans-grid {
      grid-template-columns: 1fr !important;
      gap: 1.5rem !important;
      max-width: 100% !important;
    }
    
    .plan-card {
      padding: 2rem 1.5rem !important;
    }
    
    .plan-card.featured {
      transform: none !important;
    }
    
    .plan-name {
      font-size: 1.6rem !important;
    }
    
    /* ── Location ── */
    .location-info {
      padding: 3rem 1.5rem !important;
    }
    
    .location-map iframe {
      min-height: 350px !important;
    }
    
    /* ── CTA Band ── */
    .cta-band {
      padding: 3.5rem 1.5rem !important;
    }
    
    .cta-band h2 {
      font-size: 1.8rem !important;
      margin-bottom: 1rem !important;
    }
    
    .cta-band p {
      font-size: 0.9rem !important;
      margin-bottom: 2rem !important;
    }
    
    .cta-band-buttons {
      flex-direction: column !important;
      gap: 0.8rem !important;
    }
    
    .cta-band-buttons .btn-primary,
    .cta-band-buttons .btn-secondary {
      width: 100% !important;
    }
    
    /* ── Footer ── */
    footer {
      padding: 3rem 1.5rem 2rem !important;
    }
    
    .footer-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
      margin-bottom: 2rem !important;
      padding-bottom: 2rem !important;
    }
    
    .footer-brand p {
      max-width: 100% !important;
    }
    
    .footer-bottom {
      flex-direction: column !important;
      text-align: center !important;
      gap: 1rem !important;
    }
    
    /* ── Amenities strip ── */
    .amenities-strip {
      padding: 1rem 1.5rem !important;
      gap: 0.5rem 1.2rem !important;
    }
    
    .amenity-item {
      font-size: 0.72rem !important;
    }
    
    /* ── WhatsApp float ── */
    .whatsapp-float {
      bottom: 1.5rem !important;
      right: 1.5rem !important;
      padding: 0.8rem 1.2rem !important;
      font-size: 0.8rem !important;
    }
    
    .whatsapp-float span {
      display: inline !important;
    }
    
    /* ── Section titles ── */
    .section-title {
      font-size: 2rem !important;
      line-height: 1.2 !important;
    }
    
    .section-label {
      font-size: 0.7rem !important;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.9rem !important;
    }
    
    .gallery-masonry {
      columns: 1 !important;
    }
    
    .whatsapp-float span {
      display: none !important;
    }
  }
/* ══════════════════════════════════════════════════════
   CAROUSEL Y LIGHTBOX
   ══════════════════════════════════════════════════════ */

/* Carousel container */
.room-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Carousel navigation */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28,51,32,0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--deep-green);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots .dot.active,
.carousel-dots .dot:hover {
  background: white;
  transform: scale(1.3);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.1);
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-close:hover {
  background: white;
  color: var(--deep-green);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .carousel-prev,
  .carousel-next {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .carousel-dots .dot {
    width: 6px;
    height: 6px;
  }
  
  .lightbox-close {
    width: 45px;
    height: 45px;
    top: 1rem;
    right: 1rem;
  }
}

/* ══════════════════════════════════════════════════════
   FIXES ADICIONALES MÓVIL
   ══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Asegurar que carrusel funcione en móvil */
  .carousel-prev,
  .carousel-next {
    display: flex !important;
    z-index: 20 !important;
  }
  
  /* Galería horizontal en móvil */
  .gallery-masonry {
    columns: 1 !important;
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 1rem !important;
    padding-bottom: 1rem !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  .gallery-item {
    flex: 0 0 80% !important;
    scroll-snap-align: center !important;
    margin-bottom: 0 !important;
  }
  
  .gallery-item img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
  }
  
  /* Indicador de scroll en galería */
  .gallery-masonry::after {
    content: '' !important;
    flex: 0 0 20px !important;
  }
}

/* Fix hero background mobile */
@media (max-width: 768px) {
  .hero {
    background-image: url('https://ecohotelebenezer.com/wp-content/uploads/2026/02/PISCINA_1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
  }
}


/* ══════════════════════════════════════════════════════
   OVERRIDES CRÍTICOS - MÁXIMA PRIORIDAD
   ══════════════════════════════════════════════════════ */

/* LOGO */
.nav-logo,
body .nav-logo,
html body .nav-logo {
  max-width: 200px !important;
  width: auto !important;
  height: auto !important;
}

.nav-logo img,
body .nav-logo img,
html body .nav-logo img {
  max-height: 50px !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* EXPERIENCE - Remover todos los pseudo-elementos */
.exp-item::before,
.exp-item::after,
body .exp-item::before,
body .exp-item::after {
  display: none !important;
  content: none !important;
}

.exp-item,
body .exp-item {
  position: relative !important;
  overflow: hidden !important;
}

.exp-item img,
body .exp-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* HERO MÓVIL */
@media (max-width: 768px) {
  .hero,
  body .hero {
    background-image: url('https://ecohotelebenezer.com/wp-content/uploads/2026/02/PISCINA_1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
  
  .hero-video,
  body .hero-video {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════════════
   REMOVER DECORACIONES DEL TEMA WORDPRESS/ELEMENTOR
   ══════════════════════════════════════════════════════ */

/* Remover TODAS las decoraciones SVG del tema */
.elementor-shape,
.elementor-shape-top,
.elementor-shape-bottom,
body .elementor-shape,
body .elementor-shape-top,
body .elementor-shape-bottom {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Remover dividers y separadores */
.elementor-divider,
.elementor-widget-divider,
body .elementor-divider,
body .elementor-widget-divider {
  display: none !important;
}

/* Limpiar cualquier SVG o background decorativo */
.exp-item svg,
.exp-item .elementor-background-overlay,
body .exp-item svg,
body .exp-item .elementor-background-overlay {
  display: none !important;
}

/* Asegurar que solo la imagen sea visible */
.exp-item > *:not(img):not(.exp-item-content),
body .exp-item > *:not(img):not(.exp-item-content) {
  display: none !important;
}
