:root{
    --olive-dark:#3a4827;
    --olive-darker:#2d3820;
    --mustard:#c2bc67;
    --mustard-soft:#dcd8a3;
    --cream:#f7f2e5;
    --cream-2:#f0ead9;
    --earth:#6b5842;
    --earth-2:#8a6f52;
    --ink:#2c2a22;
    --ink-soft:#4c4a3d;
    --line: rgba(58,72,39,0.18);
    --line-cream: rgba(247,242,229,0.28);
    --radius: 2px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--cream);
    color:var(--ink);
    font-family:'Archivo', sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  section{ scroll-margin-top: 84px; }

  h1,h2,h3,h4,.serif{
    font-family:'Fraunces', serif;
    font-weight:500;
    letter-spacing:-0.01em;
    color:var(--olive-darker);
  }

  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}

  .eyebrow{
    font-family:'Archivo',sans-serif;
    font-size:.72rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--earth);
    font-weight:600;
  }

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 24px;
  }

  /* ---------- reveal on scroll ---------- */
  .reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.is-visible{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    html{scroll-behavior:auto;}
  }

  /* ---------- flourish signature ---------- */
  .flourish{
    width:26px;height:26px;
    display:inline-block;
    opacity:.85;
  }
  .flourish path{ fill:currentColor; }
  .divider{
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--earth);
    margin:0 auto;
  }
  .divider .rule{
    flex:1;
    height:1px;
    background:var(--line);
    max-width:64px;
  }

  /* ================= HEADER ================= */
  header{
    position:fixed;top:0;left:0;right:0;
    z-index:100;
    background:var(--cream);
    box-shadow:0 1px 0 var(--line);
    transition:box-shadow .4s ease, padding .4s ease;
    padding:20px 0;
  }
  header.scrolled{
    box-shadow:0 1px 0 var(--line), 0 4px 16px rgba(45,56,32,0.06);
    padding:14px 0;
  }
  header .wrap{
    display:flex;align-items:center;justify-content:space-between;
  }
  .brand{
    display:flex;align-items:center;gap:10px;
    font-family:'Fraunces',serif;
    font-size:1.05rem;
    letter-spacing:.02em;
    color:var(--olive-darker);
  }
  .brand img{
    height:38px;width:auto;
    object-fit:contain;
    transition:height .4s ease;
  }
  header.scrolled .brand img{height:30px;}

  nav.desktop-nav{
    display:none;
    align-items:center;
    gap:38px;
    font-size:.85rem;
    letter-spacing:.03em;
  }
  nav.desktop-nav a{
    position:relative;
    padding:4px 0;
    color:var(--ink-soft);
  }
  nav.desktop-nav a::after{
    content:'';
    position:absolute;left:0;bottom:0;
    width:0%;height:1px;
    background:var(--olive-dark);
    transition:width .35s ease;
  }
  nav.desktop-nav a:hover::after{width:100%;}
  nav.desktop-nav a:hover{color:var(--olive-darker);}

  .cta-ghost{
    border:1px solid var(--olive-dark);
    padding:9px 20px;
    font-size:.78rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--olive-darker);
    transition:background .3s ease, color .3s ease;
    white-space:nowrap;
  }
  .cta-ghost:hover{background:var(--olive-dark);color:var(--cream);}

  .burger{
    display:flex;flex-direction:column;justify-content:center;gap:5px;
    width:30px;height:24px;
    background:none;border:none;cursor:pointer;
  }
  .burger span{
    display:block;height:1px;background:var(--olive-darker);width:100%;
    transition:transform .3s ease, opacity .3s ease;
  }
  .burger.open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
  .burger.open span:nth-child(2){opacity:0;}
  .burger.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}

  .mobile-menu{
    position:fixed;inset:0;
    background:var(--cream);
    z-index:99;
    display:flex;flex-direction:column;
    align-items:flex-start;justify-content:center;
    gap:28px;
    padding:40px;
    transform:translateY(-100%);
    transition:transform .5s cubic-bezier(.2,.7,.2,1);
  }
  .mobile-menu.open{transform:translateY(0);}
  .mobile-menu a{
    font-family:'Fraunces',serif;
    font-size:1.9rem;
    color:var(--olive-darker);
  }
  .mobile-menu .cta-ghost{margin-top:12px;font-size:.72rem;padding:12px 18px;white-space:normal;text-align:center;}

  /* ================= HERO ================= */
  .hero{
    padding-top:120px;
    display:flex;flex-direction:column;
  }
  .hero .wrap{
    display:flex;flex-direction:column;gap:36px;
  }
  .hero-copy{order:2;}
  .hero-copy h1{
    font-size:clamp(2.1rem, 6.5vw, 3.4rem);
    line-height:1.12;
    max-width:14ch;
    font-weight:500;
  }
  .hero-copy p{
    margin-top:22px;
    max-width:46ch;
    font-size:1.03rem;
    line-height:1.75;
    color:var(--ink-soft);
  }
  .hero-copy .btn-primary{margin-top:32px;}
  .hero-img{
    order:1;
    width:100%;
    overflow:hidden;
    aspect-ratio: 4/5;
  }
  .hero-img img{
    width:100%;height:100%;object-fit:cover;object-position:top center;
  }

  .btn-primary{
    display:inline-flex;align-items:center;gap:10px;
    background:var(--olive-dark);
    color:var(--cream);
    padding:15px 28px;
    font-size:.82rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    transition:background .3s ease, transform .3s ease;
  }
  .btn-primary:hover{background:var(--olive-darker);transform:translateX(3px);}
  .btn-primary svg{width:14px;height:14px;flex-shrink:0;}

  .btn-line{
    display:inline-flex;align-items:center;gap:9px;
    font-size:.82rem;letter-spacing:.05em;text-transform:uppercase;
    color:var(--olive-darker);
    border-bottom:1px solid var(--olive-dark);
    padding-bottom:4px;
    transition:gap .3s ease, opacity .3s ease;
  }
  .btn-line:hover{gap:15px;}
  .btn-line.on-dark{color:var(--cream);border-color:var(--mustard-soft);}

  /* ================= INTRO ================= */
  .intro{padding:96px 0;}
  .intro .grid{
    display:flex;flex-direction:column;gap:44px;
  }
  .intro-img{aspect-ratio:4/5;overflow:hidden;}
  .intro-img img{width:100%;height:100%;object-fit:cover;object-position:top;}
  .intro-copy h2{
    font-size:clamp(1.7rem,4.5vw,2.3rem);
    margin-top:14px;
    font-style:italic;
    font-weight:400;
  }
  .intro-copy p{
    margin-top:24px;
    font-size:1.02rem;
    line-height:1.8;
    color:var(--ink-soft);
    max-width:52ch;
  }
  .intro-copy p.closing{
    margin-top:18px;
    font-family:'Fraunces',serif;
    font-style:italic;
    color:var(--olive-darker);
    font-size:1.15rem;
  }

  /* ================= SOBRE MÍ ================= */
  .about{
    padding:20px 0 100px;
  }
  .about-inner{
    max-width:640px;
    margin:0 auto;
    text-align:center;
  }
  .about-inner h2{
    font-size:clamp(1.9rem,5vw,2.5rem);
    font-style:italic;
    font-weight:500;
    margin-top:12px;
  }
  .about-inner p{
    margin-top:22px;
    font-size:1.03rem;
    line-height:1.85;
    color:var(--ink-soft);
    text-align:left;
  }

  /* ================= ELEGÍ TU TALLER ================= */
  .choose{
    background:var(--olive-dark);
    color:var(--cream);
    padding:96px 0 60px;
  }
  .choose .eyebrow{color:var(--mustard-soft);}
  .choose h2{
    color:var(--cream);
    font-size:clamp(1.9rem,5.5vw,2.7rem);
    max-width:16ch;
    margin-top:14px;
    font-weight:500;
    font-style:italic;
  }
  .taller-index{margin-top:56px;border-top:1px solid var(--line-cream);}
  .taller-row{
    border-bottom:1px solid var(--line-cream);
    padding:28px 0;
    display:flex;
    flex-direction:column;
    gap:14px;
    transition:padding .35s ease;
  }
  .taller-row .row-top{
    display:flex;align-items:baseline;gap:18px;
  }
  .taller-row .num{
    font-family:'Fraunces',serif;
    font-size:1rem;
    color:var(--mustard-soft);
    font-weight:400;
  }
  .taller-row h3{
    color:var(--cream);
    font-size:clamp(1.35rem,4vw,1.9rem);
    font-weight:500;
  }
  .taller-row .modality{
    font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;
    color:var(--mustard-soft);
  }
  .taller-row .modality.online{color:#e7e3bd;font-weight:600;}
  .taller-row .row-bottom{
    display:flex;justify-content:space-between;align-items:center;
  }
  .taller-row:hover{padding-left:8px;}

  /* ================= TALLER DETAIL SECTIONS ================= */
  .taller{
    padding:96px 0;
  }
  .taller.cream{background:var(--cream);}
  .taller.beige{background:var(--cream-2);}
  .taller.olive{background:var(--olive-dark);color:var(--cream);}
  .taller.olive h2, .taller.olive h3{color:var(--cream);}
  .taller.mustard{background:var(--mustard);color:var(--olive-darker);}

  .taller-head{margin-bottom:44px;}
  .taller-head .tag-row{display:flex;gap:12px;align-items:center;margin-bottom:18px;flex-wrap:wrap;}
  .badge{
    font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;
    padding:6px 12px;border:1px solid currentColor;
  }
  .badge.solid{background:var(--olive-dark);color:var(--cream);border-color:var(--olive-dark);}
  .taller-head h2{
    font-size:clamp(2rem,6vw,2.9rem);
    font-weight:500;
  }
  .taller-head .subline{
    font-family:'Fraunces',serif;
    font-style:italic;
    font-size:1.15rem;
    margin-top:12px;
    max-width:38ch;
    color:var(--earth);
  }
  .taller.olive .taller-head .subline{color:var(--mustard-soft);}
  .taller.mustard .taller-head .subline{color:var(--olive-darker);opacity:.85;}

  .taller-body{
    display:flex;flex-direction:column;gap:48px;
  }

  .details-card{
    border:1px solid var(--line);
    padding:28px 26px;
    font-size:.92rem;
    line-height:2.1;
  }
  .taller.olive .details-card{border-color:var(--line-cream);}
  .taller.mustard .details-card{border-color:rgba(58,72,39,0.35);}
  .details-card .drow{
    display:flex;justify-content:space-between;gap:16px;
    border-bottom:1px dashed var(--line);
    padding:6px 0;
  }
  .taller.olive .details-card .drow{border-bottom-color:var(--line-cream);}
  .taller.mustard .details-card .drow{border-bottom-color:rgba(58,72,39,0.25);}
  .details-card .drow:last-child{border-bottom:none;}
  .details-card .dlabel{
    font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
    color:var(--earth);
    flex-shrink:0;
  }
  .taller.olive .details-card .dlabel{color:var(--mustard-soft);}
  .taller.mustard .details-card .dlabel{color:var(--olive-dark);}
  .details-card .dval{text-align:right;font-weight:500;}
  .details-card .price-line{
    margin-top:14px;padding-top:14px;
    border-top:1px solid var(--line);
    font-family:'Fraunces',serif;
    font-size:1.25rem;
    font-style:italic;
  }
  .taller.olive .details-card .price-line{border-top-color:var(--line-cream);}
  .taller.mustard .details-card .price-line{border-top-color:rgba(58,72,39,0.35);}
  .discount-flag{
    display:inline-block;
    font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;
    background:var(--earth);color:var(--cream);
    padding:3px 8px;margin-bottom:6px;
  }

  .taller-text p{
    font-size:1rem;line-height:1.85;
    color:var(--ink-soft);
    margin-bottom:18px;
  }
  .taller.olive .taller-text p{color:rgba(247,242,229,0.86);}
  .taller.mustard .taller-text p{color:rgba(44,42,34,0.82);}
  .taller-text ul{
    margin:22px 0;padding-left:0;list-style:none;
  }
  .taller-text ul li{
    position:relative;
    padding-left:22px;
    margin-bottom:13px;
    font-size:.98rem;
    line-height:1.65;
    color:var(--ink-soft);
  }
  .taller.olive .taller-text ul li{color:rgba(247,242,229,0.86);}
  .taller-text ul li::before{
    content:'—';
    position:absolute;left:0;top:0;
    color:var(--earth);
  }
  .taller.olive .taller-text ul li::before{color:var(--mustard-soft);}

  .taller-photo{
    aspect-ratio:4/5;overflow:hidden;
  }
  .taller-photo img{width:100%;height:100%;object-fit:cover;}

  .pull{
    font-family:'Fraunces',serif;font-style:italic;font-weight:400;
    font-size:clamp(1.4rem,4vw,1.9rem);
    line-height:1.5;
    text-align:center;
    max-width:22ch;
    margin:8px auto 0;
  }

  /* ================= FINAL CTA ================= */
  .final{
    position:relative;
    min-height:88vh;
    display:flex;align-items:flex-end;
    overflow:hidden;
  }
  .final img{
    position:absolute;inset:0;
    width:100%;height:100%;object-fit:cover;object-position:center 15%;
  }
  .final::after{
    content:'';
    position:absolute;inset:0;
    background:linear-gradient(180deg, rgba(30,38,22,0.62) 0%, rgba(30,38,22,0.58) 45%, rgba(24,30,17,0.93) 100%);
  }
  .final .wrap{position:relative;z-index:2;padding-bottom:80px;padding-top:80px;}
  .final h2{
    color:var(--cream);
    font-size:clamp(2.1rem,7vw,3.6rem);
    font-style:italic;
    font-weight:500;
    max-width:16ch;
  }
  .final p{
    color:var(--mustard-soft);
    margin-top:16px;
    font-size:1.05rem;
    max-width:36ch;
  }
  .final .btn-primary{margin-top:34px;background:var(--cream);color:var(--olive-darker);}
  .final .btn-primary:hover{background:var(--mustard-soft);}

  /* ================= FOOTER ================= */
  footer{
    background:var(--olive-darker);
    color:rgba(247,242,229,0.75);
    padding:56px 0 30px;
    font-size:.85rem;
  }
  footer .wrap{
    display:flex;flex-direction:column;gap:28px;
  }
  footer .fbrand{
    display:flex;align-items:center;gap:12px;
    font-family:'Fraunces',serif;font-size:1.2rem;color:var(--cream);
  }
  footer .fbrand img{height:34px;width:auto;object-fit:contain;}
  footer nav{display:flex;flex-wrap:wrap;gap:22px;}
  footer .bottom{
    display:flex;flex-direction:column;gap:10px;
    padding-top:24px;border-top:1px solid rgba(247,242,229,0.14);
    font-size:.76rem;color:rgba(247,242,229,0.5);
  }

  /* ================= WHATSAPP FLOAT (mobile) ================= */
  .wa-float{
    position:fixed;
    right:18px;bottom:18px;
    z-index:90;
    width:54px;height:54px;
    border-radius:50%;
    background:var(--olive-dark);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 6px 18px rgba(45,56,32,0.35);
    transition:transform .3s ease;
  }
  .wa-float:hover{transform:scale(1.06);}
  .wa-float svg{width:24px;height:24px;color:var(--cream);}
  @media (min-width:900px){
    .wa-float{display:none;}
  }

  /* ================= DESKTOP ================= */
  @media (min-width:900px){
    .wrap{padding:0 40px;}
    nav.desktop-nav{display:flex;}
    .burger{display:none;}

    .hero{padding-top:110px;min-height:100vh;display:flex;align-items:center;}
    .hero .wrap{
      flex-direction:row-reverse;
      align-items:center;
      gap:64px;
    }
    .hero-copy{order:0;flex:1;}
    .hero-img{order:0;flex:1;aspect-ratio:3/4;max-height:82vh;}

    .intro .grid{flex-direction:row;align-items:center;gap:80px;}
    .intro-img{flex:0 0 40%;}
    .intro-copy{flex:1;}

    .taller-index{margin-top:64px;}
    .taller-row{flex-direction:row;align-items:center;justify-content:space-between;padding:36px 0;}
    .taller-row .row-top{flex:1;}
    .taller-row .row-bottom{flex:0 0 auto;gap:26px;}

    .taller-body{flex-direction:row;gap:72px;align-items:flex-start;}
    .taller-body.reverse{flex-direction:row-reverse;}
    .taller-left{flex:1.1;}
    .taller-right{flex:0.9;position:sticky;top:110px;}
    .taller-photo{aspect-ratio:3/4;}

    .final{min-height:78vh;}
  }

  @media (min-width:1200px){
    .hero-copy h1{max-width:15ch;}
  }

/* ================================================================
   NUEVO — MULTI-PÁGINA: dropdown, testimonios, cross-nav, subpáginas
   ================================================================ */

/* ---------- header: dropdown "Talleres" (desktop) ---------- */
nav.desktop-nav .has-dropdown{position:relative;}
nav.desktop-nav .has-dropdown > a{display:inline-flex;align-items:center;gap:5px;}
nav.desktop-nav .has-dropdown .caret{width:8px;height:8px;transition:transform .3s ease;}
nav.desktop-nav .has-dropdown:hover .caret{transform:rotate(180deg);}
.dropdown-panel{
  position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(6px);
  background:var(--cream);
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(45,56,32,0.10);
  padding:10px;
  min-width:220px;
  display:flex;flex-direction:column;
  opacity:0;visibility:hidden;
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index:50;
}
nav.desktop-nav .has-dropdown:hover .dropdown-panel,
nav.desktop-nav .has-dropdown:focus-within .dropdown-panel{
  opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);
}
.dropdown-panel a{
  padding:10px 14px;font-size:.82rem;color:var(--ink-soft);white-space:nowrap;
}
.dropdown-panel a::after{display:none;}
.dropdown-panel a:hover{background:var(--cream-2);color:var(--olive-darker);}

/* ---------- mobile menu: adjustments for more items ---------- */
.mobile-menu{
  justify-content:flex-start;
  overflow-y:auto;
  padding:110px 32px 40px;
  gap:18px;
}
.mobile-menu a.menu-link{font-size:1.5rem;}
.mobile-menu .menu-sub{
  display:flex;flex-direction:column;gap:14px;
  padding-left:6px;margin-top:-6px;margin-bottom:4px;
}
.mobile-menu .menu-sub a{
  font-family:'Archivo',sans-serif;
  font-size:.92rem;
  letter-spacing:.02em;
  color:var(--ink-soft);
}
.mobile-menu .menu-label{
  font-family:'Fraunces',serif;font-size:1.5rem;color:var(--olive-darker);
}

/* ---------- cross-nav: "otras propuestas" ---------- */
.more-props{
  padding:80px 0;
  background:var(--cream-2);
  text-align:center;
}
.more-props .eyebrow{display:block;}
.more-props h3{
  font-size:clamp(1.4rem,4vw,1.9rem);
  font-style:italic;font-weight:500;
  margin-top:10px;
}
.prop-links{
  display:flex;flex-wrap:wrap;justify-content:center;
  gap:12px;margin-top:32px;
}
.prop-pill{
  border:1px solid var(--olive-dark);
  padding:11px 22px;
  font-size:.8rem;letter-spacing:.04em;text-transform:uppercase;
  color:var(--olive-darker);
  transition:background .3s ease, color .3s ease;
}
.prop-pill:hover{background:var(--olive-dark);color:var(--cream);}

/* ---------- subpage hero (talleres individuales) ---------- */
.page-hero{
  padding:150px 0 60px;
}
.page-hero .back-link{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.78rem;letter-spacing:.05em;text-transform:uppercase;
  color:inherit;opacity:.75;
  margin-bottom:28px;
}
.page-hero .back-link svg{width:12px;height:12px;transform:rotate(180deg);}
.page-hero .back-link:hover{opacity:1;}

/* ---------- CTA band (mid/final, sin foto) ---------- */
.page-cta-band{
  background:var(--olive-darker);
  color:var(--cream);
  padding:80px 0;
  text-align:center;
}
.page-cta-band .eyebrow{color:var(--mustard-soft);}
.page-cta-band h2{
  color:var(--cream);font-style:italic;font-weight:500;
  font-size:clamp(1.8rem,5vw,2.6rem);
  max-width:20ch;margin:12px auto 0;
}
.page-cta-band p{
  color:rgba(247,242,229,0.75);
  margin-top:14px;font-size:1rem;max-width:40ch;margin-left:auto;margin-right:auto;
}
.page-cta-band .btn-primary{margin-top:30px;}

/* ================= TESTIMONIOS (carrusel) ================= */
.testimonials{padding:90px 0;}
.testimonials.on-cream{background:var(--cream);}
.testimonials.on-beige{background:var(--cream-2);}
.testimonials-head{margin-bottom:40px;}
.testimonials-head h2{
  font-size:clamp(1.6rem,4.5vw,2.2rem);
  font-style:italic;font-weight:500;margin-top:10px;
}
.carousel-wrap{position:relative;}
.carousel{
  display:flex;gap:20px;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  padding:6px 4px 22px;
  scrollbar-width:thin;
  scrollbar-color:var(--earth-2) transparent;
  margin:0 -24px;
  padding-left:24px;padding-right:24px;
}
.carousel::-webkit-scrollbar{height:5px;}
.carousel::-webkit-scrollbar-thumb{background:rgba(107,88,66,0.35);border-radius:4px;}
.t-card{
  flex:0 0 auto;
  width:82vw;
  max-width:340px;
  scroll-snap-align:start;
  background:var(--cream);
  border:1px solid var(--line);
  padding:26px 24px;
  display:flex;flex-direction:column;
}
.testimonials.on-beige .t-card{background:var(--cream);}
.t-mark{
  font-family:'Fraunces',serif;font-style:italic;font-size:2.2rem;
  color:var(--mustard);line-height:1;margin-bottom:6px;
}
.t-quote{
  font-size:.94rem;line-height:1.72;color:var(--ink-soft);
  display:-webkit-box;-webkit-line-clamp:7;-webkit-box-orient:vertical;overflow:hidden;
}
.t-card.expanded .t-quote{-webkit-line-clamp:unset;overflow:visible;}
.t-more{
  align-self:flex-start;margin-top:12px;
  font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--earth);border-bottom:1px solid var(--earth);padding-bottom:2px;
  background:none;border-top:none;border-left:none;border-right:none;
  cursor:pointer;font-family:'Archivo',sans-serif;
}
.t-more[hidden]{display:none;}
.t-name{
  margin-top:16px;padding-top:14px;border-top:1px solid var(--line);
  font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--olive-dark);font-weight:600;
}
.car-controls{
  display:flex;justify-content:center;gap:14px;margin-top:20px;
}
.car-btn{
  width:40px;height:40px;border-radius:50%;
  border:1px solid var(--olive-dark);
  background:none;color:var(--olive-darker);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .3s ease, color .3s ease;
}
.car-btn:hover{background:var(--olive-dark);color:var(--cream);}
.car-btn svg{width:16px;height:16px;}

/* ================= VIAJES (sensorial) ================= */
.viaje-hero{
  position:relative;min-height:92vh;display:flex;align-items:flex-end;overflow:hidden;
}
.viaje-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 25%;}
.viaje-hero::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(30,38,22,0.35) 0%, rgba(30,38,22,0.30) 50%, rgba(24,30,17,0.88) 100%);
}
.viaje-hero .wrap{position:relative;z-index:2;padding:150px 0 70px;}
.viaje-hero .eyebrow{color:var(--mustard-soft);}
.viaje-hero h1{
  color:var(--cream);font-style:italic;font-weight:500;
  font-size:clamp(2rem,6vw,3.2rem);max-width:16ch;margin-top:14px;
}
.viaje-hero p{color:rgba(247,242,229,0.82);margin-top:18px;max-width:44ch;font-size:1.02rem;line-height:1.7;}

.viaje-breath{padding:100px 0;text-align:center;}
.viaje-breath p{
  font-family:'Fraunces',serif;font-style:italic;font-weight:400;
  font-size:clamp(1.3rem,3.6vw,1.7rem);
  color:var(--olive-darker);
  max-width:26ch;margin:0 auto;line-height:1.55;
}

.viaje-experience{padding:90px 0;}
.viaje-experience.alt{background:var(--cream-2);}
.viaje-experience .wrap{
  display:flex;flex-direction:column;gap:20px;text-align:center;align-items:center;
}
.viaje-experience .dates{
  font-family:'Fraunces',serif;font-style:italic;
  font-size:clamp(1.5rem,4.5vw,2rem);
  color:var(--earth);
}
.viaje-experience h2{
  font-size:clamp(2rem,6vw,3rem);font-weight:500;
}
.viaje-experience p.lead{
  max-width:44ch;color:var(--ink-soft);font-size:1.02rem;line-height:1.75;
}

.viaje-photo-band{width:100%;overflow:hidden;max-height:78vh;}
.viaje-photo-band img{width:100%;height:100%;object-fit:cover;display:block;}

/* ================= SESIONES 1:1 ================= */
.sesiones-hero{padding:150px 0 0;}
.sesiones-hero .wrap.grid{
  display:flex;flex-direction:column;gap:40px;
}
.sesiones-img{aspect-ratio:4/5;overflow:hidden;}
.sesiones-img img{width:100%;height:100%;object-fit:cover;object-position:top;}
.sesiones-copy h1{
  font-size:clamp(2rem,6vw,2.9rem);font-style:italic;font-weight:500;margin-top:12px;
}
.sesiones-copy p{margin-top:20px;font-size:1.03rem;line-height:1.8;color:var(--ink-soft);max-width:48ch;}
.sesiones-copy .modality-line{
  margin-top:18px;font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;color:var(--earth);
}
.sesiones-copy .btn-primary{margin-top:30px;}
.sesiones-bottom{padding:70px 0 100px;}

/* ================= HOME: teasers Sesiones / Viajes ================= */
.teasers{padding:90px 0;background:var(--cream-2);}
.teasers .wrap{display:flex;flex-direction:column;gap:20px;}
.teaser-card{
  border:1px solid var(--line);
  background:var(--cream);
  padding:40px 32px;
  display:flex;flex-direction:column;gap:14px;
}
.teaser-card .eyebrow{color:var(--earth);}
.teaser-card h3{font-size:clamp(1.5rem,4.5vw,1.9rem);font-style:italic;font-weight:500;}
.teaser-card p{color:var(--ink-soft);font-size:.98rem;line-height:1.7;max-width:46ch;}
.teaser-card .modality-line{font-size:.76rem;letter-spacing:.08em;text-transform:uppercase;color:var(--earth);}
.teaser-card .teaser-actions{display:flex;flex-wrap:wrap;gap:16px;align-items:center;margin-top:6px;}
.teaser-card.photo{padding:0;overflow:hidden;position:relative;min-height:340px;display:block;}
.teaser-card.photo img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.teaser-card.photo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(30,38,22,0.05) 0%, rgba(24,30,17,0.82) 100%);
}
.teaser-card.photo .teaser-inner{
  position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:flex-end;padding:32px;
}
.teaser-card.photo .eyebrow{color:var(--mustard-soft);}
.teaser-card.photo h3, .teaser-card.photo p{color:var(--cream);}
.teaser-card.photo p{color:rgba(247,242,229,0.82);}

@media (min-width:900px){
  .teasers .wrap{flex-direction:row;align-items:stretch;}
  .teasers .teaser-card{flex:1;}

  .sesiones-hero .wrap.grid{flex-direction:row;align-items:center;gap:80px;}
  .sesiones-img{flex:0 0 42%;}
  .sesiones-copy{flex:1;}

  .t-card{width:340px;}

  .viaje-experience .wrap{max-width:640px;}
}
