/* ============================================================
   KEK Yachting — enhance.css
   Loaded LAST on every page. Cross-cutting upgrades:
   1. Page heroes = homepage-hero framing (inset, rounded, tall) + photo bgs
   2. image-slot fill fix (route hero/tiles)
   3. "Where you'll sail" route hero redesign
   4. Bigger "Life on the water" gallery
   5. "Ready to set sail" final CTA redesign
   6. Booking search pill, moved under fleet + blended
   7. Section radii, parallax, scroll-reveal micro-animations
   ============================================================ */

/* ---------- 1 · PAGE HEROES match the homepage hero ---------- */
/* Homepage hero: inset frame, rounded bottom, clamp(620,85vh,880).
   Replicate on every interior .page-hero and drop a real aerial photo in. */
.page-hero{
  position: relative;
  min-height: clamp(560px, 82vh, 840px) !important;
  margin: 0 auto !important;
  width: calc(100% - 2 * var(--gutter)) !important;
  max-width: calc(var(--container) + 2 * var(--gutter));
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  isolation: isolate;
  display: flex; flex-direction: column;
}
/* pages that asked for a short hero (blog article / contact / booking) keep a
   slightly shorter — but still framed & photographic — header */
.page-hero.is-compact{ min-height: clamp(440px, 58vh, 600px) !important; }

.page-hero-bg{
  position: absolute; inset: 0 !important; height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
}
/* legibility wash over whatever photo sits behind */
.page-hero-bg::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(15,27,51,0.72) 0%, rgba(15,27,51,0.34) 38%, rgba(15,27,51,0.30) 62%, rgba(15,27,51,0.78) 100%);
}
.page-hero .site-header,
.page-hero-content{ position: relative; z-index: 2; }
.page-hero-content{ justify-content: flex-end; }
.page-hero-content > *{ position: relative; }

@media (max-width: 720px){
  .page-hero{ width: calc(100% - 2 * var(--gutter)) !important; border-radius: 0 0 24px 24px; min-height: clamp(480px, 78vh, 640px) !important; }
  .page-hero.is-compact{ min-height: clamp(380px, 56vh, 520px) !important; }
}

/* ---------- 2 · IMAGE-SLOT FILL FIX ---------- */
/* Slots positioned absolute but with no width/height fell back to the custom
   element's intrinsic 240×160 and floated in the corner. */
/* homepage hero photo: full-bleed, parallax disabled so no oversize needed */
.hero-photo{ inset: 0 !important; top: 0 !important; bottom: 0 !important; height: 100% !important; }
.route-hero-photo image-slot,
.route-tile .photo image-slot,
.destinations .big image-slot,
.route-hero-media image-slot{
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
}

/* ---------- 3 · "WHERE YOU'LL SAIL" ROUTE HERO — full redesign ---------- */
.route-hero.route-hero-v2{
  position: relative;
  display: block;
  grid-template-columns: none;
  min-height: clamp(520px, 62vh, 680px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--navy-deep);
  margin-bottom: 64px;
}
.route-hero-v2 .route-hero-media{ position: absolute; inset: 0; z-index: 0; }
.route-hero-v2 .route-hero-media::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,20,40,0.86) 0%, rgba(11,20,40,0.55) 42%, rgba(11,20,40,0.12) 72%, rgba(11,20,40,0.0) 100%),
    linear-gradient(0deg, rgba(11,20,40,0.55) 0%, rgba(11,20,40,0) 45%);
}
.route-hero-v2 .route-hero-inner{
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%; min-height: inherit;
  max-width: 640px;
  padding: clamp(36px, 4.5vw, 64px);
  color: #fff;
}
.route-hero-v2 .route-hero-stamp{ margin-bottom: 20px; }
.route-hero-v2 h3{
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700; line-height: 0.98; letter-spacing: -0.03em;
  color: #fff; margin: 0 0 16px;
}
.route-hero-v2 .route-hero-sub{
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6; color: rgba(255,255,255,0.86);
  max-width: 46ch; margin: 0 0 28px;
}
.route-hero-v2 .route-hero-stats{
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 3vw, 44px);
  padding: 22px 0; margin: 0 0 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  justify-content: start;
}
.route-hero-v2 .route-hero-stats > div{ display: flex; flex-direction: column; gap: 5px; }
.route-hero-v2 .route-hero-stats .lbl{
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.route-hero-v2 .route-hero-stats strong{
  font-family: var(--display); font-size: clamp(17px, 1.5vw, 21px); font-weight: 700; color: #fff; letter-spacing: -0.01em;
}
.route-hero-v2 .btn-cream{ align-self: flex-start; }
@media (max-width: 720px){
  .route-hero-v2 .route-hero-stats{ grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
  .route-hero.route-hero-v2{ border-radius: 20px; }
}

/* ---------- 4 · "LIFE ON THE WATER" GALLERY — bigger, richer ---------- */
.gallery-grid{
  grid-template-columns: repeat(4, 1fr) !important;
  grid-auto-rows: clamp(220px, 24vw, 320px) !important;
  gap: 18px !important;
}
.gallery-grid .g{ border-radius: 16px !important; }
.gallery-grid .g image-slot::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(15,27,51,0.45));
  opacity: 0; transition: opacity .35s ease; pointer-events: none; z-index: 2;
}
.gallery-grid .g:hover image-slot::after{ opacity: 1; }
.gallery-grid .g img{ transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.gallery-grid .g:hover img{ transform: scale(1.06); }
.gallery-cap{ font-size: 13px !important; }
@media (max-width: 900px){
  .gallery-grid{ grid-auto-rows: clamp(170px, 40vw, 230px) !important; }
}

/* ---------- 5 · "READY TO SET SAIL" FINAL CTA — redesign + blend ---------- */
.final-cta{ background: var(--cream) !important; padding-top: clamp(40px,6vw,96px) !important; }
.final-cta-frame{
  border-radius: clamp(24px, 3vw, 40px) !important;
  min-height: clamp(520px, 62vh, 660px) !important;
}
.final-cta-frame::after{
  background: linear-gradient(120deg, rgba(11,20,40,0.9) 0%, rgba(11,20,40,0.62) 46%, rgba(11,20,40,0.22) 100%) !important;
}
.final-cta-frame .final-cta-inner{ max-width: 760px !important; }
.final-cta .left h2{ font-size: clamp(36px, 4.4vw, 62px) !important; line-height: 0.98; }
/* newsletter no longer a stacked afterthought — it's a tidy inline bar */
.final-cta-news{
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.22);
  max-width: 540px;
}
.final-cta-news .lab{
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.9); margin-bottom: 14px;
}
.final-cta-news .news-form{ display: flex; gap: 10px; flex-wrap: wrap; }
.final-cta-news .news-form input{
  flex: 1 1 220px; min-width: 0; height: 52px;
  padding: 0 18px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1); color: #fff;
  font-family: var(--sans); font-size: 14px;
}
.final-cta-news .news-form input::placeholder{ color: rgba(255,255,255,0.6); }
.final-cta-news .news-form input:focus{ outline: none; border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.16); }
.final-cta-news .news-form .btn{ flex: 0 0 auto; height: 52px; }
.final-cta-news .note{ font-size: 11.5px; color: rgba(255,255,255,0.62); margin-top: 12px; }
@media (max-width: 720px){
  .final-cta-news .news-form .btn{ width: 100%; justify-content: center; }
}

/* ---------- 6 · BOOKING SEARCH PILL — moved under fleet + blended ---------- */
.search-row.search-row-in-fleet{
  padding: 0 0 8px !important;
  margin-top: 0 !important;
  background: transparent !important;
}
.search-row.search-row-in-fleet .search-card{
  box-shadow: none !important;
  border: 1px solid var(--line-strong);
  background: var(--cream) !important;
}
.search-row.search-row-in-fleet .search-card .field{ border-right-color: var(--line-strong); }
.search-row.search-row-in-fleet .search-helper{ margin-top: 18px; }
.fleet-search-band{ margin-top: 0; margin-bottom: 56px; }
.fleet-search-band .band-label{ margin-top: 4px; }
/* band now lives inside the fleet section's .container — neutralise its own */
.fleet-search-band > .container{ padding-left: 0 !important; padding-right: 0 !important; max-width: none !important; }
.fleet-search-band .band-label{
  text-align: center; margin: 0 0 22px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 7a · SECTION RADII (layered, rounded transitions) ---------- */
.section-cream, .section-cream-2, .section-navy, .booking-plan, .reviews-redesign{
  border-top-left-radius: clamp(28px, 3.4vw, 48px);
  border-top-right-radius: clamp(28px, 3.4vw, 48px);
  border-bottom-left-radius: clamp(28px, 3.4vw, 48px);
  border-bottom-right-radius: clamp(28px, 3.4vw, 48px);
  position: relative; z-index: 1;
}
/* keep the contact/FAQ block (overridden to paper) square so it reads as base */
#faq.section-cream{ border-radius: 0 !important; }

/* ---------- 7b · SCROLL-REVEAL micro-animations ---------- */
html.js-reveal .reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
html.js-reveal .reveal.in{ opacity: 1; transform: none; }
/* staggered children — gentler, shorter, smaller stagger */
html.js-reveal .reveal-stagger > *{
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
html.js-reveal .reveal-stagger.in > *{ opacity: 1; transform: none; }
html.js-reveal .reveal-stagger.in > *:nth-child(2){ transition-delay: .05s; }
html.js-reveal .reveal-stagger.in > *:nth-child(3){ transition-delay: .10s; }
html.js-reveal .reveal-stagger.in > *:nth-child(4){ transition-delay: .14s; }
html.js-reveal .reveal-stagger.in > *:nth-child(5){ transition-delay: .18s; }
html.js-reveal .reveal-stagger.in > *:nth-child(6){ transition-delay: .22s; }

@media (prefers-reduced-motion: reduce){
  html.js-reveal .reveal,
  html.js-reveal .reveal-stagger > *{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .page-hero-bg, .hero-photo{ transform: none !important; }
}

/* ---------- 7c · KINETIC type reveal ----------
   Entrances are driven by the Web Animations API in enhance.js (robust against
   the style recalcs that froze the CSS-animation version). The hidden pre-state
   is applied INLINE by JS — never by CSS — so text is never permanently hidden
   if an animation is disrupted; the resting state is plain visible text. */
html.js-reveal .kinetic .kw{ display: inline-block; }
@media (prefers-reduced-motion: reduce){
  html.js-reveal .kinetic .kw{ opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   ROUND 2 — request batch (booking, reviews, CTA, fleet, extras)
   ============================================================ */

/* ---------- A · FINAL CTA → two columns, newsletter + free PDF on right ---------- */
.final-cta-frame .final-cta-inner{
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: clamp(32px, 4vw, 64px) !important;
  align-items: center !important;
  max-width: calc(var(--container) + 2*var(--gutter)) !important;
  width: 100%;
}
.final-cta .right{ display: block !important; }
.final-cta-news-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 26px 26px 24px;
  backdrop-filter: blur(3px);
  max-width: none !important;
  margin-top: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.2) !important;
}
.final-cta-news-card .fcn-pdf{
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.final-cta-news-card .fcn-cover{
  flex: 0 0 auto; width: 56px; height: 70px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px; color: #fff;
}
.final-cta-news-card .fcn-cover svg{ width: 30px; height: 30px; }
.final-cta-news-card .fcn-tag{
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-soft, #E0A488); margin-bottom: 5px;
}
.final-cta-news-card .fcn-pdf strong{
  display: block; font-family: var(--display); font-size: 19px; font-weight: 600; color: #fff; line-height: 1.15;
}
.final-cta-news-card .fcn-meta{ display: block; font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.final-cta-news-card .news-form{ display: flex; gap: 10px; flex-wrap: wrap; }
.final-cta-news-card .news-form input{
  flex: 1 1 180px; min-width: 0; height: 50px; padding: 0 18px;
  border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1); color: #fff; font-family: var(--sans); font-size: 14px;
}
.final-cta-news-card .news-form input::placeholder{ color: rgba(255,255,255,0.6); }
.final-cta-news-card .news-form input:focus{ outline: none; border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.16); }
.final-cta-news-card .news-form .btn{ flex: 0 0 auto; height: 50px; }
.final-cta-news-card .note{ font-size: 11.5px; color: rgba(255,255,255,0.6); margin-top: 14px; }
@media (max-width: 880px){
  .final-cta-frame .final-cta-inner{ grid-template-columns: 1fr !important; gap: 32px !important; }
  .final-cta-news-card .news-form .btn{ width: 100%; justify-content: center; }
}

/* ---------- B · REVIEWS — accommodate 6 cards in a clean grid ---------- */
.reviews-redesign .reviews-grid{ grid-template-columns: 1.4fr 1fr 1fr !important; gap: 22px !important; }
.reviews-redesign .review-lead{ grid-row: span 1; }
.review-quiet{ transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, background .35s ease; }
.review-quiet:hover{ transform: translateY(-4px); border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.08); }
.review-quiet .who{ display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; }
.review-quiet .who .av{
  width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%;
  background: var(--cream); color: var(--navy); display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 17px;
}
.review-quiet .who strong{ display: block; color: #fff; font-size: 14px; }
.review-quiet .who small{ display: block; color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 2px; }
.review-quiet p{ color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.55; }
@media (max-width: 980px){ .reviews-redesign .reviews-grid{ grid-template-columns: 1fr 1fr !important; } .reviews-redesign .review-lead{ grid-column: 1 / -1; } }
@media (max-width: 640px){ .reviews-redesign .reviews-grid{ grid-template-columns: 1fr !important; } }

/* ---------- C · FLEET — dedicated "Find your dates" band ---------- */
.find-dates-band{
  margin: 8px 0 40px;
  background: linear-gradient(165deg, #14233F 0%, #0F1B33 100%);
  border-radius: clamp(20px, 2.4vw, 32px);
  padding: clamp(30px, 4vw, 52px);
  color: #fff; position: relative; overflow: hidden;
}
.find-dates-band .fd-head{ max-width: 560px; margin-bottom: 26px; }
.find-dates-band .fd-kicker{
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-soft, #E0A488);
}
.find-dates-band h3{
  font-family: var(--display); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700;
  letter-spacing: -0.02em; color: #fff; margin: 12px 0 12px; line-height: 1;
}
.find-dates-band h3 .italic-accent{ color: rgba(255,255,255,0.6); font-weight: 500; }
.find-dates-band .fd-head p{ font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.82); margin: 0; max-width: 52ch; }
.find-dates-band .fd-card{
  background: rgba(255,255,255,0.96) !important; box-shadow: 0 24px 60px -28px rgba(0,0,0,0.6) !important;
  border: 0 !important;
}
.find-dates-band .fd-helper{ margin-top: 18px; font-size: 13.5px; color: rgba(255,255,255,0.7); }
.find-dates-band .fd-helper a{ color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- D · FLEET — "match your group" band (redesigned) ---------- */
.fleet-match{
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 3.5vw, 56px);
  align-items: center; margin-top: 64px;
  background: var(--cream); border: 1px solid var(--line-strong);
  border-radius: clamp(20px, 2.4vw, 32px); overflow: hidden;
}
.fleet-match .fm-photo{ position: relative; align-self: stretch; min-height: 360px; }
.fleet-match .fm-photo image-slot{ position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.fleet-match .fm-body{ padding: clamp(28px, 3.4vw, 52px) clamp(28px, 3.4vw, 52px) clamp(28px, 3.4vw, 52px) 0; }
.fleet-match .fm-kicker{
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sea-fresh-deep, #2C7A7B);
}
.fleet-match h3{
  font-family: var(--display); font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -0.02em;
  margin: 12px 0 14px; line-height: 1.04; color: var(--navy);
}
.fleet-match .fm-body > p{ font-size: 16px; line-height: 1.6; color: var(--ink); margin: 0 0 20px; max-width: 54ch; }
.fleet-match .fm-points{ list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.fleet-match .fm-points li{ display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink); font-weight: 500; }
.fleet-match .fm-points li{ font-size: 15.5px; gap: 14px; }
.fleet-match .fm-points svg{ flex: 0 0 auto; width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: rgba(44,122,123,0.14); color: var(--sea-fresh-deep, #2C7A7B); }
.fleet-match .fm-actions{ display: flex; gap: 12px; flex-wrap: wrap; }
.btn.btn-outline{ background: transparent; border: 1px solid var(--line-strong); color: var(--navy); }
.btn.btn-outline:hover{ background: var(--navy); color: #fff; border-color: var(--navy); }
@media (max-width: 820px){
  .fleet-match{ grid-template-columns: 1fr; }
  .fleet-match .fm-photo{ min-height: 240px; }
  .fleet-match .fm-body{ padding: 0 clamp(24px,5vw,40px) clamp(28px,6vw,40px); }
}

/* ---------- E · YACHT — equipment category icon polish ---------- */
.equip-cat-head .cat-ic{
  display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 11px; background: rgba(37,61,111,0.07); color: var(--navy);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.equip-cat-head .cat-ic svg{ width: 22px; height: 22px; }
details[open] .equip-cat-head .cat-ic,
.equip-cat-head:hover .cat-ic{ background: var(--navy); color: #fff; transform: scale(1.04); }

/* ---------- F · YACHT — optional equipment/services, visual cards ---------- */
.extras-col h4{ display: flex; align-items: center; gap: 10px; }
.extras-col h4 .ex-h-ic{
  display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 auto;
  border-radius: 8px; background: rgba(37,61,111,0.08); color: var(--navy);
}
.extras-col h4 .ex-h-ic svg{ width: 17px; height: 17px; }
.extra-cards{ display: grid; gap: 10px; }
.extra-card{
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px;
  padding: 12px 14px; background: var(--cream); border: 1px solid var(--line, #EFE9DC);
  border-radius: 12px; transition: transform .28s cubic-bezier(.2,.7,.2,1), border-color .28s ease, box-shadow .28s ease;
}
.extra-card:hover{ transform: translateY(-2px); border-color: rgba(37,61,111,0.22); box-shadow: 0 12px 24px -16px rgba(15,27,51,0.34); }
.extra-card .ec-ic{
  display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto;
  border-radius: 10px; background: #fff; border: 1px solid var(--line, #EFE9DC); color: var(--navy);
}
.extra-card .ec-ic svg{ width: 20px; height: 20px; }
.extra-card .ec-name{ font-size: 14.5px; color: var(--ink); font-weight: 500; }
.extra-card .ec-price{
  font-size: 13px; font-weight: 700; color: var(--navy); white-space: nowrap;
  background: #fff; border: 1px solid var(--line, #EFE9DC); border-radius: var(--radius-pill); padding: 5px 12px;
}
.extras-col .extras-note{ display: flex; align-items: center; gap: 7px; }
.extras-col .extras-note svg{ color: #2C7A63; }

/* ---------- G · cross-page: photo-backed CTA sections ---------- */
.cta-photo{ position: relative; isolation: isolate; overflow: hidden; }
.cta-photo::before{
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center; background-image: var(--cta-img);
  transform: scale(1.06);
}
.cta-photo::after{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, rgba(15,27,51,0.9) 0%, rgba(15,27,51,0.7) 55%, rgba(15,27,51,0.86) 100%);
}

/* ---------- H · micro-interactions ---------- */
.btn{ transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn .arrow{ transition: transform .22s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arrow{ transform: translateX(4px); }
.yacht-card-rich .photo img, .yacht-card .photo img{ transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.yacht-card-rich:hover .photo img, .yacht-card:hover .photo img{ transform: scale(1.05); }
.route-tile .photo image-slot{ overflow: hidden; }
.route-tile:hover .photo image-slot{ transform: none; }
.nav-links a{ position: relative; }
.nav-links a::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.2,.7,.2,1); opacity: .8;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }
@media (prefers-reduced-motion: reduce){
  .btn:hover, .btn:hover .arrow{ transform: none; }
}

/* ============================================================
   ROUND 3 — awwwards pass (headers, side-text, icons, motion)
   ============================================================ */

/* ---------- I · SECTION HEADS: description BELOW the heading ---------- */
/* Was a 2-col grid (heading | side text). Stack it: kicker, heading, then a
   measured lede underneath — the editorial pattern the client asked for. */
.section-head-left{
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  margin-bottom: clamp(36px, 4vw, 56px) !important;
  max-width: 1320px;
}
.section-head-left .lhs{ margin: 0; }
.section-head-left .rhs{
  margin-top: 18px !important;
  max-width: 58ch !important;
  padding-bottom: 0 !important;
  font-size: clamp(16px, 1.3vw, 18px) !important;
  color: var(--muted, #5B6172) !important;
}
.section-head-left .rhs p{ margin: 0; text-wrap: pretty; }

/* ---------- J · REMOVE ORDER NUMBERS ON ROUTE TILES ---------- */
.routes-grid .route-tile .photo .num{ display: none !important; }

/* ---------- K · PAGE-HERO: let the aerial photo breathe ---------- */
/* The decorative compass + radial wash were muddying the drone photos.
   Soften them so the boat-from-the-air reads clearly behind the headline. */
.page-hero-bg::after{ opacity: 0.35; }
.page-hero::after{ opacity: 0.5; }

/* ---------- L · ROUTES: intro lede under the hero ---------- */
.routes-intro{
  max-width: 1320px; margin: 0 auto; padding: clamp(40px,5vw,72px) var(--gutter) 0;
}
.routes-intro .ri-inner{
  display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 4vw, 64px); align-items: start;
}
.routes-intro .ri-lead{
  font-family: var(--display); font-weight: 500;
  font-size: clamp(22px, 2.3vw, 32px); line-height: 1.32; letter-spacing: -0.015em;
  color: var(--navy); margin: 0; text-wrap: pretty;
}
.routes-intro .ri-lead em{ font-style: italic; color: var(--sea-fresh-deep, #2C7A7B); }
.routes-intro .ri-side{ font-size: 15.5px; line-height: 1.7; color: var(--muted, #5B6172); }
.routes-intro .ri-side p{ margin: 0 0 14px; }
.routes-intro .ri-tag{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent, #C9A663); white-space: nowrap; padding-top: 6px;
}
@media (max-width: 820px){ .routes-intro .ri-inner{ grid-template-columns: 1fr; gap: 20px; } }

/* ---------- M · ROUTES: "plot your own course" band, mid-grid ---------- */
.routes-grid.routes-grid-split{ display: block; }
.routes-grid-split .rg-row{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.routes-grid-split .rg-row + .rg-row{ margin-top: 24px; }
@media (max-width: 1100px){ .routes-grid-split .rg-row{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px){ .routes-grid-split .rg-row{ grid-template-columns: 1fr; } }

.plan-band{
  margin: 32px 0; position: relative; overflow: hidden;
  border-radius: clamp(20px, 2.4vw, 30px);
  background: linear-gradient(150deg, #14233F 0%, #0F1B33 60%, #112A43 100%);
  color: #fff;
  display: grid; grid-template-columns: 1.25fr 1fr; align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(32px, 4vw, 60px);
}
.plan-band .pb-glow{
  position: absolute; right: -8%; top: -40%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(201,166,99,0.22), transparent 62%); pointer-events: none;
}
.plan-band .pb-compass{
  position: absolute; right: 4%; bottom: -30px; width: 220px; height: 220px; opacity: 0.5;
  color: #C9A663; pointer-events: none;
}
.plan-band .pb-left{ position: relative; z-index: 1; }
.plan-band .pb-kicker{
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #E0A488;
}
.plan-band h3{
  font-family: var(--display); font-size: clamp(28px, 3.4vw, 46px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1; margin: 14px 0 14px; color: #fff;
}
.plan-band h3 .em{ font-style: italic; font-weight: 500; color: rgba(255,255,255,0.62); }
.plan-band p{ font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,0.84); margin: 0 0 26px; max-width: 48ch; }
.plan-band .pb-actions{ display: flex; gap: 12px; flex-wrap: wrap; }
.plan-band .pb-points{
  position: relative; z-index: 1; display: grid; gap: 14px;
}
.plan-band .pb-points .pt{
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
}
.plan-band .pb-points .pt svg{ flex: 0 0 auto; width: 26px; height: 26px; color: #C9A663; margin-top: 1px; }
.plan-band .pb-points .pt strong{ display: block; font-size: 15px; color: #fff; font-weight: 600; margin-bottom: 2px; }
.plan-band .pb-points .pt span{ font-size: 13px; color: rgba(255,255,255,0.66); line-height: 1.45; }
@media (max-width: 900px){ .plan-band{ grid-template-columns: 1fr; gap: 28px; } .plan-band .pb-compass{ display: none; } }

/* ---------- N · ROUTES: "why Pirovac" redesigned ---------- */
.why-pirovac-v2{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: var(--cream); border: 1px solid var(--line-strong); border-radius: clamp(20px,2.4vw,30px);
  overflow: hidden;
}
.why-pirovac-v2 .wp{
  padding: clamp(30px, 3.4vw, 48px); position: relative;
  border-right: 1px solid var(--line, #EFE9DC);
  transition: background .35s ease;
}
.why-pirovac-v2 .wp:last-child{ border-right: 0; }
.why-pirovac-v2 .wp:hover{ background: #fff; }
.why-pirovac-v2 .wp-ic{
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--navy); color: var(--accent, #C9A663); margin-bottom: 22px;
}
.why-pirovac-v2 .wp-ic svg{ width: 30px; height: 30px; }
.why-pirovac-v2 .wp-num{
  position: absolute; top: clamp(24px,3vw,40px); right: clamp(24px,3vw,40px);
  font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--accent, #C9A663); opacity: 0.5;
}
.why-pirovac-v2 .wp h4{
  font-family: var(--display); font-size: clamp(20px,1.8vw,24px); font-weight: 700; letter-spacing: -0.01em;
  margin: 0 0 12px; color: var(--navy);
}
.why-pirovac-v2 .wp p{ font-size: 15px; line-height: 1.62; color: var(--ink); margin: 0; }
@media (max-width: 820px){
  .why-pirovac-v2{ grid-template-columns: 1fr; }
  .why-pirovac-v2 .wp{ border-right: 0; border-bottom: 1px solid var(--line, #EFE9DC); }
  .why-pirovac-v2 .wp:last-child{ border-bottom: 0; }
}

/* ---------- O · SCROLL-DRIVEN reveals + parallax helpers ---------- */
/* parallax media wrapper — JS sets --py */
.parallax-media{ overflow: hidden; }
.parallax-media > img,
.parallax-media > image-slot,
.parallax-media .pm-inner{
  transform: translate3d(0, var(--py, 0px), 0) scale(1.12);
  will-change: transform;
}
/* scroll-reveal for new round-3 blocks (uses shared.js .reveal engine too) */
@media (prefers-reduced-motion: reduce){
  .parallax-media > img, .parallax-media > image-slot, .parallax-media .pm-inner{ transform: none !important; }
}

/* ============================================================
   ROUND 3 — SERVICES redesign (icon-forward, airy)
   ============================================================ */
.svc-lede{ max-width: 1320px; margin: 0 auto; padding: clamp(40px,5vw,76px) var(--gutter) 0; }
.svc-lede .sl-inner{ max-width: 760px; }
.svc-lede .sl-kicker{ font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent,#C9A663); }
.svc-lede h2{
  font-family: var(--display); font-size: clamp(30px,3.6vw,50px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.04; margin: 16px 0 18px; color: var(--navy);
}
.svc-lede h2 .em{ font-style: italic; font-weight: 500; color: var(--sea-fresh-deep,#2C7A7B); }
.svc-lede p{ font-size: clamp(16px,1.4vw,19px); line-height: 1.65; color: var(--ink); margin: 0; text-wrap: pretty; }

/* two light program jump-cards */
.svc-pick{ max-width: 1320px; margin: 0 auto; padding: clamp(28px,3vw,40px) var(--gutter) 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc-pick a{
  display: flex; align-items: center; gap: 20px; text-decoration: none; color: inherit;
  background: var(--cream); border: 1px solid var(--line-strong); border-radius: 18px;
  padding: 24px 26px; transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.svc-pick a:hover{ transform: translateY(-3px); border-color: rgba(37,61,111,0.28); box-shadow: 0 18px 36px -22px rgba(15,27,51,0.4); }
.svc-pick .sp-ic{ width: 56px; height: 56px; flex: 0 0 auto; border-radius: 15px; display: grid; place-items: center; background: var(--navy); color: var(--accent,#C9A663); }
.svc-pick .sp-ic svg{ width: 30px; height: 30px; }
.svc-pick strong{ display: block; font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 3px; letter-spacing: -0.01em; }
.svc-pick span.sp-sub{ font-size: 14px; color: var(--muted,#5B6172); }
.svc-pick .sp-go{ margin-left: auto; color: var(--accent,#C9A663); flex: 0 0 auto; transition: transform .25s ease; }
.svc-pick a:hover .sp-go{ transform: translateX(4px); }
@media (max-width: 760px){ .svc-pick{ grid-template-columns: 1fr; } }

/* program feature row — icon-forward, alternating */
.svc-feature{ align-items: center; }
.svc-feature .sf-head .kicker{ display:inline-block; font-size: 12px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color: var(--accent,#C9A663); margin-bottom: 14px; }
.svc-feature .sf-head h2{ font-family: var(--display); font-size: clamp(28px,3.2vw,44px); font-weight:700; letter-spacing:-0.025em; line-height:1.02; margin:0 0 18px; color: var(--navy); }
.svc-feature .sf-head h2 .italic-accent{ font-style:italic; font-weight:500; color: var(--sea-fresh-deep,#2C7A7B); }
.svc-feature .sf-head > p{ font-size: 17px; line-height:1.65; color: var(--ink); margin: 0 0 26px; max-width: 56ch; }
.sf-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin: 0 0 28px; }
.sf-list .sf-item{ display: flex; gap: 14px; align-items: flex-start; }
.sf-list .sf-item .ic{ width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; display:grid; place-items:center; background: var(--cream); border: 1px solid var(--line,#EFE9DC); color: var(--navy); transition: background .3s ease, color .3s ease; }
.sf-list .sf-item:hover .ic{ background: var(--navy); color: #fff; }
.sf-list .sf-item .ic svg{ width: 23px; height: 23px; }
.sf-list .sf-item strong{ display:block; font-family: var(--display); font-size: 16.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.sf-list .sf-item span{ font-size: 13.5px; line-height: 1.5; color: var(--muted,#5B6172); }
.sf-adv{ display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; }
.sf-adv li{ display:inline-flex; align-items:center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--navy); background: rgba(44,122,99,0.08); border-radius: var(--radius-pill); padding: 8px 15px; }
.sf-adv li svg{ width: 16px; height: 16px; color: #2C7A63; flex: 0 0 auto; }
/* the visual side: a stack of icon "what you get" + photo */
.svc-feature .sf-visual{ position: relative; }
.svc-feature .sf-visual .sf-photo{ border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; background: var(--navy); position: relative; }
.svc-feature .sf-visual .sf-photo image-slot{ position:absolute; inset:0; width:100% !important; height:100% !important; }
.svc-feature .sf-visual .sf-badge{
  position: absolute; left: -18px; bottom: 28px; background: #fff; border-radius: 16px; padding: 18px 22px;
  box-shadow: 0 24px 50px -26px rgba(15,27,51,0.5); display: flex; align-items: center; gap: 14px; max-width: 280px;
}
.svc-feature .sf-visual .sf-badge .b-ic{ width: 44px; height:44px; flex:0 0 auto; border-radius: 12px; display:grid; place-items:center; background: var(--navy); color: var(--accent,#C9A663); }
.svc-feature .sf-visual .sf-badge strong{ display:block; font-family: var(--display); font-size: 17px; color: var(--navy); }
.svc-feature .sf-visual .sf-badge span{ font-size: 12.5px; color: var(--muted,#5B6172); }
.svc-feature.reverse .sf-visual{ order: -1; }
.svc-feature.reverse .sf-visual .sf-badge{ left: auto; right: -18px; }
@media (max-width: 940px){
  .sf-list{ grid-template-columns: 1fr; }
  .svc-feature.reverse .sf-visual{ order: 0; }
  .svc-feature .sf-visual{ margin-top: 8px; }
  .svc-feature .sf-visual .sf-photo{ aspect-ratio: 16/10; }
  .svc-feature .sf-visual .sf-badge{ left: 16px; right: auto; }
}

/* "make ownership simpler" relocated band */
.svc-simpler{ position: relative; overflow: hidden; isolation: isolate; border-radius: clamp(22px,2.6vw,34px); padding: clamp(44px,6vw,84px) clamp(28px,5vw,72px); color: #fff; text-align: center; }
.svc-simpler::before{ content:""; position:absolute; inset:0; z-index:-2; background-size: cover; background-position: center; background-image: var(--cta-img); transform: scale(1.06); }
.svc-simpler::after{ content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(160deg, rgba(15,27,51,0.86), rgba(15,27,51,0.66)); }
.svc-simpler h2{ font-family: var(--display); font-size: clamp(32px,4.2vw,58px); font-weight:700; letter-spacing:-0.025em; margin: 0 auto 18px; color:#fff; max-width: 18ch; }
.svc-simpler h2 .em{ font-style: italic; font-weight: 500; color: rgba(255,255,255,0.6); }
.svc-simpler p{ font-size: clamp(16px,1.4vw,18px); color: rgba(255,255,255,0.85); max-width: 60ch; margin: 0 auto 30px; }
.svc-simpler .ss-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* closing trust strip */
.svc-trust{ max-width: 1320px; margin: 0 auto; padding: clamp(36px,4vw,56px) var(--gutter); display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.svc-trust .tr{ display:flex; gap: 14px; align-items: flex-start; }
.svc-trust .tr .ic{ width: 46px; height:46px; flex:0 0 auto; border-radius: 12px; display:grid; place-items:center; background: var(--cream); border:1px solid var(--line,#EFE9DC); color: var(--navy); }
.svc-trust .tr .ic svg{ width: 24px; height: 24px; }
.svc-trust .tr strong{ display:block; font-family: var(--display); font-size: 16px; color: var(--navy); margin-bottom: 3px; }
.svc-trust .tr span{ font-size: 13px; color: var(--muted,#5B6172); line-height: 1.5; }
@media (max-width: 860px){ .svc-trust{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .svc-trust{ grid-template-columns: 1fr; } }

/* ============================================================
   ROUND 3 — CONTACT "five steps" redesign (horizontal journey)
   ============================================================ */
.steps-journey{ position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: sj; }
.steps-journey::before{
  content:""; position:absolute; top: 38px; left: 9%; right: 9%; height: 2px;
  background: repeating-linear-gradient(to right, var(--accent,#C9A663) 0 7px, transparent 7px 14px);
  z-index: 0;
}
.steps-journey .sj{ position: relative; z-index: 1; text-align: center; padding: 0 16px; }
.steps-journey .sj .sj-dot{
  width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line,#EFE9DC); display: grid; place-items: center;
  color: var(--navy); position: relative; transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, background .3s ease, color .3s ease;
}
.steps-journey .sj .sj-dot svg{ width: 32px; height: 32px; }
.steps-journey .sj:hover .sj-dot{ transform: translateY(-4px); background: var(--navy); color: #fff; box-shadow: 0 18px 34px -20px rgba(15,27,51,0.55); }
.steps-journey .sj .sj-n{
  position: absolute; top: -6px; right: -6px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent,#C9A663); color: var(--navy); display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 13px;
}
.steps-journey .sj strong{ display:block; font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.01em; }
.steps-journey .sj p{ font-size: 13.5px; line-height: 1.5; color: var(--muted,#5B6172); margin: 0; }
@media (max-width: 860px){
  .steps-journey{ grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .steps-journey::before{ display: none; }
  .steps-journey .sj{ display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line,#EFE9DC); }
  .steps-journey .sj .sj-dot{ margin: 0; width: 60px; height: 60px; }
  .steps-journey .sj .sj-body{ grid-column: 2; }
  .steps-journey .sj:last-child{ border-bottom: 0; }
}

/* ============================================================
   ROUND 5 — client redesign pass (May 2026)
   Global: section-head stacking, footer rounding, parallax,
   seam-fill at rounded corners.
   ============================================================ */

/* ---------- 5·1 · SECTION HEADS — stack the side description UNDER the heading ---------- */
/* The homepage + several pages use a 3-col .section-head (heading | side text | cta).
   The client wants that right-hand paragraph to sit beneath the heading instead. */
.section-head{
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
.section-head .left{ max-width: 22ch; }
.section-head .left h2{ max-width: none; }
.section-head .right{
  margin-top: 18px !important;
  max-width: 60ch !important;
  padding-bottom: 0 !important;
  font-size: clamp(15.5px, 1.25vw, 18px) !important;
  color: var(--muted) !important;
}
.section-head .right p{ margin: 0; text-wrap: pretty; }
.section-head .head-cta{ margin-top: 24px; padding-bottom: 0; }
.section-navy .section-head .right{ color: rgba(255,255,255,0.74) !important; }
@media (min-width: 1000px){
  /* keep heading and lede on a comfortable measure, not the full 1560px width */
  .section-head .left{ max-width: 18ch; }
}

/* ---------- 5·2 · FOOTER — rounded top, no straight seam ---------- */
.site-foot.kek-foot-v2{
  border-top-left-radius: clamp(28px, 3.4vw, 48px);
  border-top-right-radius: clamp(28px, 3.4vw, 48px);
  margin-top: 0;
}
/* drop the old hairline wave divider that fought the new rounded top */
.site-foot::before{ display: none !important; }

/* ---------- 5·3 · SEAM FILL — kill the body-colour wedge at rounded corners ---------- */
/* Rounded section panels sit on the paper body; where a coloured panel meets the
   next panel the body used to peek through as a pale wedge. Paint the body the
   deep navy so any sliver reads as part of the design, never as a white gap. */
html{ background: var(--paper); }
body{ background: var(--paper); }
/* sections that butt against the navy footer / each other get a matching backdrop */
.final-cta{ position: relative; z-index: 1; }

/* ---------- 5·4 · PARALLAX — make it actually visible site-wide ---------- */
/* stronger hero drift */
.hero-photo, .page-hero-bg{ will-change: transform; }
/* content-level parallax wrappers (JS drives --py) */
.parallax-media{ overflow: hidden; border-radius: inherit; }
.parallax-media > img,
.parallax-media > image-slot,
.parallax-media .pm-inner{
  display: block; width: 100%; height: 100%;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.2);
  will-change: transform;
}
/* gentle rise/scale for any element tagged data-parallax (JS sets --p 0..1) */
@media (prefers-reduced-motion: reduce){
  .parallax-media > img, .parallax-media > image-slot, .parallax-media .pm-inner{ transform: none !important; }
}

/* ---------- 5·5 · HOME "closer to the islands" — dominant zoomed map, lighter ---------- */
.why-home .why-home-grid{ display: block !important; }
.why-home-v2{ display: flex; flex-direction: column; gap: clamp(30px, 3.6vw, 52px); }
.map-embed-big{
  min-height: clamp(420px, 52vh, 600px) !important;
  border-radius: 24px !important; border: 0 !important;
  box-shadow: 0 30px 70px -34px rgba(15,27,51,0.4);
}
.map-embed-big iframe{ filter: grayscale(0.12) contrast(1.03); }
.map-embed-big .map-tag{ left: 22px; top: 22px; }
.why-home-v2 .whv-stats{
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2;
  display: flex; gap: 12px; flex-wrap: wrap; pointer-events: none;
}
.why-home-v2 .whv-stats .s{
  background: #fff; padding: 14px 22px; border-radius: 14px;
  box-shadow: 0 14px 36px -16px rgba(15,27,51,0.45);
}
.why-home-v2 .whv-stats strong{
  display: block; font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.why-home-v2 .whv-stats span{
  display: block; font-size: 11.5px; color: var(--muted); margin-top: 5px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.why-home-v2 .whv-reasons{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(26px, 3vw, 46px);
}
.why-home-v2 .whv-reasons .r{ display: flex; flex-direction: column; gap: 14px; }
.why-home-v2 .whv-reasons .ic-c{ color: var(--navy); }
.why-home-v2 .whv-reasons .ic-c svg{ width: 46px; height: 46px; stroke-width: 1.4; }
.why-home-v2 .whv-reasons h3{ font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
.why-home-v2 .whv-reasons p{ font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
@media (max-width: 900px){
  .why-home-v2 .whv-reasons{ grid-template-columns: 1fr 1fr; }
  .why-home-v2 .whv-stats .s{ padding: 11px 16px; }
  .why-home-v2 .whv-stats strong{ font-size: 18px; }
}
@media (max-width: 560px){ .why-home-v2 .whv-reasons{ grid-template-columns: 1fr; } }

/* ---------- 5·6 · HOME contact card — visible icons + highlighted reply time ---------- */
.contact-feature-left .reply-badge{
  display: flex; align-items: center; gap: 14px;
  background: var(--gold, #C9A663); color: var(--navy-deep);
  border-radius: 14px; padding: 14px 20px; margin: 0 0 30px;
  box-shadow: 0 16px 36px -18px rgba(201,166,99,0.6);
}
.contact-feature-left .reply-badge .rb-icon{
  width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%;
  background: var(--navy-deep); color: var(--gold, #C9A663);
  display: grid; place-items: center;
}
.contact-feature-left .reply-badge .rb-icon svg{ width: 22px; height: 22px; }
.contact-feature-left .reply-badge strong{
  display: block; font-family: var(--display); font-size: 18px; font-weight: 700;
  color: var(--navy-deep); line-height: 1.1; letter-spacing: -0.01em;
}
.contact-feature-left .reply-badge span{ display: block; font-size: 12.5px; color: rgba(15,27,51,0.7); margin-top: 2px; }
/* channel icons: solid, high-contrast chips instead of faint white strokes
   (wins over the global naked-icon !important rule in styles.css) */
.contact-feature-left .big-channel .ic{
  width: 48px !important; height: 48px !important; flex: 0 0 auto;
  border-radius: 12px !important;
  background: #fff !important; color: var(--navy) !important;
  display: grid; place-items: center;
}
.contact-feature-left .big-channel .ic svg{ width: 26px !important; height: 26px !important; }
.contact-feature-left .big-channel{ border-color: rgba(255,255,255,0.22); }
.contact-feature-left .big-channel:hover .ic{ background: var(--gold, #C9A663) !important; color: var(--navy-deep) !important; }

/* ---------- 5·7 · HOME final-CTA free-PDF card — solid, no glassmorphism ---------- */
.final-cta-news-card.pdf-card{
  display: grid; grid-template-columns: 138px 1fr; gap: 0;
  background: var(--cream, #F6F1E6) !important;
  border: 0 !important; backdrop-filter: none !important;
  border-radius: 20px !important; overflow: hidden; padding: 0 !important;
  box-shadow: 0 34px 80px -34px rgba(0,0,0,0.6);
}
.pdf-card .pdf-card-cover{
  position: relative; padding: 22px 18px;
  background: linear-gradient(165deg, #1A2C54 0%, #0F1B33 100%);
  color: #fff; display: flex; flex-direction: column; gap: 8px;
  border-right: 3px solid var(--gold, #C9A663);
}
.pdf-card .pcc-eyebrow{
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold, #C9A663);
}
.pdf-card .pcc-title{
  font-family: var(--display); font-size: 18px; font-weight: 700; line-height: 1.1;
  letter-spacing: -0.01em; color: #fff;
}
.pdf-card .pcc-mark{ margin-top: auto; color: rgba(255,255,255,0.85); }
.pdf-card .pcc-mark svg{ width: 30px; height: 30px; }
.pdf-card .pdf-card-body{ padding: 24px 24px 22px; display: flex; flex-direction: column; }
.pdf-card .fcn-tag{
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 6px;
}
.pdf-card .pdf-card-body strong{
  font-family: var(--display); font-size: 21px; font-weight: 700; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 8px;
}
.pdf-card .pdf-card-body > p{ font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0 0 16px; }
.pdf-card .news-form{ display: flex; gap: 10px; flex-wrap: wrap; }
.pdf-card .news-form input{
  flex: 1 1 170px; min-width: 0; height: 50px; padding: 0 16px;
  border-radius: var(--radius-pill); border: 1px solid var(--line-strong);
  background: #fff; color: var(--ink); font-family: var(--sans); font-size: 14px;
}
.pdf-card .news-form input:focus{ outline: none; border-color: var(--navy); }
.pdf-card .news-form .btn{ flex: 0 0 auto; height: 50px; }
.pdf-card .note{ font-size: 11.5px; color: var(--muted); margin-top: 12px; }
@media (max-width: 520px){
  .final-cta-news-card.pdf-card{ grid-template-columns: 1fr; }
  .pdf-card .pdf-card-cover{ flex-direction: row; align-items: center; justify-content: space-between; border-right: 0; border-bottom: 3px solid var(--gold, #C9A663); }
  .pdf-card .pcc-mark{ margin: 0; }
  .pdf-card .news-form .btn{ width: 100%; justify-content: center; }
}

/* ---------- 5·8 · ROUTES — tailor-made tile (photo bg, no glass) + editorial Why-Pirovac ---------- */
.route-tile.route-tile-tailor{
  position: relative; display: flex; min-height: 340px; overflow: hidden;
  color: #fff; border: 0;
}
.route-tile-tailor image-slot{ position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.route-tile-tailor::after{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(165deg, rgba(15,27,51,0.45) 0%, rgba(15,27,51,0.72) 55%, rgba(15,27,51,0.92) 100%);
}
.route-tile-tailor .tailor-inner{
  position: relative; z-index: 2; margin-top: auto;
  padding: 28px 26px 26px; display: flex; flex-direction: column; gap: 10px;
}
.route-tile-tailor .tailor-kicker{
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold, #C9A663);
}
.route-tile-tailor h4{ font-family: var(--display); font-size: 26px; font-weight: 700; color: #fff; letter-spacing: -0.01em; margin: 0; }
.route-tile-tailor p{ font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.82); margin: 0; }
.route-tile-tailor .tailor-cta{
  display: inline-flex; align-items: center; gap: 9px; margin-top: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: #fff;
}
.route-tile-tailor .tailor-cta svg{ transition: transform .25s ease; }
.route-tile-tailor:hover .tailor-cta svg{ transform: translateX(4px); }
.route-tile-tailor:hover{ transform: translateY(-4px); box-shadow: 0 28px 56px -24px rgba(15,27,51,0.5); }

.why-pirovac-section .pirovac-feature{
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 76px); align-items: center;
}
.pirovac-feature .pirovac-photo{
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  background: var(--navy); box-shadow: 0 30px 70px -34px rgba(15,27,51,0.45);
}
.pirovac-feature .pirovac-photo image-slot{ position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.pirovac-feature .pirovac-pin{
  position: absolute; left: 20px; top: 20px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy); border-radius: var(--radius-pill);
  padding: 9px 16px 9px 12px; font-family: var(--display); font-weight: 700; font-size: 14px;
  box-shadow: 0 10px 28px -10px rgba(15,27,51,0.4);
}
.pirovac-feature .pirovac-pin svg{ width: 18px; height: 18px; color: var(--gold, #C9A663); }
.pirovac-feature .pirovac-text .lead{ font-size: 17px; line-height: 1.6; color: var(--ink); max-width: 50ch; margin: 16px 0 8px; }
.pirovac-feature .pirovac-reasons{ display: flex; flex-direction: column; margin-top: 14px; }
.pirovac-feature .pr{
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  padding: 22px 0; border-top: 1px solid var(--line-strong);
}
.pirovac-feature .pr:first-child{ border-top: 0; padding-top: 4px; }
.pirovac-feature .pr .ic{ color: var(--navy); }
.pirovac-feature .pr .ic svg{ width: 40px; height: 40px; stroke-width: 1.4; }
.pirovac-feature .pr strong{ display: block; font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 5px; letter-spacing: -0.01em; }
.pirovac-feature .pr p{ font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
@media (max-width: 860px){
  .why-pirovac-section .pirovac-feature{ grid-template-columns: 1fr; gap: 32px; }
  .pirovac-feature .pirovac-photo{ aspect-ratio: 16/10; }
}

/* ---------- 5·9 · ROUTE PAGES — visual 'other routes' + summary polish ---------- */
.route-other-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.route-other-grid a{
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line, #EFE9DC); border-radius: 16px;
  padding: 14px 18px 14px 14px; color: var(--ink); text-decoration: none;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.route-other-grid a:hover{ transform: translateY(-3px); box-shadow: 0 22px 44px -26px rgba(15,27,51,0.32); border-color: rgba(37,61,111,0.2); }
.route-other-grid .ro-thumb{ width: 88px; height: 66px; flex: 0 0 auto; border-radius: 11px; background-size: cover; background-position: center; }
.route-other-grid .ro-text{ display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.route-other-grid .ro-text strong{ font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.route-other-grid .ro-text span{ font-size: 13px; color: var(--muted); }
.route-other-grid .ro-arrow{ margin-left: auto; color: var(--navy); flex: 0 0 auto; transition: transform .25s ease; }
.route-other-grid a:hover .ro-arrow{ transform: translateX(4px); }
@media (max-width: 720px){ .route-other-grid{ grid-template-columns: 1fr; } }

/* route summary 'seven stops, no rush' — cleaner, more designed */
.route-map-block{ align-items: stretch !important; }
.route-map-block .map{ box-shadow: inset 0 0 0 1px rgba(15,27,51,0.05); }
.route-map-block .summary h3{ margin: 8px 0 14px; }
.route-summary-list li{
  padding: 13px 0; border-top: 1px solid var(--line, #EFE9DC); align-items: center !important;
}
.route-summary-list li:first-child{ border-top: 0; }
.route-summary-list li svg{
  width: 34px !important; height: 34px !important; padding: 7px; box-sizing: border-box;
  border-radius: 10px; background: var(--cream, #F6F1E6); color: var(--navy) !important; margin-top: 0 !important;
}

/* ---------- 5·10 · SERVICES — normal-size photos, borderless bigger icons ---------- */
.svc-feature .sf-visual .sf-photo{ aspect-ratio: 4/3 !important; }
.svc-feature .sf-visual .sf-badge{ bottom: 20px; }
/* list icons: drop the boxed border, enlarge */
.sf-list .sf-item .ic{
  background: transparent !important; border: 0 !important;
  width: auto !important; height: auto !important; border-radius: 0 !important;
  color: var(--navy);
}
.sf-list .sf-item .ic svg{ width: 42px !important; height: 42px !important; stroke-width: 1.4; }
.sf-list .sf-item:hover .ic{ background: transparent !important; color: var(--navy-soft); }
/* closing trust strip icons: naked + bigger */
.svc-trust .tr .ic{
  background: transparent !important; border: 0 !important;
  width: auto !important; height: auto !important; border-radius: 0 !important;
  color: var(--navy);
}
.svc-trust .tr .ic svg{ width: 44px !important; height: 44px !important; stroke-width: 1.4; }

/* ---------- 5·11 · CONTACT — redesigned right-hand aside ---------- */
.form-aside-v2{ gap: 16px; }
.form-aside-v2 .aside-card{ background: #fff; border: 1px solid var(--line-strong); border-radius: 18px; padding: 24px; }
.form-aside-v2 .aside-card h4{
  font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 14px;
}
.form-aside-v2 .reply-list{ display: flex; flex-direction: column; gap: 0; }
.form-aside-v2 .reply-list li{
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  padding: 11px 0; border-top: 1px solid var(--line);
}
.form-aside-v2 .reply-list li:first-child{ border-top: 0; }
.form-aside-v2 .reply-list .rl-ic{ width: 40px; height: 40px; flex: 0 0 auto; border-radius: 11px; display: grid; place-items: center; background: var(--cream); color: var(--navy); }
.form-aside-v2 .reply-list .rl-ic.wa{ background: #1FAA5F; color: #fff; }
.form-aside-v2 .reply-list .rl-ic svg{ width: 20px; height: 20px; }
.form-aside-v2 .reply-list .rl-label strong{ display: block; font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--navy); }
.form-aside-v2 .reply-list .rl-label span{ font-size: 12px; color: var(--muted); }
.form-aside-v2 .reply-list .rl-time{ font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--navy); background: var(--cream); padding: 6px 13px; border-radius: var(--radius-pill); white-space: nowrap; }
.form-aside-v2 .send-list{ display: flex; flex-direction: column; gap: 13px; }
.form-aside-v2 .send-list li{ display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-size: 14.5px; color: var(--ink); line-height: 1.45; }
.form-aside-v2 .send-list .sl-ic{ width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%; background: rgba(44,122,99,0.12); color: #2C7A63; display: grid; place-items: center; margin-top: 1px; }
.form-aside-v2 .send-list .sl-ic svg{ width: 15px; height: 15px; }
.form-aside-v2 .hurry-card{ background: linear-gradient(160deg, #1A2C54 0%, #0F1B33 100%) !important; border: 0 !important; }
.form-aside-v2 .hurry-card .hurry-ic{ width: 48px; height: 48px; border-radius: 12px; background: var(--gold, #C9A663); color: var(--navy-deep); display: grid; place-items: center; margin-bottom: 14px; }
.form-aside-v2 .hurry-card .hurry-ic svg{ width: 26px; height: 26px; }
.form-aside-v2 .hurry-card h4{ color: #fff !important; }
.form-aside-v2 .hurry-card p{ color: rgba(255,255,255,0.82) !important; font-size: 14.5px; line-height: 1.55; }
.form-aside-v2 .hurry-card .btn-primary{ background: #1FAA5F; width: 100%; justify-content: center; }
.form-aside-v2 .hurry-card .btn-primary:hover{ background: #1b9152; }

/* ---------- 5·12 · YACHT — combined extras, naked icons, skipper, 'see in person' ---------- */
/* combined extras panel (transit-log included + optional equipment & services) */
#extrasSec .extras-grid{ display: block !important; }
.extras-included{
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(160deg, #1A2C54 0%, #0F1B33 100%);
  color: #fff; border-radius: 16px; padding: 24px 28px; margin-bottom: 18px;
}
.extras-included .ei-ic{ flex: 0 0 auto; color: var(--gold, #C9A663); }
.extras-included .ei-ic svg{ width: 42px; height: 42px; }
.extras-included strong{ display: block; font-family: var(--display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: -0.01em; }
.extras-included p{ font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.82); margin: 0; }
.extras-optional{ background: #fff; border: 1px solid var(--line, #EFE9DC); border-radius: 16px; padding: 26px 28px; }
.extras-optional .eo-h{ font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--navy); margin: 0 0 16px; letter-spacing: -0.01em; }
.extras-optional .eo-h-2{ margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line, #EFE9DC); }
.extras-optional .extra-cards{ grid-template-columns: repeat(2, 1fr); }
/* bigger, background-free extra icons */
.extra-card .ec-ic{ background: transparent !important; border: 0 !important; width: auto !important; height: auto !important; border-radius: 0 !important; }
.extra-card .ec-ic svg{ width: 34px !important; height: 34px !important; }
@media (max-width: 680px){ .extras-optional .extra-cards{ grid-template-columns: 1fr; } }

/* skipper — blended section with icon */
.skipper-card.skipper-card-v2{
  grid-template-columns: auto 1fr auto; align-items: center; gap: 26px;
  background: var(--cream, #F6F1E6); border: 1px solid var(--line-strong);
}
.skipper-card-v2 .sk-ic{ width: 64px; height: 64px; flex: 0 0 auto; border-radius: 16px; display: grid; place-items: center; background: var(--navy); color: var(--gold, #C9A663); }
.skipper-card-v2 .sk-ic svg{ width: 34px; height: 34px; }
.skipper-card-v2 .sk-kicker{ font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-soft); display: block; margin-bottom: 6px; }
.skipper-card-v2 h3{ margin: 0 0 8px; }
@media (max-width: 680px){ .skipper-card.skipper-card-v2{ grid-template-columns: 1fr; align-items: flex-start; gap: 16px; } }

/* see-in-person — photo-backed invitation, blended above 'other yachts' */
.see-in-person .sip-card{
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: 24px; padding: clamp(36px, 4.5vw, 60px); color: #fff;
}
.see-in-person .sip-kicker{ font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold, #C9A663); display: block; margin-bottom: 14px; }
.see-in-person .sip-card h3{ font-family: var(--display); font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.02; margin: 0 0 14px; }
.see-in-person .sip-em{ font-style: italic; font-weight: 500; color: rgba(255,255,255,0.66); }
.see-in-person .sip-card p{ font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 48ch; margin: 0 0 26px; }
.see-in-person .sip-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   ROUND 6 — client pass #2: real hero photos, heading fit,
   corner-wedge fix, mobile edges
   ============================================================ */

/* ---------- 6·1 · INTERIOR PAGE HEROES — show the photo (extras.css hid it) ---------- */
.page-hero::before{ display: none !important; }            /* kill the solid navy gradient overlay-frame */
.page-hero > .page-hero-bg{
  display: block !important;
  position: absolute !important;
  inset: 0 var(--gutter, 32px) !important;
  height: auto !important;
  border-radius: 0 0 36px 36px !important;
  overflow: hidden;
  background-color: var(--navy-deep);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transform: none !important;            /* static cover — no parallax gap */
  z-index: 0 !important;
}
.page-hero > .page-hero-bg::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,27,51,0.62) 0%, rgba(15,27,51,0.30) 38%, rgba(15,27,51,0.34) 60%, rgba(15,27,51,0.74) 100%);
}
.page-hero > .page-hero-bg::after{ opacity: 0.25; }
@media (max-width: 900px){
  .page-hero > .page-hero-bg{ inset: 0 !important; border-radius: 0 0 22px 22px !important; }
}

/* ---------- 6·2 · HEADINGS — let them fill the column, fewest lines ---------- */
.section-head{ }
.section-head .left{ max-width: none !important; }
.section-head .left h2{ max-width: 26ch !important; text-wrap: balance; }
.section-head .right{ max-width: 64ch !important; }
.section-head-left .lhs h2,
.section-head-left .lhs{ max-width: none !important; }
.section-head-left .lhs h2{ max-width: 30ch; text-wrap: balance; }
/* hero headlines: balance instead of a hard ch cap so they don't ladder */
.page-hero-content h1{ max-width: 20ch !important; text-wrap: balance; }
.why-home .section-head .left h2,
.section-cream .section-head .left h2{ max-width: 28ch !important; }

/* ---------- 6·3 · ROUNDED PANELS + navy gap fill (no white wedges, no footer glitch) ---------- */
/* Keep the rounded section panels. The page sits on the warm cream neutral so
   each rounded corner shows a soft, proper cream fill (never white, never blue),
   and the navy footer's rounded top reads clearly against the cream. */
html, body{ background: var(--paper) !important; }
.section:not(.cta-photo):not(.svc-simpler){ background: var(--paper); }   /* base white; colour variants override below */
.section-cream{ background: var(--cream) !important; }
.section-cream-2{ background: var(--cream-2) !important; }
.section-navy{ background: var(--navy-deep) !important; }
.section-cream, .section-cream-2, .section-navy, .booking-plan, .reviews-redesign{
  border-radius: clamp(26px, 3vw, 44px) !important;
  overflow: hidden;
}
.booking-plan{ background: var(--paper) !important; }
.reviews-redesign{ background: var(--navy-deep) !important; }
/* footer — visible rounded top against the cream page (no cream-band glitch) */
.site-foot.kek-foot-v2::after{ display: none !important; }
.site-foot.kek-foot-v2{
  border-top-left-radius: clamp(26px, 3vw, 44px) !important;
  border-top-right-radius: clamp(26px, 3vw, 44px) !important;
  overflow: hidden;
}

/* ---------- 6·4 · MOBILE — stretch content closer to the screen edges ---------- */
@media (max-width: 680px){
  :root{ --gutter: 14px; }
  .section{ padding: 56px 0; }
  /* tighten oversized inner paddings so cards use the width */
  .contact-feature-left, .contact-feature-form,
  .form-side, .aside-card,
  .extras-optional, .extras-included{ padding-left: 18px !important; padding-right: 18px !important; }
  .yacht-card .body, .offer .body, .route-tile .body, .post .body{ padding-left: 18px; padding-right: 18px; }
  .why-pirovac-v2 .wp, .svc-trust{ padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 460px){
  :root{ --gutter: 10px; }
}

/* ---------- 6·5 · SERVICES programs — proper 2-col explainer sections ---------- */
.svc-program .svc-prog{
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center;
}
.svc-program.reverse .svc-prog-media{ order: 2; }
.svc-prog-media{
  position: relative; aspect-ratio: 4/3; border-radius: 24px; overflow: hidden;
  background: var(--navy); box-shadow: 0 30px 70px -34px rgba(15,27,51,0.4);
}
.svc-prog-media image-slot{ position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.svc-prog-media .spm-cap{
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  background: rgba(255,255,255,0.95); color: var(--navy);
  font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px -10px rgba(15,27,51,0.4);
}
.svc-prog-body .kicker{ display: inline-flex; margin-bottom: 14px; }
.svc-prog-body h2{ margin: 0 0 16px; max-width: 18ch; }
.svc-prog-body .lead{ font-size: 17px; line-height: 1.6; color: var(--ink); margin: 0 0 24px; max-width: 52ch; }
.svc-prog-body .sf-list{ margin: 0 0 24px; }
@media (max-width: 880px){
  .svc-program .svc-prog{ grid-template-columns: 1fr; gap: 28px; }
  .svc-program.reverse .svc-prog-media{ order: 0; }
  .svc-prog-media{ aspect-ratio: 16/10; }
}

/* ---------- 6·6 · HOME contact channels — naked icons, WhatsApp green ---------- */
.contact-feature-left .big-channel .ic{
  background: transparent !important; border: 0 !important;
  width: auto !important; height: auto !important; border-radius: 0 !important;
}
.contact-feature-left .big-channel .ic svg{ width: 34px !important; height: 34px !important; color: #fff; }
.contact-feature-left .big-channel:nth-child(1) .ic svg{ color: #25D366; }   /* WhatsApp green */
.contact-feature-left .big-channel:nth-child(3) .ic svg{ color: var(--gold, #C9A663); }
.contact-feature-left .big-channel:hover .ic svg{ transform: scale(1.06); transition: transform .2s ease; }

/* ---------- 6·7 · CONTACT 'five steps' — no numbers, naked icons ---------- */
.steps-journey .sj .sj-n{ display: none !important; }
.steps-journey .sj .sj-dot{
  background: transparent !important; border: 0 !important; box-shadow: none !important;
  width: auto !important; height: auto !important; color: var(--navy) !important;
}
.steps-journey .sj .sj-dot svg{ width: 54px !important; height: 54px !important; stroke-width: 1.3; }
.steps-journey .sj:hover .sj-dot{ background: transparent !important; color: var(--navy-soft) !important; transform: translateY(-3px); }
.steps-journey::before{ top: 28px !important; }

/* ---------- 6·8 · HOME 'What guests say' — photo background ---------- */
.section-navy.reviews-redesign{
  position: relative; isolation: isolate; background: var(--navy-deep);
}
.section-navy.reviews-redesign::before{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(160deg, rgba(15,27,51,0.92) 0%, rgba(15,27,51,0.82) 55%, rgba(26,44,84,0.9) 100%), url('assets/lifestyle/anchorage-two-yachts.jpg');
  background-size: cover; background-position: center;
}

/* ---------- 6·9 · ROUTE pages — nicer 'pick a different week' cards (image-top) ---------- */
.route-other-grid{ grid-template-columns: repeat(3, 1fr); }
.route-other-grid a{
  flex-direction: column; align-items: stretch; gap: 0; padding: 0; overflow: hidden;
}
.route-other-grid .ro-thumb{
  width: 100%; height: auto; aspect-ratio: 16/10; border-radius: 0;
}
.route-other-grid .ro-text{ padding: 18px 18px 16px; gap: 4px; }
.route-other-grid .ro-text strong{ font-size: 19px; }
.route-other-grid .ro-arrow{
  position: absolute; top: 14px; right: 14px; margin: 0;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: grid; place-items: center; box-shadow: 0 6px 16px -6px rgba(15,27,51,0.4);
}
.route-other-grid a{ position: relative; }
@media (max-width: 920px){ .route-other-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .route-other-grid{ grid-template-columns: 1fr; } }

/* ---------- 6·10 · HOME 'before you set sail' — separate it from the cream blog ---------- */
.booking-plan{ background: var(--paper) !important; padding: clamp(64px, 8vw, 104px) 0 !important; border-top: 0 !important; }
.booking-plan .bp-panel{ box-shadow: 0 30px 70px -40px rgba(15,27,51,0.28); }

/* ---------- 6·11 · HOME final-CTA — guide card without a form, clear PDF icon ---------- */
.final-cta-news-card.pdf-card-v2{
  display: flex; gap: 22px; align-items: center;
  background: var(--cream, #F6F1E6) !important; border: 0 !important; backdrop-filter: none !important;
  border-radius: 20px !important; padding: 26px 28px !important;
  box-shadow: 0 34px 80px -34px rgba(0,0,0,0.6);
}
.pdf-card-v2 .pdf-icon{
  position: relative; flex: 0 0 auto; width: 76px; height: 92px; border-radius: 10px;
  background: linear-gradient(160deg, #1A2C54, #0F1B33); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -14px rgba(15,27,51,0.6);
}
.pdf-card-v2 .pdf-icon svg{ width: 34px; height: 34px; }
.pdf-card-v2 .pdf-icon::after{
  content: "PDF"; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gold, #C9A663);
}
.pdf-card-v2 .pdf-card-info{ min-width: 0; }
.pdf-card-v2 .fcn-tag{ font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 6px; }
.pdf-card-v2 .pdf-card-info strong{ display: block; font-family: var(--display); font-size: 21px; font-weight: 700; color: var(--navy); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 8px; }
.pdf-card-v2 .pdf-card-info p{ font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0 0 16px; }
.pdf-card-v2 .pdf-card-info .btn{ height: 50px; }
@media (max-width: 520px){ .final-cta-news-card.pdf-card-v2{ flex-direction: column; align-items: flex-start; } .pdf-card-v2 .pdf-card-info .btn{ width: 100%; justify-content: center; } }

/* ---------- 6·12 · ROUTES intro — clean, structured ---------- */
.routes-intro .ri-inner{ display: block; }
.routes-intro .ri-lead{ max-width: 30ch; margin: 0 0 28px; }
.routes-intro .ri-facts{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); border-radius: 16px; overflow: hidden; }
.routes-intro .ri-facts > div{ background: var(--paper); padding: 22px 24px; }
.routes-intro .ri-facts strong{ display: block; font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; letter-spacing: -0.01em; }
.routes-intro .ri-facts span{ font-size: 13px; color: var(--muted); }
@media (max-width: 640px){ .routes-intro .ri-facts{ grid-template-columns: 1fr; } }

/* ============================================================
   ROUND 7 — spacing tightened, responsive scale, small redesigns
   ============================================================ */

/* ---------- 7·1 · DESKTOP — tighter vertical rhythm ---------- */
@media (min-width: 1025px){
  .section{ padding: clamp(56px, 6vw, 92px) 0; }
  .section-head{ margin-bottom: clamp(28px, 3vw, 44px); }
  .booking-plan{ padding: clamp(60px, 6vw, 88px) 0 !important; }
}

/* ---------- 7·2 · TABLET (type now scales fluidly via base clamps — only spacing here) ---------- */
@media (max-width: 1024px){
  .section{ padding: clamp(48px, 6vw, 72px) 0; }
  .section-head{ margin-bottom: 36px; }
}

/* ---------- 7·3 · MOBILE — spacing + component sizes (global type handled by base clamps) ---------- */
@media (max-width: 680px){
  .section{ padding: clamp(40px, 9vw, 56px) 0; }
  .section-head{ margin-bottom: 24px; }
  /* big number/display blocks shouldn't dominate small screens */
  .trust-ribbon-visual .ic svg{ width: 40px !important; height: 40px !important; }
  .step .num{ font-size: clamp(48px, 14vw, 64px) !important; }
  .reviews-redesign .big-quote{ font-size: clamp(20px, 5vw, 24px) !important; }
}

/* ---------- 7·4 · ROUTES facts — editorial row, not a pill/box ---------- */
.routes-intro .ri-facts{
  display: flex !important; flex-wrap: wrap; gap: 0 !important;
  background: none !important; border: 0 !important;
  border-top: 1px solid var(--line-strong) !important;
  border-bottom: 1px solid var(--line-strong) !important;
  border-radius: 0 !important; overflow: visible !important;
}
.routes-intro .ri-facts > div{
  background: none !important; padding: 20px 36px 20px 0 !important;
  margin-right: 36px; border-right: 1px solid var(--line);
}
.routes-intro .ri-facts > div:last-child{ border-right: 0; margin-right: 0; padding-right: 0 !important; }
@media (max-width: 640px){
  .routes-intro .ri-facts{ flex-direction: column; }
  .routes-intro .ri-facts > div{ border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0 !important; margin: 0; }
  .routes-intro .ri-facts > div:last-child{ border-bottom: 0; }
}

/* ---------- 7·5 · CONTACT aside reply icons — no background ---------- */
.form-aside-v2 .reply-list .rl-ic{
  background: transparent !important; width: auto !important; height: auto !important; border-radius: 0 !important;
}
.form-aside-v2 .reply-list .rl-ic svg{ width: 26px !important; height: 26px !important; }
.form-aside-v2 .reply-list .rl-ic.wa{ color: #25D366 !important; }

/* ---------- 7·6 · ROUTES 'Why start from Pirovac' — redesigned (header + naked row + banner) ---------- */
.why-pirovac-section .wp-head{ max-width: 60ch; margin: 0 0 clamp(32px,4vw,52px); }
.why-pirovac-section .wp-head .kicker{ display: inline-flex; margin-bottom: 14px; }
.why-pirovac-section .wp-head h2{ margin: 0 0 14px; }
.why-pirovac-section .wp-lead{ font-size: 18px; line-height: 1.6; color: var(--ink); max-width: 52ch; margin: 0; }
.why-pirovac-section .wp-row{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); margin-bottom: clamp(36px, 4vw, 56px); }
.why-pirovac-section .wp-item{ display: flex; flex-direction: column; align-items: flex-start; }
.why-pirovac-section .wp-ic{ color: var(--navy); margin-bottom: 16px; }
.why-pirovac-section .wp-ic svg{ width: 48px; height: 48px; stroke-width: 1.4; }
.why-pirovac-section .wp-item strong{ font-family: var(--display); font-size: 21px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 8px; }
.why-pirovac-section .wp-item p{ font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; }
.why-pirovac-section .wp-stat{
  margin-top: auto; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--navy); background: rgba(37,61,111,0.07); padding: 8px 14px; border-radius: var(--radius-pill);
}
.why-pirovac-section .wp-banner{
  position: relative; height: clamp(240px, 34vw, 400px); border-radius: 22px; overflow: hidden; background: var(--navy);
}
.why-pirovac-section .wp-banner image-slot{ position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.why-pirovac-section .wp-banner .wp-cap{
  position: absolute; left: 20px; bottom: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95); color: var(--navy); border-radius: var(--radius-pill);
  padding: 9px 16px 9px 12px; font-family: var(--display); font-weight: 700; font-size: 14px;
  box-shadow: 0 10px 28px -10px rgba(15,27,51,0.4);
}
.why-pirovac-section .wp-banner .wp-cap svg{ width: 18px; height: 18px; color: var(--gold, #C9A663); }
@media (max-width: 820px){ .why-pirovac-section .wp-row{ grid-template-columns: 1fr; gap: 28px; } }

/* ---------- 7·7 · CONTACT 'Drop into the office' — real map embed ---------- */
.visit-map{ position: relative; overflow: hidden; }
.visit-map iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.03); }
.visit-map .map-tag{
  position: absolute; left: 18px; top: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border-radius: var(--radius-pill); padding: 9px 16px 9px 12px;
  box-shadow: 0 6px 20px -8px rgba(14,42,59,0.4);
  font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--navy);
}
.visit-map .map-tag svg{ width: 18px; height: 18px; color: var(--gold, #C9A663); }

/* ============================================================
   ROUND 8 — client pass #4: unified heroes, seamless gaps,
   pdf icon, dashed line, breathing room
   ============================================================ */

/* ---------- 8·1 · ALL PAGE HEROES = homepage hero size/scale/height ---------- */
.page-hero{ min-height: clamp(620px, 85vh, 880px) !important; }
.page-hero.is-compact{ min-height: clamp(520px, 64vh, 680px) !important; }
.page-hero > .page-hero-bg{ border-radius: 0 0 36px 36px !important; }
.page-hero-content{ justify-content: center !important; padding-top: clamp(120px, 16vh, 180px) !important; padding-bottom: clamp(80px, 10vh, 120px) !important; }
@media (max-width: 900px){ .page-hero{ min-height: clamp(520px, 72vh, 680px) !important; } }

/* ---------- 8·2 · remove the dashed connector on 'brief to boat' ---------- */
.steps-journey::before{ display: none !important; }

/* ---------- 8·3 · PDF icon — clean, no background box ---------- */
.pdf-card-v2 .pdf-icon{
  background: none !important; box-shadow: none !important;
  width: auto !important; height: auto !important; color: var(--navy);
}
.pdf-card-v2 .pdf-icon svg{ width: 52px; height: 64px; }
.pdf-card-v2 .pdf-icon::after{ display: none !important; }

/* ---------- 8·4 · LESS CROWDED — a touch more breathing room in dense areas ---------- */
.section-head .left h2{ line-height: 1.0; }
.fleet-grid, .offers-grid, .routes-grid{ gap: clamp(26px, 2.6vw, 38px); }
.yacht-card .body, .offer .body, .route-tile .body{ padding-top: 26px; padding-bottom: 28px; }
.why-home-v2 .whv-reasons{ gap: clamp(30px, 3.4vw, 52px); }
.container{ }

/* ---------- 8·5 · NESTED RADIUS — inner = outer − gap (visual harmony) ---------- */
/* panels that sit inside a rounded section get a correspondingly smaller radius */
.bp-panel{ border-radius: 22px; }
.search-card.fd-card{ border-radius: 22px; }
.contact-feature{ border-radius: 22px; }

/* ---------- 8·6 · HOME trust band (heading + 5 icon features) ---------- */
.trust-band{ text-align: center; }
.trust-band-head{ max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); }
.trust-band-head .kicker{ display: inline-flex; margin-bottom: 16px; }
.trust-band-head .kicker::before{ display: none; }
.trust-band-head h2{ margin: 0 auto 16px; max-width: 20ch; }
.trust-band-head p{ font-size: clamp(16px, 1.4vw, 18px); color: var(--muted); margin: 0 auto; max-width: 62ch; line-height: 1.6; }
.trust-feats{ display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(22px, 2.6vw, 40px); }
.trust-feats .tf{ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.trust-feats .tf-ic{ color: var(--navy); }
.trust-feats .tf-ic svg{ width: 46px; height: 46px; stroke-width: 1.5; }
.trust-feats .tf strong{ font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.trust-feats .tf span{ font-size: 13.5px; color: var(--muted); line-height: 1.5; max-width: 22ch; }
@media (max-width: 900px){ .trust-feats{ grid-template-columns: repeat(2, 1fr); gap: 34px 20px; } }

/* trust-band partner logos (black logos on white) */
.trust-partners{ display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 60px); padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--line); }
.trust-partners .tp-lbl{ font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.trust-partners img{ height: 24px; width: auto; opacity: 0.62; }
/* footer partner logos (navy bg) */
.partner-logos{ display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.partner-logos img{ height: 24px; width: auto; }
.partner-logos .pl-invert{ filter: brightness(0) invert(1); opacity: 0.72; }
.partner-logos .pl-google{ height: 26px; opacity: 0.95; }
.partner-logos .pl-uniqa{ height: 34px; width: auto; border-radius: 8px; box-shadow: 0 4px 16px -8px rgba(0,0,0,0.5); }
.foot-mini-trust .trust-uniqa .uniqa-word{ font-weight: 800; letter-spacing: 0.06em; }
.uniqa-word{ color: #0046AA; font-weight: 800; letter-spacing: 0.04em; }
.section-navy .uniqa-word, .reviews-redesign .uniqa-word{ color: #6AA0FF; }

/* ---- Trust band v2 — asymmetric head + bold navy rail ---- */
.trust-band .tb-head{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:clamp(28px,5vw,72px); align-items:end; margin-bottom:clamp(32px,4vw,52px); text-align:left; }
.trust-band .tb-head-l{ text-align:left; }
.trust-band .tb-head-l h2{ margin:14px 0 0; max-width:16ch; }
.trust-band .tb-head-r{ padding-bottom:6px; text-align:left; }
.trust-band .tb-head-r p{ margin:0; font-size:clamp(16px,1.2vw,18px); line-height:1.62; color:var(--muted); max-width:48ch; }

.trust-rail{ display:grid; grid-template-columns:repeat(5,1fr); gap:1px; background:rgba(255,255,255,0.10); border-radius:24px; overflow:hidden; box-shadow:0 36px 70px -40px rgba(15,27,51,0.55); }
.trust-rail .tr{ position:relative; background:var(--navy-darker); padding:clamp(28px,2.2vw,40px) clamp(22px,1.8vw,30px) clamp(26px,2.2vw,34px); display:flex; flex-direction:column; gap:18px; transition:background .25s ease; text-align:left; align-items:flex-start; }
.trust-rail .tr:hover{ background:#16274c; }
.trust-rail .tr-ic{ color:var(--gold); display:flex; align-items:center; justify-content:flex-start; flex:0 0 auto; }
.trust-rail .tr-ic svg{ width:44px; height:44px; }
.trust-rail .tr-txt{ width:100%; }
.trust-rail .tr-txt strong{ display:block; color:#fff; font-size:18px; letter-spacing:-.01em; margin-bottom:7px; font-family:var(--display); font-weight:700; }
.trust-rail .tr-txt .sub{ color:rgba(255,255,255,.6); font-size:13.5px; line-height:1.5; }
.trust-rail .uniqa-word{ color:#7FB0FF; }

@media (max-width:1080px){ .trust-rail{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:760px){ .trust-band .tb-head{ grid-template-columns:1fr; gap:16px; align-items:start; } }
@media (max-width:620px){ .trust-rail{ grid-template-columns:1fr 1fr; } }
@media (max-width:400px){ .trust-rail{ grid-template-columns:1fr; } }

/* ---------- 8·7 · HOME blog cards — bold date + calendar icon, prominent pills ---------- */
.post .meta .m-date, .blog-featured .read-time .m-date{ display: inline-flex; align-items: center; gap: 6px; }
.post .meta .m-date svg, .blog-featured .read-time .m-date svg{ color: var(--navy); flex: 0 0 auto; }
.post .meta .m-date strong, .blog-featured .read-time .m-date strong{ font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 13.5px; }
.post .cat, .blog-featured .meta-top .cat{ font-weight: 700; padding: 7px 14px; }

/* ---------- 8·8 · COMPANY DETAILS + SOCIAL (contact & about) ---------- */
.company-info .ci-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.company-info .ci-block .kicker{ display: inline-flex; margin-bottom: 14px; }
.company-info .ci-block h3{ font-family: var(--display); font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin: 0 0 10px; }
.company-info .ci-addr{ color: var(--muted); margin: 0 0 20px; font-size: 15px; }
.company-info .ci-legal{ margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.company-info .ci-legal > div{ display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.company-info .ci-legal dt{ font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.company-info .ci-legal dd{ margin: 0; font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 15px; text-align: right; }
.company-info .ci-social-block p{ font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0 0 20px; max-width: 42ch; }
.company-info .ci-social{ display: flex; gap: 12px; margin-bottom: 22px; }
.company-info .ci-social a{ width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--cream); color: var(--navy); transition: background .2s ease, color .2s ease, transform .2s ease; }
.company-info .ci-social a:hover{ background: var(--navy); color: #fff; transform: translateY(-2px); }
@media (max-width: 760px){ .company-info .ci-grid{ grid-template-columns: 1fr; gap: 36px; } }

/* ---------- 8·9 · CONTACT 'Drop in' — bold navy split with map ---------- */
.visit-bold{
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 0;
  border-radius: clamp(22px, 2.6vw, 32px); overflow: hidden;
  background: var(--navy-deep); color: #fff;
  box-shadow: 0 40px 90px -50px rgba(15,27,51,0.6);
}
.visit-bold .vb-map{ position: relative; min-height: clamp(360px, 46vw, 560px); }
.visit-bold .vb-map iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.1) contrast(1.03); }
.visit-bold .vb-map .map-tag{
  position: absolute; left: 18px; top: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy); border-radius: var(--radius-pill); padding: 9px 16px 9px 12px;
  font-family: var(--display); font-weight: 700; font-size: 14px; box-shadow: 0 8px 22px -8px rgba(0,0,0,0.5);
}
.visit-bold .vb-map .map-tag svg{ width: 18px; height: 18px; color: var(--gold, #C9A663); }
.visit-bold .vb-panel{ padding: clamp(32px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.visit-bold .vb-panel .kicker{ color: var(--gold, #C9A663); }
.visit-bold .vb-panel .kicker::before{ background: var(--gold, #C9A663); }
.visit-bold .vb-panel h2{ color: #fff; margin: 14px 0; font-size: clamp(30px, 3.2vw, 46px); }
.visit-bold .vb-panel .italic-accent{ color: rgba(255,255,255,0.62); }
.visit-bold .vb-panel > p{ color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.6; margin: 0 0 24px; max-width: 44ch; }
.visit-bold .vb-rows{ display: grid; gap: 0; margin-bottom: 28px; }
.visit-bold .vb-row{ display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: flex-start; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.visit-bold .vb-row:first-child{ border-top: 0; padding-top: 0; }
.visit-bold .vb-ic{ color: var(--gold, #C9A663); }
.visit-bold .vb-ic svg{ width: 26px; height: 26px; }
.visit-bold .vb-row strong{ display: block; color: #fff; font-family: var(--display); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.visit-bold .vb-row span{ font-size: 13.5px; color: rgba(255,255,255,0.68); line-height: 1.5; }
.visit-bold .vb-panel .btn-cream{ align-self: flex-start; }
@media (max-width: 880px){ .visit-bold{ grid-template-columns: 1fr; } .visit-bold .vb-map{ min-height: 300px; } }

/* ---------- 8·10 · FAQ bolder + BOOKING page more readable ---------- */
.faq-item summary, .faq-list summary, .faq-list-grid summary{
  font-family: var(--display); font-weight: 700 !important; font-size: 18px !important; color: var(--navy) !important;
}
.faq-item .answer, .faq-list .answer{ font-size: 15.5px; line-height: 1.7; color: var(--ink); }
/* booking page: larger, higher-contrast long-form text */
.booking-section p, .booking-section li{ font-size: 16.5px !important; line-height: 1.75 !important; color: var(--ink) !important; }
.booking-section h2{ font-size: clamp(30px, 3.4vw, 44px); }
.booking-section h3{ font-size: 22px; color: var(--navy); }
.booking-section .checklist-card li, .booking-section .day-row p, .booking-section .callout p{ color: var(--ink) !important; }
.booking-section strong{ color: var(--navy); }

/* ---------- 8·11 · MOBILE — gallery, before-sail numbers, ready-to-sail edges ---------- */
@media (max-width: 680px){
  /* 'Life on the water' gallery — clean 2-up, taller, no awkward spans */
  .gallery-grid{ grid-template-columns: 1fr 1fr !important; grid-auto-rows: 150px !important; gap: 10px !important; }
  .gallery-grid .wide{ grid-column: span 2 !important; }
  .gallery-grid .tall{ grid-row: span 2 !important; }
  /* 'Before you set sail' — bigger step numbers */
  .bp-col .num{ font-size: 14px !important; font-weight: 800 !important; letter-spacing: 0.04em; color: var(--navy) !important; }
  .bp-col h3{ font-size: 22px !important; }
  /* 'Ready to set sail' final CTA — match other sections' edge spacing */
  .final-cta{ padding-left: 0 !important; padding-right: 0 !important; }
  .final-cta .final-cta-frame{ border-radius: 20px !important; margin: 0 var(--gutter); width: auto; }
  .final-cta-frame .final-cta-inner{ padding: 28px 22px !important; }
}

/* ---------- 8·12 · MOBILE DRAWER — language, currency, office hours ---------- */
.mobile-drawer-prefs{ display: flex; flex-direction: column; margin: 6px 0 2px; }
.mobile-drawer-prefs .mdp-row{ display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.mobile-drawer-prefs .mdp-lbl{ font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.mobile-drawer-prefs .mdp-lang, .mobile-drawer-prefs .mdp-cur{ display: flex; gap: 6px; }
.mobile-drawer-prefs .mdp-lang a, .mobile-drawer-prefs .mdp-cur a{ font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); padding: 5px 10px; border-radius: 8px; }
.mobile-drawer-prefs .mdp-lang a.active, .mobile-drawer-prefs .mdp-cur a.active{ color: #fff; background: rgba(255,255,255,0.16); }
.mobile-drawer-prefs .mdp-hours{ align-items: flex-start; }
.mobile-drawer-prefs .mdp-val{ font-size: 12.5px; color: rgba(255,255,255,0.7); text-align: right; line-height: 1.5; }

/* ---------- 8·13 · Google reviews badge + footer payments image ---------- */
.reviews-head .google-badge{ display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.google-badge .gb-logo{ height: 30px; width: auto; }
.google-badge .gb-text{ display: flex; flex-direction: column; gap: 3px; }
.google-badge .gb-stars{ color: var(--gold, #C9A663); font-size: 14px; letter-spacing: 2px; }
.google-badge .gb-meta{ font-size: 12.5px; color: rgba(255,255,255,0.72); }
.scorebar small .sb-google{ height: 15px; width: auto; display: inline-block; vertical-align: -2px; margin: 0 3px; }
.pay-icons .pay-img{ height: 26px; width: auto; display: block; max-width: 100%; }

/* ---------- 8·14 · NauSYS partner notes (fleet + yacht) ---------- */
.find-dates-band .nausys-powered{ display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.find-dates-band .nausys-powered span{ font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.find-dates-band .nausys-powered img{ height: 20px; width: auto; }
.nausys-verified{ display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.nausys-verified img{ height: 22px; width: auto; opacity: 0.8; }
.nausys-verified span{ font-size: 13px; color: var(--muted); }

/* ---------- 8·15 · HOME contact — reference-style (form left, navy help card right) ---------- */
.contact-feature.contact-feature-v2{
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 0;
  background: #fff; border: 1px solid var(--line-strong); border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(20,33,61,0.28); margin-bottom: clamp(60px, 8vw, 100px);
}
.cf-form-side{ padding: clamp(32px, 3.4vw, 52px); }
.cf-form-side .kicker{ display: inline-flex; margin-bottom: 14px; }
.cf-form-side h3{ font-family: var(--display); font-size: clamp(28px, 2.8vw, 40px); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin: 0 0 10px; }
.cf-intro{ color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 24px; max-width: 46ch; }
.cf-form{ display: flex; flex-direction: column; gap: 14px; }
.cf-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-form label{ display: flex; flex-direction: column; gap: 6px; }
.cf-form label > span{ font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.cf-form input, .cf-form select, .cf-form textarea{ width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 14.5px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink); }
.cf-form input:focus, .cf-form select:focus, .cf-form textarea:focus{ outline: none; border-color: var(--navy); }
.cf-form textarea{ min-height: 110px; resize: vertical; }
.cf-submit{ align-self: flex-start; margin-top: 6px; }
.cf-success{ font-size: 14px; color: #2C7A63; font-weight: 600; }
.cf-help{ background: linear-gradient(165deg, #1A2C54, #0F1B33); color: #fff; display: flex; flex-direction: column; }
.cf-help-pad{ padding: clamp(32px, 3.4vw, 48px); }
.cf-help h3{ font-family: var(--display); font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; color: #fff; margin: 0 0 10px; letter-spacing: -0.01em; }
.cf-help h3 span{ color: rgba(255,255,255,0.6); }
.cf-help-pad > p{ color: rgba(255,255,255,0.78); font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; max-width: 40ch; }
.cf-channels{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cf-ch{ display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; transition: background .2s ease, transform .2s ease; }
.cf-ch:hover{ background: rgba(255,255,255,0.12); transform: translateX(3px); }
.cf-ic{ width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; background: rgba(255,255,255,0.1); display: grid; place-items: center; color: #fff; }
.cf-ic svg{ width: 22px; height: 22px; }
.cf-ic.wa{ background: #25D366; color: #0F1B33; }
.cf-ch div span{ display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.cf-ch div strong{ display: block; font-family: var(--display); font-size: 17px; color: #fff; margin-top: 2px; }
.cf-founders{ display: flex; gap: 24px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14); margin-bottom: 18px; flex-wrap: wrap; }
.cf-founder{ display: flex; align-items: center; gap: 12px; }
.cf-av{ width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--navy); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 14px; flex: 0 0 auto; }
.cf-founder strong{ display: block; font-family: var(--display); color: #fff; font-size: 14px; }
.cf-founder span{ font-size: 12px; color: rgba(255,255,255,0.6); }
.cf-hours{ font-size: 13.5px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.cf-hours-lbl{ display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.cf-map{ position: relative; min-height: 210px; margin-top: auto; }
.cf-map iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.1) contrast(1.03); }
.cf-map .cf-map-tag{ position: absolute; left: 16px; top: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--navy); border-radius: var(--radius-pill); padding: 8px 14px 8px 10px; font-family: var(--display); font-weight: 700; font-size: 13px; box-shadow: 0 8px 20px -8px rgba(0,0,0,0.5); }
.cf-map .cf-map-tag svg{ width: 16px; height: 16px; color: var(--gold, #C9A663); }
.cf-connect{ padding: 18px clamp(32px, 3.4vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(255,255,255,0.12); }
.cf-connect-lbl{ font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.cf-social{ display: flex; gap: 10px; }
.cf-social a{ width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background .2s ease; }
.cf-social a:hover{ background: rgba(255,255,255,0.18); }
@media (max-width: 940px){ .contact-feature.contact-feature-v2{ grid-template-columns: 1fr; } }
@media (max-width: 560px){ .cf-row{ grid-template-columns: 1fr; } .cf-connect{ flex-direction: column; align-items: flex-start; } }

/* ============================================================
   ROUND 9 — client pass #6: contact cards layout, FAQ borders,
   colour Google logo, hero width parity
   ============================================================ */

/* ---------- 9·1 · CONTACT — info cards left, message form right ---------- */
.contact-feature.contact-cards{
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(20px, 2.4vw, 32px);
  background: transparent !important; border: 0 !important; box-shadow: none !important;
  border-radius: 0 !important; overflow: visible !important; margin-bottom: clamp(60px, 8vw, 100px);
}
.contact-cards .cc-left{ display: flex; flex-direction: column; gap: clamp(16px, 1.8vw, 22px); }
.contact-cards .cc-card{ display: flex; gap: 18px; background: #fff; border: 1px solid var(--line-strong); border-radius: 20px; padding: 26px 28px; box-shadow: 0 18px 50px -36px rgba(20,33,61,0.3); }
.contact-cards .cc-ic{ width: 52px; height: 52px; flex: 0 0 auto; border-radius: 14px; background: var(--cream); color: var(--navy); display: grid; place-items: center; }
.contact-cards .cc-ic svg{ width: 26px; height: 26px; }
.contact-cards .cc-ic.wa{ background: #25D366; color: #0F1B33; }
.contact-cards .cc-body h3{ font-family: var(--display); font-size: 21px; font-weight: 700; color: var(--navy); margin: 0 0 6px; letter-spacing: -0.01em; }
.contact-cards .cc-body p{ font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0 0 12px; }
.contact-cards .cc-link{ display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--navy); }
.contact-cards .cc-link + .cc-link{ margin-top: 4px; }
.contact-cards .cc-link svg{ transition: transform .2s ease; }
.contact-cards .cc-link:hover svg{ transform: translateX(3px); }
.contact-cards .cc-hours{ font-size: 13px; color: var(--ink); line-height: 1.6; margin-top: 4px; }
.contact-cards .cc-hours-lbl{ display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-cards .cc-social{ display: flex; gap: 10px; margin-top: 14px; }
.contact-cards .cc-social a{ width: 38px; height: 38px; border-radius: 10px; background: var(--cream); color: var(--navy); display: grid; place-items: center; transition: background .2s ease, color .2s ease; }
.contact-cards .cc-social a:hover{ background: var(--navy); color: #fff; }
.contact-cards .cc-form{ background: #fff; border: 1px solid var(--line-strong); border-radius: 24px; padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 14px; box-shadow: 0 24px 60px -40px rgba(20,33,61,0.3); }
.contact-cards .cc-form > h3{ font-family: var(--display); font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; color: var(--navy); margin: 0; letter-spacing: -0.02em; text-align: center; }
.contact-cards .cc-form-sub{ font-size: 14px; color: var(--muted); text-align: center; margin: 0 0 8px; line-height: 1.55; }
.contact-cards .cc-field{ display: flex; flex-direction: column; gap: 7px; }
.contact-cards .cc-field > span{ font-size: 13px; font-weight: 600; color: var(--ink); }
.contact-cards .cc-field > span i{ color: #D2502A; font-style: normal; }
.contact-cards .cc-two{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-cards .cc-form input, .contact-cards .cc-form select, .contact-cards .cc-form textarea{ width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 14.5px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink); }
.contact-cards .cc-form input:focus, .contact-cards .cc-form select:focus, .contact-cards .cc-form textarea:focus{ outline: none; border-color: var(--navy); }
.contact-cards .cc-form textarea{ min-height: 120px; resize: vertical; }
.contact-cards .cc-submit{ width: 100%; justify-content: center; height: 56px; margin-top: 6px; }
.contact-cards .cc-success{ font-size: 14px; color: #2C7A63; font-weight: 600; }
.contact-cards .cc-terms{ font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; margin: 0; }
.contact-cards .cc-terms a{ color: var(--navy); border-bottom: 1px solid currentColor; }
@media (max-width: 940px){ .contact-feature.contact-cards{ grid-template-columns: 1fr; } }
@media (max-width: 520px){ .contact-cards .cc-two{ grid-template-columns: 1fr; } }

/* ---------- 9·2 · FAQ — borders under heading & answers, ringed plus, button CTA ---------- */
.faq-below .faq-below-head{ border-bottom: 1px solid var(--line-strong); padding-bottom: 30px; }
.faq-list-grid .faq-item{ border-bottom: 1px solid var(--line); }
.faq-list-grid .faq-item summary{ padding: 20px 0; align-items: center; }
.faq-item .toggle-ic{ width: 32px; height: 32px; flex: 0 0 auto; border: 1.5px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; color: var(--navy); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.faq-item[open] .toggle-ic{ background: var(--navy); border-color: var(--navy); color: #fff; }
.faq-cta-row .link{
  border: 0 !important; padding: 0 28px !important; height: 56px; display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy); color: #fff !important; border-radius: var(--radius-pill); font-weight: 700;
  letter-spacing: 0.04em; text-transform: none; font-size: 14px; transition: background .2s ease, transform .2s ease;
}
.faq-cta-row .link:hover{ background: var(--navy-deep); transform: translateY(-2px); }

/* ---------- 9·3 · colour Google logo badge on reviews ---------- */
.google-badge .gb-chip{ display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: var(--radius-pill); padding: 8px 16px; }
.google-badge .gb-chip svg{ width: 20px; height: 20px; }
.google-badge .gb-chip .gb-word{ font-family: var(--sans); font-weight: 700; font-size: 15px; color: #5f6368; }
.scorebar small .sb-g{ width: 15px; height: 15px; display: inline-block; vertical-align: -2px; margin: 0 2px; }

/* ---------- 9·4 · PAGE HEROES — same framed width as the homepage hero ---------- */
.page-hero{ max-width: calc(var(--container) + 2 * var(--gutter)) !important; margin-inline: auto !important; }

/* ============================================================
   ROUND 10 — contact map+owners, route stats, FAQ panel
   ============================================================ */
/* contact map on the left */
.contact-cards .cc-map{ position: relative; min-height: 210px; border-radius: 20px; overflow: hidden; border: 1px solid var(--line-strong); }
.contact-cards .cc-map iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.03); }
.contact-cards .cc-map .cc-map-tag{ position: absolute; left: 16px; top: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--navy); border-radius: var(--radius-pill); padding: 8px 14px 8px 10px; font-family: var(--display); font-weight: 700; font-size: 13px; box-shadow: 0 8px 20px -8px rgba(15,27,51,0.35); }
.contact-cards .cc-map .cc-map-tag svg{ width: 16px; height: 16px; color: var(--gold, #C9A663); }
/* phone / email on separate labelled rows */
.cc-contact-row{ display: flex; align-items: baseline; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); }
.cc-contact-row:first-of-type{ border-top: 0; padding-top: 2px; }
.cc-contact-row .ccr-lbl{ font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); width: 52px; flex: 0 0 auto; }
.cc-contact-row a{ font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--navy); }
/* owners with photo circles */
.contact-cards .cc-card-owners{ display: block; }
.cc-owners{ display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.cc-owner{ display: flex; align-items: center; gap: 14px; }
.cc-av{ width: 54px; height: 54px; flex: 0 0 auto; border-radius: 50%; overflow: hidden; position: relative; background: var(--cream); box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--line); }
.cc-av image-slot{ position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.cc-owner-t strong{ display: block; font-family: var(--display); font-size: 16px; color: var(--navy); }
.cc-owner-t span{ font-size: 12.5px; color: var(--muted); }
/* readable office hours */
.contact-cards .cc-hours{ border-top: 1px solid var(--line); padding-top: 16px; margin-bottom: 16px; }
.contact-cards .cc-hours-lbl{ display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contact-cards .cc-hours-row{ display: flex; justify-content: space-between; gap: 12px; align-items: baseline; padding: 6px 0; }
.contact-cards .cc-hours-row .cch-season{ font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-cards .cc-hours-row strong{ font-family: var(--display); font-size: 14px; color: var(--navy); }

/* ---------- 10·2 · ROUTES cards — bold nights + nautical miles ---------- */
.route-tile .meta-row span:not(.diff){ font-weight: 700; color: var(--navy); }
.route-tile .meta-row span:not(.diff) svg{ opacity: 0.85; }

/* ---------- 10·3 · ROUTE summary 'seven stops' — bigger naked icons ---------- */
.route-summary-list li svg{
  width: 32px !important; height: 32px !important; padding: 0 !important;
  background: none !important; border-radius: 0 !important; color: var(--navy) !important; margin-top: 1px !important;
}

/* ---------- 10·4 · FAQ — distinct panel so it reads as its own section ---------- */
.faq-below{ background: var(--cream-2); border-radius: clamp(22px, 2.6vw, 32px); padding: clamp(34px, 4vw, 56px); margin-top: clamp(44px, 5vw, 72px); }


/* ============================================================
   ROUND 11 — scroll motion: hero clip, layered section overlap,
   richer parallax + nicer card hover. (motion add-on)
   ============================================================ */

/* keep the parallaxing hero photo inside its frame on desktop too */
.page-hero{ overflow: hidden; }
.page-hero-bg, .hero-photo{ backface-visibility: hidden; }

/* ---- Scroll-driven stacking deck (pinned panels) ----
        JS adds `body.kek-deck` + `.kek-panel`, then sets each section
        position:sticky with a per-height `top`: short sections pin at the
        top (top:0); tall sections pin BOTTOM-aligned (top = vh - height) so
        you scroll through all their content first, then they freeze on their
        last screenful and the next section slides up and covers them.
        Pure-CSS pin (no cropping) + a light JS dim on the outgoing card. */
body.kek-deck .kek-panel{
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -16px 40px -28px rgba(15,27,51,0.30);
  transition: filter .12s linear;
}
body.kek-deck .kek-panel.kek-first{
  border-top-left-radius: 0; border-top-right-radius: 0; box-shadow: none;
}
/* slightly smaller radius on phones */
@media (max-width: 560px){
  body.kek-deck .kek-panel{ border-top-left-radius: 16px; border-top-right-radius: 16px; }
}
@media (prefers-reduced-motion: reduce){
  body.kek-deck .kek-panel{
    position: static !important; filter: none !important;
    border-radius: 0 !important; box-shadow: none !important;
  }
}

/* ---- Refined card hover: lift + soft shadow + image zoom + accent ring ---- */
.post, .route-tile, .yacht-card, .yacht-card-rich, .offer, .fleet-card{
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s cubic-bezier(.2,.7,.2,1);
}
.post .photo, .route-tile .photo, .yacht-card .photo, .yacht-card-rich .photo,
.offer .photo, .fleet-card .photo{ overflow: hidden; }
.post .photo image-slot, .route-tile .photo image-slot, .yacht-card .photo image-slot,
.yacht-card-rich .photo image-slot, .offer .photo image-slot, .fleet-card .photo image-slot,
.post .photo img, .route-tile .photo img, .yacht-card .photo img, .offer .photo img{
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.post:hover, .route-tile:hover, .yacht-card:hover, .yacht-card-rich:hover, .offer:hover, .fleet-card:hover{
  transform: translateY(-7px);
  box-shadow: 0 30px 60px -28px rgba(15,27,51,0.34);
}
.post:hover .photo image-slot, .route-tile:hover .photo image-slot, .yacht-card:hover .photo image-slot,
.yacht-card-rich:hover .photo image-slot, .offer:hover .photo image-slot, .fleet-card:hover .photo image-slot,
.post:hover .photo img, .route-tile:hover .photo img, .yacht-card:hover .photo img, .offer:hover .photo img{
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce){
  .post, .route-tile, .yacht-card, .yacht-card-rich, .offer, .fleet-card,
  .post .photo image-slot, .route-tile .photo image-slot{ transition: none !important; transform: none !important; }
}


/* ============================================================
   ROUND 12 — MOBILE & TABLET polish (loads last → authoritative)
   - interior headers edge-to-edge like the homepage hero
   - tighter vertical rhythm + smaller grid gaps
   - properly scaled display type
   ============================================================ */

/* ---- Interior page headers: match the homepage hero at every width ----
        Tablet (≤900): framed with the same gutter as the homepage hero.
        Phone (≤640): edge-to-edge, like the homepage hero goes full-bleed. */
@media (max-width: 900px){
  .page-hero{
    width: auto !important;
    max-width: none !important;
    margin: 0 var(--gutter) !important;
    border-radius: 0 0 32px 32px !important;
    overflow: hidden !important;
  }
  .page-hero > .page-hero-bg{ border-radius: 0 0 32px 32px !important; }
  .page-hero::before{ border-radius: 0 0 32px 32px !important; inset: 0 !important; }
}
@media (max-width: 640px){
  .page-hero{ margin: 0 !important; }
}

/* ---- Tablet: tighter vertical rhythm + gaps ---- */
@media (max-width: 900px){
  .section{ padding: clamp(40px, 6vw, 64px) 0 !important; }
  .section-head, .section-head-left{ margin-bottom: 30px !important; }
  .fleet-grid, .fleet-grid-9, .routes-grid, .offers-grid, .gallery-grid, .reviews-grid,
  .why-grid, .why-home-grid, .values-grid, .included-grid, .cert-grid, .blog-grid,
  .ig-grid, .timeline, .highlights-grid, .checklist-grid, .steps, .day-list,
  .equip-cat-body, .contact-channels{ gap: 14px !important; }
  .section-head h2, .section-head-left h2{ margin-bottom: 8px !important; }
}

/* ---- Phone: tighter spacing (display type scales via base clamps) ---- */
@media (max-width: 600px){
  .section{ padding: clamp(34px, 8vw, 48px) 0 !important; }
  .section-head, .section-head-left{ margin-bottom: 22px !important; }
  .container{ padding-left: 16px !important; padding-right: 16px !important; }
  .page-hero-content{ padding: 46px 18px 54px !important; }
  .page-hero-content .kicker{ margin-bottom: 14px !important; }
  /* card internals breathe a little less */
  .fleet-grid, .blog-grid, .offers-grid, .routes-grid, .reviews-grid, .why-grid, .gallery-grid{ gap: 12px !important; }
}

/* ============================================================
   ROUND 9 — ULTRA-SMALL SCREENS (tuned to work down to 320px)
   Small phones: iPhone SE 1st-gen / Galaxy Fold cover (320px).
   ============================================================ */
@media (max-width: 400px){
  :root{ --gutter: 14px; }
  .container{ padding-left: var(--gutter) !important; padding-right: var(--gutter) !important; }
  .kek-ribbon-inner{ padding-left: var(--gutter) !important; padding-right: var(--gutter) !important; }
  .kek-foot-v2 .container,
  .site-foot .container,
  .breadcrumbs .container{ padding-inline: var(--gutter) !important; }

  /* keep flex/grid children from overflowing their track */
  .search-card .field, .hero-content-inner, .section-head .left, .section-head .right,
  .tb-head-l, .tb-head-r, .reviews-head > div, .yacht-card .body, .offer .body,
  .route-tile .body{ min-width: 0; }

  /* ---- hero (size via base clamp; layout below) ---- */
  .hero-content{ padding: 22px 18px 28px !important; }
  .hero-cta{ width: 100%; gap: 10px; }
  .hero-cta .btn, .hero-cta .btn-on-image{ width: 100%; justify-content: center; }
  .hero-watch{ width: 100%; justify-content: center; }
  .hero-eyebrow .pill{ font-size: 11px; }

  /* ---- booking search → single column, fingers-friendly ---- */
  .search-card{ grid-template-columns: 1fr !important; padding: 14px !important; gap: 2px; }
  .search-card .field{ padding: 12px 0 !important; }
  .search-card .btn-primary{ grid-column: 1 / -1 !important; height: 54px; }
  .search-card .toggle{ flex-wrap: wrap; gap: 6px; }
  .search-card .toggle button{ flex: 1 1 auto; min-width: 0; padding: 9px 10px; font-size: 12px; }

  /* ---- yacht cards: keep the 2x2 spec grid tidy ---- */
  .yacht-card .specs{ gap: 12px 8px; }
  .yacht-card .feature-pills span{ font-size: 11px; }
  .yacht-card .foot{ flex-wrap: wrap; gap: 14px; }

  /* ---- buttons that sit alone become full-width & centered ---- */
  .fleet-cta .btn, .destinations-cta .btn, .gallery-more .btn,
  .final-cta .btn{ width: 100%; justify-content: center; }

  /* ---- subpage stat banners: stack the big numbers ---- */
  .numbers-row-inner{ grid-template-columns: 1fr 1fr !important; gap: 22px 18px !important; padding: 34px var(--gutter) !important; }
  .numbers-row strong{ font-size: 38px !important; }
  .route-stats-inner{ grid-template-columns: 1fr 1fr !important; padding: 22px var(--gutter) !important; gap: 16px !important; }

  /* ---- reviews: Google badge + score row wrap cleanly ---- */
  .reviews-head .google-badge{ flex-wrap: wrap; }
  .reviews-redesign .big-quote{ font-size: 20px !important; }
  .review .scorebar{ flex-wrap: wrap; }

  /* ---- "find your week" bar: stack the NauSYS row so the logo never clips ---- */
  .findweek-bar{ overflow: visible; }
  .findweek-bar .fw-nausys{ flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
  .findweek-bar .fw-nausys span{ white-space: normal !important; }
  .findweek-bar .fw-nausys img{ height: 20px !important; max-width: 100%; }

  /* ---- map / contact stat chips ---- */
  .why-home-v2 .whv-stats .s{ flex: 1 1 calc(50% - 6px); }

  /* ---- brand wordmark trims so the navbar never overflows ---- */
  .brand-word{ font-size: 17px !important; }
  .nav-actions .btn-book{ padding: 0 14px !important; font-size: 12px !important; }
}

/* very narrow (≤340) — Galaxy Fold cover & older SE in landscape gutters */
@media (max-width: 340px){
  :root{ --gutter: 12px; }
  .numbers-row-inner{ grid-template-columns: 1fr !important; }
  .route-stats-inner{ grid-template-columns: 1fr 1fr !important; }
  .search-card .toggle button{ font-size: 11px; padding: 9px 8px; }
  .why-home-v2 .whv-stats .s{ flex: 1 1 100%; }
}
