  :root {
    --rojo: #c13a2a;
    --tierra: #8b5e3c;
    --oro: #c9973a;
    --crema: #f5ede0;
    --verde: #2d4a2a;
    --blanco: #fdfaf5;
    --carbon: #1e160c;
    --texto: #3a2c1e;
    --termal: #3d7a7a;
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }



  /* ── HERO ── */
  .hero {
    height:100vh; position:relative;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
  }
  .hero-img {
    position:absolute; inset:0;
    background:url('../img/quechua-lodge-lares-vista-panoramica-del-valle.webp') center/cover no-repeat;
    transform:scale(1.06);
    animation:slowzoom 14s ease-out forwards;
  }
  @keyframes slowzoom { to { transform:scale(1); } }
  .hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(
      to bottom,
      rgba(20,12,4,.3) 0%,
      rgba(20,12,4,.2) 40%,
      rgba(20,12,4,.75) 100%
    );
  }
  .hero-body {
    position:relative; text-align:center; padding:2rem;
    animation:fadeup 1s .5s both;
  }
  @keyframes fadeup { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:none; } }
  .hero-eyebrow {
    font-size:.6rem; letter-spacing:.4em; text-transform:uppercase;
    color:var(--oro); margin-bottom:1.2rem; display:block; font-weight:400;
  }
  .hero h1 {
    font-family:'Nunito', serif;
    font-size:clamp(3rem, 8vw, 6rem);
    color:#fff; line-height:.95; font-weight:400;
  }
  .hero h1 span { font-style:italic; color:rgba(255,255,255,.7); font-size:clamp(1.8rem, 5vw, 3.2rem); display:block; margin-top:.3rem; }
  .hero-sep {
    width:50px; height:1px; background:var(--oro);
    margin:1.8rem auto; display:block;
  }
  .hero-desc {
    font-family:'Open Sans', serif;
    font-size:clamp(0.8rem, 2.2vw, 1.1rem); color:rgba(245,237,224,.85);
    line-height:1.7; max-width:540px; margin:0 auto 2.2rem; font-weight:300;
  }
  .hero-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
  .btn-hero {
    padding:.85rem 2.2rem; font-size:.70rem; letter-spacing:.2em;
    text-transform:uppercase; font-weight:600; cursor:pointer;
    transition:all .25s; text-decoration:none; display:inline-block;
  }
  .btn-hero.solid { background:var(--rojo); color:white; border:2px solid var(--rojo); }
  .btn-hero.solid:hover { background:transparent; color:white; }
  .btn-hero.ghost { background:transparent; color:white; border:2px solid rgba(255,255,255,.4); }
  .btn-hero.ghost:hover { border-color:var(--oro); color:var(--oro); }

  .hero-chips {
    position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%);
    display:flex; gap:1rem; flex-wrap:wrap; justify-content:center;
    animation:fadeup 1s 1.2s both;
  }
  .chip {
    background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
    color:rgba(245,237,224,.8); padding:.35rem .9rem;
    font-size:.58rem; letter-spacing:.15em; text-transform:uppercase;
    backdrop-filter:blur(4px);
  }

  /* ── SECTIONS ── */
  .sec { padding:5.5rem 2rem; }
  .sec-inner { max-width:1150px; margin:0 auto; }
  .sec-label {
    font-size:.6rem; letter-spacing:.35em; text-transform:uppercase;
    color:var(--oro); font-weight:600; display:block; margin-bottom:.7rem;
  }
  .sec-title {
    font-family:'Playfair Display', serif;
    font-size:clamp(2rem, 4vw, 3rem); line-height:1.05; font-weight:400;
  }
  .sec-title em { font-style:italic; color:var(--rojo); }
  .sec-bar {
    width:48px; height:2px;
    background:linear-gradient(to right, var(--rojo), transparent);
    margin:1.2rem 0 1.8rem;
  }
  .sec-title.room{font-size:clamp(1.8rem, 3vw, 1rem); line-height:1.05; font-weight:400;}
  .sec-title.contacto{font-size:clamp(1.8rem, 3vw, 1.2rem); line-height:1.05; font-weight:400; margin-bottom: 15px;}

  /* ── ROOMS ── */
  .rooms-bg { background:var(--crema); }
  .rooms-head { text-align:center; margin-bottom:3rem; }
  .rooms-head .sec-bar { margin:1.2rem auto 1.8rem; }
  .rooms-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
  }
  .room-card {
    background:white; overflow:hidden;
    transition:transform .35s, box-shadow .35s;
    border-bottom:3px solid transparent;
  }
  .room-card:hover {
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(30,22,12,.12);
    border-bottom-color:var(--rojo);
  }
  .room-photo { height:220px; overflow:hidden; position:relative; }
  .room-photo img {
    width:100%; height:100%; object-fit:cover;
    transition:transform .6s;
  }
  .room-card:hover .room-photo img { transform:scale(1.06); }
  .room-badge {
    position:absolute; top:1rem; left:1rem;
    font-size:.55rem; letter-spacing:.2em; text-transform:uppercase;
    font-weight:600; padding:.3rem .8rem; color:white;
  }
  .badge-single { background:var(--rojo); }
  .badge-double { background:var(--terra,#7a4e2a); background:var(--tierra); }
  .badge-family { background:var(--verde); }
  .room-body { padding:1.6rem; }
  .room-body h3 {
    font-family:'Nunito', serif; font-size:1.3rem; font-weight:400;
    margin-bottom:.25rem;
  }
  .room-sub {
    font-family:'Open Sans', serif;
    color:var(--termal); font-size:.85rem; margin-bottom:.8rem;
  }
  .room-desc { font-size:.75rem; line-height:1.7; color:#5a4030; margin-bottom:1.1rem; }
  .room-tags { display:flex; flex-wrap:wrap; gap:.35rem; margin-bottom:1.2rem; }
  .rtag {
    font-size:.60rem; letter-spacing:.1em; text-transform:uppercase;
    background:var(--crema); color:var(--tierra);
    padding:.22rem .6rem; border:1px solid rgba(139,94,60,.15);
  }
  .room-footer {
    border-top:1px solid rgba(139,94,60,.1); padding-top:1rem;
    display:flex; align-items:center; justify-content:space-between;
  }
  .room-price {
    font-family:'Nunito', serif; font-size:1.5rem; color:var(--oro);
  }
  .room-price small { font-family:'Josefin Sans', sans-serif; font-size:.6rem; color:#9a8060; font-weight:300; }
.btn-book.btn-book-room{
    padding: 5px 12px;
}
  /* ── TERMAS ── */
  .termas-sec {
    background:var(--carbon); color:var(--crema); padding:0; overflow:hidden;
  }
  .termas-inner {
    display:grid; grid-template-columns:1fr 1fr; min-height:550px;
  }
  .termas-photo {
    position:relative; overflow:hidden;
  }
  .termas-photo img {
    width:100%; height:100%; object-fit:cover; display:block;
    filter:brightness(.85);
    transition:transform .6s;
  }
  .termas-photo:hover img { transform:scale(1.04); }
  .termas-photo::after {
    content:''; position:absolute; inset:0;
    background:linear-gradient(to right, transparent 60%, var(--carbon) 100%);
  }
  .termas-content {
    padding:4rem 3rem 4rem 2.5rem;
    display:flex; flex-direction:column; justify-content:center;
  }
  .termas-content .sec-bar { background:linear-gradient(to right, var(--termal), transparent); }
  .termas-content .sec-title { color:white; }
  .termas-content .sec-title em { color:var(--termal); font-style:italic; }
  .termas-content p {
    font-family:'Open Sans', serif; font-size:0.95rem;
    line-height:1.9; color:rgba(245,237,224,.75); margin-bottom:1rem; font-weight:300;
  }
  .termas-dist {
    display:inline-flex; align-items:center; gap:.8rem;
    background:rgba(61,122,122,.2); border:1px solid rgba(61,122,122,.4);
    padding:.65rem 1.4rem; color:var(--termal);
    font-size:.65rem; letter-spacing:.2em; text-transform:uppercase;
    margin-top:1rem; font-weight:600;
  }
  .termas-list { list-style:none; margin-top:1.5rem; display:grid; grid-template-columns:1fr 1fr; gap:.6rem; }
  .termas-list li {
    font-size:.7rem; color:rgba(245,237,224,.6);
    display:flex; align-items:center; gap:.5rem; letter-spacing:.06em;
  }
  .termas-list li::before { content:'◆'; color:var(--termal); font-size:.45rem; }

  /* ── CONTACT ── */
  .contact-sec { background:var(--verde); color:var(--crema); }
  .contact-head { text-align:center; margin-bottom:3rem; }
  .contact-head .sec-title { color:white; }
  .contact-head .sec-bar { margin:1.2rem auto 0; background:linear-gradient(to right, var(--oro), transparent); }
  .contact-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:2rem;
  }
  .contact-card {
    background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
    padding:2rem 1.8rem;
    transition:background .3s;
  }
  .contact-card:hover { background:rgba(255,255,255,.1); }
  .contact-icon { font-size:1.8rem; margin-bottom:1rem; display:block; }
  .contact-card h4 {
    font-family:'Playfair Display', serif; font-size:1rem; font-weight:400;
    color:var(--oro); margin-bottom:.9rem; letter-spacing:.04em;
  }
  .contact-card p, .contact-card a {
    font-size:.75rem; line-height:2; color:rgba(245,237,224,.65);
    text-decoration:none; display:block; font-weight:300; letter-spacing:.04em;
  }
  .contact-card a:hover { color:var(--oro); }
  .contact-card .highlight {
    color:rgba(245,237,224,.9); font-weight:400;
  }

  /* Horarios table */
  .horarios {
    width:100%; border-collapse:collapse; margin-top:.5rem;
  }
  .horarios td {
    font-size:.72rem; padding:.45rem 0; color:rgba(245,237,224,.65);
    border-bottom:1px solid rgba(255,255,255,.07);
    font-weight:300; letter-spacing:.04em;
  }
  .horarios td:last-child { text-align:right; color:rgba(245,237,224,.9); font-weight:400; }

  /* WhatsApp floating */
  .wa-float {
    position:fixed; bottom:2rem; right:2rem; z-index:200;
    background:#25d366; color:white;
    width:56px; height:56px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.6rem; text-decoration:none;
    box-shadow:0 4px 20px rgba(37,211,102,.4);
    transition:transform .2s, box-shadow .2s;
  }
  .wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.5); }

  /* Footer */
  footer {
    background:#100c06; padding:2rem;
    text-align:center; color:rgba(245,237,224,.25);
    font-size:.4rem; letter-spacing:.12em;
    border-top:1px solid rgba(201,151,58,.1);
  }
  footer a { color:var(--oro); text-decoration:none; }

  @media(max-width:900px){
    nav { padding:.9rem 1.2rem; }
    .nav-links { display:none; }
    .rooms-grid { grid-template-columns:1fr; }
    .termas-inner { grid-template-columns:1fr; }
    .termas-photo { height:280px; }
    .termas-photo::after { display:none; }
    .contact-grid { grid-template-columns:1fr; }
  }

   .tres-cols-sec {
    background: #f9f4ed;
    padding: 5rem 2rem;
    border-top: 3px solid rgba(193,58,42,.08);
  }
  .tres-cols-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .col-card {
    background: #fff;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    border-radius: 2px;
    display: flex; flex-direction: column;
  }
  .col-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30,22,12,.12);
  }
  .col-photo {
    height: 230px; overflow: hidden; position: relative; flex-shrink: 0;
  }
  .col-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s;
  }
  .col-card:hover .col-photo img { transform: scale(1.06); }
  .col-badge {
    position: absolute; top: 1rem; left: 1rem;
    font-size: .57rem; letter-spacing: .2em; text-transform: uppercase;
    font-weight: 700; padding: .28rem .8rem; color: white;
    font-family: 'Josefin Sans', sans-serif;
  }
  .badge-aloj { background: #c13a2a; }
  .badge-rest { background: #8b5e3c; }
  .badge-mini { background: #2d4a2a; }

  .col-body {
    padding: 1.7rem 1.6rem 2rem;
    flex: 1; display: flex; flex-direction: column;
  }
  .col-icon { font-size: 1.6rem; margin-bottom: .5rem; }
  .col-body h3 {
    font-family: 'Nunito', serif;
    font-size: 1.4rem; font-weight: 400; color: #1e160c;
    margin-bottom: .4rem;
  }
  .col-intro {
    font-family: 'Open Sans', serif;
    font-size: .82rem; line-height: 1.75; color: #6a5030;
    margin-bottom: 1rem; font-weight: 400;
  }
  .col-list {
    list-style: none; display: flex; flex-direction: column;
    gap: .38rem; margin-bottom: 1.1rem; flex: 1;
  }
  .col-list li {
    font-family: "Open Sans";
    font-size: .73rem; color: #5a4030; line-height: 1.5;
    display: flex; align-items: flex-start; gap: .5rem;
    letter-spacing: .03em;
  }
  .col-list li em { color: #8b5e3c; font-style: italic; }
  .list-dot { color: #c9973a; font-size: .45rem; margin-top: .35rem; flex-shrink: 0; }
  .mini-section-title {
    font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
    font-weight: 700; color: #8b5e3c; margin-bottom: .5rem;
    padding-bottom: .3rem; border-bottom: 1px solid rgba(139,94,60,.15);
  }

  .col-horario {
    background: #f5ede0; padding: .8rem 1rem;
    margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .3rem;
  }
  .horario-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .7rem; color: #6a5030; letter-spacing: .04em;
  }
  .horario-row strong { color: #1e160c; font-weight: 600; }

  .col-btn {
    display: inline-block; text-align: center;
    background: #c13a2a; color: white;
    padding: .65rem 1.2rem;
    font-size: .63rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 700; text-decoration: none;
    transition: background .25s; margin-top: auto;
  }
  .col-btn:hover { background: #a02d1f; color: #fff;  }
  .col-btn-rest { background: #8b5e3c; }
  .col-btn-rest:hover { background: #6a4528; }

  /* ── PICNIC ── */
  :root { --verde-picnic: #3a6b35; }
  .picnic-sec {
    background: #fff;
    padding: 0;
    overflow: hidden;
  }
  .picnic-grid {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 0;
    align-items: stretch;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  /* Slider */
  .picnic-slider-wrap {
    position: relative; overflow: hidden;
    min-height: 540px;
  }
  .picnic-slider {
    position: relative; width: 100%; height: 100%;
  }
  .pslide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity .7s ease;
    pointer-events: none;
  }
  .pslide.active { opacity: 1; pointer-events: auto; }
  .pslide img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }
  .pslide-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(30,22,12,.45); color: white;
    border: none; width: 42px; height: 42px;
    font-size: 1.1rem; cursor: pointer;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
  }
  .pslide-btn:hover { background: rgba(193,58,42,.8); }
  .pslide-prev { left: 1rem; }
  .pslide-next { right: 1rem; }
  .pslide-dots {
    position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: .5rem;
  }
  .pdot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.45); cursor: pointer;
    transition: background .3s, transform .3s;
    border: none;
  }
  .pdot.active {
    background: #fff; transform: scale(1.25);
  }

  /* Picnic content */
  .picnic-content {
    padding: 4rem 3.5rem 4rem 3rem;
    background: #f5ede0;
    display: flex; flex-direction: column; justify-content: center;
  }
  .picnic-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400; line-height: 1.05; color: #1e160c;
    margin-bottom: .2rem;
  }
  .picnic-title em { font-style: italic; color: var(--verde-picnic); }
  .picnic-bar {
    width: 48px; height: 2px;
    background: linear-gradient(to right, var(--verde-picnic), transparent);
    margin: 1.1rem 0 1.5rem;
  }
  .picnic-desc {
    font-family: 'Open Sans', serif;
    font-size: 0.95rem; line-height: 1.85; color: #5a4030;
    margin-bottom: .9rem; font-weight: 400;
  }

  .picnic-highlight {
    background: rgba(61,122,122,.08); border-left: 3px solid #3d7a7a;
    padding: 1rem 1.2rem;
    display: flex; gap: .9rem; align-items: flex-start;
    margin: 1.2rem 0;
  }
  .ph-icon { font-size: 1.4rem; flex-shrink: 0; }
  .picnic-highlight strong {
    font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
    color: #3d7a7a; display: block; margin-bottom: .25rem; font-weight: 700;
  }
  .picnic-highlight p {
    font-size: .74rem; color: #6a5030; line-height: 1.6;
  }

  .picnic-includes {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .5rem .8rem; margin-bottom: 1.8rem;
  }
  .pi-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .71rem; color: #5a4030; letter-spacing: .04em;
  }
  .pi-item > span:first-child { font-size: 1rem; }

  .picnic-cta {
    display: inline-block;
    background: var(--verde-picnic); color: white;
    padding: .85rem 2rem;
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    font-weight: 700; text-decoration: none;
    transition: background .25s; align-self: flex-start;
  }
  .picnic-cta:hover { background: #2a5025; color: white;}

  .top-habitacion{ background-color: #000000e8; height: 14vh;}

  .galeria-top{ margin-top: 12px;}

  /* Footer */
  footer {
    background:#100c06;
    border-top:1px solid rgba(201,151,58,.12);
    text-align: left;
  }
  .footer-main {
    max-width:1150px; margin:0 auto;
    padding:3.5rem 2rem 2.5rem;
    display:grid; grid-template-columns:1.6fr 1fr 1fr;
    gap:3rem;
  }
  .footer-brand .fname {
   
    font-size:1.35rem; color:var(--crema);
    letter-spacing:.04em; display:block; margin-bottom:.15rem;
  }
  .footer-brand .fsub {
    font-size:.58rem; letter-spacing:.28em; text-transform:uppercase;
    color:var(--oro); font-weight:300; display:block; margin-bottom:1.1rem;
  }
  .footer-brand p {
    line-height:1.85;
    color:rgba(245,237,224,.4); font-weight:300;
    max-width:280px;
  }
  .footer-contact { margin-top:1.3rem; display:flex; flex-direction:column; gap:.45rem; }
  .footer-contact a, .footer-contact span {
    font-size:.8rem; color:rgba(245,237,224,.45);
    text-decoration:none; letter-spacing:.05em;
    transition:color .2s; display:flex; align-items:center; gap:.5rem;
  }
  .footer-contact a:hover { color:var(--oro); }
  .footer-contact .fci { font-size:.85rem; }

  .footer-col h4 {
    font-size:.6rem; letter-spacing:.3em; text-transform:uppercase;
    color:var(--oro); font-weight:700; margin-bottom:1.1rem;
    padding-bottom:.6rem; border-bottom:1px solid rgba(201,151,58,.2);
  }
  .footer-links { list-style:none; display:flex; flex-direction:column; gap:.55rem; }
  .footer-links li a {
    font-size:.8rem; 
    color:rgba(245,237,224,.4);
    text-decoration:none; letter-spacing:.08em;
    transition:color .2s, padding-left .2s;
    display:flex; align-items:center; gap:.5rem;
  }
  .footer-links li a::before {
    content:''; width:12px; height:1px;
    background:rgba(201,151,58,.35); flex-shrink:0;
    transition:width .2s, background .2s;
  }
  .footer-links li a:hover { color:var(--crema); padding-left:.3rem; }
  .footer-links li a:hover::before { width:18px; background:var(--oro); }

  .footer-sched { display:flex; flex-direction:column; gap:.45rem; margin-bottom:1.2rem; }
  .fsched-row { display:flex; justify-content:space-between; align-items:center; }
  .fsched-row span { font-size:.8rem;  color:rgba(245,237,224,.35); letter-spacing:.06em; }
  .fsched-row strong { font-size:.8rem; color:rgba(245,237,224,.6); font-weight:500; }

  .footer-bar {
    border-top:1px solid rgba(255,255,255,.05);
    padding:1.2rem 2rem;
    max-width:1150px; margin:0 auto;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.8rem;
  }
  .footer-bar p {
    font-size:.78rem; color:rgba(245,237,224,.2);
    letter-spacing:.1em;
  }
  .footer-bar a { color:rgba(201,151,58,.5); text-decoration:none; transition:color .2s; }
  .footer-bar a:hover { color:var(--oro); }
  .footer-socials { display:flex; gap:.8rem; }
  .footer-socials a {
    width:30px; height:30px; border:1px solid rgba(255,255,255,.1);
    display:flex; align-items:center; justify-content:center;
    font-size:.85rem; color:rgba(245,237,224,.35); text-decoration:none;
    transition:all .2s; border-radius:2px;
  }
  .footer-socials a:hover { border-color:var(--oro); color:var(--oro); }

  @media (max-width: 991px) {
    .tres-cols-inner { grid-template-columns: 1fr; }
    .picnic-grid { grid-template-columns: 1fr; }
    .picnic-slider-wrap { min-height: 320px; }
    .picnic-content { padding: 2.5rem 1.5rem; }
     .top-habitacion{ background-color: #000000e8; height: 7vh;}
     .galeria-top{ margin-top: 5px;}
     .footer-main { grid-template-columns:1fr; gap:2rem; padding:2.5rem 1.5rem; }
    .footer-bar { flex-direction:column; text-align:center; }
  }