*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --stone:   #f5f0eb;
      --bone:    #ede6dc;
      --bark:    #7a5c44;
      --earth:   #3d2b1a;
      --moss:    #4a5e45;
      --sky:     #8baab8;
      --snow:    #ffffff;
      --ink:     #1a1410;
      --muted:   #8a7d72;
      --accent:  #c8834a;
      --r: 1.25rem;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--stone);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 3rem;
      transition: background 0.4s, backdrop-filter 0.4s;
    }
    #navbar.scrolled {
      background: rgba(245,240,235,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(122,92,68,0.12);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--snow);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.4s;
    }
    #navbar.scrolled .nav-logo { color: var(--earth); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.3s;
    }
    #navbar.scrolled .nav-links a { color: var(--muted); }
    .nav-links a:hover { color: var(--accent) !important; }
    .nav-cta {
      background: var(--accent); color: var(--snow) !important;
      padding: 0.55rem 1.4rem; border-radius: 2px;
    }
    #navbar.scrolled .nav-cta { color: var(--snow) !important; }
    .nav-cta:hover { background: var(--bark); color: var(--snow) !important; }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      cursor: pointer;
      background: none;
      border: none; padding: 0;
      gap: 5px;
      z-index: 110;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 1.5px;
      background: var(--snow);
      transition: transform 0.35s cubic-bezier(0.77,0,0.175,1),
                  opacity 0.25s ease,
                  background 0.4s;
      transform-origin: center;
    }
    #navbar.scrolled .nav-hamburger span { background: var(--earth); }

    /* Cruz cuando está abierto */
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── MENÚ MOBILE DRAWER ── */
    .nav-drawer {
      display: none;
      position: fixed; inset: 0; z-index: 105;
      pointer-events: none;
    }
    .nav-drawer.open { pointer-events: all; }

    /* Overlay oscuro de fondo */
    .nav-drawer-overlay {
      position: absolute; inset: 0;
      background: rgba(26,20,16,0);
      transition: background 0.4s ease;
    }
    .nav-drawer.open .nav-drawer-overlay {
      background: rgba(26,20,16,0.55);
    }

    /* Panel lateral */
    .nav-drawer-panel {
      position: absolute; top: 0; right: 0;
      width: min(82vw, 300px); height: 100%;
      background: var(--earth);
      display: flex; flex-direction: column;
      padding: 5rem 2rem 2.5rem;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
    }
    .nav-drawer.open .nav-drawer-panel {
      transform: translateX(0);
    }

    /* Links dentro del drawer */
    .nav-drawer-links {
      list-style: none; display: flex; flex-direction: column; gap: 0;
    }
    .nav-drawer-links li {
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-drawer-links a {
      display: block; padding: 1rem 0;
      font-size: 0.78rem; font-weight: 400; letter-spacing: 0.16em;
      text-transform: uppercase; text-decoration: none;
      color: rgba(237,230,220,0.7);
      transition: color 0.2s, padding-left 0.2s;
    }
    .nav-drawer-links a:hover,
    .nav-drawer-links a:active { color: var(--accent); padding-left: 0.4rem; }

    .nav-drawer-cta {
      margin-top: 2rem;
      display: block; text-align: center;
      background: var(--accent); color: var(--snow) !important;
      padding: 0.9rem 1.5rem; border-radius: 2px;
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.25s;
    }
    .nav-drawer-cta:hover { background: var(--bark); }

    .nav-drawer-logo {
      margin-top: auto; padding-top: 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem; font-weight: 300; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(237,230,220,0.2);
    }

    /* ── HERO ── */
    .hero {
      height: 100vh;
      height: 100dvh;
      min-height: 480px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:linear-gradient(rgba(0, 0, 0, 0.425), rgba(0, 0, 0, 0.144)), url('img/15.jpg');
      background-position: center center;
      background-size: cover;
    }
    /* Decorative mountain silhouette */
    .hero-mountains {
      position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
      opacity: 0.18;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(26,20,16,0.82) 0%, rgba(26,20,16,0.1) 55%, transparent 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 3rem 6rem;
      max-width: 760px;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      line-height: 1.05;
      color: var(--snow);
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
    }
    .hero-title em { font-style: italic; color: var(--bone); }
    .hero-subtitle {
      margin-top: 1.5rem;
      font-size: 1.5rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.65);
      opacity: 0;
      animation: fadeUp 0.9s 0.75s forwards;
    }
    .hero-actions {
      margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.9s 1s forwards;
    }
    .btn-primary {
      background: var(--accent); color: var(--snow);
      padding: 0.9rem 2.2rem; font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      border-radius: 2px; transition: background 0.3s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--bark); transform: translateY(-1px); }
    .btn-ghost {
      border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
      padding: 0.9rem 2.2rem; font-size: 0.78rem; font-weight: 400;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      border-radius: 2px; transition: border-color 0.3s, color 0.3s;
      display: inline-block;
    }
    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
    .hero-scroll {
      position: absolute; bottom: 2rem; right: 3rem; z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      opacity: 0; animation: fadeIn 1s 1.4s forwards;
    }
    .hero-scroll span {
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.4); writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      animation: scrollPulse 2s 2s infinite;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--earth); color: var(--bone);
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 0;
      height: 200px;
    }
    .stat-item {
      padding: 1.6rem 3.5rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; display: block;
      color: var(--accent);
    }
    .stat-label {
      font-size: 0.68rem; letter-spacing: 0.16em;
      text-transform: uppercase; color: rgba(237,230,220,0.55);
    }

    /* ── SECTIONS ── */
    section { padding: 7rem 3rem; }
    .section-tag {
      font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.8rem; display: block;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.15;
      color: var(--earth);
    }
    .section-title em { font-style: italic; }
    .section-body {
      line-height: 1.85;
      color: var(--muted);
      margin-top: 1.2rem;
    }

    /* ── CABAÑAS ── */
    #cabanas { background: var(--stone); }
    .cabanas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 4rem;
    }
    .cabana-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4/1.5;
    }
    .cabana-card:first-child {
      grid-row: span 3;
      aspect-ratio: auto;
    }
    .cabana-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
      display: block;
    }
    /* Placeholder gradient images */
    .img-cabaña-familiar {
      background: linear-gradient(135deg, #5a453534 0%, #7a624836 100%), url('img/IMG_0122.JPG');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
      width: 100%;
      height: 100%;
    }
    .img-cabaña-grande {
      background: linear-gradient(135deg, #5a453534 0%, #7a624836 100%), url('img/IMG_0132.JPG');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
      width: 100%;
      height: 100%;
    }
    .img-cabaña-duo {
      background: linear-gradient(135deg, #5a453534 0%, #7a624836 100%), url('img/IMG_0045.JPG');
      background-repeat: no-repeat;
      background-size: auto;
      background-position: center center;
      width: 100%;
      height: 100%;
    }
    .img-pileta {
      background: linear-gradient(135deg, #5a453534 0%, #7a624836 100%), url('img/IMG-20190321-WA0025.jpg');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
      width: 100%; height: 100%;
    }
    .img-exterior {
      background: linear-gradient(135deg, #3d4a2a 0%, #5a6a38 100%);
      width: 100%; height: 100%;
    }
    .cabana-card:hover .cabana-card-img,
    .cabana-card:hover .img-cabaña-grande,
    .cabana-card:hover .img-cabaña-duo,
    .cabana-card:hover .img-pileta,
    .cabana-card:hover .img-exterior { transform: scale(1.05); }
    .cabana-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,20,16,0.75) 0%, transparent 55%);
      transition: opacity 0.4s;
    }
    .cabana-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1.8rem 2rem;
      color: #fff;
      font-family: 'Cormorant Garamond', serif;
      text-shadow: #1a1410 0px 1px 3px;
    }

    .cabana-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300; color: var(--snow); display: block;
    }
    .cabana-cap {
      font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem;
      display: block;
    }

    /* ── AMENITIES ── */
    #comodidades { background: var(--bone); }
    .comodidades-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start; margin-top: 3rem;
    }
    .amenity-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
      margin-top: 2rem;
    }
    .amenity-item {
      padding: 1.4rem 1.2rem;
      border: 1px solid rgba(122,92,68,0.15);
      border-radius: 2px;
      transition: border-color 0.3s, background 0.3s;
      background-color: var(--stone);
      text-align: center;
    }
    .amenity-item:hover {
      border-color: var(--accent);
      background: rgba(200,131,74,0.04);
    }
    .amenity-icon { font-size: 1.4rem; display: block; margin-bottom: 0.6rem; }
    .amenity-name {
      font-size: 1.4rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--earth);
      display: block;
      font-family: 'Cormorant Garamond', serif;

    }
    .amenity-desc {
      font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem;
      line-height: 1.5;
    }
    .villa-info { padding-top: 1rem; }
    .villa-feature {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1rem 0; border-bottom: 1px solid rgba(122,92,68,0.1);
    }
    .villa-feature:last-child { border-bottom: none; }
    .villa-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0; margin-top: 0.4rem;
    }
    .villa-feature-text {
      font-size: 0.88rem; line-height: 1.6; color: var(--muted);
    }
    .villa-feature-text strong { color: var(--earth); font-weight: 500; }

    /* ── ACTIVIDADES ── */
    #actividades { background: var(--earth); color: var(--bone); overflow: hidden; }
    #actividades .section-title { color: var(--bone); }
    #actividades .section-body { color: rgba(237,230,220,0.6); }
    .activities-scroll {
      display: flex; gap: 1.5rem; margin-top: 3.5rem;
      overflow-x: auto; padding-bottom: 1rem;
      scrollbar-width: none;
    }
    .activities-scroll::-webkit-scrollbar { display: none; }
    .activity-card {
      flex: 0 0 300px; position: relative; overflow: hidden;
      border-radius: 2px; cursor: pointer;
    }
    .activity-img {
      height: 380px; width: 100%; object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .act-trochita { background:url('img/05.JPG')}
    .act-trevelin { background:url('https://chubutpatagonia.gob.ar/wp-content/uploads/2020/06/Trevelin_Mesa-de-trabajo-1.jpg')}
    .act-hielo    { background:url('img/03.JPG')}
    .act-piedra   { background:url('img/06.JPG')}
    .act-alerces  { background:url('img/IMG_20190317_164825.jpg')}
    .act-rafting  { background:url('img/01.JPG')}
    .act-trochita, .act-alerces, .act-piedra, .act-trevelin, .act-rafting, .act-hielo {
      background-size: cover;
      background-position: center center;
    }
    .activity-card:hover .activity-img,
    .activity-card:hover .act-trochita,
    .activity-card:hover .act-alerces,
    .activity-card:hover .act-piedra,
    .activity-card:hover .act-trevelin,
    .activity-card:hover .act-rafting,
    .activity-card:hover .act-hielo { transform: scale(1.04); }
    .activity-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,20,16,0.88) 0%, rgba(26,20,16,0.1) 60%);
    }
    .activity-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1.5rem;
    }
    .activity-dist {
      font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--accent); display: block; margin-bottom: 0.4rem;
    }
    .activity-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-weight: 300; color: var(--snow); display: block;
    }
    .activity-desc {
      font-size: 0.75rem; color: rgba(255,255,255,0.55);
      line-height: 1.5; margin-top: 0.4rem; display: block;
    }

    /* ── GALERÍA ── */
    #galeria { background: var(--stone); }
    .gallery-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 2.5rem;
    }
    .gallery-mosaic {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(3, 180px);
      gap: 3px;
    }
    .gp { overflow: hidden; cursor: pointer; }
    .gp:nth-child(1)  { grid-column: span 5;}
    .gp:nth-child(2)  { grid-column: span 4; }
    .gp:nth-child(3)  { grid-column: span 3; }
    .gp:nth-child(4)  { grid-column: span 2; }
    .gp:nth-child(5)  { grid-column: span 2; }
    .gp:nth-child(6)  { grid-column: span 3;}
    .gp:nth-child(7)  { grid-column: span 3;}
    .gp:nth-child(8)  { grid-column: span 4; }
    .gp:nth-child(9)  { grid-column: span 5; }
    .gp:nth-child(10) { grid-column: span 3; }
    .gp:nth-child(11) { grid-column: span 2; }
    .gp:nth-child(12) { grid-column: span 2; }

    .gal-img {
      width: 100%; 
      height: 100%; 
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .gp:hover .gal-img { transform: scale(1.06); }

    /* ── CAROUSEL ── */
    .carousel-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      border-radius: 2px;
      overflow: hidden;
      background: var(--bone);
    }
    .carousel-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 66.67%;
      overflow: hidden;
      background: var(--bark);
    }
    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .carousel-slide.active {
      opacity: 1;
    }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(122,92,68,0.7);
      color: var(--snow);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 2px;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    .carousel-btn:hover {
      background: rgba(122,92,68,1);
    }
    .carousel-prev {
      left: 15px;
    }
    .carousel-next {
      right: 15px;
    }
    .carousel-indicators {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    .indicator {
      width: 90%;
      height: 100%;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: none;
      cursor: pointer;
      transition: background 0.3s;
    }
    .indicator.active {
      background: rgba(255,255,255,1);
    }
    .indicator:hover {
      background: rgba(255,255,255,0.8);
    }

    /* Gallery label overlays */
    .gp { position: relative; }
    .gp-label {
      position: absolute; inset: 0; display: flex; align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem; font-style: italic; font-weight: 300;
      color: rgba(255,255,255,0.5); pointer-events: none;
      opacity: 0; transition: opacity 0.3s;
    }
    .gp:hover .gp-label { opacity: 1; }

    /* ── UBICACIÓN ── */
    #ubicacion { background: var(--bone); padding-bottom: 0; }
    .ubicacion-layout {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 4rem; align-items: start;
    }
    #imgCab,#imgMono2,#imgMono3, #imgCasa,#imgCabBañera {
      width: 100%;
      min-height: 320px;
      border-radius: 2px;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      background-color: rgba(237,230,220,0.45);
      transition: transform 0.45s ease, opacity 0.45s ease;
    }
    .img-appear {
      animation: imgAppear 0.45s ease forwards;
    }
    @keyframes imgAppear {
      from { opacity: 0; transform: scale(1.03); }
      to { opacity: 1; transform: scale(1); }
    }
    #CabInterior, #monoPos2, #monoPos3, #CasaPos, #CabBañera{
      text-align: center;
    }
    .map-container {
      width: 100%; height: 420px; border-radius: 2px; overflow: hidden;
      border: 1px solid rgba(122,92,68,0.15);
    }
    .map-container iframe {
      width: 100%; height: 100%; border: none;
    }
    .location-details { padding-top: 0.5rem; }
    .location-block {
      margin-top: 2rem; padding: 1.4rem;
      border: 1px solid rgba(122,92,68,0.12);
      border-radius: 2px;
      background-color: var(--stone);
    }
    .location-block-title {
      font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent); display: block; margin-bottom: 0.8rem;
    }
    .location-item {
      display: flex; gap: 0.8rem; align-items: flex-start;
      padding: 0.5rem 0; border-bottom: 1px solid rgba(122,92,68,0.08);
      font-size: 0.85rem; color: var(--muted); line-height: 1.5;
    }
    .location-item:last-child { border-bottom: none; }
    .location-item-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

    /* ── CONTACTO ── */
    #contacto {
      background: var(--earth); color: var(--bone);
      text-align: center;
    }
    #contacto .section-title { color: var(--bone); text-align: center; }
    #contacto .section-body { color: rgba(237,230,220,0.6); margin: 1.2rem auto 0; text-align: center; }
    .contact-grid {
      display: flex; justify-content: center; gap: 1.5rem;
      flex-wrap: wrap; margin-top: 3rem;
    }
    .contact-card {
      flex: 0 1 220px; padding: 2rem 1.5rem; text-align: center;
      border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
      transition: border-color 0.3s, background 0.3s;
      text-decoration: none;
    }
    .contact-card:hover {
      border-color: var(--accent);
      background: rgba(200,131,74,0.06);
    }
    .contact-card-icon { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; }
    .contact-card-label {
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--accent); display: block; margin-bottom: 0.4rem;
    }
    .contact-card-value {
      font-size: 0.9rem; color: var(--bone);
    }
    .contact-note {
      margin-top: 2.5rem; font-size: 0.78rem;
      color: rgba(237,230,220,0.4); letter-spacing: 0.06em;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 2.5rem 3rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 300; letter-spacing: 0.15em;
      text-transform: uppercase; color: rgba(237,230,220,0.5);
    }
    .footer-copy {
      font-size: 0.7rem; color: rgba(237,230,220,0.25);
      letter-spacing: 0.08em;
    }
    .footer-links { display: flex; gap: 1.8rem; list-style: none; }
    .footer-links a {
      color: rgba(245,240,235,0.92);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.3s;
    }
    /* .footer-links a:hover { color: var(--accent); } */

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
    }

    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
                  transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.12s; }
    .reveal-delay-2 { transition-delay: 0.24s; }
    .reveal-delay-3 { transition-delay: 0.36s; }

    #CabInterior, #monoPos2, #monoPos3, #CasaPos {
        font-size: 1.5em;
        font-family: 'Courier New', Courier, monospace;
    }

    .gc1  { background: url('img/galeria/01.jpg');}
    .gc2  { background: url('img/galeria/02.jpg');}
    .gc3  { background: url('img/galeria/03.jpg');}
    .gc4  { background: url('img/galeria/04.jpg');}
    .gc5  { background: url('img/galeria/05.jpg');}
    .gc6  { background: url('img/galeria/06.jpg');}
    .gc7  { background: url('img/galeria/07.jpeg');}
    .gc8  { background: url('img/galeria/08.jpeg');}
    .gc9  { background: url('img/galeria/09.jpeg');}
    .gc10 { background: url('img/galeria/10.jpeg');}
    .gc11 { background: url('img/galeria/11.jpeg');}
    .gc12 { background: url('img/galeria/12.jpeg');}

    .gc1, .gc2, .gc3, .gc4, .gc5, .gc6, .gc7, .gc8, .gc9, .gc10, .gc11, .gc12 {
      background-position: center center;
      background-repeat: no-repeat;
    }

@media (min-width: 320px) and (max-width: 480px){
  .stats-bar {
    height: 270px;
  }

  .hero {
    height: 100vh;
    height: 100%;          /* dvh descuenta la barra del browser en mobile */
    min-height: 0;           /* eliminar el mínimo fijo que causaba el desborde */
  }

  .hero-tag {
    display: inline-block;
    font-size: 2.5em;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  /* Contenido del hero más compacto */
  .hero-content {
    top:-30%;
    padding: 0 1rem 0.5rem !important;
  }

  .hero-title {
    font-size: 4em;
    line-height: 0.95;
  }

  .hero-subtitle {
    font-size: 1.54em;
    margin-top: 0.9rem;
    line-height: 1.2;
  }

  .hero-actions {
    margin-top: 1.5rem;
    gap: 0.65rem;
  }

  #cabanas, #actividades, #galeria, #ubicacion, #contacto {
    margin-top: 0%;
  }

  .cabana-card {
    aspect-ratio: 4/3.5;
  }

  .cabana-type {
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
    margin-bottom: 0.35rem;
    font-weight: bold;
    text-shadow: #1a1410 2px 2px 2px;
  }

  .cabana-info {
      text-align: center;
      padding: 0.5rem 0.5rem;
    }

  /* Botones apilados y ancho completo en XS */
  .btn-primary,
  .btn-ghost {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
  }

  .ubicacion-layout {
    gap: 1rem;
    text-align: center;
  }

  .detalles-cab{
    font-size: 1.46em;
    line-height: 1.5;
    text-align: start;
    font-family: 'Cormorant Garamond', serif;
  }

  /* Ocultar el indicador de scroll — no hay espacio */
  .hero-scroll { display: none; }

  /* Stats: una por fila */
  .stat-item { flex: 1 1 100%; }

  /* Secciones con menos padding lateral */
  section {
    margin-top: 150px;
    padding: 4rem 1rem;
  }

    .section-tag {
    font-size: 1.5rem;
  }


  footer {
    flex-wrap:nowrap;
  }

  .footer-links {
    gap: 0.35em;
  }
}

@media (max-width: 900px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }
  section { padding: 5rem 1.5rem; }
  .hero-content { padding: 0 1.5rem 5rem; }
  .hero-scroll { right: 1.5rem; }
  .cabanas-grid { grid-template-columns: 1fr; }
  .cabana-card:first-child { grid-row: span 1; aspect-ratio: 4/3; }
  .comodidades-layout { grid-template-columns: 1fr; gap: 1rem; }
  .ubicacion-layout { grid-template-columns: 1fr; }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gp { grid-column: span 1 !important; grid-row: span 1 !important; height: 180px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  footer { flex-direction: column; text-align: center; }
}

@media (min-width: 481px) and (max-width: 900px) {



  /* Hero: cubrir exactamente el viewport sin desbordar */
  .hero {
    margin-top: 160px;
    height: 100vh;
    height: 100dvh;          /* dvh descuenta la barra del browser en mobile */
    min-height: 0;           /* eliminar el mínimo fijo que causaba el desborde */
  }

  .hero-tag {
    display: inline-block;
    font-size: 2.5em;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  /* Contenido del hero más compacto */
  .hero-content {
    padding: 0 1rem 3.5rem;
  }

  .hero-title {
    font-size: 4em;
    line-height: 0.95;
  }

  .hero-subtitle {
    font-size: 1.54em;
    margin-top: 0.9rem;
    line-height: 1.2;
  }

  .hero-actions {
    margin-top: 1.5rem;
    gap: 0.65rem;
  }

  /* Botones apilados y ancho completo en XS */
  .btn-primary,
  .btn-ghost {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
  }

  /* Ocultar el indicador de scroll — no hay espacio */
  .hero-scroll { display: none; }

  /* Stats: una por fila */
  .stat-item { flex: 1 1 100%; }

  /* Secciones con menos padding lateral */
  section { padding: 4rem 1rem; }

}

@media(min-width:1200px){
  .nav-logo {
    font-size: 1.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
  }
  .nav-links a {
    font-size: 1.05rem;
  }

  .hero {
    margin-top:0px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-tag {
    font-size: 2.75em;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-subtitle {
    font-size: 2.0rem;
  }

  .amenity-name {
    font-size: 1.2em;
  }
  .stats-bar {
    flex-wrap:nowrap;
    height: 100px;
  }

  #CabInterior, #monoPos, #CasaPos {
      font-size: 1.8em;
      height: 50px;
  }

  .section-body {
    font-size: 1.5em;
    line-height: 1.5;
    height: 60px;
  }

  .section-title {
    margin-top: 50px;
  }

  .section-tag {
    font-size: 1.68rem;
  }

  .comodidades-layout{
    height: 100%;
    padding: 10px;
  }

  .cabana-info {
    font-size: 2em;
  }

  .comodidades-layout h2{
    font-size: 2.5em;
  }

  .ubicacion-layout {
    height: 100vh;
    gap: 1rem;
  }
}