@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&family=Pacifico&display=swap');

:root{
  --navy:#042b48;
  --deep:#061d33;
  --darker:#031a2e;
  --blue:#008aa2;
  --teal:#0596a7;
  --yellow:#ffc400;
  --orange:#ef6a00;
  --green:#079653;
  --pink:#d92970;
  --muted:#627084;
  --border:#dbe5ee;
  --soft:#f5f9fc;
  --white:#fff;
  --shadow:0 18px 45px rgba(5,30,54,.12);
  --radius:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#fff;
  color:var(--deep);
  font-family:Inter,Arial,sans-serif;
  line-height:1.45;
}
body.modal-open{overflow:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}

.container{
  width:min(1180px,92vw);
  margin-inline:auto;
}

.section-kicker{
  color:var(--teal);
  font-size:13px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.section-title{
  font-family:"Playfair Display",serif;
  font-weight:800;
  font-size:36px;
  line-height:1.1;
  margin:4px 0 10px;
  text-align:center;
}

.section-subtitle{
  text-align:center;
  color:var(--muted);
  margin:0 0 34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:6px;
  border:0;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.01em;
  box-shadow:0 10px 18px rgba(0,0,0,.08);
  transition:.2s ease;
  cursor:pointer;
}

.btn:hover{transform:translateY(-2px)}
.btn-yellow{background:var(--yellow);color:#05213b}
.btn-outline{
  border:1.5px solid rgba(255,255,255,.85);
  color:#fff;
  background:rgba(255,255,255,.06);
  box-shadow:none;
}
.btn-navy{background:#05284b;color:#fff}
.btn-teal{background:var(--teal);color:#fff}
.btn-green{background:var(--green);color:#fff}
.btn-orange{background:var(--orange);color:#fff}
.btn-pink{background:var(--pink);color:#fff}

.topbar{
  height:76px;
  background:#fff;
  border-bottom:1px solid #eef2f6;
  display:flex;
  align-items:center;
  position:sticky;
  top:0;
  z-index:60;
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:min(1180px,92vw);
  margin:auto;
}

.brand img{height:46px;width:auto}

.nav{
  display:flex;
  gap:32px;
  align-items:center;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  color:#062344;
  margin-left:auto;
}

.nav a{
  position:relative;
  padding:30px 0 26px;
}

.nav a.active:after,
.nav a:hover:after{
  content:"";
  height:3px;
  background:var(--yellow);
  border-radius:10px;
  position:absolute;
  left:0;
  right:0;
  bottom:18px;
}

.book-now{
  padding:13px 28px;
  background:var(--yellow);
  border-radius:7px;
  font-size:13px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(255,196,0,.35);
  text-transform:uppercase;
  margin-left:24px;
}

.mobile-menu{
  display:none;
  border:0;
  background:#f2f5f8;
  border-radius:10px;
  padding:11px;
  color:var(--deep);
  margin-left:auto;
  cursor:pointer;
}

/* Hero */
.hero{
  position:relative;
  min-height:470px;
  background-image:linear-gradient(90deg,rgba(3,22,38,.92) 0%,rgba(4,33,54,.82) 28%,rgba(4,33,54,.42) 55%,rgba(4,33,54,.10) 100%),url('../images/hero-houseboat.jpg');
  background-size:cover;
  background-position:center center;
  color:#fff;
  overflow:hidden;
}

.hero .container{
  position:relative;
  min-height:470px;
  display:flex;
  align-items:center;
}

.hero-copy{width:min(520px,100%);padding:55px 0}
.eyebrow{
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:14px;
  margin-bottom:10px;
}

.hero h1{
  font-size:62px;
  line-height:.98;
  margin:0;
  font-weight:900;
  letter-spacing:-.04em;
}

.hero .script{
  display:block;
  font-family:Pacifico,cursive;
  font-weight:400;
  font-size:54px;
  color:var(--yellow);
  line-height:1.12;
}

.hero p{
  font-size:17px;
  max-width:470px;
  margin:22px 0 4px;
  color:#edf7ff;
}

.hero-actions{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top:24px;
}

.call-line{
  display:flex;
  gap:9px;
  align-items:center;
  margin-top:22px;
  font-weight:800;
}

.call-line b{color:var(--yellow)}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.22);
  font-weight:900;
}

.hero-arrow.left{left:12px}
.hero-arrow.right{right:12px}

.hero-dots{
  position:absolute;
  bottom:26px;
  left:50%;
  display:flex;
  gap:10px;
}

.dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#fff8;
  border:1px solid #fff;
}

.dot.active{
  background:var(--yellow);
  border-color:var(--yellow);
}

/* Home */
.home-section{padding:56px 0}
.packages-overview{text-align:center}

.cards-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:38px;
}

.service-card{
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 14px 28px rgba(4,31,55,.10);
  text-align:left;
  overflow:visible;
}

.service-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px 12px 0 0;
}

.service-card .bubble{
  position:absolute;
  top:-29px;
  left:50%;
  transform:translateX(-50%);
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:28px;
  border:6px solid #fff;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.bubble.pink{background:var(--pink)}
.bubble.green{background:var(--green)}
.bubble.orange{background:var(--orange)}
.bubble.blue{background:#0b73d9}

.service-card .body{padding:18px}
.service-card h3{font-size:18px;margin:0 0 8px}
.service-card p{color:#425267;font-size:13.5px;margin:0 0 18px}

.gallery-band{
  padding:22px 0 36px;
  text-align:center;
}

.gallery-subtitle{max-width:700px;margin-inline:auto}

.gallery-strip{
  display:grid;
  gap:14px;
  margin:18px auto 22px;
}

.gallery-preview-grid{
  grid-template-columns:repeat(4,1fr);
}

.gallery-strip figure{
  margin:0;
  height:210px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.10);
}

.gallery-preview-grid figure:nth-child(2),
.gallery-preview-grid figure:nth-child(5),
.gallery-preview-grid figure:nth-child(7){
  transform:translateY(18px);
}

.gallery-strip img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
  z-index:120;
}

.gallery-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.gallery-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,24,42,.72);
  backdrop-filter:blur(4px);
}

.gallery-modal__dialog{
  position:relative;
  width:min(1120px,100%);
  max-height:min(88vh,820px);
  background:#fff;
  border-radius:20px;
  box-shadow:0 28px 60px rgba(0,0,0,.25);
  padding:24px;
  overflow:hidden;
}

.gallery-modal__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.gallery-modal__eyebrow{
  margin:0 0 4px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--teal);
  font-weight:800;
}

.gallery-modal__top h3{
  margin:0;
  font-size:28px;
  font-family:"Playfair Display",serif;
}

.gallery-modal__close{
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  background:#edf4f9;
  color:#0b2948;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.gallery-modal__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  max-height:calc(88vh - 112px);
  overflow:auto;
  padding-right:6px;
}

.gallery-modal__item{
  margin:0;
  border-radius:14px;
  overflow:hidden;
  background:#f4f8fb;
  min-height:180px;
}

.gallery-modal__item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.why-title{text-align:left}
.why-title .section-title{text-align:left;font-size:32px}

.feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px 36px;
}

.feature{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:14px;
  align-items:flex-start;
}

.feature .icon{
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--teal);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:22px;
  box-shadow:0 9px 20px rgba(0,138,162,.20);
}

.feature h4{font-size:14px;margin:0 0 3px}
.feature p{font-size:12.5px;color:#56677d;margin:0}

.promo-card{
  height:345px;
  border-radius:12px;
  background-image:linear-gradient(90deg,rgba(6,35,60,.18),rgba(6,35,60,.10)),url('../images/promo-road.jpg');
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.promo-card span{
  position:absolute;
  left:42px;
  top:50px;
  font-family:Pacifico,cursive;
  color:#fff;
  font-size:40px;
  line-height:1.25;
  text-shadow:0 3px 12px rgba(0,0,0,.45);
  max-width:440px;
}

.destinations{text-align:center;padding-top:8px}

.dest-scroll{
  display:grid;
  grid-template-columns:24px repeat(9,1fr) 24px;
  gap:22px;
  align-items:center;
  margin-top:20px;
}

.dest-arrow{
  width:28px;
  height:28px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid #d9e2ea;
  background:#fff;
  color:#5b6b7d;
  box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.dest-item img{
  width:74px;
  height:74px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 8px;
  border:4px solid #fff;
  box-shadow:0 7px 16px rgba(0,0,0,.14);
}

.dest-item strong{font-size:12.5px}

.reviews{
  padding:40px 0 52px;
  text-align:center;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.review-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(4,31,55,.07);
  padding:26px;
  text-align:left;
}

.review-grid-rich .review-card{height:100%}

.review-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

.review-avatar{
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#0e8fa0,#0a375f);
  color:#fff;
  font-weight:900;
  letter-spacing:.05em;
  box-shadow:0 10px 18px rgba(5,30,54,.14);
}

.review-head h3{
  margin:0;
  font-size:17px;
}

.review-head small{
  color:var(--muted);
  font-size:12px;
}

.stars{
  color:var(--yellow);
  letter-spacing:3px;
  margin-bottom:12px;
}

.review-card p{
  font-size:14px;
  color:#304158;
  margin:0;
}

.cta-band{
  background:linear-gradient(90deg,#008895,#0196a4);
  color:#fff;
}

.cta-band .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 0;
}

.cta-band h3{margin:0;font-size:24px}
.cta-band p{margin:2px 0 0}

.cta-call{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:26px;
  font-weight:800;
}

.cta-call small{
  display:block;
  font-size:13px;
  font-weight:500;
  color:#d9fbff;
}

.footer{background:#062138;color:#d9e9f4}

.footer-main{
  display:grid;
  grid-template-columns:1.25fr .85fr 1fr 1fr;
  gap:60px;
  padding:44px 0;
}

.footer .brand img{
  height:44px;
  filter:brightness(0) invert(1);
}

.footer p,
.footer li{
  font-size:13px;
  color:#c7d8e6;
}

.footer ul{
  list-style:none;
  margin:12px 0 0;
  padding:0;
}

.footer li{margin:7px 0}

.footer h4{
  margin:0 0 12px;
  color:#fff;
  font-size:14px;
  text-transform:uppercase;
}

.socials{
  display:flex;
  gap:12px;
  margin-top:14px;
}

.socials span{
  width:30px;
  height:30px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  font-size:12px;
}

.fb{background:#1877f2}
.ig{background:#e1306c}
.wa{background:#25d366}
.yt{background:#ff0000}

.copyright{
  border-top:1px solid rgba(255,255,255,.1);
  padding:16px 0;
  text-align:center;
  color:#b7c9d9;
  font-size:12px;
}

.whatsapp-float{
  position:fixed;
  right:26px;
  bottom:26px;
  z-index:80;
  width:66px;
  height:66px;
  background:#22c35e;
  color:#fff;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:0;
  border:6px solid #fff;
  box-shadow:0 15px 35px rgba(0,0,0,.22);
}

.whatsapp-float:before{
  content:"";
  width:34px;
  height:34px;
  background:center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23fff' d='M54.6 31.3c0 12.2-9.6 22-22.2 22-3.8 0-7.3-.9-10.4-2.6L10 54.4l3.9-11.4c-2.3-3.3-3.5-7.2-3.5-11.7 0-12.1 9.7-22 22.1-22s22.1 9.9 22.1 22zm-22.1-18c-10.2 0-18.3 8-18.3 18 0 4 1.3 7.7 3.5 10.8l.8 1.1-2.3 6.8 7-2.2 1 .6c2.7 1.6 5.8 2.4 9 2.4 10.2 0 18.5-8.1 18.5-18s-8.2-18-18.3-18z'/%3E%3Cpath fill='%23fff' d='M24.7 21.8c-.5 0-1 .2-1.4.7-1 1.1-2.5 3.2-2.5 6.1 0 2.8 1.6 5.5 1.9 5.9.3.4 4.2 6.7 10.3 9.1 5 2 6.1 1.6 7.2 1.5 1.2-.2 3.7-1.6 4.2-3.2.5-1.6.5-3 .4-3.3-.1-.3-.6-.5-1.2-.8l-4-1.9c-.6-.3-1-.4-1.5.3-.5.7-1.8 2.2-2.2 2.6-.4.4-.8.5-1.5.1-.7-.4-2.9-1.1-5.5-3.5-2-1.8-3.4-4.1-3.8-4.8-.4-.7 0-1 .3-1.3.3-.3.7-.8 1-1.2.3-.4.5-.7.7-1.2.2-.4.1-.8 0-1.1l-1.8-4.3c-.3-.7-.9-.8-1.3-.8h-1.3z'/%3E%3C/svg%3E");
}

/* Packages page */
.package-hero{
  height:310px;
  background-image:linear-gradient(90deg,rgba(3,22,38,.70),rgba(3,22,38,.20)),url('../images/hero-packages.jpg');
  background-size:cover;
  background-position:center 45%;
  color:#fff;
  display:flex;
  align-items:center;
}

.package-hero h1{
  font-family:"Playfair Display",serif;
  font-size:50px;
  line-height:1;
  margin:0 0 14px;
}

.breadcrumb{font-size:14px}
.breadcrumb b{color:var(--yellow)}
.tabs-wrap{margin-top:-42px}

.tabs{
  min-height:74px;
  background:#fff;
  border-radius:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  box-shadow:0 16px 35px rgba(3,28,48,.14);
  overflow:hidden;
  border:1px solid #e6eef4;
}

.tab{
  display:grid;
  place-items:center;
  font-weight:800;
  color:#0a2a4b;
  border-right:1px solid #e5edf4;
  padding:20px 10px;
}

.tab:last-child{border-right:0}

.tab.active{
  background:#062f5c;
  color:#fff;
}

.package-panel{display:none}
.package-panel.active{display:block}

.package-list{padding:52px 0 28px}
.package-list .section-title{font-size:30px}

.package-row{
  background:#fff;
  border:1px solid #dce5ee;
  border-radius:12px;
  display:grid;
  grid-template-columns:310px 1fr 220px;
  gap:28px;
  align-items:stretch;
  margin-bottom:22px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(4,31,55,.08);
}

.package-row.reverse{grid-template-columns:1fr 310px 220px}
.package-row.reverse .pkg-img{grid-column:2}
.package-row.reverse .pkg-info{grid-column:1;grid-row:1}

.pkg-img{
  height:220px;
  width:100%;
  object-fit:cover;
}

.pkg-info{padding:28px 15px 23px}
.pkg-number{font-size:18px;color:var(--teal);font-weight:900;margin-bottom:10px}
.pkg-info h3{font-size:22px;margin:0 0 6px}

.pkg-meta{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  color:#52647a;
  font-size:13px;
  margin:8px 0 14px;
}

.pkg-info p{
  font-size:14px;
  color:#4e6076;
  margin:0 0 14px;
  max-width:540px;
}

.inclusions{
  display:flex;
  gap:18px;
  color:#536849;
  font-size:20px;
}

.pkg-price{
  border-left:1px solid #e4edf4;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:14px;
  padding:24px 22px;
  text-align:left;
  flex-direction:column;
  background:linear-gradient(180deg,#f9fcff 0%,#eef6fb 100%);
}

.pkg-price small{
  color:#0b5a7f;
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.pkg-cta-copy{
  margin:0;
  color:#4e6076;
  font-size:13px;
  line-height:1.7;
}

.pkg-price .btn{
  width:100%;
  min-height:54px;
  padding-inline:16px;
}

.more-btn{text-align:center;margin:16px 0 32px}

.south-package-card{
  display:block;
  background:#fff;
  border:1px solid #dce5ee;
  border-radius:20px;
  padding:28px;
  box-shadow:0 12px 28px rgba(4,31,55,.08);
}

.south-package-content{
  display:grid;
  gap:20px;
}

.south-package-summary{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.south-badge{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:#eef7fb;
  color:#0b5a7f;
  font-size:12px;
  font-weight:800;
  margin:0 8px 8px 0;
}

.south-enquiry-box{
  min-width:220px;
  background:linear-gradient(135deg,#062f5c,#0b5a7f 56%,#11a1a9);
  color:#fff;
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 14px 30px rgba(6,47,92,.22);
}

.south-enquiry-box small{
  display:block;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.88;
}

.south-enquiry-box strong{
  display:block;
  font-size:26px;
  line-height:1.2;
  margin:6px 0 4px;
}

.south-enquiry-box span{
  display:block;
  font-size:12px;
  line-height:1.6;
}

.south-package-lead{
  display:grid;
  grid-template-columns:1.35fr .95fr;
  gap:18px;
  align-items:stretch;
}

.south-intro{
  margin:0;
  color:#495d72;
  font-size:15px;
  line-height:1.8;
  background:linear-gradient(135deg,#f8fcff,#eef7fb);
  border:1px solid #e4edf4;
  border-radius:18px;
  padding:18px 20px;
}

.south-route-note{
  background:#0a2e51;
  color:#edf6ff;
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 14px 26px rgba(10,46,81,.15);
}

.south-route-note strong{
  display:block;
  margin-bottom:10px;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#ffd468;
}

.south-route-note p{
  margin:0;
  font-size:14px;
  line-height:1.7;
}

.south-itinerary{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.south-day-card{
  background:#f8fbfd;
  border:1px solid #e4edf4;
  border-radius:16px;
  padding:18px;
}

.south-day-card h3{
  margin:0 0 12px;
  font-size:18px;
  color:#08345b;
}

.south-day-card ul{
  margin:0;
  padding-left:18px;
  color:#43576b;
  font-size:13.5px;
}

.south-day-card li+li{margin-top:7px}

.south-support{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.south-support span{
  background:#fff7e0;
  color:#7b4a02;
  border:1px solid #f2d68c;
  border-radius:999px;
  padding:10px 14px;
  font-size:12px;
  font-weight:700;
}

.south-actions{margin-top:20px}

.future-tours{
  text-align:center;
  padding:52px 0 48px;
}

.future-title{
  font-family:"Playfair Display",serif;
  font-size:30px;
  margin:0;
}

.future-title:before,
.future-title:after{
  content:"";
  display:inline-block;
  width:54px;
  height:2px;
  background:var(--teal);
  vertical-align:middle;
  margin:0 14px;
}

.intl-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:22px;
}

.intl-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(4,31,55,.08);
}

.intl-card img{
  height:130px;
  width:100%;
  object-fit:cover;
}

.intl-card h4{margin:10px 0 2px}

.coming{
  font-size:12px;
  color:var(--teal);
  font-weight:700;
  margin-bottom:12px;
  display:block;
}

.footer.compact .footer-main{
  padding:30px 0;
  grid-template-columns:1fr 1fr 1fr 1fr;
}

.packages-page .cta-band .container{padding:20px 0}

@media (max-width: 980px){
  .nav{
    display:none;
    position:absolute;
    top:68px;
    left:4vw;
    right:4vw;
    background:#fff;
    border:1px solid #e6eef4;
    border-radius:14px;
    box-shadow:0 18px 36px rgba(4,31,55,.12);
    padding:14px 18px;
    flex-direction:column;
    align-items:flex-start;
    gap:2px;
    z-index:90;
  }
  body.show-menu .nav{display:flex}
  .nav a{padding:12px 0}
  .nav a.active:after,
  .nav a:hover:after{bottom:6px}
  .mobile-menu{display:block}
  .topbar{height:68px}
  .brand img{height:38px}
  .book-now{display:none}
  .hero,
  .hero .container{min-height:540px}
  .hero h1{font-size:48px}
  .hero .script{font-size:44px}
  .cards-4,
  .why-grid,
  .review-grid,
  .intl-grid{grid-template-columns:1fr 1fr}
  .feature-grid{grid-template-columns:1fr 1fr}
  .gallery-preview-grid{grid-template-columns:repeat(3,1fr)}
  .gallery-preview-grid figure:nth-child(2),
  .gallery-preview-grid figure:nth-child(5),
  .gallery-preview-grid figure:nth-child(7){transform:none}
  .gallery-modal__grid{grid-template-columns:repeat(3,1fr)}
  .dest-scroll{grid-template-columns:repeat(3,1fr)}
  .dest-arrow{display:none}
  .package-row,
  .package-row.reverse{grid-template-columns:1fr}
  .package-row.reverse .pkg-img,
  .package-row.reverse .pkg-info{grid-column:auto;grid-row:auto}
  .pkg-info{padding:24px}
  .pkg-price{
    align-items:flex-start;
    text-align:left;
    border-left:0;
    border-top:1px solid #e4edf4;
  }
  .south-package-summary{flex-direction:column}
  .south-enquiry-box{width:100%}
  .south-package-lead{grid-template-columns:1fr}
  .south-itinerary{grid-template-columns:1fr}
  .footer-main,
  .footer.compact .footer-main{grid-template-columns:1fr 1fr}
  .cta-band .container{flex-direction:column;text-align:center}
  .cta-call{font-size:22px}
}

@media (max-width: 620px){
  .container{width:min(94vw,540px)}
  .hero{background-position:60% center}
  .hero .container{align-items:flex-end}
  .hero-copy{padding-bottom:44px}
  .hero h1{font-size:42px}
  .hero .script{font-size:38px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .cards-4,
  .why-grid,
  .review-grid,
  .feature-grid,
  .intl-grid{grid-template-columns:1fr}
  .gallery-preview-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-strip figure{height:150px}
  .gallery-modal{padding:12px}
  .gallery-modal__dialog{padding:16px}
  .gallery-modal__top h3{font-size:22px}
  .gallery-modal__grid{grid-template-columns:repeat(2,1fr);max-height:calc(88vh - 92px)}
  .promo-card{height:260px}
  .promo-card span{font-size:30px;left:24px;top:30px}
  .dest-scroll{grid-template-columns:repeat(2,1fr)}
  .tabs{grid-template-columns:1fr}
  .tab{
    border-right:0;
    border-bottom:1px solid #e5edf4;
    min-height:56px;
  }
  .package-hero h1{font-size:38px}
  .future-title:before,
  .future-title:after{display:none}
  .footer-main,
  .footer.compact .footer-main{grid-template-columns:1fr}
  .whatsapp-float{
    width:58px;
    height:58px;
    font-size:0;
    right:16px;
    bottom:16px;
  }
  .whatsapp-float:before{
    width:30px;
    height:30px;
  }
  .cta-call{font-size:20px}
}
