/* ===================================================================
   Paila Travel & Experiences — stylesheet
   Tokens: deep forest green + warm gold (from the Paila logo/banner),
   warm cream base, set in Fraunces (display) + Work Sans (body).
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root{
  --green-900:#0F3D2E;
  --green-800:#14533F;
  --green-700:#1C6B4F;
  --gold-500:#E3A237;
  --gold-300:#F2C776;
  --gold-100:#FBEBC9;
  --cream-50:#FBF8F1;
  --cream-100:#F4EEE0;
  --ink-900:#1B231F;
  --ink-600:#4B564F;
  --stone-200:#E4DFCF;
  --white:#FFFFFF;

  --radius-sm:6px;
  --radius-md:12px;
  --radius-lg:22px;

  --shadow-soft:0 12px 30px -14px rgba(15,61,46,0.28);
  --shadow-lift:0 20px 45px -18px rgba(15,61,46,0.35);

  --font-display:'Fraunces', 'Georgia', serif;
  --font-body:'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink-900);
  background:var(--cream-50);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--green-900);
  margin:0 0 .5em;
  line-height:1.15;
  font-weight:600;
}
p{margin:0 0 1em;color:var(--ink-600);}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
:focus-visible{outline:3px solid var(--gold-500);outline-offset:2px;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
}

/* -------- trail divider (brand motif: a dotted footpath) -------- */
.trail-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 auto;
  padding:0;
  width:100%;
  overflow:hidden;
  height:14px;
}
.trail-divider span{
  width:6px;height:6px;border-radius:50%;
  background:var(--gold-500);
  opacity:.55;
  flex:0 0 auto;
}
.trail-divider span:nth-child(3n){background:var(--green-700);opacity:.4;}

/* -------------------------- buttons -------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px);}
.btn-gold{
  background:var(--gold-500);
  color:var(--green-900);
  box-shadow:var(--shadow-soft);
}
.btn-gold:hover{background:var(--gold-300);}
.btn-outline{
  background:transparent;
  border-color:var(--cream-100);
  color:var(--cream-50);
}
.btn-outline:hover{border-color:var(--gold-500);color:var(--gold-300);}
.btn-outline-dark{
  background:transparent;
  border-color:var(--green-900);
  color:var(--green-900);
}
.btn-outline-dark:hover{background:var(--green-900);color:var(--cream-50);}
.btn-block{width:100%;}

/* -------------------------- top notice bar -------------------------- */
.topbar{
  background:var(--green-900);
  color:var(--cream-100);
  font-size:13.5px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:8px;
  padding-bottom:8px;
  flex-wrap:wrap;
}
.topbar a{opacity:.9;}
.topbar a:hover{color:var(--gold-300);}
.topbar-links{display:flex;gap:18px;flex-wrap:wrap;}
.topbar-socials{display:flex;gap:12px;}
.topbar-socials svg{width:15px;height:15px;}

/* -------------------------- nav -------------------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--cream-50);
  border-bottom:1px solid var(--stone-200);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:20px;
}
.brand{display:flex;align-items:center;gap:10px;}
.brand img{
  height:44px;
  width:auto;
  mix-blend-mode:multiply;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}
.nav-links a{
  font-weight:600;
  font-size:15px;
  color:var(--ink-900);
  position:relative;
  padding:6px 0;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0;height:2px;
  background:var(--gold-500);
  transition:width .2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after{width:100%;}
.nav-links a[aria-current="page"]{color:var(--green-900);}
.nav-cta{display:flex;align-items:center;gap:14px;}

/* Home page header has no visible logo in .brand, so pin the nav links
   and menu button to the top-right corner instead of letting them sit
   centered between two empty flex items. */
.nav-home{justify-content:flex-end;}
.nav-toggle{
  display:none;
  background:none;border:0;cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  display:block;width:24px;height:2px;background:var(--green-900);
  margin:5px 0;transition:.2s;
}

@media (max-width:900px){
  .nav-links{
    position:fixed;
    top:0;right:0;
    height:100vh;
    width:min(78vw,320px);
    background:var(--green-900);
    flex-direction:column;
    align-items:flex-start;
    padding:100px 30px 30px;
    gap:24px;
    transform:translateX(100%);
    transition:transform .3s ease;
  }
  .nav-links.open{transform:translateX(0);}
  .nav-links a{color:var(--cream-100);}
  .nav-links a::after{background:var(--gold-300);}
  .nav-links a[aria-current="page"]{color:var(--gold-300);}
  .nav-toggle{display:block;}
  .nav-cta .btn-gold{padding:10px 18px;font-size:14px;}
}

/* -------------------------- hero (home) -------------------------- */
.hero{position:relative;overflow:hidden;background:var(--green-900);padding:0;}

/* The banner PNG is 2813x1875 but its artwork only fills the top 1325px —
   the rest of the file is blank white. The frame below crops that blank
   strip off so the CTA box can sit in the white space underneath. */
.hero-frame{
  position:relative;
  width:100%;
  aspect-ratio:2813 / 1325;
  overflow:hidden;
}
.hero-frame img{
  position:absolute;
  top:0;left:0;
  width:100%;
  height:auto;
  display:block;
}
/* invisible hotspot placed over the "Book Now" graphic already in the banner,
   measured against the cropped frame */
.hero-booknow{
  position:absolute;
  left:4.9%; top:69.3%;
  width:16.6%; height:8.7%;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius:999px;
}
.hero-booknow:focus-visible{outline:3px solid var(--gold-300);outline-offset:4px;}

/* ---- phone hero: the banner's baked-in text is unreadable at phone widths,
   so below 760px we swap in a real text hero with a real tappable button ---- */
.hero-mobile{display:none;}
@media (max-width:760px){
  .hero-frame{display:none;}
  .hero-mobile{
    display:flex;
    align-items:center;
    position:relative;
    min-height:clamp(400px,74vh,540px);
    padding:48px 0;
    background-image:
      linear-gradient(180deg, rgba(15,61,46,.72) 0%, rgba(15,61,46,.58) 40%, rgba(15,61,46,.94) 100%),
      url('../images/badi.png');
    background-size:cover;
    background-position:center;
  }
  .hero-mobile .hero-eyebrow{
    color:var(--gold-300);
    font-weight:600;
    font-size:13px;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:12px;
  }
  .hero-mobile h1{
    color:var(--cream-50);
    font-size:clamp(2rem,9vw,2.8rem);
    line-height:1.1;
    margin-bottom:14px;
  }
  .hero-mobile h1 span{color:var(--gold-300);}
  .hero-mobile .hero-sub{
    color:var(--cream-100);
    font-size:16.5px;
    max-width:420px;
    margin-bottom:26px;
  }
  .hero-mobile .btn{width:100%;max-width:280px;}
}

/* the CTA box that now sits in the white band under the banner */
.cta-after-hero{padding:56px 0 64px;background:var(--cream-50);}
@media (max-width:760px){.cta-after-hero{padding:40px 0 48px;}}

/* -------------------------- page hero (inner pages) -------------------------- */
.page-hero{
  background:
    radial-gradient(1200px 300px at 15% -10%, rgba(227,162,55,0.18), transparent 60%),
    var(--green-900);
  color:var(--cream-50);
  padding:72px 0 56px;
  position:relative;
  overflow:hidden;
}
.page-hero .eyebrow-mark{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--gold-300);
  font-weight:600;font-size:14px;margin-bottom:10px;
}
.page-hero h1{color:var(--cream-50);font-size:clamp(2rem,4vw,3rem);}
.page-hero p{color:var(--stone-200);max-width:560px;font-size:17px;}

/* -------------------------- sections -------------------------- */
section{padding:80px 0;}
.section-head{
  max-width:620px;
  margin-bottom:44px;
}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head .kicker{
  color:var(--green-700);
  font-weight:700;
  font-size:14px;
  letter-spacing:.02em;
  display:flex;align-items:center;gap:8px;
  margin-bottom:10px;
}
.section-head .kicker svg{width:16px;height:16px;flex:0 0 auto;}
.section-head h2{font-size:clamp(1.7rem,3vw,2.4rem);}

.bg-cream-100{background:var(--cream-100);}
.bg-green{background:var(--green-900);color:var(--cream-100);}
.bg-green h2, .bg-green h3{color:var(--cream-50);}
.bg-green p{color:var(--stone-200);}

/* -------------------------- stats strip -------------------------- */
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding:36px 0;
}
.stat b{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(1.6rem,3vw,2.2rem);
  color:var(--green-900);
}
.stat span{font-size:14px;color:var(--ink-600);}
@media (max-width:760px){.stats{grid-template-columns:repeat(2,1fr);}}

/* -------------------------- destination postcards -------------------------- */
.postcards{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:28px;
  align-items:stretch;
}
.postcard-main{grid-row:span 2;}
.postcard{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  min-height:220px;
  display:flex;
  align-items:flex-end;
  box-shadow:var(--shadow-soft);
  transition:transform .25s ease, box-shadow .25s ease;
}
.postcard-main{min-height:460px;}
.postcard:hover{transform:translateY(-4px);box-shadow:var(--shadow-lift);}
.postcard .art{
  position:absolute;inset:0;
}
.postcard .tag{
  position:absolute;
  top:18px;left:18px;
  background:var(--green-900);
  color:var(--gold-300);
  font-weight:600;
  font-size:12.5px;
  padding:6px 12px;
  border-radius:999px;
  display:flex;align-items:center;gap:6px;
}
.postcard .body{
  position:relative;
  z-index:2;
  padding:22px;
  color:var(--white);
  background:linear-gradient(0deg, rgba(10,30,22,.82) 0%, rgba(10,30,22,0) 75%);
  width:100%;
}
.postcard .body h3{color:var(--white);margin-bottom:4px;font-size:1.35rem;}
.postcard .body p{color:var(--stone-200);font-size:14.5px;margin-bottom:10px;}
.postcard .body a{
  font-weight:600;font-size:14px;color:var(--gold-300);
  display:inline-flex;align-items:center;gap:6px;
}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
@media (max-width:820px){
  .postcards{grid-template-columns:1fr;}
  .postcard-main{grid-row:auto;min-height:300px;}
  .grid-2{grid-template-columns:1fr;}
}

/* generic duotone destination art (no stock photography used — swap
   these gradients for real photography whenever it's ready) */
.art.duotone-1{background:linear-gradient(155deg,#123C2E 0%, #1C6B4F 55%, #3E8F6B 100%);}
.art.duotone-2{background:linear-gradient(155deg,#0F3D2E 0%, #2C7A5A 60%, #E3A237 130%);}
.art.duotone-3{background:linear-gradient(155deg,#14533F 0%, #E3A237 140%);}
.art.duotone-4{background:linear-gradient(155deg,#1B4A3A 0%, #3E8F6B 60%, #F2C776 130%);}
.art svg{position:absolute;bottom:-6%;left:0;width:100%;opacity:.9;}

/* -------------------------- cards -------------------------- */
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
@media (max-width:900px){.cards-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:620px){.cards-grid{grid-template-columns:1fr;}}

.info-card{
  background:var(--white);
  border:1px solid var(--stone-200);
  border-radius:var(--radius-md);
  padding:28px;
  height:100%;
}
.info-card .icon{
  width:46px;height:46px;
  border-radius:12px;
  background:var(--gold-100);
  color:var(--green-900);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.info-card .icon svg{width:24px;height:24px;}
.info-card h3{font-size:1.15rem;margin-bottom:6px;}
.info-card p{font-size:14.5px;margin-bottom:0;}

/* -------------------------- footstep timeline (About + Why us) -------------------------- */
.footstep-line{
  position:relative;
  max-width:780px;
  margin:0 auto;
}
.footstep{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:22px;
  padding-bottom:40px;
  position:relative;
}
.footstep:last-child{padding-bottom:0;}
.footstep::before{
  content:'';
  position:absolute;
  left:27px; top:56px; bottom:0;
  width:2px;
  background:repeating-linear-gradient(0deg, var(--stone-200) 0 6px, transparent 6px 12px);
}
.footstep:last-child::before{display:none;}
.footstep .mark{
  width:56px;height:56px;border-radius:50%;
  background:var(--green-900);
  color:var(--gold-300);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:1.1rem;font-weight:600;
  flex:0 0 auto;
}
.footstep h3{margin-bottom:4px;font-size:1.2rem;}
.footstep p{margin-bottom:0;font-size:15px;}

/* -------------------------- package cards -------------------------- */
.package-card{
  background:var(--white);
  border:1px solid var(--stone-200);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-soft);
}
.package-card .top{
  padding:26px 26px 20px;
  color:var(--white);
  position:relative;
}
.package-card .top h3{color:var(--white);margin-bottom:2px;}
.package-card .top .duration{
  font-size:13.5px;color:var(--gold-300);font-weight:600;
}
.package-card .body{padding:24px 26px 28px;flex:1;display:flex;flex-direction:column;}
.package-card ul{margin-bottom:20px;flex:1;}
.package-card li{
  font-size:14.5px;
  color:var(--ink-600);
  padding-left:22px;
  position:relative;
  margin-bottom:9px;
}
.package-card li::before{
  content:'';
  position:absolute;left:0;top:7px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--gold-500);
}
.package-card .price{
  font-family:var(--font-display);
  font-size:1.4rem;
  color:var(--green-900);
  margin-bottom:14px;
}
.package-card .price small{
  font-family:var(--font-body);
  font-size:13px;
  color:var(--ink-600);
  font-weight:400;
}
.packages-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
@media (max-width:980px){.packages-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:640px){.packages-grid{grid-template-columns:1fr;}}

.note-banner{
  background:var(--gold-100);
  border:1px dashed var(--gold-500);
  border-radius:var(--radius-md);
  padding:16px 20px;
  font-size:14px;
  color:var(--green-900);
  margin-bottom:36px;
}

/* -------------------------- testimonials -------------------------- */
.testimonial{
  background:var(--white);
  border:1px solid var(--stone-200);
  border-radius:var(--radius-md);
  padding:26px;
}
.testimonial p{
  font-family:var(--font-display);
  font-size:1.15rem;
  color:var(--green-900);
  font-weight:500;
  margin-bottom:14px;
}
.testimonial .who{font-size:13.5px;color:var(--ink-600);font-weight:600;}

/* -------------------------- CTA banner -------------------------- */
.cta-banner{
  background:var(--gold-500);
  border-radius:var(--radius-lg);
  padding:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.cta-banner h2{color:var(--green-900);margin-bottom:4px;font-size:clamp(1.5rem,3vw,2.1rem);}
.cta-banner p{color:var(--green-900);opacity:.8;margin-bottom:0;}
.cta-banner.cta-dark{background:#083822;border:1px solid #083822;}
.cta-banner.cta-dark h2{color:#FFFFFF;}
.cta-banner.cta-dark p{color:#FFFFFF;opacity:.9;}
.cta-banner.cta-dark .btn-outline-dark{border-color:#FFFFFF;color:#FFFFFF;}
.cta-banner.cta-dark .btn-outline-dark:hover{background:#FFFFFF;color:#083822;}

/* -------------------------- contact page -------------------------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr;}}
.contact-list{margin-bottom:28px;}
.contact-list li{
  display:flex;gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--stone-200);
}
.contact-list li:first-child{padding-top:0;}
.contact-list .icon{
  width:42px;height:42px;border-radius:10px;
  background:var(--green-900);color:var(--gold-300);
  display:flex;align-items:center;justify-content:center;flex:0 0 auto;
}
.contact-list .icon svg{width:20px;height:20px;}
.contact-list h4{margin:0 0 2px;font-family:var(--font-body);font-size:14.5px;color:var(--ink-900);}
.contact-list p{margin:0;font-size:14.5px;}
.map-frame{
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--stone-200);
  height:280px;
}
.map-frame iframe{width:100%;height:100%;border:0;}

/* -------------------------- forms -------------------------- */
.form-card{
  background:var(--white);
  border:1px solid var(--stone-200);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-soft);
}
.field{margin-bottom:18px;}
.field label{
  display:block;font-weight:600;font-size:13.5px;
  margin-bottom:6px;color:var(--green-900);
}
.field input,.field textarea,.field select{
  width:100%;
  padding:12px 14px;
  border-radius:var(--radius-sm);
  border:1.5px solid var(--stone-200);
  font-family:var(--font-body);
  font-size:15px;
  background:var(--cream-50);
  color:var(--ink-900);
}
.field input:focus,.field textarea:focus,.field select:focus{
  border-color:var(--green-700);
  outline:none;
  background:var(--white);
}
.field select{
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  padding-right:40px;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C6B4F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 13px center;
  background-size:17px;
}
.field select:invalid{color:var(--ink-600);}
/* date inputs render tiny/misaligned on iOS without this */
.field input[type="date"]{
  appearance:none;
  -webkit-appearance:none;
  min-height:46px;
  line-height:1.4;
}
.field input[type="date"]::-webkit-date-and-time-value{text-align:left;}
.field input[type="date"]::-webkit-calendar-picker-indicator{cursor:pointer;opacity:.65;}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:0 16px;}
@media (max-width:560px){.field-row{grid-template-columns:1fr;}}
.field-hint{font-size:12.5px;color:var(--ink-600);margin-top:6px;}
.field-checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:4px 0 20px;
  padding:12px 14px;
  border-radius:var(--radius-sm);
  background:var(--cream-50);
  border:1.5px solid var(--stone-200);
}
.field-checkbox input[type="checkbox"]{
  width:18px;height:18px;flex:0 0 18px;margin-top:2px;
  accent-color:var(--green-700);cursor:pointer;
}
.field-checkbox label{
  font-size:12.5px;line-height:1.5;color:var(--ink-600);
  font-weight:500;cursor:pointer;
}
.form-msg{
  font-size:14px;
  padding:10px 14px;
  border-radius:var(--radius-sm);
  margin-bottom:16px;
  display:none;
}
.form-msg.show{display:block;}
.form-msg.ok{background:#E4F3EA;color:var(--green-900);}
.form-msg.err{background:#FCE9E4;color:#8A2E1D;}

/* -------------------------- booking modal -------------------------- */
.modal-backdrop{
  position:fixed;inset:0;
  background:rgba(15,25,20,.55);
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
  z-index:1000;
}
.modal-backdrop.open{display:flex;}
.modal{
  background:var(--cream-50);
  border-radius:var(--radius-lg);
  max-width:460px;width:100%;
  max-height:92vh;overflow-y:auto;
  padding:32px;
  position:relative;
  box-shadow:var(--shadow-lift);
}
.modal-close{
  position:absolute;top:16px;right:16px;
  width:34px;height:34px;border-radius:50%;
  border:0;background:var(--cream-100);
  cursor:pointer;font-size:18px;color:var(--green-900);
  display:flex;align-items:center;justify-content:center;
}
.modal-close:hover{background:var(--gold-100);}
.modal-head{margin-bottom:20px;}
.modal-head .icon-badge{
  width:44px;height:44px;border-radius:12px;
  background:var(--green-900);color:var(--gold-300);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:12px;
}
.modal-head .icon-badge svg{width:22px;height:22px;}
.modal-head h3{margin-bottom:4px;}
.modal-head p{font-size:14px;margin-bottom:0;}

/* -------------------------- floating action buttons -------------------------- */
.fab-stack{
  position:fixed;
  right:22px;bottom:22px;
  display:flex;flex-direction:column;
  gap:14px;
  z-index:400;
}
.fab{
  position:relative;
  width:56px;height:56px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 24px -8px rgba(0,0,0,.4);
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
  animation:fab-pop .6s cubic-bezier(.34,1.56,.64,1) both;
}
.fab svg{width:26px;height:26px;position:relative;z-index:1;}
.fab-whatsapp{background:#25D366;color:#fff;--ring:37,211,102;animation-delay:.6s;}
.fab-call{background:var(--green-900);color:var(--gold-300);--ring:244,180,40;animation-delay:.8s;}

/* 1) Pulsing ring that radiates outward (the two buttons pulse alternately) */
.fab::before{
  content:"";
  position:absolute;inset:0;
  border-radius:50%;
  box-shadow:0 0 0 0 rgba(var(--ring),.55);
  animation:fab-ring 2.2s ease-out infinite;
  animation-delay:1.6s;
  pointer-events:none;
}
.fab-call::before{animation-delay:2.7s;}

/* 2) Icon wiggle every few seconds to catch the eye */
.fab-call svg{animation:fab-shake 4s ease-in-out infinite;animation-delay:3s;transform-origin:50% 50%;}
.fab-whatsapp svg{animation:fab-bounce 5s ease-in-out infinite;animation-delay:2s;}

/* 3) Hover / keyboard focus: lift, glow, stop pulsing, show label */
.fab:hover,
.fab:focus-visible{
  transform:translateY(-4px) scale(1.1);
  box-shadow:0 14px 28px -8px rgba(0,0,0,.45), 0 0 0 6px rgba(var(--ring),.22);
}
.fab:hover::before,
.fab:focus-visible::before{animation:none;}
.fab:active{transform:scale(.96);}
.fab:focus-visible{outline:3px solid var(--gold-300);outline-offset:3px;}

/* 4) Label that slides out to the left on hover (uses each button's aria-label) */
.fab::after{
  content:attr(aria-label);
  position:absolute;
  right:calc(100% + 14px);top:50%;
  transform:translate(10px,-50%);
  background:var(--green-900);
  color:#fff;
  font-size:13px;font-weight:600;
  white-space:nowrap;
  padding:8px 14px;
  border-radius:999px;
  box-shadow:0 8px 20px -8px rgba(0,0,0,.4);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}
.fab:hover::after,
.fab:focus-visible::after{opacity:1;transform:translate(0,-50%);}
@media (hover:none){ .fab::after{display:none;} }   /* no hover labels on touch screens */

@keyframes fab-pop{
  0%{opacity:0;transform:scale(.3) translateY(30px);}
  100%{opacity:1;transform:scale(1) translateY(0);}
}
@keyframes fab-ring{
  0%{box-shadow:0 0 0 0 rgba(var(--ring),.55);}
  70%,100%{box-shadow:0 0 0 20px rgba(var(--ring),0);}
}
@keyframes fab-shake{
  0%,60%,100%{transform:rotate(0);}
  65%{transform:rotate(-16deg);}
  70%{transform:rotate(14deg);}
  75%{transform:rotate(-12deg);}
  80%{transform:rotate(10deg);}
  85%{transform:rotate(-6deg);}
  90%{transform:rotate(0);}
}
@keyframes fab-bounce{
  0%,70%,100%{transform:translateY(0);}
  78%{transform:translateY(-5px);}
  86%{transform:translateY(0);}
  92%{transform:translateY(-2px);}
}

/* Respect people who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .fab,.fab::before,.fab svg{animation:none !important;}
}
/* -------------------------- footer -------------------------- */
.site-footer{
  background:var(--green-900);
  color:var(--stone-200);
  padding:64px 0 0;
  position:relative;
  overflow:hidden;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.12);
  position:relative;
  z-index:2;
}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-grid h4{
  color:var(--gold-300);
  font-family:var(--font-body);
  font-size:14px;
  margin-bottom:16px;
}
.footer-grid p{color:var(--stone-200);font-size:14.5px;}
.footer-brand img{height:38px;margin-bottom:14px;filter:brightness(0) invert(1);mix-blend-mode:normal;}
.footer-brand-name{
  color:#FFFFFF;
  font-weight:700;
  font-size:20px;
  letter-spacing:.2px;
  margin-bottom:14px;
}
.footer-links li{margin-bottom:10px;}
.footer-links a{font-size:14.5px;color:var(--stone-200);}
.footer-links a:hover{color:var(--gold-300);}
.footer-links li.footer-email a{word-break:break-word;}
.footer-socials{display:flex;gap:12px;margin-top:16px;}
.footer-socials a{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.footer-socials a:hover{background:var(--gold-500);color:var(--green-900);}
.footer-socials svg{width:17px;height:17px;}
.footer-bottom{
  padding-top:22px;
  padding-bottom:26px;
  display:flex;justify-content:space-between;
  flex-wrap:wrap;gap:10px;
  font-size:13px;color:rgba(255,255,255,.55);
  position:relative;
  z-index:2;
}

/* -------------------------- misc -------------------------- */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .5s ease, transform .5s ease;}
.reveal.in{opacity:1;transform:none;}

/* ===================================================================
   DESTINATION CARDS (destinations.html) — real photography
=================================================================== */
.dest-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
@media (max-width:980px){.dest-grid{grid-template-columns:repeat(2,1fr);gap:26px;}}
@media (max-width:640px){.dest-grid{grid-template-columns:1fr;gap:24px;}}

.dest-card{
  background:var(--white);
  border:1px solid var(--stone-200);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-soft);
  transition:transform .25s ease, box-shadow .25s ease;
  scroll-margin-top:90px;
}
.dest-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift);}

.dest-media{
  position:relative;
  aspect-ratio:16 / 10;
  overflow:hidden;
  background:var(--cream-100);
}
.dest-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.dest-card:hover .dest-media img{transform:scale(1.06);}
.dest-media::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(0deg, rgba(10,30,22,.45) 0%, rgba(10,30,22,0) 45%);
  pointer-events:none;
}
.dest-media .tag{
  position:absolute;
  top:14px;left:14px;
  z-index:2;
  background:var(--green-900);
  color:var(--gold-300);
  font-weight:600;
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
  display:inline-flex;align-items:center;gap:6px;
}
.dest-media .tag svg{width:13px;height:13px;flex:0 0 auto;}

.dest-body{
  padding:22px 22px 24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.dest-body h3{font-size:1.25rem;margin-bottom:4px;}
.dest-country{
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--green-700);
  margin-bottom:10px;
}
.dest-body p{font-size:14.5px;margin-bottom:16px;flex:1;}
.dest-meta{
  display:flex;flex-wrap:wrap;gap:8px;
  margin-bottom:18px;
}
.dest-meta span{
  font-size:12px;
  font-weight:600;
  color:var(--green-900);
  background:var(--gold-100);
  border-radius:999px;
  padding:5px 11px;
}
.dest-book{
  align-self:flex-start;
  padding:11px 22px;
  font-size:14px;
}
@media (max-width:640px){.dest-book{width:100%;align-self:stretch;}}

/* ===================================================================
   RESPONSIVE POLISH (phones + small tablets)
=================================================================== */
html,body{overflow-x:hidden;}
img,svg,iframe{max-width:100%;}

@media (max-width:900px){
  .nav-links{height:100dvh;}
}

@media (max-width:760px){
  section{padding:54px 0;}
  .container{padding:0 18px;}
  .section-head{margin-bottom:32px;}
  .page-hero{padding:48px 0 40px;}
  .page-hero p{font-size:16px;}
  .brand img{height:38px;}

  /* CTA box stacks and the button goes full-width so it's easy to tap */
  .cta-banner{padding:30px 22px;gap:18px;}
  .cta-banner .btn{width:100%;}

  /* footstep timeline reads better with a smaller marker column */
  .footstep{grid-template-columns:44px 1fr;gap:16px;padding-bottom:30px;}
  .footstep .mark{width:44px;height:44px;font-size:1rem;}
  .footstep::before{left:21px;top:44px;}

  .form-card{padding:24px 20px;}
  .contact-grid{gap:32px;}
  .map-frame{height:230px;}

  .footer-bottom{flex-direction:column;align-items:flex-start;gap:6px;}
  .site-footer{padding:48px 0 22px;}

  /* keep the floating buttons clear of phone gesture bars */
  .fab-stack{right:14px;bottom:calc(14px + env(safe-area-inset-bottom,0px));gap:12px;}
  .fab{width:50px;height:50px;}
  .fab svg{width:23px;height:23px;}
}

@media (max-width:560px){
  .modal-backdrop{padding:0;align-items:flex-end;}
  .modal{
    max-width:100%;
    border-radius:22px 22px 0 0;
    padding:26px 20px calc(26px + env(safe-area-inset-bottom,0px));
    max-height:92dvh;
  }
  .modal-head .icon-badge{width:38px;height:38px;margin-bottom:10px;}
  /* 16px minimum stops iOS Safari zooming in when a field is focused */
  .field input,.field textarea,.field select{font-size:16px;}
}
