:root{
  --forest:#4a3f30;
  --forest-dark:#241f19;
  --cream:#faf6ef;
  --stone:#f1e9da;
  --mustard:#ab9f8c;
  --mustard-dark:#867a64;
  --text:#2e2b27;
  --muted:#84806f;
  --white:#ffffff;
  --radius:14px;
  --shadow:0 10px 30px rgba(46,41,35,.10);
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.6;
}
h1,h2,h3,h4{font-family:'Cormorant Garamond',serif;font-weight:600;color:var(--forest-dark);}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}
.eyebrow{
  text-transform:uppercase;letter-spacing:.14em;font-size:.75rem;font-weight:600;
  color:var(--mustard-dark);margin-bottom:10px;display:block;
}
.btn{
  display:inline-flex;align-items:center;gap:8px;padding:14px 26px;border-radius:999px;
  font-weight:600;font-size:.95rem;transition:all .2s ease;border:2px solid transparent;cursor:pointer;
}
.btn-primary{background:var(--mustard);color:var(--white);}
.btn-primary:hover{background:var(--mustard-dark);transform:translateY(-2px);}
.btn-outline{border-color:var(--white);color:var(--white);}
.btn-outline:hover{background:var(--white);color:var(--forest-dark);}
.btn-dark{background:var(--forest);color:var(--white);}
.btn-dark:hover{background:var(--forest-dark);}
.btn-outline-dark{border-color:var(--forest);color:var(--forest);}
.btn-outline-dark:hover{background:var(--forest);color:var(--white);}
.btn-small{padding:10px 18px;font-size:.85rem;}

/* HEADER */
header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(250,246,239,.96);
  backdrop-filter:blur(8px);
  transition:box-shadow .3s ease, padding .3s ease;
  padding:16px 0;
  box-shadow:0 2px 16px rgba(46,41,35,.07);
}
header.solid, header.scrolled{box-shadow:0 4px 22px rgba(46,41,35,.12);padding:12px 0;}
header .container{max-width:1400px;}
.nav-wrap{display:flex;align-items:center;gap:24px;}
.logo{display:flex;align-items:center;gap:8px;font-family:'Cormorant Garamond',serif;font-weight:600;font-size:1.12rem;color:var(--text);letter-spacing:.02em;text-transform:uppercase;flex-shrink:0;white-space:nowrap;}
.logo span{color:var(--mustard-dark);}
.logo-mark{flex-shrink:0;color:var(--mustard-dark);}
.footer-logo{display:flex;align-items:center;gap:10px;}
.footer-logo .logo-mark{color:var(--mustard);}
nav{margin-left:auto;}
nav ul{list-style:none;display:flex;gap:18px;flex-wrap:wrap;justify-content:flex-end;}
nav a{color:var(--text);font-weight:500;font-size:.78rem;opacity:.72;letter-spacing:.02em;text-transform:uppercase;white-space:nowrap;}
nav a:hover, nav a.active{opacity:1;color:var(--mustard-dark);}
.nav-actions{display:flex;align-items:center;gap:14px;flex-shrink:0;}
.icon-btn{
  width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:rgba(46,41,35,.06);color:var(--text);transition:background .2s, color .2s;
}
.icon-btn:hover{background:var(--mustard-dark);color:var(--white);}
.burger{display:none;background:none;border:none;color:var(--text);font-size:1.6rem;cursor:pointer;}

/* LANGUAGE SWITCHER */
.lang-switch{display:flex;align-items:center;gap:2px;background:rgba(46,41,35,.06);border-radius:999px;padding:3px;flex-shrink:0;}
.lang-switch button{
  border:none;background:none;color:var(--muted);font-size:.72rem;font-weight:700;letter-spacing:.03em;
  padding:6px 10px;border-radius:999px;cursor:pointer;transition:background .2s, color .2s;
}
.lang-switch button:hover{color:var(--text);}
.lang-switch button.active{background:var(--forest);color:var(--white);}

/* BACK BUTTON */
.back-btn{
  display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.14);color:var(--white);
  border:1px solid rgba(255,255,255,.4);border-radius:999px;padding:8px 16px;font-size:.82rem;font-weight:600;
  cursor:pointer;margin-bottom:16px;transition:background .2s;text-shadow:none;
}
.back-btn:hover{background:rgba(255,255,255,.26);}
@media(max-width:760px){
  .back-btn{display:none;}
}

@media(max-width:1180px){
  nav{position:fixed;top:0;right:-100%;width:78%;max-width:320px;height:100vh;background:var(--forest-dark);
    padding:100px 32px 32px;transition:right .3s ease;overflow-y:auto;}
  nav.open{right:0;}
  nav ul{flex-direction:column;gap:24px;}
  nav a{color:rgba(255,255,255,.92) !important;opacity:1;font-size:.95rem;}
  .burger{display:block;}
}

/* HERO (home) - peek carousel */
.hero-carousel{position:relative;margin-top:78px;background:var(--cream);padding:28px 0;}
.hero-carousel-track{
  display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:0 12vw;-webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.hero-carousel-track::-webkit-scrollbar{display:none;}
.hero-slide{
  flex:0 0 auto;width:60vw;max-width:460px;height:72vh;max-height:640px;
  scroll-snap-align:center;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
}
.hero-slide img{width:100%;height:100%;object-fit:cover;display:block;}
.hero-nav{
  position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.92);color:var(--forest-dark);display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:1.3rem;border:none;box-shadow:var(--shadow);z-index:5;
}
.hero-nav.prev{left:16px;} .hero-nav.next{right:16px;}
.hero-nav:hover{background:var(--mustard);color:var(--white);}
@media(max-width:700px){
  .hero-carousel{margin-top:68px;padding:20px 0;}
  .hero-carousel-track{padding:0 8vw;gap:14px;}
  .hero-slide{width:78vw;height:52vh;}
  .hero-nav{width:36px;height:36px;font-size:1.1rem;}
}
.hero-intro{background:var(--cream);padding:64px 0 88px;}
.hero-intro .eyebrow{color:var(--mustard-dark);}
.hero-intro h1{font-size:clamp(2.2rem,4.6vw,3.4rem);color:var(--forest-dark);line-height:1.15;margin-bottom:18px;max-width:780px;}
.hero-intro p{font-size:1.1rem;color:var(--muted);margin-bottom:32px;max-width:640px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:16px;}
.hero-stats{display:flex;gap:40px;margin-top:48px;flex-wrap:wrap;}
.hero-stats div{color:var(--text);}
.hero-stats strong{display:block;font-family:'Cormorant Garamond',serif;font-weight:600;font-size:1.9rem;color:var(--mustard-dark);}
.hero-stats span{font-size:.85rem;color:var(--muted);}

/* SUBPAGE HERO */
.subhero{
  position:relative;padding:170px 0 90px;color:var(--white);
  background:linear-gradient(180deg, rgba(20,17,14,.6), rgba(20,17,14,.8));
  background-size:cover;background-position:center;
}
.subhero .eyebrow{
  display:inline-block;color:var(--white);background:rgba(0,0,0,.38);padding:5px 14px;border-radius:999px;
  text-shadow:none;
}
.subhero h1{color:var(--white);font-size:clamp(2rem,4.4vw,3rem);margin-bottom:14px;text-shadow:0 2px 14px rgba(0,0,0,.55);}
.subhero p{color:rgba(255,255,255,.95);max-width:640px;font-size:1.05rem;text-shadow:0 1px 8px rgba(0,0,0,.5);}
.breadcrumb{font-size:.82rem;color:rgba(255,255,255,.8);margin-bottom:16px;text-shadow:0 1px 6px rgba(0,0,0,.5);}
.breadcrumb a{color:rgba(255,255,255,.92);}
.breadcrumb a:hover{color:var(--mustard);}

/* PAGE HEADER (sin foto de portada) */
.page-header{padding:140px 0 44px;background:var(--cream);}
.page-header .breadcrumb{color:var(--muted);text-shadow:none;}
.page-header .breadcrumb a{color:var(--forest);}
.page-header .breadcrumb a:hover{color:var(--mustard-dark);}
.page-header .back-btn{background:var(--stone);color:var(--forest-dark);border:1px solid var(--stone);text-shadow:none;}
.page-header .back-btn:hover{background:var(--mustard);color:var(--white);}
.page-header h1{color:var(--forest-dark);font-size:clamp(2rem,4.4vw,3rem);margin-bottom:14px;text-shadow:none;}
.page-header p{color:var(--muted);max-width:640px;font-size:1.05rem;text-shadow:none;}
@media(max-width:760px){.page-header{padding:112px 0 32px;}}

/* SECTION GENERAL */
section{padding:96px 0;}
.section-head{max-width:680px;margin-bottom:56px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{
  font-size:clamp(1.9rem,3.6vw,2.7rem);font-weight:500;color:var(--mustard-dark);
  letter-spacing:.03em;text-transform:uppercase;
}
.section-head p{color:var(--muted);margin-top:14px;font-size:1.05rem;}

/* FEATURES */
.features{background:var(--white);}
.feat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;}
.feat-card{text-align:center;padding:32px 20px;border-radius:var(--radius);background:var(--stone);}
.feat-icon{
  width:56px;height:56px;border-radius:50%;background:var(--forest);color:var(--white);
  display:flex;align-items:center;justify-content:center;margin:0 auto 18px;font-size:1.4rem;
}
.feat-card h4{font-size:1.05rem;margin-bottom:8px;}
.feat-card p{color:var(--muted);font-size:.92rem;}
@media(max-width:900px){.feat-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.feat-grid{grid-template-columns:1fr;}}

section.features-compact{padding:44px 0;}
.features-compact .section-head{margin-bottom:24px;}
.features-compact .section-head h2{font-size:clamp(1.3rem,2.2vw,1.7rem);}
.features-compact .feat-grid{gap:14px;}
.features-compact .feat-card{padding:16px 12px;}
.features-compact .feat-icon{width:38px;height:38px;font-size:1rem;margin-bottom:8px;}
.features-compact .feat-card h4{font-size:.86rem;margin-bottom:3px;}
.features-compact .feat-card p{font-size:.76rem;line-height:1.4;}

/* APARTMENTS */
.apts{background:var(--cream);}
.apt-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;}
@media(max-width:980px){.apt-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:640px){.apt-grid{grid-template-columns:1fr;}}

.apt-card{
  background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
  display:flex;flex-direction:column;
}
.apt-slider{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--stone);}
.apt-slides{display:flex;height:100%;transition:transform .4s ease;}
.apt-slides img{width:100%;height:100%;object-fit:cover;flex-shrink:0;}
.apt-nav{
  position:absolute;top:50%;transform:translateY(-50%);width:34px;height:34px;border-radius:50%;
  background:rgba(21,33,25,.55);color:var(--white);display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:1rem;border:none;
}
.apt-nav.prev{left:10px;} .apt-nav.next{right:10px;}
.apt-dots{position:absolute;bottom:10px;left:0;right:0;display:flex;justify-content:center;gap:6px;}
.apt-dots span{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.55);}
.apt-dots span.active{background:var(--mustard);}
.apt-badge{
  position:absolute;top:12px;left:12px;background:rgba(255,255,255,.92);color:var(--forest-dark);
  padding:5px 12px;border-radius:999px;font-size:.78rem;font-weight:700;display:flex;align-items:center;gap:4px;
}
.apt-body{padding:24px;display:flex;flex-direction:column;gap:12px;flex:1;}
.apt-body h3{font-size:1.25rem;}
.apt-loc{font-size:.85rem;color:var(--mustard-dark);font-weight:600;}
.apt-meta{display:flex;flex-wrap:wrap;gap:10px;font-size:.82rem;color:var(--muted);}
.apt-meta span{background:var(--stone);padding:4px 10px;border-radius:999px;}
.apt-desc{color:var(--muted);font-size:.92rem;flex:1;}
.apt-foot{display:flex;align-items:center;justify-content:space-between;margin-top:8px;gap:10px;}
.apt-foot .btn{padding:11px 18px;font-size:.85rem;flex:1;justify-content:center;}

/* APARTMENTS - DETAIL LIST (departamentos.html) */
.apt-detail-list{display:flex;flex-direction:column;gap:28px;}
.apt-detail-row{
  display:flex;gap:0;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
}
.apt-detail-photo{position:relative;flex:0 0 46%;min-width:0;aspect-ratio:4/3;overflow:hidden;background:var(--stone);}
.apt-detail-body{padding:30px 36px;display:flex;flex-direction:column;gap:10px;justify-content:center;flex:1;min-width:0;}
.apt-detail-body h3{font-size:1.5rem;}
.apt-detail-body .apt-loc{font-size:.85rem;}
.apt-detail-body .apt-desc{font-size:.95rem;line-height:1.65;}
.apt-detail-body .btn{align-self:flex-start;margin-top:8px;}
.apt-detail-foot{display:flex;flex-wrap:wrap;gap:12px;margin-top:8px;}
.apt-detail-foot .btn{margin-top:0;}
@media(max-width:760px){
  .apt-detail-row{flex-direction:column;}
  .apt-detail-photo{flex:none;width:100%;}
  .apt-detail-body{padding:22px;}
  .apt-detail-foot{flex-direction:column;}
  .apt-detail-foot .btn{width:100%;justify-content:center;}
}

/* ABOUT / UBICACION (light warm band) */
.about{background:var(--stone);color:var(--text);}
.about .section-head p{color:var(--muted);}
.loc-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
@media(max-width:820px){.loc-grid{grid-template-columns:1fr;}}
.loc-card{
  background:var(--white);border:1px solid rgba(46,41,35,.08);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow);
}
.loc-card h4{color:var(--mustard-dark);font-size:1.15rem;margin-bottom:8px;}
.loc-card p{color:var(--muted);font-size:.92rem;margin-bottom:16px;}
.loc-card iframe{width:100%;height:220px;border:0;border-radius:10px;}
.close-list{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:24px;}
.close-list li{color:var(--text);font-size:.95rem;padding-left:26px;position:relative;}
.close-list li::before{content:"✓";position:absolute;left:0;color:var(--mustard-dark);font-weight:700;}
@media(max-width:600px){.close-list{grid-template-columns:1fr;}}

/* ALTERNATIVA FEATURE (promociones.html) */
.alt-feature{
  display:flex;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;
}
.alt-feature-photo{flex:0 0 42%;min-width:0;}
.alt-feature-photo img{width:100%;height:100%;min-height:280px;object-fit:cover;display:block;}
.alt-feature-body{padding:34px 38px;display:flex;flex-direction:column;gap:12px;justify-content:center;flex:1;min-width:0;}
.alt-feature-tagline{font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--mustard-dark);}
.alt-feature-body h4{font-size:1.3rem;}
.alt-feature-body > p{color:var(--muted);font-size:.92rem;}
.alt-winter-badge{
  display:inline-flex;align-self:flex-start;align-items:center;gap:6px;background:var(--stone);
  border-radius:999px;padding:8px 16px;font-size:.85rem;font-weight:700;color:var(--forest-dark);
}
.alt-addresses{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px;}
.alt-addresses span{background:var(--stone);color:var(--text);font-size:.8rem;padding:5px 12px;border-radius:999px;}
.alt-links{display:flex;flex-wrap:wrap;gap:18px;margin-top:6px;}
.alt-links a{font-size:.85rem;font-weight:600;color:var(--mustard-dark);text-decoration:underline;}
@media(max-width:760px){
  .alt-feature{flex-direction:column;}
  .alt-feature-photo{width:100%;flex:none;aspect-ratio:16/9;}
  .alt-feature-photo img{min-height:0;}
  .alt-feature-body{padding:24px;}
}

/* HOST */
.host{background:var(--white);}
.host-wrap{display:flex;gap:48px;align-items:center;}
@media(max-width:800px){.host-wrap{flex-direction:column;text-align:center;}}
.host-photo{
  width:220px;height:220px;border-radius:50%;flex-shrink:0;object-fit:cover;
  border:6px solid var(--stone);
}
.host-text h2{margin-bottom:14px;}
.host-text p{color:var(--muted);margin-bottom:10px;}
.host-wrap-solo{max-width:760px;margin:0 auto;text-align:center;}
.host-wrap-solo .host-text{width:100%;}

/* CONTACT */
.contact{background:var(--stone);}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;}
@media(max-width:820px){.contact-grid{grid-template-columns:1fr;}}
.contact-list{display:flex;flex-direction:column;gap:20px;}
.contact-item{display:flex;align-items:center;gap:16px;}
.contact-item .ic{
  width:48px;height:48px;border-radius:50%;background:var(--forest);color:var(--white);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.2rem;
}
.contact-item strong{display:block;font-size:.95rem;}
.contact-item span{color:var(--muted);font-size:.9rem;}
.contact-card{
  background:var(--forest);color:var(--white);border-radius:var(--radius);padding:36px;text-align:center;
  box-shadow:var(--shadow);
}
.contact-card h3{color:var(--white);margin-bottom:10px;}
.contact-card p{color:rgba(255,255,255,.8);margin-bottom:24px;font-size:.95rem;}

/* TESTIMONIALS */
.testimonials{background:var(--white);}
.rating-bar{
  display:flex;justify-content:center;gap:48px;flex-wrap:wrap;margin-bottom:52px;
}
.rating-bar div{text-align:center;}
.rating-bar strong{display:block;font-family:'Cormorant Garamond',serif;font-weight:600;font-size:2.1rem;color:var(--forest-dark);}
.rating-bar span{font-size:.85rem;color:var(--muted);}
.tt-track{display:flex;gap:24px;overflow-x:auto;padding-bottom:12px;scroll-snap-type:x mandatory;}
.tt-track::-webkit-scrollbar{height:6px;}
.tt-track::-webkit-scrollbar-thumb{background:var(--stone);border-radius:99px;}
.tt-card{
  flex:0 0 320px;scroll-snap-align:start;background:var(--stone);border-radius:var(--radius);
  padding:26px;display:flex;flex-direction:column;gap:14px;
}
.tt-stars{color:var(--mustard);letter-spacing:2px;}
.tt-quote{font-size:.92rem;color:var(--text);flex:1;}
.tt-name{font-weight:700;font-size:.9rem;}
.tt-loc{font-size:.8rem;color:var(--muted);}

/* PROMO / SERVICE / GUIDE CARDS */
.promo-grid, .guide-grid, .exc-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;}
@media(max-width:820px){.promo-grid, .guide-grid, .exc-grid{grid-template-columns:1fr;}}
.promo-card, .service-card{
  background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
  display:flex;flex-direction:column;
}
.promo-card img, .service-card img{width:100%;min-width:0;aspect-ratio:16/9;object-fit:cover;}
.promo-card-body, .service-card-body{padding:28px;display:flex;flex-direction:column;gap:12px;flex:1;}
.promo-card-body h3{font-size:1.3rem;}
.promo-tag{
  display:inline-block;background:var(--mustard-dark);color:var(--white);padding:5px 14px;border-radius:999px;
  font-size:.78rem;font-weight:700;width:fit-content;
}
.promo-list{list-style:none;display:flex;flex-direction:column;gap:8px;font-size:.9rem;color:var(--muted);flex:1;}
.promo-list li{padding-left:22px;position:relative;}
.promo-list li::before{content:"•";color:var(--mustard-dark);position:absolute;left:6px;font-weight:900;}

/* ANCHOR / PILL NAV */
.pill-nav{
  position:sticky;top:70px;z-index:90;background:var(--cream);padding:18px 0;
  border-bottom:1px solid var(--stone);
}
.pill-nav .container{display:flex;gap:10px;flex-wrap:wrap;overflow-x:auto;}
.pill-nav a{
  white-space:nowrap;background:var(--white);border:1px solid var(--stone);padding:8px 16px;border-radius:999px;
  font-size:.85rem;font-weight:600;color:var(--forest-dark);
}
.pill-nav a:hover{background:var(--forest);color:var(--white);}

/* GUIDE SECTIONS */
.guide-section{padding:70px 0;border-bottom:1px solid var(--stone);}
.guide-section:nth-child(even){background:var(--white);}
.guide-flex{display:flex;gap:44px;align-items:flex-start;}
.guide-flex.reverse{flex-direction:row-reverse;}
@media(max-width:860px){.guide-flex, .guide-flex.reverse{flex-direction:column;}}
.guide-flex img{width:100%;min-width:0;border-radius:var(--radius);flex:0 0 42%;aspect-ratio:4/3;object-fit:cover;box-shadow:var(--shadow);}
@media(max-width:860px){.guide-flex img{width:100%;flex:none;}}
.guide-icon-tile{
  flex:0 0 42%;aspect-ratio:4/3;border-radius:var(--radius);box-shadow:var(--shadow);
  background:linear-gradient(145deg, var(--stone), var(--cream));
  border:1px solid rgba(46,41,35,.07);
  display:flex;align-items:center;justify-content:center;font-size:4rem;
}
@media(max-width:860px){.guide-icon-tile{width:100%;flex:none;}}
.guide-text{flex:1;}
.guide-text h2{margin-bottom:16px;font-size:1.6rem;}
.guide-text p{color:var(--muted);margin-bottom:12px;}
.guide-text ul{margin:14px 0;padding-left:0;list-style:none;}
.guide-text ul li{padding-left:24px;position:relative;margin-bottom:8px;color:var(--text);font-size:.95rem;}
.guide-text ul li::before{content:"→";color:var(--mustard-dark);position:absolute;left:0;font-weight:700;}
.tag-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px;}
.tag{background:var(--stone);color:var(--forest-dark);padding:5px 12px;border-radius:999px;font-size:.78rem;font-weight:600;}

/* EXCURSION CARDS */
.exc-card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;}
.exc-card img{width:100%;aspect-ratio:16/10;object-fit:cover;}
.exc-icon-tile{
  aspect-ratio:16/10;background:linear-gradient(145deg, var(--stone), var(--cream));
  display:flex;align-items:center;justify-content:center;font-size:3.4rem;
}
.exc-card-body{padding:28px;}
.exc-card-body h3{margin-bottom:10px;}
.exc-card-body p{color:var(--muted);font-size:.92rem;margin-bottom:16px;}

/* Nuestros imprescindibles: 3 en fila, tarjetas más chicas */
.exc-grid{grid-template-columns:repeat(3,1fr);gap:20px;}
.exc-grid .exc-card-body{padding:18px 20px;}
.exc-grid .exc-card-body h3{font-size:1.05rem;margin-bottom:6px;}
.exc-grid .exc-card-body p{font-size:.82rem;margin-bottom:12px;}
.exc-grid .exc-card-body .eyebrow{font-size:.68rem;}
.exc-grid .exc-card-body .btn{padding:9px 16px;font-size:.82rem;}
@media(max-width:900px){.exc-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto;}}

.agency-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:8px;}
@media(max-width:820px){.agency-grid{grid-template-columns:1fr;}}
.agency-card{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);
  padding:24px 26px;display:flex;flex-direction:column;gap:7px;
}
.agency-card .agency-tag{
  align-self:flex-start;background:var(--stone);color:var(--forest-dark);font-size:.7rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.06em;padding:4px 12px;border-radius:999px;margin-bottom:4px;
}
.agency-card h4{font-size:1.1rem;}
.agency-card .agency-line{color:var(--muted);font-size:.88rem;}
.agency-card .agency-line a{color:var(--forest);font-weight:600;}
.agency-card .agency-line a:hover{text-decoration:underline;}
.agencies-note{color:var(--muted);font-size:.82rem;margin-top:20px;}
.agencies-note a{text-decoration:underline;color:var(--forest);}
.agency-grid-compact{grid-template-columns:repeat(3,1fr);}
@media(max-width:900px){.agency-grid-compact{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.agency-grid-compact{grid-template-columns:1fr;}}

/* EXCURSIONES v2 — filtros, categorías, actividades, modal, eventos */
.exc-quick-filters, .exc-visitor-filters{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.exc-chip{
  background:var(--white);border:1.5px solid var(--stone);color:var(--forest-dark);font-size:.85rem;font-weight:600;
  padding:9px 18px;border-radius:999px;cursor:pointer;transition:all .15s ease;
}
.exc-chip:hover{border-color:var(--mustard);}
.exc-chip.active{background:var(--forest);border-color:var(--forest);color:var(--white);}

.exc-section-gap{margin-top:68px;}
.exc-section-gap .section-head{margin-bottom:32px;}

.exc-cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media(max-width:900px){.exc-cat-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.exc-cat-grid{grid-template-columns:1fr;}}
.exc-cat-card{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);padding:26px 22px;text-align:center;
  cursor:pointer;transition:transform .15s ease;border:2px solid transparent;
}
.exc-cat-card:hover{transform:translateY(-3px);}
.exc-cat-card.active{border-color:var(--mustard);}
.exc-cat-icon{font-size:2.4rem;margin-bottom:10px;}
.exc-cat-card h4{font-size:1.02rem;margin-bottom:6px;}
.exc-cat-card p{color:var(--muted);font-size:.8rem;line-height:1.5;}

.exc-results{margin-top:36px;scroll-margin-top:100px;}
.exc-results-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:20px;flex-wrap:wrap;}
.exc-results-head h3{font-size:1.3rem;}
.exc-results-close{background:none;border:none;color:var(--muted);font-size:.85rem;font-weight:600;cursor:pointer;text-decoration:underline;}

.exc-activity-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
@media(max-width:900px){.exc-activity-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.exc-activity-grid{grid-template-columns:1fr;}}
.exc-activity-card{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);padding:20px;display:flex;flex-direction:column;gap:8px;
}
.exc-activity-card h4{font-size:1.02rem;}
.exc-activity-card .exc-teaser{color:var(--muted);font-size:.85rem;line-height:1.5;flex:1;}
.exc-activity-meta{display:flex;flex-wrap:wrap;gap:6px;font-size:.72rem;}
.exc-activity-meta span{background:var(--stone);color:var(--forest-dark);padding:3px 10px;border-radius:999px;}
.exc-activity-card .btn{align-self:flex-start;margin-top:4px;}

.exc-empty{color:var(--muted);font-size:.9rem;padding:20px 0;}

.exc-modal-overlay{
  position:fixed;inset:0;background:rgba(20,17,14,.55);display:none;align-items:center;justify-content:center;
  padding:20px;z-index:200;
}
.exc-modal-overlay.open{display:flex;}
.exc-modal{
  background:var(--cream);border-radius:var(--radius);max-width:600px;width:100%;max-height:86vh;overflow-y:auto;
  padding:36px;position:relative;box-shadow:0 20px 60px rgba(0,0,0,.3);
}
.exc-modal-close{
  position:absolute;top:16px;right:16px;background:var(--stone);border:none;width:34px;height:34px;border-radius:50%;
  font-size:1.1rem;cursor:pointer;color:var(--forest-dark);
}
.exc-modal h3{font-size:1.5rem;margin-bottom:6px;padding-right:30px;}
.exc-modal .exc-activity-meta{margin-bottom:14px;}
.exc-modal p{color:var(--text);font-size:.94rem;line-height:1.65;margin-bottom:14px;}
.exc-modal-label{font-weight:700;color:var(--forest-dark);font-size:.78rem;text-transform:uppercase;letter-spacing:.05em;margin-bottom:4px;display:block;}
.exc-modal-tip{background:var(--stone);border-radius:12px;padding:14px 16px;margin-bottom:14px;}
.exc-modal-tip p{margin-bottom:0;}
.exc-modal-contact{display:flex;flex-direction:column;gap:6px;margin-bottom:18px;font-size:.9rem;}
.exc-modal-contact a{color:var(--forest);font-weight:600;}
.exc-modal-actions{display:flex;flex-wrap:wrap;gap:10px;}

.exc-season-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:28px;}
.exc-event-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
@media(max-width:800px){.exc-event-grid{grid-template-columns:1fr;}}
.exc-event-card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);padding:24px;}
.exc-event-card h4{font-size:1.1rem;margin-bottom:4px;}
.exc-event-when{color:var(--mustard-dark);font-weight:600;font-size:.82rem;margin-bottom:10px;}
.exc-event-card p{color:var(--muted);font-size:.88rem;margin-bottom:10px;line-height:1.55;}
.exc-event-warning{font-size:.78rem;color:var(--forest-dark);background:var(--stone);padding:8px 12px;border-radius:10px;}
.exc-events-disclaimer{margin-top:20px;text-align:center;font-size:.82rem;color:var(--muted);}

.exc-info-list, .exc-checklist{list-style:none;display:flex;flex-direction:column;gap:10px;}
.exc-info-list li, .exc-checklist li{
  padding-left:26px;position:relative;color:var(--muted);font-size:.88rem;line-height:1.55;
}
.exc-info-list li::before, .exc-checklist li::before{
  content:'✓';position:absolute;left:0;top:0;color:var(--mustard-dark);font-weight:700;
}
.exc-info-panel{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);padding:28px 32px;}
.exc-info-columns{display:grid;grid-template-columns:1fr 1fr;gap:32px;}
@media(max-width:760px){.exc-info-columns{grid-template-columns:1fr;}}

/* FOOTER */
footer{background:var(--forest-dark);color:rgba(255,255,255,.75);padding:56px 0 24px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:32px;margin-bottom:36px;}
@media(max-width:800px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr;}}
.footer-logo{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:1.3rem;color:var(--white);margin-bottom:12px;letter-spacing:.05em;text-transform:uppercase;}
.footer-grid p{font-size:.88rem;color:rgba(255,255,255,.65);}
.footer-col h5{color:var(--white);font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:14px;}
.footer-col a{display:block;font-size:.88rem;color:rgba(255,255,255,.72);margin-bottom:10px;}
.footer-col a:hover{color:var(--mustard);}
.footer-social{display:flex;gap:12px;margin-top:14px;}
.footer-social .icon-btn{background:rgba(255,255,255,.1);color:rgba(255,255,255,.9);}
.footer-social .icon-btn:hover{background:var(--mustard);color:var(--forest-dark);}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:20px;font-size:.82rem;text-align:center;}

/* WHATSAPP FLOAT */
.wa-float{
  position:fixed;bottom:24px;right:24px;z-index:1200;
  background:#25D366;color:#fff;width:60px;height:60px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(0,0,0,.25);
  font-size:1.7rem;transition:transform .2s;
}
.wa-float:hover{transform:scale(1.08);}
