@font-face{
    font-family:'The Bold Font';
    src:url('../fonts/THE_BOLD_FONT.otf') format('opentype');
    font-weight:800;
    font-style:normal;
    font-display:swap;
  }
  @font-face{
    font-family:'Bestfriend Signature';
    src:url('../fonts/Bestfriend_Signature.ttf') format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
  }
  :root{
    --cream:#F2F1EE;
    --cream-soft:#E9E6DC;
    --forest:#3C5B40;
    --forest-deep:#213820;
    --sage:#89AF8E;
    --charcoal:#142115;
    --mist:#C9B79C;
    --ink:#20291F;
    --line:rgba(32,41,31,0.14);
    --serif: 'Poppins', sans-serif;
    --title: 'The Bold Font', 'Poppins', sans-serif;
    --script: 'Bestfriend Signature', cursive;
    --sans: 'Manrope', sans-serif;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--sans);
    background:var(--cream);
    color:var(--ink);
    overflow-x:hidden;
    font-weight:400;
  }
  ::selection{background:var(--sage);color:var(--cream);}
  p,li,h1,h2,h3,.subtitle,.pillar-text{text-wrap:pretty;}

  .eyebrow{
    font-family:var(--sans);
    font-size:11px;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:var(--sage);
    font-weight:600;
  }
  h1,h2,h3{font-family:var(--title);font-weight:800;letter-spacing:-0.01em;}

  /* ---------- NAV ---------- */
  nav{
    position:fixed;top:0;left:0;width:100%;z-index:100;
    display:flex;align-items:center;justify-content:space-between;
    padding:20px 48px;
    background:linear-gradient(180deg, rgba(10,18,14,.55) 0%, rgba(10,18,14,.28) 100%);
    border-bottom:1px solid rgba(243,239,229,.14);
    backdrop-filter:blur(6px);
    transition:background .5s ease, padding .5s ease, box-shadow .5s ease, border-color .5s ease;
  }
  nav.solid{
    background:rgba(243,239,229,0.94);
    backdrop-filter:blur(10px);
    padding:14px 48px;
    box-shadow:0 1px 0 var(--line);
    border-bottom-color:transparent;
  }
  .brand{display:flex;align-items:center;gap:10px;}
  .brand-link{display:flex;align-items:center;gap:10px;color:inherit;text-decoration:none;}
  .brand img{width:26px;height:26px;display:block;transition:width .4s ease,height .4s ease;}
  nav.solid .brand img{width:21px;height:21px;}
  .brand-name{
    font-family:var(--title);font-weight:800;font-size:11px;letter-spacing:.05em;
    line-height:1.28;color:var(--cream);transition:color .5s ease;
  }
  nav.solid .brand-name{color:var(--forest);}
  .navlinks{display:flex;gap:28px;list-style:none;align-items:center;margin-right:38px;}
  .navlinks a{
    color:var(--cream);text-decoration:none;font-size:12px;
    letter-spacing:.12em;text-transform:uppercase;font-weight:600;
    transition:color .5s ease, opacity .3s ease;
    opacity:.92;
    padding-bottom:3px;
    border-bottom:1px solid transparent;
  }
  .navlinks a:hover{opacity:1;border-bottom-color:currentColor;}
  .navlinks a.active{opacity:1;border-bottom-color:currentColor;}
  nav.solid .navlinks a{color:var(--forest);}

  .nav-item{position:relative;}
  .submenu{
    list-style:none;position:absolute;top:calc(100% + 14px);left:50%;
    transform:translate(-50%,6px);min-width:200px;background:var(--forest-deep);
    padding:8px 0;opacity:0;visibility:hidden;
    transition:opacity .3s ease,transform .3s ease,visibility .3s;
    box-shadow:0 12px 24px rgba(10,18,14,.25);
  }
  @media(min-width:1025px){
    .nav-item.has-sub:hover .submenu{opacity:1;visibility:visible;transform:translate(-50%,0);}
  }
  .submenu a{
    display:block;padding:10px 20px;color:var(--cream)!important;font-size:11px;
    letter-spacing:.1em;text-transform:uppercase;font-weight:600;opacity:.88;
    border-bottom:none!important;text-align:center;
  }
  .submenu a:hover{opacity:1;background:rgba(255,255,255,.06);}
  @media(max-width:1024px){
    .submenu{
      position:static;transform:none;opacity:0;visibility:hidden;background:transparent;
      box-shadow:none;padding:0 0 0 18px;min-width:0;max-height:0;overflow:hidden;
      transition:opacity .3s ease, max-height .3s ease, visibility .3s ease;
    }
    .navlinks.open .submenu{
      opacity:1;visibility:visible;max-height:200px;
    }
    .submenu a{color:var(--mist)!important;font-size:12.5px;text-align:left;padding:12px 0;}
  }

  .nav-right{display:flex;align-items:center;}
  .lang-switch{display:flex;align-items:center;gap:8px;margin-left:14px;}
  .lang-flag{
    background:none;border:none;cursor:pointer;line-height:1;padding:0;
    display:flex;align-items:center;
    opacity:.5;filter:grayscale(55%);transition:opacity .3s ease, filter .3s ease, transform .3s ease;
  }
  .lang-flag svg{display:block;border-radius:2px;box-shadow:0 0 0 1px rgba(0,0,0,.15);}
  .lang-flag:hover{opacity:.85;transform:translateY(-1px);}
  .lang-flag.active{opacity:1;filter:grayscale(0);}
  @media(max-width:1024px){.lang-switch{margin-left:10px;}}
  .btn-reserve{
    display:inline-block;padding:10px 22px;border:1px solid var(--cream);
    color:var(--cream);text-decoration:none;font-size:11px;letter-spacing:.12em;
    text-transform:uppercase;font-weight:600;white-space:nowrap;
    transition:background .4s ease,color .4s ease,border-color .4s ease;
  }
  .btn-reserve:hover{background:var(--cream);color:var(--forest);}
  nav.solid .btn-reserve{border-color:var(--forest);color:var(--forest);}
  nav.solid .btn-reserve:hover{background:var(--forest);color:var(--cream);}
  @media(max-width:1024px){
    .nav-right{flex:1;display:flex;justify-content:center;}
    .btn-reserve{padding:8px 16px;font-size:10px;}
  }
  @media(max-width:700px){
    nav{padding:16px 18px;}
    nav.solid{padding:12px 18px;}
    .lang-switch{margin-left:8px;margin-right:0;}
    .nav-right{justify-content:flex-end;gap:10px;margin-left:14px;}
  }

  .nav-toggle{
    display:none;flex-direction:column;gap:5px;background:none;border:none;
    cursor:pointer;padding:6px;z-index:110;
  }
  .nav-toggle span{width:22px;height:1px;background:var(--cream);transition:background .5s ease;}
  nav.solid .nav-toggle span{background:var(--forest);}

  @media(max-width:1024px){
    .navlinks{
      display:flex;flex-direction:column;align-items:flex-start;gap:0;
      position:fixed;top:0;right:0;height:100vh;width:78%;max-width:320px;
      margin:0;
      background:var(--forest-deep);padding:110px 40px 40px;
      transform:translateX(110%);transition:transform .5s ease;
    }
    .navlinks.open{transform:translateX(0);}
    .navlinks a{color:var(--cream);font-size:14px;padding:16px 0;width:100%;
      border-bottom:1px solid rgba(243,239,229,.12)!important;}
    .nav-toggle{display:flex;}
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;height:100vh;min-height:640px;
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;background:var(--forest-deep);
  }
  @media(max-width:1024px){.hero{height:82vh;min-height:560px;aspect-ratio:unset;}}
  @media(max-width:700px){.hero{height:78vh;min-height:480px;}}
  .hero-carousel{position:absolute;inset:0;width:100%;height:100%;}
  .hero-slide{
    position:absolute;inset:0;width:100%;height:100%;
    opacity:0;transition:opacity 1.4s ease;
  }
  .hero-slide.active{opacity:1;}
  .hero-slide video, .hero-slide img{
    width:100%;height:100%;object-fit:cover;object-position:center 20%;display:block;pointer-events:none;
  }
  .hero-slide video.hero-media-bottom{object-fit:cover;object-position:center 100%;}
  .hero-overlay{
    position:absolute;inset:0;
    background:linear-gradient(180deg, rgba(10,18,14,.4) 0%, rgba(10,18,14,.12) 30%, rgba(10,18,14,.18) 60%, rgba(10,18,14,.58) 100%);
  }

  .hero-arrow{
    position:absolute;top:50%;transform:translateY(-50%);
    z-index:3;width:46px;height:46px;border-radius:50%;
    background:rgba(20,33,21,.28);border:1px solid rgba(243,239,229,.4);
    color:var(--cream);font-size:24px;line-height:1;
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;backdrop-filter:blur(3px);
    transition:background .3s ease,border-color .3s ease,opacity .3s ease;
    opacity:.7;
  }
  .hero-arrow:hover{background:rgba(20,33,21,.5);border-color:rgba(243,239,229,.7);opacity:1;}
  .hero-arrow-left{left:22px;}
  .hero-arrow-right{right:22px;}
  .hero-credit{
    position:absolute;right:18px;bottom:14px;z-index:3;
    color:rgba(243,239,229,.42);font-size:14px;letter-spacing:.04em;
    font-family:inherit;pointer-events:none;text-shadow:0 1px 3px rgba(0,0,0,.4);
  }
  @media(max-width:700px){.hero-credit{font-size:11px;right:12px;bottom:10px;}}
  .hero-title-block{
    position:absolute;left:50%;top:44%;transform:translate(-50%,calc(-50% - 68px));
    z-index:3;display:flex;flex-direction:column;align-items:center;pointer-events:none;
  }
  .hero-eyebrow-text{
    font-family:var(--sans);font-weight:600;font-size:13px;letter-spacing:.16em;text-transform:uppercase;
    color:var(--cream);opacity:.88;margin-bottom:12px;text-shadow:0 2px 8px rgba(0,0,0,.35);
  }
  .hero-title{
    color:var(--cream);font-family:var(--title);font-weight:800;
    letter-spacing:.02em;text-align:center;white-space:nowrap;
    font-size:clamp(28px,4.6vw,64px);text-shadow:0 3px 18px rgba(0,0,0,.35);
  }
  .hero-subtitle-text{
    font-family:var(--script);font-weight:600;font-size:clamp(28px,3.3vw,41px);letter-spacing:0;
    color:var(--cream);opacity:.92;margin-top:6px;text-shadow:0 2px 8px rgba(0,0,0,.35);
    white-space:nowrap;text-align:center;
  }
  @media(max-width:1024px){
    .hero-title-block{top:16%;transform:translate(-50%,0);}
  }
  @media(max-width:700px){
    .hero-title{font-size:clamp(24px,8vw,40px);white-space:normal;max-width:88%;}
    .hero-eyebrow-text{font-size:10px;letter-spacing:.12em;}
    .hero-subtitle-text{font-size:clamp(18px,6.3vw,30px);text-align:center;padding:0 12px;margin-top:2px;}
  }
  .dest-hero-block{
    position:absolute;left:50%;top:44%;transform:translate(-50%,calc(-50% - 68px));
    z-index:3;display:flex;flex-direction:column;align-items:center;pointer-events:none;
  }
  .dest-hero-title{
    color:var(--cream);font-family:var(--title);font-weight:800;letter-spacing:.02em;
    text-align:center;white-space:nowrap;font-size:clamp(28px,4.6vw,64px);
    text-shadow:0 3px 18px rgba(0,0,0,.35);
  }
  .dest-hero-signature{
    align-self:center;text-align:center;white-space:nowrap;color:var(--cream);font-family:var(--script);font-weight:600;
    font-size:clamp(28px,3.6vw,47px);line-height:1;margin-top:4px;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
  }
  @media(max-width:1024px){
    .dest-hero-block{top:16%;transform:translate(-50%,0);}
  }
  @media(max-width:700px){
    .dest-hero-title{font-size:clamp(24px,8vw,40px);white-space:normal;max-width:88vw;}
    .dest-hero-signature{font-size:clamp(14px,5vw,24px);}
  }
  @media(max-width:700px){
    .hero-arrow{width:36px;height:36px;font-size:19px;}
    .hero-arrow-left{left:12px;}
    .hero-arrow-right{right:12px;}
  }

  /* ---------- REVEAL ---------- */
  .reveal{opacity:0;transform:translateY(22px);transition:opacity .9s ease, transform .9s ease;}
  .reveal.in{opacity:1;transform:translateY(0);}

  /* ---------- PHILOSOPHY (editorial) ---------- */
  .section{padding:150px 48px;position:relative;}
  .section-narrow{max-width:760px;margin:0 auto;text-align:center;}
  .dark{background:var(--charcoal);color:var(--cream);}
  .philosophy-section{background:#F3EFE5;padding:28px 48px 70px;}
  .philosophy-editorial{max-width:820px;margin:0 auto;text-align:center;}
  .philosophy-title{
    font-family:var(--title);font-weight:800;letter-spacing:.01em;font-size:clamp(21px,2.4vw,30px);
    line-height:1.35;max-width:23ch;margin:0 auto 40px;color:var(--sage);
  }
  .philosophy-subtitle{
    font-family:var(--serif);font-weight:300;font-style:italic;
    font-size:clamp(17px,1.7vw,21px);line-height:1.6;color:var(--forest);
    max-width:48ch;margin:0 auto 40px;
  }
  .philosophy-text{
    font-family:var(--sans);font-size:17px;line-height:1.9;color:#3c473f;max-width:52ch;margin:0 auto;
  }
  .philosophy-list{
    list-style:none;margin:0 auto 14px;width:fit-content;max-width:100%;text-align:left;
  }
  .philosophy-list li{
    display:grid;grid-template-columns:18px 1fr;column-gap:14px;align-items:start;margin-bottom:12px;
  }
  .philosophy-list li:last-child{margin-bottom:0;}
  .philosophy-list img{width:18px;height:18px;flex-shrink:0;display:block;margin-top:2px;}
  .philosophy-list span{max-width:60ch;text-align:left;}
  @media(max-width:700px){
    .philosophy-section{padding:48px 24px 90px;}
    .philosophy-list{width:100%;max-width:300px;}
  }

  /* ---------- CLOSING ---------- */
  .closing-banner-slim{position:relative;width:100%;aspect-ratio:21/6;max-height:380px;overflow:hidden;}
  .closing-banner-slim img{width:100%;height:100%;object-fit:cover;object-position:center 15%;display:block;}
  .closing-banner-overlay{position:absolute;inset:0;background:rgba(10,18,14,.42);}
  .closing-social{
    position:absolute;inset:0;z-index:2;display:flex;flex-direction:column;
    align-items:center;justify-content:center;gap:16px;padding:0 24px;
  }
  .closing-social-text{
    font-family:var(--sans);font-size:16px;letter-spacing:.02em;color:var(--cream);
    white-space:nowrap;text-shadow:0 1px 6px rgba(0,0,0,.4);
  }
  .closing-social-btn{
    display:inline-flex;align-items:center;justify-content:center;
    width:46px;height:46px;border-radius:50%;border:1px solid var(--cream);
    color:var(--cream);transition:background .3s ease,color .3s ease;
  }
  .closing-social-btn:hover{background:var(--cream);color:var(--forest-deep);}
  @media(max-width:700px){
    .closing-banner-slim{aspect-ratio:4/3;max-height:340px;}
    .closing-social-text{white-space:normal;text-align:center;font-size:14px;}
  }

  /* ---------- PILLARS (sequence) ---------- */
  .pillars{background:var(--cream);color:var(--forest);padding-top:24px;padding-bottom:20px;}
  .pillars-sequence{
    display:flex;align-items:stretch;justify-content:center;gap:28px;
    max-width:1100px;margin:0 auto;
  }
  .pillar{
    position:relative;flex:1;text-align:center;max-width:300px;width:300px;min-height:320px;
    display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;
    border-radius:14px;padding:32px 26px;text-decoration:none;
    background-size:cover;background-position:center;
  }
  .pillar::before{
    content:'';position:absolute;inset:0;
    background:linear-gradient(180deg, rgba(10,18,14,.12) 30%, rgba(10,18,14,.8) 100%);
    z-index:1;
  }
  .pillar-title,.pillar-text{position:relative;z-index:2;}
  .pillar-title{
    font-family:var(--sans);font-size:11px;letter-spacing:.22em;text-transform:uppercase;
    font-weight:700;color:var(--cream);margin-bottom:16px;display:block;
  }
  .pillar-text{
    font-family:var(--serif);font-weight:300;font-size:clamp(15px,1.4vw,17px);
    line-height:1.7;color:var(--cream-soft);max-width:30ch;margin:0 auto;
  }
  .pillar-arrow{
    align-self:center;color:var(--forest);opacity:.5;font-size:20px;font-weight:300;
  }
  @media(max-width:800px){
    .pillars-sequence{flex-direction:column;align-items:center;gap:36px;}
    .pillar-arrow{transform:rotate(90deg);margin-top:0;}
  }

  /* ---------- TERRITORY MAP ---------- */
  .territory{background:var(--cream);text-align:center;padding-top:26px;padding-bottom:6px;}
  .desktop-nowrap{white-space:nowrap;}
  @media(max-width:900px){.desktop-nowrap{white-space:normal;}}
  .territory .subtitle{
    max-width:820px;margin:0 auto 24px;font-size:16px;line-height:1.65;color:#3c473f;
  }
  .territory-col-title{
    font-family:var(--title);font-weight:800;letter-spacing:-0.01em;text-align:center;
    font-size:clamp(22px,2.6vw,30px);margin-bottom:22px;color:var(--ink);
  }
  .map-wrap{position:relative;border-radius:10px;overflow:hidden;height:100%;}
  .map-wrap svg{width:100%;height:auto;}
  .map-photo{width:100%;height:100%;object-fit:cover;display:block;}
  .territory-split{
    display:grid;grid-template-columns:1fr 1fr;gap:20px;
    max-width:1100px;margin:56px auto 0;text-align:left;align-items:stretch;
  }
  .territory-col{display:flex;flex-direction:column;}
  .territory-destinations{display:flex;flex-direction:column;gap:20px;flex:1;}
  .territory-dest{
    position:relative;flex:1;overflow:hidden;border-radius:10px;
    display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;
    padding:32px;text-decoration:none;
    background-size:cover;background-position:center;
  }
  .territory-dest::before{
    content:'';position:absolute;inset:0;
    background:linear-gradient(180deg, rgba(10,18,14,.1) 30%, rgba(10,18,14,.75) 100%);
    z-index:1;transition:background .3s ease;
  }
  .territory-dest:hover::before{background:linear-gradient(180deg, rgba(10,18,14,.2) 20%, rgba(10,18,14,.82) 100%);}
  .territory-dest h3,.territory-dest-region,.territory-dest .link-arrow{position:relative;z-index:2;}
  .territory-dest h3{
    font-family:var(--title);font-weight:800;letter-spacing:0em;color:var(--cream);
    font-size:clamp(26px,2.8vw,36px);margin-bottom:6px;text-transform:uppercase;
  }
  .territory-dest-region{
    display:block;font-size:12.5px;letter-spacing:.04em;color:var(--cream);
    opacity:.8;margin-bottom:16px;
  }
  .territory-destinations .territory-dest{min-height:380px;}
  .territory-dest .link-arrow{color:var(--cream);border-color:var(--cream);}
  @media(max-width:800px){
    .territory-split{grid-template-columns:1fr;gap:20px;}
    .map-wrap{height:auto;aspect-ratio:3/4;}
    .territory-destinations .territory-dest{min-height:300px;padding:24px;}
    .subtitle[style*="nowrap"]{white-space:normal;}
  }
  /* ---------- TWO DESTINATIONS ---------- */
  .destinations{background:var(--cream);padding-top:0;}

  /* ---------- PAGE SYSTEM ---------- */
  .page{display:none;}
  .page.active{display:block;}
  .page-intro{padding-top:170px;padding-bottom:80px;text-align:center;}
  .exp-title-intro{background:#EAEFE6;padding:110px 32px 40px;text-align:center;}
  @media(max-width:700px){.exp-title-intro{padding:90px 20px 28px;}}
  .page-intro h1{font-size:clamp(26px,3.6vw,42px);font-weight:300;margin-top:14px;}
  .figueroa-hero{height:100vh;min-height:640px;}
  @media(max-width:1024px){.figueroa-hero{height:82vh;min-height:560px;aspect-ratio:unset;}}
  @media(max-width:700px){.figueroa-hero{height:78vh;min-height:480px;}}
  .torres-hero{background:var(--forest-deep);}
  /* Scene blocks: full-bleed narrative photo + one line of text (used in Figueroa / Torres storytelling) */
  .scene-overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(10,18,14,.12) 0%, rgba(10,18,14,.1) 40%, rgba(10,18,14,.62) 100%);}
  .scene-text{position:absolute;left:0;right:0;bottom:0;padding:0 24px 40px;text-align:center;}
  .scene-eyebrow{display:block;font-family:var(--sans);font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--cream);opacity:.82;margin-bottom:10px;text-shadow:0 2px 8px rgba(0,0,0,.35);}
  .scene-line{font-family:var(--title);font-weight:800;font-size:clamp(21px,3vw,34px);line-height:1.32;color:var(--cream);max-width:26ch;margin:0 auto;text-shadow:0 2px 10px rgba(0,0,0,.35);}
  @media(max-width:700px){.scene-text{padding:0 20px 32px;}}
  .scene-stack{max-width:1300px;margin:0 auto;display:flex;flex-direction:column;gap:14px;}
  .scene-card{position:relative;width:100%;aspect-ratio:21/9;overflow:hidden;border-radius:14px;}
  .scene-card img{width:100%;height:100%;object-fit:cover;display:block;}
  @media(max-width:700px){.scene-card{aspect-ratio:4/5;}}
  .territory-interlude{background:var(--forest-deep);padding:64px 24px;text-align:center;}
  .territory-interlude .t-line{font-family:var(--title);font-weight:800;color:var(--cream);font-size:clamp(18px,2.3vw,26px);line-height:1.4;max-width:46ch;margin:0 auto 14px;}
  .territory-interlude .t-line:last-child{margin-bottom:0;color:var(--sage);}
  .practical-lead{max-width:620px;margin:0 auto 40px;text-align:center;font-size:15px;line-height:1.8;color:#3c473f;}
  .practical-lead.tight{margin-bottom:16px;}
  .link-arrow{
    display:inline-flex;align-items:center;gap:10px;
    font-size:12px;letter-spacing:.12em;text-transform:uppercase;font-weight:600;
    color:var(--forest);text-decoration:none;border-bottom:1px solid var(--forest);
    padding-bottom:4px;width:fit-content;transition:gap .3s ease,opacity .3s ease;
  }
  .link-arrow:hover{gap:16px;}


  /* ---------- CONTACT FORM ---------- */
  .contact-form{display:flex;flex-direction:column;gap:22px;margin-bottom:56px;}
  .form-group{display:flex;flex-direction:column;gap:8px;text-align:left;}
  .form-group label{
    font-family:var(--sans);font-size:11px;letter-spacing:.14em;text-transform:uppercase;
    font-weight:600;color:var(--sage);
  }
  .form-group input,.form-group textarea{
    font-family:var(--sans);font-size:16px;color:var(--ink);
    border:none;border-bottom:1px solid var(--line);background:transparent;
    padding:10px 2px;resize:vertical;transition:border-color .3s ease;
  }
  .form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--forest);}
  .contact-info-block{text-align:left;margin-bottom:36px;}
  .contact-info-block:last-child{margin-bottom:0;}
  .contact-email-link{
    font-family:var(--sans);font-size:17px;color:var(--ink);text-decoration:none;
    border-bottom:1px solid var(--line);padding-bottom:2px;transition:color .3s ease,border-color .3s ease;
  }
  .contact-email-link:hover{color:var(--forest);border-color:var(--forest);}

  /* ---------- ACTIVITIES STRIP ---------- */
  .discover{background:var(--cream);padding:110px 48px 40px;text-align:center;}
  .discover h2{font-size:clamp(24px,3vw,36px);font-weight:400;}
  .discover .subtitle{max-width:600px;margin:18px auto 0;}

  .cta-btn{
    display:inline-block;padding:16px 38px;border:1px solid var(--cream);
    color:var(--cream);text-decoration:none;font-size:12px;letter-spacing:.14em;
    text-transform:uppercase;font-weight:600;transition:background .3s ease,color .3s ease;
    background:none;font-family:var(--sans);cursor:pointer;-webkit-appearance:none;appearance:none;
  }
  .cta-btn:hover{background:var(--cream);color:var(--forest-deep);}
  .dest-reserve-btn{border-color:var(--forest);color:var(--forest);}
  .dest-reserve-btn:hover{background:var(--forest);color:var(--cream);}

  /* ---------- PROPOSAL REQUEST (institutional) ---------- */
  .proposal-details{margin-top:36px;}
  .proposal-details summary{list-style:none;}
  .proposal-details summary::-webkit-details-marker{display:none;}
  .proposal-details[open] summary{margin-bottom:32px;}
  .route-item{border-top:1px solid #d8d2c4;padding:18px 4px;text-align:left;}
  .route-item:last-child{border-bottom:1px solid #d8d2c4;}
  .route-item-title{display:block;font-family:var(--title);font-weight:700;font-size:15px;letter-spacing:.02em;color:var(--sage);margin-bottom:8px;}
  .route-item p{font-size:15px;line-height:1.7;color:#3c473f;}
  .include-list{display:flex;gap:36px;flex-wrap:wrap;justify-content:center;text-align:left;}
  .include-col{flex:1;min-width:180px;}
  .include-title{display:block;font-family:var(--title);font-weight:700;font-size:13px;letter-spacing:.04em;text-transform:uppercase;color:#B9CDAE;margin-bottom:10px;text-align:center;}
  .include-title.exclude{color:#B9CDAE;}
  .include-col ul{list-style:none;padding:0;margin:0;}
  .include-col li{font-size:14px;line-height:1.6;color:#3c473f;padding-left:22px;position:relative;margin-bottom:8px;background:url('../img/img_6_forest.png') no-repeat left 3px;background-size:12px auto;}
  .proposal-form{max-width:480px;margin:0 auto;text-align:left;}

  /* ---------- ROOM / ACTIVITY DETAIL PAGES (Figueroa) ---------- */
  .back-link{display:inline-block;font-family:var(--sans);font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--sage);font-weight:600;text-decoration:none;margin-bottom:18px;}
  .back-link:hover{color:var(--forest);}
  .room-block{margin-bottom:68px;}
  .room-block:last-child{margin-bottom:0;}
  .room-header{max-width:680px;margin:0 auto 20px;text-align:center;}
  .room-name{font-family:var(--title);font-weight:800;font-size:clamp(20px,2.6vw,28px);color:var(--sage);margin-bottom:12px;text-transform:uppercase;}
  .room-tags{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:4px;}
  .room-tag{font-family:var(--sans);font-size:12px;letter-spacing:.03em;color:var(--forest);border:1px solid var(--line);border-radius:20px;padding:5px 15px;}
  .room-photos{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:900px;margin:26px auto;align-items:start;}
  .room-photos img{width:100%;height:auto;display:block;border-radius:10px;}
  .room-photos:not(.single) img{aspect-ratio:4/3;object-fit:cover;}
  .room-photos.single{grid-template-columns:1fr;max-width:640px;}
  .content-carousel{position:relative;aspect-ratio:4/3;overflow:hidden;border-radius:10px;}
  .content-carousel-track{position:absolute;inset:0;}
  .content-carousel-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:10px;opacity:0;transition:opacity .8s ease;}
  .content-carousel-slide.active{opacity:1;}
  .content-carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);width:38px;height:38px;border-radius:50%;background:rgba(20,33,21,.35);border:1px solid rgba(243,239,229,.5);color:#f3efe5;font-size:20px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;opacity:.85;transition:background .2s,opacity .2s;z-index:2;}
  .content-carousel-arrow:hover{background:rgba(20,33,21,.55);opacity:1;}
  .content-carousel-prev{left:12px;}
  .content-carousel-next{right:12px;}
  .content-carousel-dots{position:absolute;bottom:12px;left:0;right:0;display:flex;justify-content:center;gap:8px;z-index:2;}
  .content-carousel-dots .dot{width:7px;height:7px;border-radius:50%;background:rgba(243,239,229,.5);cursor:pointer;transition:background .2s;}
  .content-carousel-dots .dot.active{background:#f3efe5;}
  .content-photo-full{max-width:1100px;margin:0 auto;}
  .content-photo-full img{width:100%;height:auto;display:block;border-radius:14px;}
  .trail-block{max-width:640px;margin:0 auto 34px;text-align:left;border-top:1px solid #d8d2c4;padding-top:22px;}
  .trail-block:last-of-type{border-bottom:1px solid #d8d2c4;padding-bottom:22px;}
  .trail-name{display:block;font-family:var(--title);font-weight:700;font-size:16px;color:var(--sage);margin-bottom:8px;}
  .trail-tags{display:flex;gap:10px;margin-top:12px;}
  .trail-tag{font-family:var(--sans);font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--forest);border:1px solid var(--line);border-radius:20px;padding:4px 13px;}
  @media(max-width:700px){
    .room-photos{grid-template-columns:1fr;max-width:440px;}
  }

  footer{
    background:var(--forest-deep);color:var(--mist);
    padding:40px 48px 50px;display:flex;justify-content:space-between;
    align-items:center;flex-wrap:wrap;gap:18px;
    border-top:1px solid rgba(201,183,156,.18);
    font-size:12px;letter-spacing:.06em;
  }
  footer a{color:var(--mist);text-decoration:none;margin-left:22px;}
  footer a:hover{color:var(--cream);}
  footer a.footer-ig{display:inline-flex;align-items:center;}

  @media(prefers-reduced-motion:reduce){
    .reveal{transition:none;}
  }

  /* ---------- MOBILE GENERAL ---------- */
  @media(max-width:700px){
    .section{padding:90px 24px;}
    .page-intro{padding-top:120px;padding-bottom:56px;}
    footer{padding:32px 24px 40px;flex-direction:column;text-align:center;gap:14px;}
    footer a{margin:0 10px;}
    .territory{padding-top:16px;padding-bottom:4px;}
  }
