:root{
  --primary:#0f1722;
  --secondary:#162233;
  --gold:#d8b26b;
  --gold-soft:#ecd8ae;
  --teal:#2a97a3;
  --white:#ffffff;
  --off:#f7f5f1;
  --line:rgba(15,23,34,.1);
  --muted:#667085;
  --text:#192331;
  --shadow:0 30px 80px rgba(7,16,27,.10);
  --radius-lg:30px;
  --radius-md:20px;
  --radius-sm:14px;
  --transition:all .45s cubic-bezier(.16,1,.3,1);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--off);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}

.container{
  width:min(1180px, calc(100% - 32px));
  margin-inline:auto;
}

.navbar{
  position:fixed;
  inset:18px 0 auto 0;
  z-index:1000;
}
.nav-shell{
  width:min(1180px, calc(100% - 32px));
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(10,17,28,.34);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-radius:999px;
  transition:var(--transition);
}
.navbar.scrolled .nav-shell{
  background:rgba(255,255,255,.94);
  border-color:rgba(0,0,0,.06);
  box-shadow:0 20px 55px rgba(15,23,34,.08);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-logo{
  width:50px;
  height:50px;
  object-fit:contain;
  border-radius:50%;
  background:rgba(255,255,255,.8);
  padding:4px;
}
.brand-text{
  font-family:'Syne',sans-serif;
  font-size:.9rem;
  font-weight:700;
  letter-spacing:1.3px;
  text-transform:uppercase;
  line-height:1.08;
  color:var(--white);
}
.brand-text small{
  display:block;
  font-size:.62rem;
  letter-spacing:4px;
  color:var(--gold-soft);
  font-weight:500;
  margin-top:4px;
}
.navbar.scrolled .brand-text{color:var(--text)}
.navbar.scrolled .brand-text small{color:var(--gold)}
.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}
.nav-links a{
  color:var(--white);
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:600;
  transition:var(--transition);
}
.nav-links a.active,
.nav-links a:hover{color:var(--gold)}
.navbar.scrolled .nav-links a{color:var(--text)}
.navbar.scrolled .nav-links a.active,
.navbar.scrolled .nav-links a:hover{color:#8d6330}
.nav-cta{
  padding:12px 20px;
  border-radius:999px;
  background:var(--white);
  color:var(--primary)!important;
}
.navbar.scrolled .nav-cta{
  background:var(--primary);
  color:var(--white)!important;
}
.menu-toggle{
  display:none;
  width:48px;height:48px;
  border:0; border-radius:50%;
  background:rgba(255,255,255,.12);
  color:var(--white);
  cursor:pointer;
  position:relative;
}
.menu-toggle span{
  position:absolute;
  left:14px;
  width:20px;
  height:2px;
  background:currentColor;
  transition:var(--transition);
}
.menu-toggle span:first-child{top:18px}
.menu-toggle span:last-child{top:28px}

.hero{
  min-height:100svh;
  position:relative;
  display:grid;
  place-items:center;
  padding:120px 16px 64px;
  background:
    linear-gradient(to bottom, rgba(6,12,20,.42), rgba(6,12,20,.28)),
    url('images/IMG_1564@918009456.JPG') center/cover no-repeat;
}
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, rgba(255,255,255,.05), transparent 48%);
  animation:heroPulse 8s ease-in-out infinite alternate;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.36));
}
.hero-content{
  position:relative;
  z-index:1;
  text-align:center;
  color:var(--white);
  max-width:860px;
}
.eyebrow,.section-kicker{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:.75rem;
  font-weight:700;
  color:var(--gold-soft);
  margin-bottom:16px;
}
.hero-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(3.1rem,8vw,6.7rem);
  line-height:.94;
  letter-spacing:-2px;
  margin-bottom:20px;
}
.hero-subtitle{
  font-size:1.08rem;
  max-width:650px;
  margin:0 auto 34px;
  color:rgba(255,255,255,.82);
}
.hero-btns{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:170px;
  padding:16px 28px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:var(--transition);
}
.btn-light{
  background:var(--white);
  color:var(--primary);
}
.btn-light:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(0,0,0,.18);
}
.btn-outline{
  border:1px solid rgba(255,255,255,.35);
  color:var(--white);
  background:rgba(255,255,255,.06);
}
.btn-outline:hover{
  background:var(--white);
  color:var(--primary);
}
.btn-dark{
  background:var(--primary);
  color:var(--white);
}
.btn-dark:hover{transform:translateY(-4px)}

.scroll-indicator{
  position:absolute;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  width:34px;height:58px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;
  display:grid;
  place-items:center;
  z-index:1;
}
.scroll-indicator span{
  width:4px;height:12px;border-radius:999px;background:var(--white);
  animation:scrollDot 1.6s infinite;
}

.intro-band{
  padding:90px 0 30px;
}
.intro-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:40px;
  align-items:end;
}
.section-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:1.05;
  letter-spacing:-1.5px;
  text-align:center;
}
.section-title.left{text-align:left}
.section-copy{
  font-size:1rem;
  color:var(--muted);
}

.booking-section,
.gallery-section,
.experience-section,
.story-section,
.highlights-section,
.about-gallery,
.cta-section{
  padding:110px 0;
}
.booking-container,
.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:68px;
  align-items:center;
}
.booking-info p,
.story-copy p{
  color:var(--muted);
  margin-top:20px;
}
.image-frame{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.05);
}
.booking-image{
  margin-top:36px;
}
.booking-image img,
.exp-img img,
.story-image img,
.about-strip-item img,
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.booking-image{height:540px}
.story-image{height:540px}


.booking-side{
  display:flex;
  flex-direction:column;
  gap:22px;
}
.booking-perks{
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.95));
  border:1px solid rgba(0,0,0,.06);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:26px;
}
.booking-perks-head{
  margin-bottom:18px;
}
.booking-perks-head .section-kicker{
  margin-bottom:10px;
}
.booking-perks-head h3{
  font-family:'Syne',sans-serif;
  font-size:1.4rem;
  line-height:1.05;
  letter-spacing:-.5px;
  color:var(--primary);
}
.booking-perks-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.perk-card{
  background:#fcfcfc;
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  padding:18px;
  min-height:150px;
}
.perk-card-wide{
  grid-column:1 / -1;
}
.perk-icon{
  display:inline-flex;
  width:38px;
  height:38px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background:rgba(216,178,107,.14);
  color:#8d6330;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:14px;
}
.perk-card h4{
  font-family:'Syne',sans-serif;
  font-size:1.02rem;
  line-height:1.05;
  margin-bottom:8px;
  color:var(--primary);
}
.perk-card p{
  color:var(--muted);
  font-size:.94rem;
  line-height:1.65;
}

.booking-form-wrapper{
  background:var(--white);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:34px;
  border:1px solid rgba(0,0,0,.06);
}
.booking-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.input-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.input-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.input-group label{
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:1.8px;
  font-weight:700;
  color:var(--primary);
}
.input-group input,
.input-group select,
.input-group textarea{
  width:100%;
  background:#fbfbfb;
  border:1px solid #e8e8e8;
  border-radius:16px;
  padding:16px 18px;
  outline:none;
  transition:var(--transition);
  color:var(--text);
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(216,178,107,.12);
  background:var(--white);
}
#nights{
  color:#8893a0;
  font-weight:600;
}
.btn-book{
  margin-top:8px;
  background:linear-gradient(135deg, #25D366, #138f5c);
  color:var(--white);
  border:0;
  border-radius:18px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  font-weight:800;
  letter-spacing:1.2px;
  text-transform:uppercase;
  transition:var(--transition);
}
.btn-book:hover{transform:translateY(-3px);box-shadow:0 18px 30px rgba(19,143,92,.22)}
.form-note{font-size:.9rem;color:var(--muted)}

.gallery-header,
.experience-header,
.highlights-header{
  text-align:center;
  margin-bottom:54px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  grid-auto-rows:130px;
  gap:18px;
}
.gallery-item{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.gallery-item:nth-child(1){grid-column:span 4;grid-row:span 4}
.gallery-item:nth-child(2){grid-column:span 8;grid-row:span 4}
.gallery-item:nth-child(3){grid-column:span 4;grid-row:span 3}
.gallery-item:nth-child(4){grid-column:span 4;grid-row:span 3}
.gallery-item:nth-child(5){grid-column:span 4;grid-row:span 6}
.item-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:22px 20px;
  background:linear-gradient(to top, rgba(8,14,23,.72), transparent);
}
.item-overlay span{
  color:var(--white);
  font-weight:700;
  letter-spacing:.4px;
}
.gallery-item img{transition:transform 1s cubic-bezier(.16,1,.3,1)}
.gallery-item:hover img{transform:scale(1.06)}

.experience-grid,
.highlights-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.experience-card,
.highlight-card{
  background:var(--white);
  border:1px solid rgba(0,0,0,.06);
  border-radius:26px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.exp-img{height:300px}
.exp-info{padding:24px}
.exp-info h3,
.highlight-card h3{
  font-family:'Syne',sans-serif;
  font-size:1.45rem;
  margin-bottom:10px;
}
.exp-info p,
.highlight-card p{color:var(--muted)}

.highlight-card{
  padding:28px;
}

.page-hero{
  min-height:70svh;
  position:relative;
  display:flex;
  align-items:end;
  padding:150px 0 70px;
  background:
    linear-gradient(to bottom, rgba(8,15,24,.48), rgba(8,15,24,.40)),
    url('images/IMG_1574@965780897.JPG') center/cover no-repeat;
}
.page-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(8,15,24,.4), rgba(8,15,24,.18));
}
.page-hero-content{
  position:relative;
  z-index:1;
  color:var(--white);
  max-width:900px;
}
.page-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(2.6rem,5vw,5.2rem);
  line-height:1;
  letter-spacing:-1.8px;
  margin-bottom:20px;
}
.page-subtitle{
  max-width:700px;
  font-size:1.04rem;
  color:rgba(255,255,255,.82);
}
.about-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.about-strip-item{height:340px}

.cta-box{
  background:linear-gradient(135deg, #fff, #f4efe5);
  border:1px solid rgba(0,0,0,.06);
  border-radius:32px;
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  box-shadow:var(--shadow);
}

.site-footer{
  background:var(--primary);
  color:var(--white);
  padding:78px 0 24px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-logo{
  width:66px;height:66px;object-fit:contain;border-radius:50%;background:#fff;padding:6px;margin-bottom:16px;
}
.footer-name{
  font-family:'Syne',sans-serif;
  font-size:1.3rem;
  text-transform:uppercase;
  letter-spacing:2px;
}
.footer-name small{
  display:block;
  margin-top:6px;
  font-size:.7rem;
  color:var(--gold-soft);
  letter-spacing:4px;
}
.footer-blurb{
  margin-top:14px;
  max-width:440px;
  color:rgba(255,255,255,.72);
}
.footer-col span{
  display:block;
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:700;
  color:var(--gold-soft);
  margin-bottom:16px;
}
.footer-col a,
.footer-col p{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.78);
}
.footer-bottom{
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  font-size:.78rem;
  color:rgba(255,255,255,.5);
}

.reveal-up{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal-up.revealed{
  opacity:1;
  transform:none;
}

@keyframes scrollDot{
  0%{transform:translateY(-7px);opacity:0}
  35%{opacity:1}
  100%{transform:translateY(7px);opacity:0}
}
@keyframes heroPulse{
  from{transform:scale(1)}
  to{transform:scale(1.03)}
}

@media (max-width: 1024px){
  .intro-grid,
  .booking-container,
  .story-grid,
  .experience-grid,
  .highlights-grid,
  .about-strip,
  .footer-top{
    grid-template-columns:1fr 1fr;
  }
  .experience-grid,
  .highlights-grid{grid-template-columns:1fr 1fr}
  .gallery-grid{grid-auto-rows:115px}
}

@media (max-width: 860px){
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    top:calc(100% + 12px);
    left:16px;
    right:16px;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(0,0,0,.06);
    border-radius:24px;
    box-shadow:0 20px 40px rgba(15,23,34,.12);
    padding:18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }
  .nav-links.open{display:flex}
  .nav-links a{color:var(--text)!important}
  .nav-cta{width:100%;justify-content:center}
  .menu-toggle{color:var(--white)}
  .navbar.scrolled .menu-toggle{color:var(--primary);background:rgba(15,23,34,.06)}
  .intro-grid,
  .booking-container,
  .story-grid,
  .experience-grid,
  .highlights-grid,
  .about-strip,
  .footer-top,
  .input-row,
  .cta-box{
    grid-template-columns:1fr;
  }
  .booking-image,
  .story-image{height:420px}
  .gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:auto;
  }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5){
    grid-column:auto;
    grid-row:auto;
    min-height:290px;
  }
  .cta-box{padding:30px}
}

@media (max-width: 640px){
  .booking-perks{padding:20px}
  .booking-perks-grid{grid-template-columns:1fr}
  .perk-card-wide{grid-column:auto}

  .navbar{inset:12px 0 auto 0}
  .nav-shell{padding:12px 14px}
  .brand-logo{width:44px;height:44px}
  .brand-text{font-size:.78rem}
  .hero{padding-top:118px}
  .hero-subtitle{font-size:.98rem}
  .section-title{font-size:2rem}
  .booking-section,
  .gallery-section,
  .experience-section,
  .story-section,
  .highlights-section,
  .about-gallery,
  .cta-section{padding:78px 0}
  .booking-form-wrapper{padding:22px}
  .footer-bottom{flex-direction:column}
}


/* --- user requested refinements --- */
.booking-section{
  padding-top: 88px;
}
.booking-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.booking-image{
  height: 620px;
  border-radius: 34px;
  background:#efeae2;
}
.booking-image img{
  object-position: center center;
  transform: scale(1.03);
}
.booking-info p{
  max-width: 540px;
}

.gallery-grid.gallery-grid-extended{
  grid-template-columns:repeat(12, 1fr);
  grid-auto-rows:120px;
}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(1){grid-column:span 4;grid-row:span 4}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(2){grid-column:span 8;grid-row:span 4}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(3){grid-column:span 4;grid-row:span 3}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(4){grid-column:span 4;grid-row:span 3}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(5){grid-column:span 4;grid-row:span 6}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(6){grid-column:span 4;grid-row:span 3}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(7){grid-column:span 4;grid-row:span 3}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(8){grid-column:span 8;grid-row:span 3}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(9){grid-column:span 4;grid-row:span 3}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(10){grid-column:span 4;grid-row:span 3}
.gallery-grid.gallery-grid-extended .gallery-item:nth-child(11){grid-column:span 4;grid-row:span 3}

.about-gallery{
  padding-top: 40px;
}
.about-strip.about-strip-six{
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.about-strip.about-strip-six .about-strip-item{
  height:300px;
}

@media (max-width: 1024px){
  .booking-image{
    height: 520px;
  }
  .about-strip.about-strip-six{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 860px){
  .gallery-grid.gallery-grid-extended{
    grid-template-columns:1fr;
    grid-auto-rows:auto;
  }
  .gallery-grid.gallery-grid-extended .gallery-item,
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(1),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(2),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(3),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(4),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(5),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(6),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(7),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(8),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(9),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(10),
  .gallery-grid.gallery-grid-extended .gallery-item:nth-child(11){
    grid-column:auto;
    grid-row:auto;
    min-height:290px;
  }
}

@media (max-width: 640px){
  .booking-image{
    height: 420px;
  }
  .about-strip.about-strip-six{
    grid-template-columns:1fr;
  }
  .about-strip.about-strip-six .about-strip-item{
    height:260px;
  }
}



/* --- final booking polish --- */
.booking-section{
  position:relative;
  padding-top:96px;
}
.booking-section::before{
  content:'';
  position:absolute;
  inset:0 0 auto 0;
  height:180px;
  background:linear-gradient(to bottom, rgba(255,255,255,.52), rgba(255,255,255,0));
  pointer-events:none;
}
.booking-container{
  align-items:start;
  grid-template-columns:minmax(0, .96fr) minmax(0, 1.04fr);
  gap:56px;
}
.booking-info{
  position:sticky;
  top:118px;
}
.booking-info .section-title{
  max-width:11ch;
  font-size:clamp(2.6rem, 5vw, 4.3rem);
  line-height:.92;
  letter-spacing:-2px;
  margin-bottom:18px;
}
.booking-info p{
  max-width:520px;
  font-size:1.02rem;
  line-height:1.85;
}
.booking-image{
  position:relative;
  width:100%;
  max-width:560px;
  margin-top:28px;
  aspect-ratio: 1 / 1.04;
  height:auto;
  border-radius:36px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,0)),
    #efe7de;
  box-shadow:0 28px 70px rgba(15,23,34,.12);
}
.booking-image::after{
  content:'';
  position:absolute;
  inset:16px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:28px;
  pointer-events:none;
}
.booking-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: 56% 50%;
  transform:scale(1.01);
  filter:saturate(1.01) contrast(1.01);
}
.booking-form-wrapper{
  position:relative;
  border-radius:34px;
  padding:30px;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:0 30px 80px rgba(15,23,34,.10);
}
.booking-form-wrapper::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(180deg, rgba(255,255,255,.8), rgba(15,23,34,.06));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.booking-form{
  position:relative;
  z-index:1;
}
.input-group input,
.input-group select,
.input-group textarea{
  background:#f8f8f7;
}
.btn-book{
  box-shadow:0 16px 32px rgba(19,143,92,.20);
}
.gallery-item img,
.exp-img img,
.about-strip-item img,
.story-image img{
  will-change:transform;
}
.gallery-section,
.experience-section,
.about-gallery,
.story-section,
.highlights-section,
.cta-section{
  content-visibility:auto;
  contain-intrinsic-size: 800px;
}

@media (max-width: 1180px){
  .booking-container{
    gap:42px;
  }
  .booking-info{
    position:relative;
    top:auto;
  }
}

@media (max-width: 860px){
  .booking-container{
    grid-template-columns:1fr;
  }
  .booking-info .section-title{
    max-width:none;
  }
  .booking-image{
    max-width:none;
    aspect-ratio: 1 / 1.02;
  }
  .booking-image img{
    object-position: 52% 50%;
  }
}

@media (max-width: 640px){
  .booking-image{
    aspect-ratio: 1 / 1.06;
    border-radius:28px;
  }
  .booking-form-wrapper{
    padding:22px;
    border-radius:28px;
  }
}


/* CONTACT PAGE */
.contact-hero{
  background:
    linear-gradient(to bottom, rgba(8,15,24,.48), rgba(8,15,24,.40)),
    url('images/IMG_1563@209163464.JPG') center/cover no-repeat;
}
.contact-section{
  padding:110px 0;
}
.contact-layout{
  display:grid;
  grid-template-columns: .95fr 1.15fr;
  gap:48px;
  align-items:start;
}
.contact-stack{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.contact-card{
  background:var(--white);
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:28px;
  display:flex;
  align-items:flex-start;
  gap:20px;
}
.contact-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  background:#f3f3ef;
  display:grid;
  place-items:center;
  color:#2d6a37;
  flex:0 0 auto;
}
.contact-icon svg{
  width:28px;height:28px;
}
.contact-content h3,
.contact-social h3{
  font-family:'Syne',sans-serif;
  font-size:1.6rem;
  line-height:1.1;
  margin-bottom:10px;
  color:#214b2a;
}
.contact-content p{
  color:var(--muted);
  font-size:1.1rem;
  margin:4px 0;
}
.contact-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  border-radius:999px;
  padding:8px 14px;
  background:#17c964;
  color:var(--white);
  font-weight:700;
  font-size:.92rem;
}
.contact-social{
  padding:10px 8px 0;
}
.social-row{
  display:flex;
  gap:14px;
  margin-top:18px;
}
.social-btn{
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.06);
  background:var(--white);
  box-shadow:0 18px 30px rgba(7,16,27,.06);
  display:grid;
  place-items:center;
  color:#2b5c34;
  transition:var(--transition);
}
.social-btn svg{width:22px;height:22px}
.social-btn:hover{
  transform:translateY(-4px);
  color:#8d6330;
}
.map-panel{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.map-frame{
  background:var(--white);
  border:1px solid rgba(0,0,0,.06);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:12px;
  overflow:hidden;
}
.map-frame iframe{
  width:100%;
  height:500px;
  border:0;
  border-radius:28px;
  display:block;
}
.map-link-btn{
  align-self:flex-start;
  background:#f3f0ea;
  color:#355a2f;
  border:1px solid rgba(0,0,0,.06);
  padding:15px 22px;
  border-radius:18px;
  font-weight:700;
  transition:var(--transition);
}
.map-link-btn:hover{
  transform:translateY(-3px);
  background:#fff;
}

@media (max-width: 980px){
  .contact-layout{
    grid-template-columns:1fr;
  }
  .map-frame iframe{height:420px}
}
@media (max-width: 640px){
  .contact-card{
    padding:22px;
    border-radius:22px;
  }
  .contact-content h3,
  .contact-social h3{
    font-size:1.3rem;
  }
  .contact-content p{
    font-size:1rem;
  }
  .map-frame iframe{height:340px}
}


/* EXPLORE PAGE */
.explore-hero{
  min-height:62svh;
  align-items:flex-start;
  padding:148px 0 54px;
  background:
    linear-gradient(to bottom, rgba(8,15,24,.52), rgba(8,15,24,.40)),
    url('images/explore/tangalle-coast.jpg') center/cover no-repeat;
}
.explore-hero .page-hero-content{
  max-width:820px;
}
.quick-jump-shell{
  position:relative;
  z-index:80;
  padding:18px 0 12px;
  min-height:98px;
}
.quick-jump-shell::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(247,245,241,.96), rgba(247,245,241,.82));
  opacity:0;
  pointer-events:none;
  transition:var(--transition);
}
.quick-jump-shell.is-fixed::before{
  opacity:1;
}
.quick-jump{
  display:flex;
  flex-wrap:nowrap;
  gap:12px;
  overflow-x:auto;
  -ms-overflow-style:none;
  scrollbar-width:none;
  scroll-behavior:smooth;
  padding:16px 18px;
  border-radius:28px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow);
}
.quick-jump::-webkit-scrollbar{display:none}
.quick-jump-shell.is-fixed .quick-jump{
  position:fixed;
  top:var(--jump-top, 108px);
  left:50%;
  transform:translateX(-50%);
  width:min(1180px, calc(100% - 32px));
  z-index:90;
  box-shadow:0 20px 48px rgba(7,16,27,.14);
}
.jump-link{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:#f5f3ef;
  color:var(--primary);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:1.3px;
  text-transform:uppercase;
  transition:var(--transition);
}
.jump-link:hover,
.jump-link.active{
  background:var(--primary);
  color:var(--white);
  transform:translateY(-2px);
}
.explore-intro{
  padding:28px 0 22px;
}
.explore-intro-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:44px;
  align-items:end;
}
.destination-section{
  padding:42px 0;
  scroll-margin-top:210px;
}
.destination-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  padding:36px;
  background:linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,245,239,.92));
  border:1px solid rgba(0,0,0,.06);
  border-radius:34px;
  box-shadow:var(--shadow);
}
.destination-section-alt .destination-grid{
  background:linear-gradient(135deg, rgba(247,245,241,.98), rgba(255,255,255,.94));
}
.destination-media{
  width:100%;
  height:420px;
  min-height:0;
  background:#ece8e2;
}
.destination-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.destination-copy p{
  color:var(--muted);
  margin:18px 0 22px;
  font-size:1rem;
}
.travel-cue-card{
  display:flex;
  align-items:center;
  gap:16px;
  margin:0 0 22px;
  padding:16px 18px;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(15,23,34,.05), rgba(216,178,107,.08));
  border:1px solid rgba(15,23,34,.07);
  box-shadow:0 16px 34px rgba(7,16,27,.06);
}
.travel-cue-icon{
  width:52px;
  height:52px;
  flex:0 0 52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:var(--primary);
  color:var(--white);
  box-shadow:0 12px 24px rgba(15,23,34,.14);
}
.travel-cue-icon svg{
  width:24px;
  height:24px;
}
.travel-cue-text{
  display:flex;
  flex-direction:column;
  gap:5px;
}
.travel-cue-text small{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:1.15px;
  text-transform:uppercase;
  color:#8b6a38;
}
.travel-cue-text strong{
  font-size:.98rem;
  line-height:1.45;
  color:var(--primary);
}
.destination-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.destination-pills span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(216,178,107,.12);
  color:#7f5a28;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.6px;
}
.destination-points{
  list-style:none;
  display:grid;
  gap:12px;
}
.destination-points li{
  position:relative;
  padding-left:18px;
  color:var(--text);
}
.destination-points li::before{
  content:'';
  position:absolute;
  left:0;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
}
.route-ideas-section{
  padding:74px 0 18px;
}
.route-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.route-card{
  background:var(--white);
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:26px;
}
.route-step{
  display:inline-flex;
  width:42px;
  height:42px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background:rgba(15,23,34,.08);
  color:var(--primary);
  font-size:.82rem;
  font-weight:800;
  margin-bottom:18px;
}
.route-card h3{
  font-family:'Syne',sans-serif;
  font-size:1.3rem;
  line-height:1.05;
  margin-bottom:10px;
  color:var(--primary);
}
.route-card p{
  color:var(--muted);
}

@media (max-width: 1024px){
  .explore-hero{
    min-height:58svh;
    padding:138px 0 48px;
  }
  .explore-intro-grid,
  .destination-grid,
  .route-grid{
    grid-template-columns:1fr 1fr;
  }
  .route-grid{grid-template-columns:1fr 1fr;}
}

@media (max-width: 860px){
  .explore-hero{
    min-height:56svh;
    padding:128px 0 44px;
  }
  .quick-jump-shell{
    min-height:90px;
  }
  .quick-jump{
    padding:14px;
    gap:10px;
    border-radius:24px;
  }
  .quick-jump-shell.is-fixed .quick-jump{
    width:min(1180px, calc(100% - 24px));
  }
  .jump-link{
    font-size:.72rem;
    letter-spacing:1px;
    padding:11px 16px;
  }
  .explore-intro-grid,
  .destination-grid,
  .route-grid{
    grid-template-columns:1fr;
  }
  .destination-grid{
    padding:24px;
    gap:28px;
  }
  .destination-media{
    height:320px;
  }
  .travel-cue-card{
    padding:14px 15px;
    gap:14px;
  }
  .travel-cue-icon{
    width:48px;
    height:48px;
    flex-basis:48px;
    border-radius:16px;
  }
  .travel-cue-text strong{
    font-size:.94rem;
  }
  .destination-section{
    scroll-margin-top:194px;
  }
}

@media (max-width: 640px){
  .explore-hero{
    min-height:74svh;
    padding:118px 0 36px;
  }
  .explore-hero .page-title{
    font-size:clamp(2.5rem, 13vw, 4rem);
    line-height:.95;
    margin-bottom:16px;
  }
  .explore-hero .page-subtitle{
    font-size:.96rem;
    max-width:100%;
  }
  .quick-jump-shell{
    padding-top:14px;
    min-height:82px;
  }
  .quick-jump{
    border-radius:22px;
    padding:12px;
  }
  .quick-jump-shell.is-fixed .quick-jump{
    width:calc(100% - 20px);
    top:var(--jump-top, 94px);
  }
  .destination-section{
    padding:28px 0;
    scroll-margin-top:182px;
  }
  .destination-grid{
    padding:18px;
    border-radius:24px;
  }
  .destination-media{
    height:250px;
  }
  .travel-cue-card{
    align-items:flex-start;
    padding:13px 13px;
    border-radius:18px;
  }
  .travel-cue-icon{
    width:44px;
    height:44px;
    flex-basis:44px;
    border-radius:14px;
  }
  .travel-cue-text small{
    font-size:.66rem;
    letter-spacing:.95px;
  }
  .travel-cue-text strong{
    font-size:.89rem;
    line-height:1.4;
  }
  .route-card{
    padding:22px;
    border-radius:22px;
  }
}
