/* ==========================================================================
   Nou Taxi Mauritius — modern landing page
   Brand palette pulled straight from the original logo:
     Yellow  #FBAA19   (taxi, primary CTA)
     Green   #1DA363   (accent, Mauritius)
     Black   #231F20   (text, dark surfaces)
     Cream   #FFF7E8   (warm background)
   ========================================================================== */

:root {
  --yellow: #FBAA19;
  --yellow-deep: #E8951B;
  --yellow-soft: #FFE3A8;
  --green: #1DA363;
  --green-deep: #15824F;
  --green-soft: #C4ECD9;
  --ink: #231F20;
  --ink-soft: #4a4647;
  --muted: #6b6566;
  --cream: #FFF7E8;
  --cream-deep: #FBEDD0;
  --paper: #ffffff;
  --line: #f0e4cc;
  --shadow-sm: 0 2px 8px rgba(35,31,32,0.06);
  --shadow-md: 0 12px 32px -10px rgba(35,31,32,0.18);
  --shadow-lg: 0 30px 60px -20px rgba(35,31,32,0.30);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0 0; }

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
em { font-style: italic; color: var(--green); }

.wrap { width: min(1200px, 92%); margin: 0 auto; }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: .45rem .9rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.kicker.light { background: rgba(255,255,255,.18); color: #fff; }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.05rem; font-size: .85rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 22px -8px rgba(251,170,25,.7); }
.btn-yellow:hover { background: var(--yellow-deep); box-shadow: 0 14px 30px -8px rgba(251,170,25,.9); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 8px 22px -8px rgba(29,163,99,.6); }
.btn-green:hover { background: var(--green-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ea957; }
.btn-ghost { background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(10px); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.28); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; border-color: var(--green); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ============== Top bar ============== */
.topbar { background: var(--ink); color: #fff; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; padding: .55rem 0; flex-wrap: wrap; gap: .5rem; }
.topbar-left, .topbar-right { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: var(--yellow); }
.dot { opacity: .4; }

/* ============== Nav ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,247,232,.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(35,31,32,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; gap: 1.5rem; }
.nav-brand img { height: 44px; width: auto; }
.nav-mid { display: flex; gap: 2rem; }
.nav-mid a { font-weight: 600; font-size: .95rem; position: relative; }
.nav-mid a::after {
  content: ""; position: absolute; left: 50%; bottom: -6px; width: 0; height: 2px;
  background: var(--yellow); transition: all .2s ease;
}
.nav-mid a:hover { color: var(--green-deep); }
.nav-mid a:hover::after { left: 0; width: 100%; }
.nav-end { display: flex; gap: .6rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }
.mobile-menu a { font-weight: 600; padding: .5rem 0; }

/* Right-slide sidebar variant on mobile/tablet */
@media (max-width: 980px) {
  .mobile-menu {
    display: flex; flex-direction: column; gap: 1rem;
    position: fixed; top: 0; right: 0;
    width: min(82vw, 340px);
    height: 100vh; height: 100dvh;
    padding: 4.5rem 1.6rem 2rem;
    background: var(--cream);
    box-shadow: -10px 0 32px rgba(0,0,0,.18);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
    z-index: 200;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { padding: .65rem 0; font-size: 1.05rem; }
  .mobile-menu .btn { margin-top: .25rem; }

  .menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(8,18,22,.5);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
    z-index: 150;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-backdrop.open { opacity: 1; pointer-events: auto; }

  .menu-close {
    position: absolute; top: 14px; right: 14px;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0; cursor: pointer;
    color: var(--ink); padding: 0;
    border-radius: 50%;
    transition: background .15s ease;
  }
  .menu-close:hover { background: rgba(0,0,0,.06); }

  body.menu-open { overflow: hidden; }
}

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: min(82vh, 780px);
  padding: 6rem 0 7rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,18,22,.82) 0%, rgba(8,18,22,.6) 25%, rgba(8,18,22,.2) 48%, rgba(8,18,22,0) 65%),
    linear-gradient(180deg, rgba(8,18,22,.15) 0%, rgba(8,18,22,0) 40%, rgba(8,18,22,.55) 100%);
}
.hero-shapes { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; mix-blend-mode: screen; }
.blob-yellow { width: 460px; height: 460px; background: var(--yellow); top: -140px; right: -100px; opacity: .35; }
.blob-green  { width: 420px; height: 420px; background: var(--green);  bottom: -160px; left: -120px; opacity: .35; }

.hero .wrap.hero-inner {
  width: 100%; max-width: none; margin: 0;
  padding-left: max(2rem, 5vw); padding-right: max(2rem, 5vw);
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: flex-start; text-align: left;
}
.hero-copy { max-width: 520px; display: flex; flex-direction: column; align-items: flex-start; }
.hero-copy h1 { margin: 1.2rem 0 1.4rem; color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,.55); }
.hero-copy h1 em { color: var(--yellow); font-style: italic; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  background: rgba(255,255,255,.12); color: #fff;
  padding: .55rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(251,170,25,.25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.35); } }
.hero-p {
  font-size: 1.15rem; line-height: 1.55;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  margin-bottom: 2.2rem; max-width: 540px;
}
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: flex-start; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.22);
  width: 100%;
  max-width: 540px;
}
.hero-stats > div, .hero-stats > a { display: flex; flex-direction: column; align-items: flex-start; }
.hero-stat-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease;
  cursor: pointer;
}
.hero-stat-link:hover { transform: translateY(-2px); }
.hero-stat-link span { display: inline-flex; align-items: center; gap: .35rem; }
.hero-stat-link:hover strong { color: #fff; }
.hero-stat-link svg { opacity: .65; transition: opacity .2s ease, transform .2s ease; }
.hero-stat-link:hover svg { opacity: 1; transform: translate(2px, -2px); }
.hero-stats strong {
  font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 800; color: var(--yellow);
  line-height: 1;
}
.hero-stats span { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 500; margin-top: .35rem; }

.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 3; pointer-events: none;
}
.hero-scroll span {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px; position: relative;
}
.hero-scroll span::after {
  content: ""; position: absolute; left: 50%; top: 6px;
  width: 3px; height: 7px; background: var(--yellow); border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translate(-50%, 0); opacity: 1; } 60% { transform: translate(-50%, 12px); opacity: 0; } }
.hero-scroll small { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 600; }

/* ============== Trust strip ============== */
.trust { background: var(--ink); color: #fff; padding: 1rem 0; }
.trust-inner {
  display: flex; flex-wrap: wrap; gap: 1.7rem; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 500;
}
.trust-inner > span:first-child { color: var(--yellow); font-weight: 700; }

/* ============== Services ============== */
.services { padding: 6rem 0; background: var(--paper); overflow-x: clip; }
/* ============== Shared carousel (services / tours / hike / cruise) ============== */
.services-carousel,
.tours-carousel,
.hike-carousel,
.cruise-carousel { position: relative; }

.services-grid,
.tours-grid,
.hike-grid,
.cruise-grid {
  display: flex; gap: 1.25rem;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  /* Mobile padding allows first/last cards to land at viewport center. */
  padding: .75rem 7% 1rem;
}
.services-grid::-webkit-scrollbar,
.tours-grid::-webkit-scrollbar,
.hike-grid::-webkit-scrollbar,
.cruise-grid::-webkit-scrollbar { display: none; }
.services-grid > .service-card,
.tours-grid > .tour-card,
.hike-grid > .hike-card,
.cruise-grid > .cruise-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
}
@media (min-width: 640px) {
  .services-grid, .tours-grid, .hike-grid, .cruise-grid { padding-inline: 0; }
  .services-grid > .service-card,
  .tours-grid > .tour-card,
  .hike-grid > .hike-card,
  .cruise-grid > .cruise-card { flex-basis: calc(50% - .625rem); }
}
@media (min-width: 980px) {
  .services-grid > .service-card,
  .tours-grid > .tour-card,
  .hike-grid > .hike-card,
  .cruise-grid > .cruise-card { flex-basis: calc((100% - 2.5rem) / 3); }
}

/* Subtle navigation arrows — hidden on touch viewports, shown on tablet+ */
.carousel-nav {
  display: none;
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(35,31,32,.12);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(8,18,22,.08);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease, opacity .2s ease;
}
.carousel-nav svg { display: block; }
.carousel-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 4px 16px rgba(8,18,22,.12);
}
.carousel-nav:active { transform: translateY(-50%) scale(.98); }
.carousel-nav[disabled] { opacity: .35; cursor: default; }
.carousel-nav-prev { left: -8px; }
.carousel-nav-next { right: -8px; }
@media (min-width: 640px) {
  .carousel-nav { display: inline-flex; }
}

/* Indicator dots */
.carousel-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  padding: 0; border: 0; cursor: pointer;
  border-radius: 999px;
  background: rgba(35,31,32,.18);
  transition: background .2s ease, width .25s ease;
}
.carousel-dot:hover { background: rgba(35,31,32,.32); }
.carousel-dot.is-active {
  background: var(--yellow);
  width: 22px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 2rem 1.7rem;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 0%, rgba(251,170,25,.08) 100%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.service-card:hover::before { opacity: 1; }
.service-art {
  background: #fff; border-radius: var(--r-md);
  padding: 1rem; margin-bottom: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  height: 160px;
}
.service-art img { max-height: 100%; width: auto; }
.service-card h3 { margin-bottom: .55rem; }
.service-card p { color: var(--muted); font-size: .94rem; margin-bottom: 1rem; }
.service-tag {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--green-deep);
  padding: .3rem .7rem; background: var(--green-soft); border-radius: 999px;
}

/* ============== About ============== */
.about { padding: 6rem 0; background: var(--cream); position: relative; overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-media { position: relative; min-height: 520px; }
.about-img-1, .about-img-2 {
  position: absolute; border-radius: var(--r-lg); box-shadow: var(--shadow-md); object-fit: cover;
}
.about-img-1 { width: 70%; height: 380px; top: 0; left: 0; }
.about-img-2 { width: 55%; height: 280px; bottom: 0; right: 0; border: 8px solid var(--cream); }
.about-floater {
  position: absolute;
  bottom: 30%; left: 60%;
  background: var(--yellow); color: var(--ink);
  padding: 1rem 1.4rem; border-radius: var(--r-md);
  box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  z-index: 2;
}
.about-floater-num { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-floater-text { font-size: .82rem; font-weight: 600; }
.about-copy h2 { margin: 1rem 0 1.4rem; }
.about-copy > p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 1.6rem; }
.about-list { list-style: none; margin-bottom: 2rem; display: grid; gap: .55rem; }
.about-list li { font-weight: 500; color: var(--ink-soft); }

/* ============== Tours ============== */
.tours { padding: 6rem 0; background: var(--paper); }
/* .tours-grid layout handled by shared carousel rules below */
.tour-card {
  border-radius: var(--r-lg); overflow: hidden; background: var(--cream);
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tour-img { height: 260px; overflow: hidden; }
.tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.tour-card:hover .tour-img img { transform: scale(1.07); }
.tour-body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.tour-pill {
  display: inline-block; align-self: flex-start;
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.tour-pill.yellow { background: var(--yellow-soft); color: #8a5400; }
.tour-pill.green { background: var(--green-soft); color: var(--green-deep); }
.tour-body h3 { margin-bottom: .6rem; font-size: 1.45rem; }
.tour-body p { color: var(--muted); font-size: .96rem; margin-bottom: 1.1rem; }
.tour-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.3rem; font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.tour-cta {
  margin-top: auto; align-self: flex-start;
  font-weight: 700; color: var(--green-deep);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: gap .2s;
}
.tour-cta:hover { color: var(--ink); }

/* ============== Hiking ============== */
.hiking {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, #fff5dc 100%);
}
/* .hike-grid layout handled by shared carousel rules below */
.hike-card {
  display: block; color: inherit; text-decoration: none;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.hike-card h3 { transition: color .2s; }
.hike-card:hover h3 { color: var(--green); }
.hike-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hike-card img { width: 100%; height: 200px; object-fit: cover; object-position: center; }
.hike-card img.img-focus-top { object-position: center 22%; }
.hike-body { padding: 1.4rem; }
.difficulty {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: .25rem .6rem; border-radius: 999px;
  margin-bottom: .6rem;
}
.difficulty.easy { background: #d6f5e2; color: #117a41; }
.difficulty.mid  { background: #fff1cf; color: #855e00; }
.difficulty.hard { background: #ffd9d2; color: #a13310; }
.hike-body h3 { margin-bottom: .4rem; font-size: 1.2rem; }
.hike-body p { color: var(--muted); font-size: .9rem; }

/* ============== Cruises ============== */
.cruises {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(29,163,99,.12), transparent),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(251,170,25,.10), transparent),
    var(--paper);
}
/* .cruise-grid layout handled by shared carousel rules below */
.cruise-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.cruise-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }
.cruise-img { height: 240px; overflow: hidden; }
.cruise-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.cruise-card:hover .cruise-img img { transform: scale(1.08); }
.cruise-body { padding: 1.5rem; }
.cruise-body h3 { margin-bottom: .5rem; font-size: 1.4rem; }
.cruise-body p { color: var(--muted); font-size: .94rem; margin-bottom: 1rem; }
.cruise-cta {
  font-weight: 700; color: var(--ink);
  background: var(--yellow);
  padding: .55rem 1rem; border-radius: 999px;
  display: inline-block; transition: all .2s;
}
.cruise-cta:hover { background: var(--ink); color: #fff; }

/* ============== Why ============== */
/* ============== Licensed strip ============== */
.licensed { padding: 3rem 0; background: var(--paper); }
.licensed .wrap { text-align: center; }
.licensed-pill {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .7rem 1.15rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem; line-height: 1.3;
  color: var(--ink);
}
.licensed-icon { width: 18px; height: 18px; opacity: .85; flex-shrink: 0; }
.licensed-pill strong { font-weight: 700; }
@media (max-width: 480px) {
  .licensed { padding: 2.25rem 0; }
  .licensed-pill {
    flex-direction: column; gap: .35rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    text-align: center;
  }
}

/* ============== Quotes ============== */
.quotes { padding: 6rem 0; background: var(--cream); }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.quote {
  background: #fff; padding: 2rem; border-radius: var(--r-lg);
  border: 1px solid var(--line); position: relative;
}
.stars { color: var(--yellow); font-size: 1.05rem; margin-bottom: .8rem; letter-spacing: 2px; }
.quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem; line-height: 1.5; font-weight: 500;
  color: var(--ink); margin-bottom: 1rem;
}
.quote figcaption { color: var(--muted); font-size: .88rem; font-weight: 600; }

/* ============== Contact ============== */
.contact {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(251,170,25,.18), transparent),
    radial-gradient(ellipse 60% 60% at 0% 0%, rgba(29,163,99,.18), transparent),
    var(--ink);
  color: #fff;
}
.contact h2, .contact h3 { color: #fff; }
.contact em { color: var(--yellow); }
.contact-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start; }
.contact-copy > p { color: rgba(255,255,255,.75); font-size: 1.08rem; margin: 1rem 0 2rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }
.contact-list { list-style: none; display: grid; gap: 1rem; }
.contact-list li {
  display: grid; grid-template-columns: 90px 1fr; gap: 1rem; align-items: center;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-list strong { color: var(--yellow); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-list a, .contact-list li > *:nth-child(2) { color: rgba(255,255,255,.9); }
.contact-list a:hover { color: var(--yellow); }

.contact-cta {
  background: #fff; color: var(--ink);
  border-radius: var(--r-xl);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 1rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ""; position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--yellow), transparent 40%, var(--green) 100%);
  z-index: -1; border-radius: var(--r-xl); opacity: .4;
  filter: blur(20px);
}
.contact-cta-icon {
  width: 64px; height: 64px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow-soft); border-radius: 50%; font-size: 1.8rem;
}
.contact-cta h3 { color: var(--ink); font-size: 1.6rem; }
.contact-cta > p { color: var(--ink-soft); font-size: .95rem; margin-bottom: .3rem; }

.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft); text-align: left; }
.contact-form input, .contact-form select, .contact-form textarea {
  /* 16px floor — anything smaller triggers iOS Safari's auto-zoom-on-focus */
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  padding: .65rem .85rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); color: var(--ink);
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--yellow); background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; font-weight: 500; }

/* ============== Multi-step quote form ============== */
.field-group { display: flex; flex-direction: column; gap: .35rem; }

/* ────── Trip step (Skyscanner-style composite booking card) ────── */

/* Service summary chip — sits above the trip card, tap to go back */
.trip-service {
  font: inherit;
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: .5rem .8rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  transition: border-color .18s, background .18s, transform .12s;
}
.trip-service:hover { border-color: var(--ink); background: #fff; }
.trip-service:active { transform: scale(.998); }
.trip-service-icon { font-size: 1.25rem; line-height: 1; }
.trip-service-text {
  display: flex; flex-direction: column; gap: .12rem;
  min-width: 0; line-height: 1;
}
.trip-service-label {
  font-size: .64rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.trip-service-value {
  font-size: .98rem; font-weight: 700; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.trip-service-edit {
  font-size: .78rem; font-weight: 600;
  color: var(--green-deep);
  text-transform: uppercase; letter-spacing: .1em;
}

/* Composite card stacking all the fields with subtle dividers */
.trip-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.trip-card > * + *:not([hidden]),
.trip-card > .trip-row + .trip-row,
.trip-card > .trip-route + .trip-row,
.trip-card > .trip-row + .trip-route {
  border-top: 1px solid var(--line);
}

.trip-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: .8rem;
  padding: .65rem .95rem .7rem;
  transition: background .15s;
  cursor: pointer;
}
.trip-row[hidden] { display: none; }
.trip-row:focus-within { background: #fffaee; }
/* Don't show the pointer cursor over the chip-group passengers row —
   the chips are the real interactive elements there. */
.trip-row-passengers { cursor: default; }

.trip-icon {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--muted);
  align-self: center;
}

.trip-field {
  display: flex; flex-direction: column; gap: .28rem;
  min-width: 0;
}
.trip-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  line-height: 1;
}
.trip-label em {
  font-style: normal; font-weight: 500;
  letter-spacing: 0; text-transform: none;
  color: var(--muted);
  font-size: .8rem;
  margin-left: .15rem;
}

/* Inputs sit naked inside the row — no border, no padding, no bg.
   The row IS the field. Stops the doubled-control feel. */
.contact-form .trip-row input,
.contact-form .trip-row select {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  width: 100%;
  border-radius: 0;
  line-height: 1.25;
  min-height: 24px;
}
.contact-form .trip-row input::placeholder {
  color: var(--muted); font-weight: 500;
}
/* Date / time: keep the native picker icon so the field actually
   READS as a picker. appearance:none is reserved for <select> below. */
.contact-form .trip-row input[type="date"],
.contact-form .trip-row input[type="time"] {
  cursor: pointer;
  color-scheme: light;
  /* When unset, WebKit shows "yyyy-mm-dd" / "--:-- --" in muted grey;
     style empty state explicitly so it reads like a placeholder. */
}
.contact-form .trip-row input[type="date"]:not(:focus):not(:valid),
.contact-form .trip-row input[type="time"]:not(:focus):not(:valid) {
  color: var(--muted); font-weight: 500;
}
.contact-form .trip-row input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form .trip-row input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: .55;
  cursor: pointer;
  transition: opacity .15s;
}
.contact-form .trip-row input[type="date"]:hover::-webkit-calendar-picker-indicator,
.contact-form .trip-row input[type="time"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

/* Select keeps a custom chevron — appearance:none + bg image */
.contact-form .trip-row select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%236b6566' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.2rem;
  cursor: pointer;
}

/* Split row: Date | Time side by side */
.trip-row-split {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.trip-row-split > .trip-row-half {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: .8rem;
  padding: .65rem .95rem .7rem;
  cursor: pointer;
}
.trip-row-split > .trip-row-half + .trip-row-half {
  border-left: 1px solid var(--line);
}
.trip-row-split:focus-within { background: transparent; }
.trip-row-split > .trip-row-half:focus-within { background: #fffaee; }

/* Phone row: country code select sits beside the number input. The select
   stays compact ("+230 Mauritius"); the input flexes to fill. A thin
   separator hints at the two-part field without doubling the chrome. */
.contact-form .phone-inline {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  min-width: 0;
}
.contact-form .phone-inline > select.phone-cc {
  flex: 0 0 auto;
  max-width: 11.5rem;
  text-overflow: ellipsis;
  padding-right: 1.2rem;
  border-right: 1px solid var(--line);
  margin-right: .4rem;
}
.contact-form .phone-inline > input[name="phone"] {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 380px) {
  .contact-form .phone-inline > select.phone-cc { max-width: 8rem; }
}

/* From → To route with markers + connecting line + swap button */
.trip-route {
  position: relative;
}
.trip-route .trip-route-row {
  grid-template-columns: 22px 1fr;
  padding: .55rem .9rem .55rem;
}
.route-marker {
  width: 12px; height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  justify-self: center;
  position: relative;
  z-index: 2;
}
.route-marker-filled {
  background: var(--ink);
}
.route-line {
  position: absolute;
  left: calc(.9rem + 11px - 1px);
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--line);
  z-index: 1;
  pointer-events: none;
}
/* Hide the connecting line whenever an autocomplete dropdown is open
   on one of the route inputs — otherwise the line overshoots past the
   markers as the row expands. */
.trip-route:has(.autocomplete-results:not([hidden])) .route-line { display: none; }
.route-swap {
  position: absolute;
  /* Sit on the marker column, vertically centered between the two dots */
  left: calc(.95rem + 11px); top: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  padding: 0;
  z-index: 3;
  transition: border-color .18s, background .18s, transform .3s ease, color .18s;
}
.route-swap:hover {
  border-color: var(--yellow);
  background: #fffaee;
  transform: translate(-50%, -50%) rotate(180deg);
}
.route-swap:active {
  transform: translate(-50%, -50%) rotate(180deg) scale(.92);
}
.route-swap:focus-visible {
  outline: 2px solid var(--yellow); outline-offset: 2px;
}

/* Toggle row variant — used for boolean choices (e.g. "Bringing luggage?")
   inside the same composite card. Adds a 3rd column for the checkbox and
   a stacked title + sub. */
.contact-form label.trip-row.trip-row-toggle {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  cursor: pointer;
  user-select: none;
  flex-direction: row;
}
.trip-row-toggle .trip-field { gap: .14rem; }
.toggle-title {
  font-size: .98rem; font-weight: 700;
  color: var(--ink); line-height: 1.2;
}
.toggle-sub {
  font-size: .78rem; color: var(--muted);
  font-weight: 500; line-height: 1.3;
}
.contact-form .trip-row-toggle input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--yellow);
  cursor: pointer;
  margin: 0;
  justify-self: end;
  flex: none;
}
.trip-row-toggle:has(input:checked) {
  background: #fffaee;
}

/* ── Details step: roomier card, 3 rows shouldn't feel cramped ── */
[data-step="details"] .trip-card .trip-row,
[data-step="details"] .trip-card .trip-row-toggle {
  padding: .95rem 1.15rem 1rem;
  gap: 1rem;
  min-height: 64px;
}
[data-step="details"] .trip-card .trip-row .trip-field { gap: .35rem; }
[data-step="details"] .trip-card .trip-label { font-size: .66rem; }
[data-step="details"] .trip-card .toggle-title { font-size: 1.02rem; }
[data-step="details"] .trip-card .toggle-sub { font-size: .82rem; margin-top: .05rem; }
[data-step="details"] .trip-card .trip-icon { color: var(--ink-soft); }
[data-step="details"] .step-body { gap: .9rem; }

@media (max-width: 420px) {
  [data-step="details"] .trip-card .trip-row,
  [data-step="details"] .trip-card .trip-row-toggle {
    padding: .85rem 1rem .9rem;
    gap: .9rem;
    min-height: 60px;
  }
  [data-step="details"] .trip-card .toggle-title { font-size: 1rem; }
}

/* Passengers row — slightly taller because the chips need vertical room */
.trip-row-passengers { padding-top: .5rem; padding-bottom: .65rem; }
.trip-row-passengers .trip-field { gap: .3rem; }
.trip-row-passengers .chip-group { gap: .35rem; margin-top: .05rem; }
.trip-row-passengers .chip {
  min-width: 34px; padding: .35rem .6rem;
  font-size: .88rem;
}

/* ── Location autocomplete (Photon / OSM) ── */
.autocomplete-results {
  display: flex; flex-direction: column;
  margin-top: .55rem;
  max-height: 220px; overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.18);
  -webkit-overflow-scrolling: touch;
}
.autocomplete-results[hidden] { display: none; }
.autocomplete-item {
  font: inherit; text-align: left;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: .65rem;
  padding: .55rem .75rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background .12s;
}
.autocomplete-item + .autocomplete-item { border-top: 1px solid var(--line); }
.autocomplete-item:hover,
.autocomplete-item:focus-visible,
.autocomplete-item.is-active {
  background: #fffaee; outline: none;
}
.ac-icon {
  font-size: 1.05rem; line-height: 1;
  display: grid; place-items: center;
}
.ac-text {
  display: flex; flex-direction: column; gap: .08rem;
  min-width: 0;
}
.ac-primary {
  font-size: .94rem; font-weight: 700;
  color: var(--ink); line-height: 1.2;
  /* Allow long names to wrap to two lines, then truncate */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ac-secondary {
  font-size: .76rem; color: var(--muted);
  line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.autocomplete-loading,
.autocomplete-attrib {
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  padding: .35rem .7rem;
}
.autocomplete-attrib { border-top: 1px solid var(--line); }
.autocomplete-attrib a { color: var(--muted); text-decoration: underline; }

@media (max-width: 420px) {
  .trip-row, .trip-row-split > .trip-row-half { padding: .55rem .8rem .6rem; gap: .7rem; }
  .route-swap { left: calc(.8rem + 11px); width: 28px; height: 28px; }
}
.field-label {
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  text-align: left;
}

.chip-group { display: flex; flex-wrap: wrap; gap: .55rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.chip {
  font: inherit; font-weight: 600; font-size: .92rem;
  min-width: 40px; padding: .55rem .8rem;
  background: var(--cream); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 999px;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
}
.chip:hover { border-color: var(--ink); }
.chip:focus-visible { outline: none; border-color: var(--yellow); }
.chip.is-active {
  background: var(--yellow); color: var(--ink); border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(251,170,25,.18);
}

.hint {
  font-size: .8rem; font-weight: 500;
  background: var(--green-soft); color: var(--green-deep);
  padding: .55rem .8rem; border-radius: var(--r-sm);
  margin: 0;
}


/* Luggage step */
.step-head { display: flex; flex-direction: column; gap: .2rem; margin-bottom: .2rem; }
.step-head h4 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 1.25rem; line-height: 1.15; color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.step-head p {
  font-size: .88rem; color: var(--muted);
  margin: 0;
}

.luggage-list { display: flex; flex-direction: column; gap: .55rem; }

/* Horizontal row: glyph · name/dim · count dropdown — all on one line */
.luggage-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: .85rem;
  padding: .7rem .95rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .18s, background .18s;
}
.luggage-row.has-count {
  border-color: var(--yellow);
  background: #fffaee;
}

.luggage-glyph {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 11px;
  color: var(--ink);
  transition: background .18s, color .18s;
}
.luggage-row.has-count .luggage-glyph {
  background: var(--yellow); color: var(--ink);
}
.suitcase { display: block; }
.suitcase-s { width: 24px; height: 24px; }
.suitcase-m { width: 30px; height: 30px; }
.suitcase-l { width: 36px; height: 36px; }

.luggage-meta {
  display: flex; flex-direction: column; gap: .15rem;
  min-width: 0;
}
.luggage-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .98rem; font-weight: 700;
  color: var(--ink); line-height: 1.15;
}
.luggage-dim {
  font-size: .78rem; color: var(--muted); font-weight: 500;
  line-height: 1.3;
}

/* Count dropdown — sits inline at the right edge of the row */
.contact-form select.luggage-count {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  font: inherit; font-weight: 700; font-size: .95rem;
  color: var(--ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23231F20' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right .65rem center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1.6rem .5rem .9rem;
  cursor: pointer;
  transition: border-color .18s, background-color .18s;
  font-variant-numeric: tabular-nums;
}
.contact-form select.luggage-count:hover { border-color: var(--ink); }
.contact-form select.luggage-count:focus {
  outline: none; border-color: var(--yellow); background-color: #fff;
}
.luggage-row.has-count .contact-form select.luggage-count,
.luggage-row.has-count select.luggage-count {
  border-color: var(--yellow);
  background-color: #fff;
}

@media (max-width: 420px) {
  .luggage-row { grid-template-columns: 44px 1fr auto; gap: .7rem; padding: .65rem .85rem; }
  .luggage-glyph { width: 44px; height: 44px; border-radius: 10px; }
  .suitcase-s { width: 22px; height: 22px; }
  .suitcase-m { width: 27px; height: 27px; }
  .suitcase-l { width: 33px; height: 33px; }
  .luggage-name { font-size: .94rem; }
  .luggage-dim { font-size: .74rem; }
  .contact-form select.luggage-count { padding: .4rem 1.4rem .4rem .75rem; font-size: .9rem; }
}

/* Fair-price reveal — shown on the final step before WhatsApp handoff */
.fair-quote {
  background: linear-gradient(180deg, #FFF7E8 0%, #FBEDD0 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: .6rem;
}
.fair-quote-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.fair-quote-value {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 2.2rem; line-height: 1;
  letter-spacing: -.025em; color: var(--ink);
  margin-top: 2px;
}
.fair-quote-eur {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .86rem; color: var(--muted);
}
.fair-quote-manual {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1rem; color: var(--ink-soft); line-height: 1.4;
  display: none;
}
.fair-quote[data-state="manual"] .fair-quote-value,
.fair-quote[data-state="manual"] .fair-quote-eur,
.fair-quote[data-state="empty"] .fair-quote-eur {
  display: none;
}
.fair-quote[data-state="manual"] .fair-quote-manual { display: block; }
.fair-quote[data-state="empty"] .fair-quote-value { color: var(--muted); font-size: 1.4rem; font-style: italic; font-weight: 500; }

/* Final-page fine print */
.modal-notes {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.modal-notes li {
  position: relative;
  padding: .5rem .7rem .5rem 1.6rem;
  font-size: .82rem; line-height: 1.4;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--yellow);
}
.modal-notes li::before {
  content: "i";
  position: absolute; left: .55rem; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  border-radius: 50%;
  font-size: .65rem; font-weight: 800; font-style: italic;
  font-family: 'Fraunces', serif;
}

.service-mosaic {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
}
.service-tile {
  font: inherit;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  gap: .6rem;
  min-height: 92px; padding: .85rem .9rem;
  background: var(--cream); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  cursor: pointer; text-align: left;
  transition: background .18s, border-color .18s, transform .15s, box-shadow .18s;
}
.service-tile:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(0,0,0,.18);
}
.service-tile:focus-visible { outline: none; border-color: var(--yellow); }
.service-tile.is-active {
  background: #fff;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(251,170,25,.22);
}
.service-tile-icon { font-size: 1.5rem; line-height: 1; }
.service-tile-label { font-weight: 700; font-size: .92rem; line-height: 1.2; }


@media (max-width: 480px) {
  .service-mosaic { grid-template-columns: repeat(2, 1fr); }
  .service-tile { min-height: 84px; padding: .75rem .8rem; }
}

/* ============== Quote modal (flex shell) ============== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,13,13,.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .25s ease;
}

/* Shell: header (sticky) · scrolling form · per-step sticky footer */
.modal-card {
  position: relative;
  width: min(480px, 100%);
  max-height: 92vh;
  background: #fff; color: var(--ink);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 90px -10px rgba(0,0,0,.45);
  animation: popIn .35s cubic-bezier(.2, .9, .35, 1.2);
  display: flex; flex-direction: column;
  overflow: hidden;            /* clip rounded corners; body scrolls itself */
}

/* HEADER ─────────────────────────── */
.modal-header {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: .55rem .75rem;
  border-bottom: 1px solid transparent;
  background: #fff;
  flex-shrink: 0;
  z-index: 2;
  transition: border-color .2s ease;
}
.modal-card.has-scroll .modal-header {
  border-bottom-color: var(--line);
}
.modal-eyebrow {
  grid-column: 2;
  justify-self: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.modal-back, .modal-close {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  cursor: pointer; padding: 0;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.modal-back { grid-column: 1; justify-self: start; }
.modal-close { grid-column: 3; justify-self: end; }
.modal-back:hover, .modal-close:hover,
.modal-back:focus-visible, .modal-close:focus-visible {
  background: var(--cream); border-color: var(--line); outline: none;
}
.modal-close:hover, .modal-close:focus-visible { transform: rotate(90deg); }
/* Hide the back button on the first step */
.modal-card.at-first-step .modal-back { visibility: hidden; pointer-events: none; }

/* FORM ─────────────────────────── */
.quote-form {
  display: flex; flex-direction: column;
  flex: 1; min-height: 0;          /* allow inner scroll */
  gap: 0;
}
.quote-step {
  border: 0; padding: 0; margin: 0;
  display: none; flex-direction: column;
  flex: 1; min-height: 0;
}
.quote-step.is-active {
  display: flex;
  animation: stepIn .28s cubic-bezier(.2, .9, .35, 1.05);
}

/* STEP HEAD ─────────────────────── */
.step-head {
  padding: .15rem 1.25rem .75rem;
  display: flex; flex-direction: column; gap: .2rem;
  flex-shrink: 0;
}
.step-head h3, .step-head h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 1.5rem;
  line-height: 1.05;
  color: var(--ink); margin: 0;
  letter-spacing: -.012em;
}
.step-head p {
  margin: 0;
  font-size: .88rem; color: var(--muted); line-height: 1.35;
}

/* STEP BODY (scrolls) ──────────── */
.step-body {
  flex: 1; min-height: 0;
  overflow-y: auto;
  padding: .25rem 1.25rem 1rem;
  display: flex; flex-direction: column; gap: .7rem;
  -webkit-overflow-scrolling: touch;
}

/* STEP FOOT (sticky) ───────────── */
.step-foot {
  flex-shrink: 0;
  padding: .7rem 1.5rem .85rem;
  border-top: 1px solid transparent;
  background: #fff;
  display: flex; flex-direction: column; gap: .4rem;
  transition: border-color .2s ease;
}
.modal-card.has-scroll .step-foot {
  border-top-color: var(--line);
}
.step-foot .btn {
  width: 100%; justify-content: center;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.1rem;
  font-size: 1rem;
  /* Override global .btn drop-shadow + hover-lift so the CTA reads as part
     of the footer rather than as a floating chip with its own physics. */
  box-shadow: none;
}
.step-foot .btn:hover {
  transform: none;
  box-shadow: 0 6px 16px -8px rgba(251,170,25,.6);
}
.step-foot .btn svg {
  flex: none;
  transition: transform .2s ease;
}
.step-foot .btn:hover svg { transform: translateX(2px); }
.step-foot .form-note { margin: 0; font-size: .72rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  0%   { opacity: 0; transform: translateY(20px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.modal-open { overflow: hidden; }

/* MOBILE — bottom-sheet-style full-height card */
@media (max-width: 640px) {
  .modal { padding: 0; align-items: stretch; }
  .modal-card {
    width: 100%; max-width: 100%;
    max-height: 100dvh; min-height: 100dvh;
    border-radius: 0;
  }
  .modal-header { padding: .55rem .65rem; }
  .step-head { padding: .15rem 1rem .65rem; }
  .step-head h3, .step-head h4 { font-size: 1.4rem; }
  .step-body { padding: .2rem 1rem .85rem; gap: .6rem; }
  .step-foot { padding: .6rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0)); }
}

/* ============== Footer ============== */
.footer { background: #0f0d0d; color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand img { height: 56px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .92rem; line-height: 1.6; max-width: 320px; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col h4 { color: var(--yellow); margin-bottom: .4rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.footer-col a, .footer-col span { font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; font-size: .8rem; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ============== Floating WA button ============== */
.fab-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  animation: bob 2.4s ease-in-out infinite;
  transition: transform .25s;
}
.fab-wa:hover { transform: scale(1.1); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============== Scroll-reveal ============== */
.anim { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.anim.visible { opacity: 1; transform: none; }

/* ============== Responsive ============== */
@media (max-width: 980px) {
  .nav-mid, .nav-end { display: none; }
  .nav-toggle { display: flex; }
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; font-size: .78rem; }
  .topbar-left { gap: .6rem; }

  .hero { padding: 2.5rem 0 3rem; min-height: auto; }
  .hero-bg img { object-position: 65% center; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(8,18,22,.55) 0%, rgba(8,18,22,.45) 40%, rgba(8,18,22,.85) 100%),
      linear-gradient(95deg, rgba(8,18,22,.45) 0%, rgba(8,18,22,.15) 70%);
  }
  .hero .wrap.hero-inner { padding-left: 1.4rem; padding-right: 1.4rem; }
  .hero-copy h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); margin: .7rem 0 .8rem; line-height: 1.12; font-weight: 800; }
  .hero-p { font-size: .92rem; line-height: 1.5; margin-bottom: 1.4rem; }
  .eyebrow { font-size: .68rem; padding: .35rem .8rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: .55rem; width: 100%; max-width: 340px; margin-bottom: 1.6rem; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: .75rem 1.2rem; font-size: .92rem; }
  .hero-stats { gap: 1.3rem; padding-top: 1.2rem; }
  .hero-stats strong { font-size: 1.35rem; }
  .hero-stats span { font-size: .72rem; }
  .hero-scroll { display: none; }

  .tours-grid { grid-template-columns: 1fr; }
  .tour-img { height: 220px; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { min-height: 460px; max-width: 520px; margin: 0 auto; width: 100%; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .section-head { margin-bottom: 2.2rem; }
  .services, .tours, .hiking, .cruises, .why, .quotes, .contact, .about { padding: 4rem 0; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .topbar { font-size: .72rem; }
  .topbar-inner { padding: .4rem 0; }
  .topbar-left span:nth-child(1), .topbar-left .dot { display: none; }
  .nav-brand img { height: 38px; }
  .hero { padding: 2.2rem 0 2.6rem; }
  .hero .wrap.hero-inner { padding-left: 1.2rem; padding-right: 1.2rem; }
  .hero-copy h1 { font-size: clamp(1.55rem, 7.2vw, 2rem); margin: .6rem 0 .7rem; line-height: 1.15; }
  .hero-p { font-size: .88rem; line-height: 1.5; margin-bottom: 1.2rem; }
  .eyebrow { font-size: .64rem; letter-spacing: .05em; padding: .3rem .7rem; }
  .eyebrow-dot { width: 6px; height: 6px; }
  .hero-btns { gap: .5rem; margin-bottom: 1.4rem; max-width: 320px; }
  .hero-btns .btn { padding: .7rem 1rem; font-size: .88rem; }
  .hero-stats { gap: 1rem; padding-top: 1rem; max-width: none; }
  .hero-stats > div, .hero-stats > a { flex: 1 1 auto; min-width: 0; }
  .hero-stats strong { font-size: 1.2rem; }
  .hero-stats span { font-size: .68rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .fab-wa { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .contact-form { padding: 1.6rem; }
  .service-art { height: 130px; }
}

/* ============== Subpages (Day Trips / Hiking / Cruises) ============== */
.nav-mid a.is-active { color: var(--ink); }
.nav-mid a.is-active::after {
  content: ""; display: block; height: 2px; background: var(--yellow); margin-top: 4px; border-radius: 2px;
}

.lang-switch {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  margin-left: 1rem; padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,.18);
}
.lang-switch a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .15s; }
.lang-switch a:hover { color: var(--yellow); }
.lang-switch strong { color: #fff; font-weight: 700; }
.lang-switch-mobile {
  display: flex; gap: .6rem; justify-content: center;
  margin: .4rem 0; padding: .8rem 0;
  border-top: 1px solid rgba(35,31,32,.08);
  border-bottom: 1px solid rgba(35,31,32,.08);
  border-left: 0; padding-left: 0; margin-left: 0;
  color: rgba(35,31,32,.6); font-size: .85rem;
}
.lang-switch-mobile a { color: rgba(35,31,32,.7); }
.lang-switch-mobile strong { color: var(--ink); }

.subpage-hero {
  position: relative; isolation: isolate;
  min-height: clamp(360px, 52vh, 520px);
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  background: var(--ink);
}
.subpage-hero-bg { position: absolute; inset: 0; z-index: -2; }
.subpage-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.subpage-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,18,22,.35) 0%, rgba(8,18,22,.15) 35%, rgba(8,18,22,.85) 100%),
    linear-gradient(95deg, rgba(8,18,22,.55) 0%, rgba(8,18,22,.15) 55%, rgba(8,18,22,0) 80%);
}
.subpage-hero .subpage-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: none; margin: 0;
  padding: 5rem max(2rem, 5vw) 2.5rem;
}
.subpage-crumb {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.78); font-weight: 700;
  margin-bottom: 1rem;
}
.subpage-crumb a { color: inherit; text-decoration: none; opacity: .85; }
.subpage-crumb a:hover { opacity: 1; color: var(--yellow); }
.subpage-crumb .sep { opacity: .55; }
.subpage-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.02; letter-spacing: -.02em;
  margin: 0 0 1rem; color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.45);
  max-width: 16ch;
}
.subpage-hero h1 em { font-style: italic; color: var(--yellow); font-weight: 500; }
.subpage-hero-lede {
  font-size: 1.1rem; line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: 56ch;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

/* Anchor pill nav */
.subpage-pills {
  background: var(--cream);
  border-bottom: 1px solid rgba(35,31,32,.08);
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px);
}
.subpage-pills-inner {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding: .9rem 0; align-items: center;
}
.subpage-pills .label {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(35,31,32,.55); font-weight: 700; margin-right: .5rem;
}
.subpage-pills a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: #fff; color: var(--ink);
  font-size: .85rem; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(35,31,32,.1);
  transition: all .2s ease;
}
.subpage-pills a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.subpage-pills a .num {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  color: var(--yellow); font-size: .9rem;
}

/* Tour detail listing */
.trips-list { padding: 5.5rem 0 6rem; background: var(--cream); }
.trip {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 3.5rem; align-items: stretch;
  padding-bottom: 5.5rem; margin-bottom: 5.5rem;
  border-bottom: 1px solid rgba(35,31,32,.08);
  scroll-margin-top: 80px;
}
.trip:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.trip:nth-child(even) { grid-template-columns: .85fr 1.15fr; }
.trip:nth-child(even) .trip-media { order: 2; }
.trip-media {
  position: relative; min-height: 480px; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(35,31,32,.25);
}
.trip-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trip-media img.img-focus-people { object-position: 38% center; }
.trip-media img.img-focus-top { object-position: center 28%; }
.trip-num-badge {
  position: absolute; top: 18px; left: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.96);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.15rem;
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.trip-body { display: flex; flex-direction: column; justify-content: center; }
.trip-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); font-weight: 700;
  margin-bottom: 1rem;
}
.trip-kicker::before {
  content: ""; width: 24px; height: 1.5px; background: var(--green); display: inline-block;
}
.trip h2 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.05; letter-spacing: -.015em;
  margin: 0 0 1.1rem; color: var(--ink);
}
.trip h2 em { font-style: italic; color: var(--green); font-weight: 500; }
.trip-desc {
  color: rgba(35,31,32,.78); line-height: 1.65; font-size: 1.02rem;
  margin: 0 0 1.4rem;
}
.trip-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .75rem; border-radius: 999px;
  background: #fff; border: 1px solid rgba(35,31,32,.1);
  font-size: .78rem; font-weight: 600; color: var(--ink);
}
.chip-icon { color: var(--green); font-size: .85em; }

.trip-detail-card {
  background: #fff; border-radius: 16px;
  padding: 1.8rem; margin-top: .4rem;
  border: 1px solid rgba(35,31,32,.06);
}
.trip-detail-card + .trip-detail-card { margin-top: 1rem; }
.trip-detail-card h4 {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(35,31,32,.55); font-weight: 800;
  margin: 0 0 1rem;
}
.trip-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.trip-list li {
  position: relative; padding-left: 1.6rem;
  font-size: .92rem; color: rgba(35,31,32,.85); line-height: 1.5;
}
.trip-list li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13 l4 4 L19 7'/></svg>");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.trip-list.is-exclude li::before { background: rgba(35,31,32,.18); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'><path d='M6 6 L18 18 M18 6 L6 18'/></svg>"); }
.trip-cta { margin-top: 1.6rem; display: flex; gap: .75rem; flex-wrap: wrap; }

/* Big CTA at the bottom */
.subpage-cta {
  background: var(--ink); color: #fff; padding: 5rem 0;
  position: relative; isolation: isolate; overflow: hidden;
}
.subpage-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(251,170,25,.16), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(29,163,99,.16), transparent 60%);
}
.subpage-cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }
.subpage-cta h2 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1; margin: 0 0 1rem; color: #fff;
}
.subpage-cta h2 em { font-style: italic; color: var(--yellow); font-weight: 500; }
.subpage-cta p { color: rgba(255,255,255,.8); line-height: 1.6; margin: 0 0 1.6rem; max-width: 50ch; }
.subpage-cta-actions { display: flex; flex-direction: column; gap: .75rem; }

@media (max-width: 980px) {
  .subpage-hero { min-height: clamp(240px, 38vh, 360px); }
  .subpage-hero .subpage-hero-inner { padding: 3rem 1.4rem 1.4rem; }
  .subpage-hero h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); margin: 0 0 .7rem; line-height: 1.1; }
  .subpage-hero-lede { font-size: .92rem; line-height: 1.5; }
  .subpage-pills-inner { gap: .4rem; overflow-x: auto; flex-wrap: nowrap; padding: .8rem 0; -webkit-overflow-scrolling: touch; }
  .subpage-pills-inner::-webkit-scrollbar { display: none; }
  .subpage-pills a { white-space: nowrap; flex: 0 0 auto; }
  .trip { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 4rem; margin-bottom: 4rem; }
  .trip:nth-child(even) { grid-template-columns: 1fr; }
  .trip:nth-child(even) .trip-media { order: 0; }
  .trip-media { min-height: 320px; }
  .trip h2 { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .subpage-cta-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .subpage-pills .label { display: none; }
  .trips-list { padding: 3.5rem 0 4rem; }
}
@media (max-width: 560px) {
  .subpage-hero { min-height: clamp(220px, 36vh, 320px); }
  .subpage-hero .subpage-hero-inner { padding: 2.5rem 1.2rem 1.2rem; }
  .subpage-hero h1 { font-size: clamp(1.5rem, 7.2vw, 2rem); margin: 0 0 .55rem; line-height: 1.15; }
  .subpage-hero-lede { font-size: .85rem; line-height: 1.5; }
  .subpage-crumb { font-size: .66rem; margin-bottom: .55rem; }
  .trip-media { min-height: 240px; border-radius: 14px; }
  .trip-detail-card { padding: 1.3rem; }
  .trip-meta { gap: .35rem; }
  .chip { font-size: .72rem; padding: .3rem .65rem; }
  .trip-cta { flex-direction: column; align-items: stretch; }
  .trip-cta .btn { width: 100%; justify-content: center; }
  .subpage-cta { padding: 3.5rem 0; }
  .subpage-cta-actions .btn { width: 100%; }
}

/* ============== Mobile Hero (Variant C) — hidden on desktop ============== */
.m-hero { display: none; }

@media (max-width: 640px) {
  /* Hide existing top sections on mobile in favor of m-hero */
  .topbar { display: none; }
  .nav {
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: 0;
  }
  .nav-inner { display: none; }
  .mobile-menu { border-top: 0; }
  .hero { display: none; }
  .trust { display: none; }

  .m-hero {
    display: block;
    background: #FFF7EC;
    color: #0E2A1F;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  .m-hero * { box-sizing: border-box; }

  /* Hero photo block — sticky so it stays pinned while the cream scroller slides up over it */
  .m-hero-photo {
    position: sticky; top: 0;
    width: 100%;
    height: 364px;
    z-index: 1;
    overflow: hidden;
  }
  .m-hero-photo > img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: 56% center;
    display: block;
    /* The photo is much wider than the container, so cover-fit leaves no Y excess.
       scale + translate zooms in slightly and pushes the image down,
       revealing more of the photo's upper portion (sky/water). */
    transform: scale(1.33) translate(0%, 11%);
    transform-origin: 56% center;
  }
  .m-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,26,20,.45) 0%, rgba(8,26,20,.15) 35%, rgba(8,26,20,.65) 100%);
    pointer-events: none;
  }

  /* Top bar over photo */
  .m-hero-topbar {
    position: absolute; top: 0; left: 0; right: 0; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
  }
  .m-hero-brand img { height: 32px; width: auto; display: block; }
  .m-hero-top-right {
    display: flex; align-items: center; gap: 14px;
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    color: rgba(255,247,236,.8);
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  }
  .m-hero-lang { display: inline-flex; gap: 4px; align-items: center; }
  .m-hero-lang strong { color: #FFF7EC; font-weight: 600; }
  .m-hero-lang .sep { opacity: .35; }
  .m-hero-lang a { color: rgba(255,247,236,.8); text-decoration: none; }
  .m-hero-burger {
    border: 0; background: transparent; padding: 6px; color: #FFF7EC; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* Hero title over image — sits in the upper (sky) region of the photo */
  .m-hero-title {
    position: absolute; left: 20px; right: 20px; top: 62px; z-index: 2;
  }
  .m-hero-eyebrow {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
    color: #F2A22B; margin-bottom: 18px;
  }
  .m-hero-title h1 {
    margin: 0; color: #FFF7EC;
    font-family: "Fraunces", "Playfair Display", Georgia, serif;
    font-weight: 500; font-size: 44px; line-height: 1.04; letter-spacing: -0.9px;
    text-wrap: pretty;
  }
  .m-hero-title h1 em {
    font-style: italic; color: #F2A22B; font-weight: 400;
  }

  /* Cream "sheet" that scrolls up over the sticky hero photo */
  .m-hero-scroller {
    position: relative; z-index: 2;
    margin-top: -60px;
    background: #FFF7EC;
    border-radius: 22px 22px 0 0;
    padding-top: 24px;
    box-shadow: 0 -10px 24px rgba(8,26,20,.08);
  }

  /* Tripadvisor floating pill — straddles the boundary between hero and scroller */
  .m-hero-pill {
    position: absolute; left: 50%; top: -22px; transform: translateX(-50%);
    z-index: 3;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: 999px;
    background: #FFF7EC;
    font-size: 12px; font-weight: 600; color: #0E2A1F;
    box-shadow: 0 8px 22px rgba(0,0,0,.16), 0 0 0 1px rgba(14,42,31,.06);
    white-space: nowrap; text-decoration: none;
  }
  .m-hero-stars { display: inline-flex; gap: 1px; }
  .m-hero-stars svg { display: block; }
  .m-hero-rating { color: #0E2A1F; }
  .m-hero-pill-sep { opacity: .5; }
  .m-hero-pill-meta { font-weight: 500; opacity: .8; }

  /* Service cards — scroller already provides top padding above the pill */
  .m-hero-cards { padding: 14px 16px 0; }
  .m-hero-cards-label {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(14,42,31,.5);
    padding: 0 4px 10px;
  }

  .m-card {
    display: flex; align-items: stretch; gap: 14px;
    padding: 0; border: 0; text-align: left; cursor: pointer; text-decoration: none;
    border-radius: 18px; overflow: hidden;
    font-family: inherit; width: 100%;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
  }
  .m-card + .m-card { margin-top: 10px; }
  .m-card-dark {
    background: #0E2A1F; color: #FFF7EC;
    box-shadow: 0 4px 16px rgba(8,26,20,.18);
  }
  .m-card-warm {
    background: #FAEFD9; color: #0E2A1F;
    box-shadow: 0 4px 16px rgba(8,26,20,.08);
  }
  .m-card:active { transform: scale(.99); }

  .m-card-photo {
    position: relative; flex-shrink: 0;
    width: 92px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .m-card-photo > img {
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    padding: 8px;
    display: block;
  }
  /* Light tints so the dark-stroked vector art reads on both cards */
  .m-card-photo-taxi { background: #FFF7EC; }
  .m-card-photo-tour { background: #FAEFD9; }

  .m-card-body {
    flex: 1; padding: 11px 16px 11px 0;
    display: flex; flex-direction: column; justify-content: center;
    min-width: 0;
  }
  .m-card-tag {
    display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
  }
  .m-card-tag span {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 10px; letter-spacing: .16em; color: #F2A22B;
  }
  .m-card-tag-warm span { color: #D9881A; }
  .m-card-title {
    font-family: "Fraunces", "Playfair Display", Georgia, serif;
    font-size: 22px; font-weight: 500; line-height: 1.05; letter-spacing: -0.4px;
  }
  .m-card-text {
    margin-top: 6px;
    font-size: 13px; line-height: 1.4;
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  }
  .m-card-dark .m-card-text { color: rgba(255,247,236,.65); }
  .m-card-warm .m-card-text { color: rgba(14,42,31,.65); }
  .m-card-arrow {
    display: flex; align-items: center; padding-right: 16px;
  }

  /* Footer CTA strip — tightened so the WhatsApp button is visible on first view */
  .m-hero-cta {
    margin-top: 14px; padding: 14px 16px 22px;
    background: #0E2A1F; color: #FFF7EC;
  }
  .m-hero-cta-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4px 10px;
  }
  .m-hero-cta-title {
    font-family: "Fraunces", "Playfair Display", Georgia, serif;
    font-size: 18px; font-weight: 500; letter-spacing: -0.3px;
  }
  .m-hero-cta-sub {
    margin-top: 2px; font-size: 12px; color: rgba(255,247,236,.65);
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  }
  .m-hero-cta-stars { display: inline-flex; gap: 1px; }
  .m-hero-cta-stars svg { display: block; }
  .m-hero-cta-btn {
    width: 100%; height: 58px; border: 0; border-radius: 14px;
    background: #1FAE5A; color: #fff; cursor: pointer; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: 16px; font-weight: 600; letter-spacing: -0.2px;
    box-shadow: 0 6px 20px rgba(31,174,90,.32), 0 1px 0 rgba(255,255,255,.18) inset;
    transition: background .15s ease-out, transform .15s ease-out;
  }
  .m-hero-cta-btn:active { transform: scale(.99); background: #15894A; }

  /* Cap layout width on tablets up to 640px so it stays mobile */
  .m-hero {
    max-width: 430px; margin: 0 auto;
  }
}

