/* ============================================================
   pages-v4.css — header redesign + mobile fixes
   Loaded AFTER styles.css, pages-extra.css, pages-v3.css
   ============================================================ */

/* ============================================================
   1. TOP RIBBON — keep visible on mobile w/ review count next to stars
   ============================================================ */
.top-ribbon {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 65;
  background: var(--slate);
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-ribbon .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  height: 40px;
  flex-wrap: nowrap;
}
.top-ribbon .rb-stars svg { width: 14px; height: 14px; }
.top-ribbon .rb-rating { gap: 8px; }
.top-ribbon .rb-utility .it svg { color: var(--sand); }

/* show review count text on mobile (was hidden) */
@media (max-width: 880px) {
  .top-ribbon .wrap { height: 36px; }
  .top-ribbon .rb-utility .it:not(.it-wa) { display: none; }
}
@media (max-width: 560px) {
  .top-ribbon { font-size: 11.5px; }
  .top-ribbon .wrap { height: 36px; padding: 0 14px; gap: 8px; }
  .top-ribbon .rb-stars svg { width: 11px; height: 11px; }
  .top-ribbon .rb-rating { gap: 5px; }
  .top-ribbon .rb-rating .sep { display: none; }
  .top-ribbon .rb-rating strong { font-size: 12px; }
  /* keep review count visible — show shortened version */
  .top-ribbon .rb-rating .src {
    display: inline !important;
    color: rgba(255,255,255,.7);
    font-size: 11px;
    white-space: nowrap;
  }
  .top-ribbon .rb-utility { display: none; }
}

/* very-small phones — show only stars + reviews */
@media (max-width: 380px) {
  .top-ribbon .wrap { padding: 0 12px; }
  .top-ribbon .rb-stars svg { width: 10px; height: 10px; }
  .top-ribbon .rb-rating strong { font-size: 11.5px; }
  .top-ribbon .rb-rating .src { font-size: 10.5px; }
}

/* push header down for ribbon */
.site-header { top: 40px !important; }
@media (max-width: 880px) { .site-header { top: 36px !important; } }
@media (max-width: 560px) { .site-header { top: 36px !important; } }

/* ============================================================
   2. TRANSPARENT NAVBAR — including on mobile
   The header is already transparent until scroll. Ensure mobile keeps
   it transparent above the subhero too.
   ============================================================ */
.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(247,244,239,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
/* on mobile keep menu-toggle icon white before scroll */
@media (max-width: 720px) {
  .menu-toggle { color: #fff; }
  .site-header.is-solid .menu-toggle { color: var(--slate-2); }
  .brand img.mark { filter: invert(1) brightness(1.4); }
  .site-header.is-solid .brand img.mark { filter: none; }
}

/* ============================================================
   3. SUBHERO — bigger bolder subheading + better hierarchy
   ============================================================ */
.subhero .sub {
  font-size: clamp(17px, 1.25vw, 20px) !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.94) !important;
  line-height: 1.55 !important;
  max-width: 60ch !important;
  margin-top: 22px !important;
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .subhero .sub {
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    margin-top: 16px !important;
  }
}

/* CTA row inside subhero — guarantee 2 buttons row */
.subhero .hero-ctas {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.subhero .hero-ctas .btn { padding: 16px 22px; font-size: 14.5px; font-weight: 600; }
.subhero .hero-ctas .btn-primary { background: #fff; color: var(--slate); border-color: #fff; }
.subhero .hero-ctas .btn-primary:hover { background: var(--sand); border-color: var(--sand); }
.subhero .hero-ctas .btn-outline-light { color: #fff; border-color: rgba(255,255,255,.7); }

/* ============================================================
   4. STAT-BAR — icon + value + label (bigger, bolder on desktop)
   Pre-existing CSS in v3 already handles .stat > .ic + .meta structure.
   We just ensure it renders properly when icons are present.
   ============================================================ */
.subhero .stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(20,28,38,.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 0;
  margin-top: 34px !important;
  max-width: 100%;
  overflow: hidden;
}
.subhero .stat-bar .stat {
  display: grid !important;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,.14);
  min-height: 86px;
}
.subhero .stat-bar .stat:last-child { border-right: none; }
.subhero .stat-bar .stat .ic {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sand);
}
.subhero .stat-bar .stat .ic svg {
  width: 32px; height: 32px;
  stroke-width: 2 !important;
}
.subhero .stat-bar .stat .meta {
  display: flex; flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.subhero .stat-bar .stat .v {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(19px, 1.6vw, 26px);
  font-weight: 700 !important;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.subhero .stat-bar .stat .l {
  display: block;
  font-size: 11px !important;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78) !important;
  font-weight: 700 !important;
  line-height: 1.1;
}

/* legacy stats without .ic — still readable */
.subhero .stat-bar .stat:not(:has(.ic)) {
  grid-template-columns: 1fr;
  gap: 6px;
}

@media (max-width: 1000px) {
  .subhero .stat-bar { grid-template-columns: 1fr 1fr; }
  .subhero .stat-bar .stat { padding: 14px 16px; min-height: 76px; }
  .subhero .stat-bar .stat:nth-child(2) { border-right: none; }
  .subhero .stat-bar .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .subhero .stat-bar .stat .ic svg { width: 26px; height: 26px; }
  .subhero .stat-bar .stat .v { font-size: 17px; }
  .subhero .stat-bar .stat .l { font-size: 10px !important; letter-spacing: .18em; }
}
@media (max-width: 480px) {
  .subhero .stat-bar .stat { padding: 12px 14px; gap: 10px; grid-template-columns: 28px 1fr; min-height: 70px; }
  .subhero .stat-bar .stat .ic { width: 28px; height: 28px; flex: 0 0 28px; }
  .subhero .stat-bar .stat .ic svg { width: 22px; height: 22px; }
  .subhero .stat-bar .stat .v { font-size: 16px; }
  .subhero .stat-bar .stat .l { font-size: 9.5px !important; }
}

/* ============================================================
   5. SUBHERO sizing — give heading more breathing room
   ============================================================ */
.subhero { min-height: 88svh; }
.subhero .wrap {
  padding-top: 130px !important;
  padding-bottom: 56px !important;
}
@media (max-width: 760px) {
  .subhero { min-height: auto; }
  .subhero .wrap {
    padding-top: 100px !important;
    padding-bottom: 36px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .subhero h1 {
    font-size: clamp(28px, 8.5vw, 40px) !important;
    line-height: 1.05 !important;
    max-width: 100% !important;
  }
  .subhero .stat-bar { margin-top: 22px !important; }
  .subhero .hero-ctas { margin-top: 22px; gap: 10px; }
  .subhero .hero-ctas .btn {
    flex: 1; min-width: 0;
    padding: 14px 14px;
    font-size: 13.5px;
    justify-content: center;
  }
}

/* ============================================================
   6. TOUR-HERO + BOAT-GALLERY-TOP mobile — same treatment
   ============================================================ */
@media (max-width: 760px) {
  .tour-hero { padding-top: 96px !important; }
  .tour-hero-grid { grid-template-columns: 1fr !important; gap: 22px; }
  .tour-hero h1 { font-size: clamp(28px, 8vw, 42px) !important; }
  .tour-hero .tagline { font-size: 16px !important; font-weight: 500; }

  .boat-gallery-top { padding-top: 90px !important; }
  .boat-gallery-top .gallery-grid {
    grid-template-rows: 220px !important;
    gap: 8px !important;
  }
  .boat-gallery-top .gallery-grid > a:first-child { height: 240px !important; }
  .boat-gallery-top .gallery-grid > a:not(:first-child) { height: 110px; }
  .boat-gallery-top .gallery-grid > a:nth-child(n+5) { display: none; }
  .boat-gallery-top .gallery-grid > a:nth-child(4) {
    grid-column: auto;
  }

  .boat-hero { padding: 28px 0 0; }
  .boat-hero-grid { grid-template-columns: 1fr !important; gap: 26px; }
  .boat-hero h1 { font-size: clamp(28px, 8vw, 42px) !important; line-height: 1.05; }
  .boat-hero .tagline { font-size: 16px !important; font-weight: 500; }
  .boat-hero .ctas { gap: 10px; }
  .boat-hero .ctas .btn { flex: 1; min-width: 0; padding: 14px 14px; font-size: 13.5px; justify-content: center; }
  .quote-sticky { position: static; padding: 24px 22px; }
}

/* ============================================================
   7. GLOBAL: tighter gutters on mobile (user: reduce gap to edges)
   ============================================================ */
@media (max-width: 760px) {
  :root { --gutter: 18px; }
  .wrap { padding-left: 18px; padding-right: 18px; }
  section { padding: 52px 0; }
  section.tight { padding: 40px 0; }
}
@media (max-width: 420px) {
  :root { --gutter: 16px; }
  .wrap { padding-left: 16px; padding-right: 16px; }
}

/* ============================================================
   8. RENT-A-BOAT — boats-cat-head & boat cards mobile redesign
   ============================================================ */
@media (max-width: 760px) {
  .boats-cat { margin-bottom: 48px; }
  .boats-cat-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding-bottom: 14px !important;
    margin-bottom: 22px !important;
  }
  .boats-cat-head .left { width: 100%; }
  .boats-cat-head .label-row {
    flex-wrap: wrap;
    gap: 10px !important;
    margin-bottom: 4px;
  }
  .boats-cat-head .badge-type {
    padding: 6px 12px;
    font-size: 10.5px;
    letter-spacing: .18em;
  }
  .boats-cat-head .count {
    font-size: 12.5px;
    white-space: normal;
    line-height: 1.3;
  }
  .boats-cat-head h2 {
    font-size: clamp(26px, 7.5vw, 34px) !important;
    margin-top: 4px;
    letter-spacing: -0.03em;
  }
  .boats-cat-head .lead {
    font-size: 14.5px;
    max-width: 100% !important;
    margin-top: 4px;
  }
  .boat-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  /* override inline 2-col grid on catamarans block */
  .boats-cat#catamarans .boat-grid {
    grid-template-columns: 1fr !important;
  }

  /* boat card: tighter padding + larger spec icons */
  .boat-card .body { padding: 18px 18px !important; }
  .boat-card h3 { font-size: 20px !important; }
  .boat-card .specs { padding: 14px 0; }
  .boat-card .specs .spec { padding: 0 4px; gap: 6px; }
  .boat-card .specs .spec svg { width: 22px; height: 22px; }
  .boat-card .specs .v { font-size: 15px; }
  .boat-card .specs .k { font-size: 9.5px; letter-spacing: .14em; }
  .boat-card .features { gap: 8px 12px; font-size: 12.5px; }
  .boat-card .ctas { gap: 8px; }
  .boat-card .ctas .btn { padding: 12px 14px; font-size: 12.5px; }
}

/* boat-card title-row — fix year crowding the title on mobile */
@media (max-width: 480px) {
  .boat-card .title-row {
    flex-wrap: wrap;
    gap: 4px 10px;
  }
  .boat-card .title-row h3 { font-size: 19px !important; }
  .boat-card .year { font-size: 11px; }
}

/* ============================================================
   9. RAB-TYPES (3 boat-type cards on top of rent-a-boat)
   ============================================================ */
@media (max-width: 760px) {
  .rab-intro { padding: 48px 0 36px; }
  .rab-types { gap: 10px; }
  .rab-type { padding: 20px 18px; gap: 14px; }
  .rab-type .ic svg { width: 46px !important; height: 46px !important; }
  .rab-type .info h3 { font-size: 18px; }
  .rab-type .info .num { font-size: 10.5px; }
  .rab-type .info p { font-size: 13.5px; margin-top: 8px; }
}

/* ============================================================
   10. CONTACT BLOCK (final / contact section) — mobile redesign
   ============================================================ */
@media (max-width: 760px) {
  .final { padding: 52px 0; }
  .final .wrap { padding: 0 14px; }
  .contact-block-v2 { border-radius: 8px; }
  .contact-block-v2 .topimg {
    height: 180px;
  }
  .contact-block-v2 .topimg .top-inner {
    left: 22px !important; right: 22px !important; bottom: 22px !important;
  }
  .contact-block-v2 .topimg h2 {
    font-size: 26px !important;
    max-width: 100% !important;
  }
  .contact-block-v2 .topimg .reply {
    font-size: 11px;
    letter-spacing: .12em;
    gap: 8px;
  }
  .contact-block-v2 .inner { grid-template-columns: 1fr !important; }
  .contact-block-v2 .form-side { padding: 28px 22px !important; }
  .contact-block-v2 .info-side {
    padding: 28px 22px !important;
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .contact-block-v2 .info-side .ic-row {
    grid-template-columns: 26px 1fr !important;
    gap: 14px !important;
    padding: 14px 0 !important;
  }
  .contact-block-v2 .info-side .ic-row svg { width: 22px; height: 22px; }
  .contact-block-v2 .info-side .val { font-size: 15px; }
  .contact-block-v2 .info-side .boarding-list { margin-top: 18px; padding: 14px 16px; }

  form.inquiry { gap: 12px; }
  form.inquiry .row { grid-template-columns: 1fr !important; gap: 12px !important; }
  form.inquiry input,
  form.inquiry select,
  form.inquiry textarea { font-size: 15px; padding: 10px 0 12px; }
  form.inquiry label { font-size: 10.5px; margin-bottom: 6px; }
  form.inquiry button[type=submit] { padding: 14px 22px; font-size: 14px; width: 100%; justify-content: center; }
  form.inquiry .submit-row { flex-direction: column; align-items: stretch; gap: 14px; }
  form.inquiry .alt { text-align: center; }
}

/* ============================================================
   11. HOMEPAGE FAQ + CONTACT combined card — fix cramped mobile
   ============================================================ */
@media (max-width: 760px) {
  .faq-contact { padding: 52px 0 !important; }
  .faq-contact .wrap { padding: 0 14px !important; }
  .faq-contact .combined-card { border-radius: 8px; }
  .faq-contact .top-banner {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 26px 20px !important;
    gap: 16px;
  }
  .faq-contact .top-banner .left { max-width: 100%; }
  .faq-contact .top-banner .h-eyebrow { font-size: 10.5px; }
  .faq-contact .top-banner h2 {
    font-size: clamp(24px, 7vw, 32px) !important;
    margin-top: 10px !important;
  }
  .faq-contact .top-banner .reply {
    font-size: 11px;
    padding: 11px 14px;
    letter-spacing: .12em;
    gap: 8px;
  }
  .faq-contact .top-banner .reply svg { width: 14px; height: 14px; }
  .faq-contact .body { grid-template-columns: 1fr !important; }
  .faq-contact .body .faq-side,
  .faq-contact .body .info-side {
    padding: 24px 20px !important;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .faq-contact .faq-side .faq-item { padding: 16px 0 !important; }
  .faq-contact .faq-side .faq-item summary { font-size: 15px !important; gap: 14px !important; }
  .faq-contact .faq-side .faq-item .marker { flex: 0 0 18px; width: 18px; height: 18px; }
  .faq-contact .faq-side .faq-item .answer { font-size: 13.5px; margin-top: 10px; }
  .faq-contact .info-side .ic-row { padding: 14px 0 !important; gap: 12px !important; }
  .faq-contact .info-side .ic-row svg { width: 22px; height: 22px; }
  .faq-contact .info-side .val { font-size: 15px !important; }
  .faq-contact .info-side .cta-stack { margin-top: 18px !important; gap: 8px !important; }
  .faq-contact .info-side .cta-stack .btn { padding: 14px 18px !important; font-size: 13px !important; }
  .faq-contact .info-side .boarding-list { margin-top: 16px; padding: 14px 16px; }
}

/* ============================================================
   12. HORIZONTAL SLIDER on mobile for card grids
   Used on rent-a-boat individual sections, tour cards, day-trips, etc.
   ============================================================ */
@media (max-width: 760px) {
  /* tour-listing cards: snap horizontal scroll */
  .tours-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 4px 16px 18px !important;
    margin: 0 -18px;
    scrollbar-width: none;
  }
  .tours-grid::-webkit-scrollbar { display: none; }
  .tours-grid > .tour-listing-card {
    flex: 0 0 84%;
    min-width: 280px;
    scroll-snap-align: start;
  }
  .tour-listing-card .body { padding: 18px 18px 18px; }
  .tour-listing-card h3 { font-size: 20px; }
  .tour-listing-card .meta-row { font-size: 11px; letter-spacing: .12em; }
  .tour-listing-card p.desc { font-size: 13.5px; }
  .tour-listing-card .stops .pill { font-size: 11px; padding: 4px 8px; }
  .tour-listing-card .cta-lk { padding: 9px 14px !important; font-size: 11.5px !important; }

  /* tm-examples cards slider */
  .tm-examples-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 4px 16px 18px !important;
    margin: 0 -18px;
    scrollbar-width: none;
  }
  .tm-examples-grid::-webkit-scrollbar { display: none; }
  .tm-examples-grid > .tm-example {
    flex: 0 0 78%;
    min-width: 260px;
    scroll-snap-align: start;
  }
}

/* tablet narrow (around iPad portrait) */
@media (min-width: 761px) and (max-width: 1000px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .boat-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .tm-examples-grid { grid-template-columns: repeat(2, 1fr); }
  .why-v2 .why-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   13. DAY-TRIPS, EVENTS, BLOG mobile sliders
   ============================================================ */
@media (max-width: 760px) {
  .events-grid,
  .blog-grid,
  .blog-feed-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 4px 16px 18px !important;
    margin: 0 -18px;
    scrollbar-width: none;
  }
  .events-grid::-webkit-scrollbar,
  .blog-grid::-webkit-scrollbar,
  .blog-feed-grid::-webkit-scrollbar { display: none; }
  .events-grid > .event-card,
  .blog-grid > .blog-card,
  .blog-feed-grid > .blog-card {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
  }

  /* tour-grid (homepage featured) */
  .tour-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 4px 16px 18px !important;
    margin: 0 -18px;
    scrollbar-width: none;
  }
  .tour-grid::-webkit-scrollbar { display: none; }
  .tour-grid > .tour-card,
  .tour-grid > .home-featured-card {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
  }
}

/* ============================================================
   14. HOMEPAGE hero CTA — make 2 buttons readable on mobile
   ============================================================ */
@media (max-width: 760px) {
  .hero .hero-ctas { gap: 10px; }
  .hero .hero-ctas .btn {
    flex: 1; min-width: 0;
    padding: 14px 12px;
    font-size: 13px;
    justify-content: center;
  }
}

/* ============================================================
   15. SUBHERO scrim — fix legibility (the heading was washed out)
   ============================================================ */
.subhero .bg::after {
  background:
    linear-gradient(180deg, rgba(20,28,38,.5) 0%, rgba(20,28,38,.2) 30%, rgba(20,28,38,.88) 100%),
    linear-gradient(90deg, rgba(20,28,38,.35) 0%, rgba(20,28,38,0) 60%);
}

/* ============================================================
   16. CRUMBS — slightly larger on mobile, more contrast
   ============================================================ */
@media (max-width: 760px) {
  .subhero .crumbs,
  .tour-hero .crumbs,
  .boat-gallery-top .crumbs {
    font-size: 10.5px !important;
    letter-spacing: .16em !important;
    margin-bottom: 14px !important;
  }
}

/* ============================================================
   17. FAQ page mobile — service-group accordion tweaks
   ============================================================ */
@media (max-width: 760px) {
  .faq-page { padding: 48px 0 64px; }
  .faq-cats { grid-template-columns: 1fr 1fr !important; gap: 8px !important; margin-bottom: 32px !important; }
  .faq-cat { padding: 18px 14px !important; gap: 8px !important; }
  .faq-cat .ic svg { width: 34px !important; height: 34px !important; }
  .faq-cat h3 { font-size: 14px !important; }
  .faq-cat .count { font-size: 11px; }
  .faq-group { padding: 22px 18px !important; }
  .faq-group-head { gap: 12px !important; padding-bottom: 16px !important; }
  .faq-group-head .ic { width: 44px; height: 44px; }
  .faq-group-head .ic svg { width: 22px !important; height: 22px !important; }
  .faq-group-head h2 { font-size: 19px !important; }
  .faq-group .faq-item summary { font-size: 14.5px !important; }
  .faq-group .faq-item .answer { font-size: 14px !important; line-height: 1.55; }
}

/* ============================================================
   18. CONTACT PAGE individual cards mobile
   ============================================================ */
@media (max-width: 760px) {
  .contact-page { padding: 48px 0 64px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .contact-form-card { padding: 26px 22px !important; border-radius: 8px; }
  .contact-form-card h2 { font-size: 26px !important; }
  .contact-form-card .lead { font-size: 14.5px; margin-bottom: 22px; }
  .contact-info-card { padding: 18px 18px !important; gap: 14px !important; }
  .contact-info-card .ic { width: 36px; height: 36px; flex: 0 0 36px; }
  .contact-info-card .ic svg { width: 26px !important; height: 26px !important; }
  .contact-info-card .body h3 { font-size: 11px !important; }
  .contact-info-card .body p,
  .contact-info-card .body a { font-size: 15px !important; }
  .contact-info-card .body small { font-size: 12.5px; }
}

/* ============================================================
   19. WHATSAPP FAB mobile — keep but tinier
   ============================================================ */
@media (max-width: 760px) {
  .whatsapp-fab {
    right: 14px; bottom: 14px;
    padding: 12px;
    box-shadow: 0 10px 24px -10px rgba(37,211,102,.55);
  }
  .whatsapp-fab svg { width: 20px; height: 20px; }
  .whatsapp-fab span { display: none; }
}

/* ============================================================
   20. SERVICES grid mobile — slider too
   ============================================================ */
@media (max-width: 760px) {
  .service-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 4px 16px 18px !important;
    margin: 0 -18px;
    border: none;
    scrollbar-width: none;
  }
  .service-grid::-webkit-scrollbar { display: none; }
  .service-grid > .service-card {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    background: var(--white);
  }
}

/* ============================================================
   21. RAB filter strip mobile — horizontal scroll
   ============================================================ */
@media (max-width: 760px) {
  .rab-filters { position: static; padding: 14px 0; }
  .rab-filters .wrap { padding: 0 18px; }
  .rab-filters .row { flex-wrap: nowrap; overflow-x: auto; gap: 8px; scrollbar-width: none; padding-bottom: 4px; }
  .rab-filters .row::-webkit-scrollbar { display: none; }
  .rab-filters .label { display: none; }
  .rab-filters .sep { display: none; }
  .rab-filters .chips { flex-wrap: nowrap; }
  .rab-filters .chip { white-space: nowrap; padding: 8px 12px; font-size: 12.5px; }
}

/* ============================================================
   22. CTA visibility — ensure subhero CTAs ARE visible (was rendering
   under stat-bar in some pages due to z-index quirks)
   ============================================================ */
.subhero .wrap > * { position: relative; }

/* ============================================================
   23. TWO-CTA on tour-hero, boat-hero, contact-page, etc.
   ============================================================ */
.tour-hero .ctas,
.boat-hero .ctas {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   24. SECTION TITLE - mobile-friendly margins
   ============================================================ */
@media (max-width: 760px) {
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: clamp(24px, 6.5vw, 32px) !important; line-height: 1.05 !important; }
  .section-head .lead { font-size: 15px; }
}
