/*
 * Six Fins Design System — v2
 * Source of truth: /_handoff/docs/DESIGN_SYSTEM.md
 * Replace polish.css for all redesigned pages.
 * DO NOT edit this file to match pages — edit this file and propagate forward.
 */

/* ─── GOOGLE FONTS ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── COLOR TOKENS ─────────────────────────────────────────────────────── */
:root {
  --color-teal:           #0d8a96; /* nav, footer, brand accent, links */
  --color-navy:           #1a2733; /* dark sections, body text, headlines */
  --color-orange:         #e87a3d; /* PRIMARY CTA ONLY — Book Now, Reserve */
  --color-orange-dark:    #d56828; /* CTA hover */
  --color-gold:           #826110; /* eyebrows, flagship borders, italic accents (light bg) — WCAG AA 4.5:1 vs cream */
  --color-gold-light:     #f5d76e; /* eyebrow text on dark bg, italic accents on dark */
  --color-cream:          #f5f1ea; /* page background */
  --color-cream-off:      #fafaf6; /* booking card body, value cards */
  --color-white:          #ffffff; /* card backgrounds, content surfaces */
  --color-border:         #e8e4dc; /* card borders, section dividers */
  --color-border-light:   #efebe3; /* subtle dividers inside cards */

  /* Text hierarchy */
  --color-text-primary:   #1a2733;
  --color-text-body:      #2d3a47;
  --color-text-secondary: #4a5560;
  --color-text-tertiary:  #5a6570;
  --color-text-muted:     #6a7580;
  --color-text-quiet:     #888888;

  /* Special */
  --color-star:           #f5b842; /* review stars */
  --color-callout-bg:     #fff8e1;
  --color-callout-border: #f5b842;
  --color-callout-text:   #5a4a1a;

  /* ─── SPACING TOKENS ───────────────────────────────────────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 100px;

  /* ─── MAX WIDTHS ───────────────────────────────────────────────────── */
  --max-w-page:    1280px;
  --max-w-story:   1180px;
  --max-w-content:  900px;
  --max-w-text:     720px;
  --max-w-narrow:   580px;
}

/* ─── GLOBAL RESET + BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* Sitewide horizontal-overflow backstop. Root-cause fixes are preferred
   (e.g. .hp-proof-grid minmax(0,1fr) for content min-content overflow)
   and shipped wherever the underlying offender is identified. This rule
   is a defense-in-depth safety net so customers can never accidentally
   swipe a page sideways even if a future change introduces a new
   overflower we haven't caught yet. Internal scroll containers
   (.sf-trust-checks, .sf-locations-grid mobile rail, etc.) work
   independently — they use overflow-x:auto on their own boxes and aren't
   affected by this rule on the document root. */
/* overflow-x:clip (NOT hidden) — `hidden` on the document root makes iOS Safari
   treat the page as a scroll container, which breaks `position:fixed` so the
   fixed .sf-nav scrolls away with the page. `clip` prevents the same horizontal
   overflow without creating that scroll container, so the nav stays pinned on
   iOS. Desktop behavior is unchanged. */
html, body { overflow-x: clip; }
body {
  background: var(--color-cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────────── */
.sf-h1       { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(52px, 7vw, 84px); line-height: 0.95; letter-spacing: -0.035em; }
.sf-h1-detail { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(40px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.025em; }
.sf-h2       { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(28px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -0.025em; }
.sf-h2-italic { font-family: 'Fraunces', serif; font-weight: 500; font-style: italic; font-size: clamp(26px, 3.2vw, 42px); line-height: 1.05; letter-spacing: -0.02em; }
.sf-h3       { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(18px, 2vw, 24px); line-height: 1.15; }
.sf-body     { font-size: 17px; line-height: 1.7; color: var(--color-text-body); }
.sf-body-sm  { font-size: 14px; line-height: 1.6; color: var(--color-text-tertiary); }

/* The gold italic accent word — use <em class="sf-accent"> inside headlines */
.sf-accent { font-style: italic; color: var(--color-gold); font-weight: 400; }
.sf-accent-light { font-style: italic; color: var(--color-gold-light); font-weight: 400; } /* on dark bg */

/* ─── EYEBROW ──────────────────────────────────────────────────────────── */
.sf-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.sf-eyebrow--light { color: var(--color-gold-light); }
.sf-eyebrow--border {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-gold);
}

/* ─── CONTAINER ────────────────────────────────────────────────────────── */
.sf-container { max-width: var(--max-w-page); margin: 0 auto; padding: 0 var(--space-16); }
.sf-container--story { max-width: var(--max-w-story); margin: 0 auto; padding: 0 var(--space-16); }
@media (max-width: 768px) {
  .sf-container, .sf-container--story { padding: 0 var(--space-5); }
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────── */
.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 12px 22px;
  /* Universal 44 px tap target — WCAG 2.5.5 / Apple HIG. Padding above
     puts default sf-btn around 38 px; min-height pads it to 44. */
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.sf-btn-primary {
  background: var(--color-orange);
  color: var(--color-navy); /* navy on orange = 4.74:1, clears WCAG AA */
  box-shadow: 0 4px 14px rgba(232, 122, 61, 0.35);
}
.sf-btn-primary:hover { background: var(--color-orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232, 122, 61, 0.45); color: var(--color-navy); }
.sf-btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.sf-btn-secondary:hover { background: var(--color-navy); color: #fff; }
.sf-btn-secondary--light {
  color: var(--color-gold-light); /* match the H1 accent — better contrast on water photos */
  border-color: var(--color-gold-light);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.sf-btn-secondary--light:hover {
  background: var(--color-gold-light);
  color: var(--color-navy);
  border-color: var(--color-gold-light);
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* Any secondary button inside a hero needs a high-contrast treatment —
   the default navy-on-transparent vanishes against dark hero photos.
   Frosted-glass background + white text + 2px white border for legibility. */
.sf-hero .sf-btn-secondary {
  color: #fff;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.sf-hero .sf-btn-secondary:hover {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(-1px);
}
.sf-btn-lg { font-size: 15px; padding: 16px 32px; }

/* Mobile button text wrap — long CTA labels (e.g. "See the Secret Local
   Sandbar Escape" at 413px wide) overflow narrow viewports because .sf-btn
   above sets white-space:nowrap. Below 480px, allow normal wrapping so
   text breaks across two lines instead of pushing the page wider than
   the viewport. Short labels still fit on one line — wrap only kicks in
   when needed. Also sets max-width so the button never exceeds the
   container, even with a single very long word. */
@media (max-width: 480px) {
  .sf-btn {
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
  }
}

/* Tertiary / text link
   Color is navy (not brand teal) on cream/white backgrounds so the link
   passes WCAG AA contrast 4.5:1 for body text. Teal on cream is only
   3.66:1, which fails — found by mobile UX deep dive audit 2026-05-29.
   The underline + weight 600 keeps it clearly link-like; teal stays as
   the brand color on dark surfaces (footer/nav) and on the underline. */
.sf-link {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-teal);
  padding-bottom: 2px;
  transition: opacity 0.2s, color 0.15s;
}
.sf-link:hover { color: var(--color-teal); opacity: 0.85; }

/* ─── CARD (BASE) ──────────────────────────────────────────────────────── */
.sf-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.sf-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 32px rgba(26, 39, 51, 0.10);
}
.sf-card--flagship {
  border: 2px solid var(--color-gold);
}
.sf-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--color-navy);
  background-size: cover;
  background-position: center;
}
.sf-card-body { padding: var(--space-8) var(--space-8) var(--space-6); }
.sf-card-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; color: var(--color-navy); margin-bottom: var(--space-2); line-height: 1.2; }
.sf-card-desc { font-size: 14px; color: var(--color-text-tertiary); line-height: 1.6; margin-bottom: var(--space-5); }
.sf-card-meta { font-size: 12px; color: var(--color-text-quiet); letter-spacing: 0.04em; padding: var(--space-4) 0; border-top: 1px solid var(--color-border-light); display: flex; gap: var(--space-4); flex-wrap: wrap; }
.sf-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-5); border-top: 1px solid var(--color-border-light); margin-top: var(--space-4); }
.sf-card-price { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; color: var(--color-navy); }
.sf-card-price-label { font-size: 12px; color: var(--color-text-muted); letter-spacing: 0.04em; }
/* Card-specific Book Now button */
.sf-card-btn {
  background: var(--color-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.sf-card:hover .sf-card-btn { background: var(--color-orange); }

/* ─── SECTION PATTERN ──────────────────────────────────────────────────── */
.sf-section { padding: var(--space-20) var(--space-16); }
.sf-section--cream  { background: var(--color-cream); }
.sf-section--white  { background: var(--color-white); }
.sf-section--navy   { background: var(--color-navy); color: #fff; }
.sf-section-header  { margin-bottom: var(--space-12); }
.sf-section-header--center { text-align: center; }
.sf-section-header--center .sf-section-sub { margin: var(--space-4) auto 0; max-width: var(--color-text-muted); }
.sf-section-sub { font-size: 17px; line-height: 1.65; color: var(--color-text-secondary); max-width: var(--max-w-text); margin-top: var(--space-4); }

@media (max-width: 768px) {
  .sf-section { padding: var(--space-12) var(--space-5); }
}

/* ─── TRUST STRIP ──────────────────────────────────────────────────────── */
.sf-trust-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 0 var(--space-16);
  min-height: 72px;
  display: flex;
  align-items: center;
}
.sf-trust-strip > .sf-trust-strip-inner { flex: 1; }
.sf-trust-strip-inner {
  max-width: var(--max-w-page);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;       /* keep rating + pills + CTA on a single line */
  gap: var(--space-5);
  width: 100%;
}
.sf-trust-strip-inner > .sf-trust-checks { flex: 0 1 auto; min-width: 0; flex-wrap: nowrap; }
.sf-trust-strip-inner > .sf-trust-rating,
.sf-trust-strip-inner > .sf-trust-ctas { flex-shrink: 0; }
.sf-trust-rating { font-size: 15px; font-weight: 600; color: var(--color-navy); display: flex; align-items: center; gap: var(--space-2); }
.sf-trust-rating .stars { color: var(--color-star); letter-spacing: 2px; font-size: 14px; }
.sf-trust-checks { display: flex; gap: var(--space-8); flex-wrap: wrap; }
.sf-trust-check { font-size: 13px; color: var(--color-text-secondary); display: flex; align-items: center; gap: 6px; }
.sf-trust-check::before { content: "✓"; color: var(--color-teal); font-weight: 700; }
.sf-trust-ctas { display: flex; gap: var(--space-3); }

/* ── TRUST STRIP — VARIANT A: Subtle tint + bolder rating (homepage) ── */
.sf-trust-strip--tint {
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-top: 22px;
  padding-bottom: 22px;
}
.sf-trust-strip--tint .sf-trust-rating { font-size: 16.5px; gap: 8px; }
.sf-trust-strip--tint .sf-trust-rating .stars { font-size: 18px; letter-spacing: 2.5px; }
.sf-trust-strip--tint .sf-trust-rating strong { font-size: 20px; color: var(--color-navy); font-weight: 700; }
.sf-g-logo { display: inline-flex; vertical-align: middle; margin-left: 4px; }
.sf-g-logo svg { display: block; }

/* ── TRUST STRIP — VARIANT B: Color-coded zones (jet ski tours) ── */
.sf-trust-strip--zoned {
  background: #fff;
  border-top: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-gold);
}
.sf-trust-strip--zoned .sf-trust-rating {
  color: var(--color-teal);
  font-weight: 700;
  padding-right: var(--space-6);
  border-right: 1px solid var(--color-border);
}
.sf-trust-strip--zoned .sf-trust-rating strong { color: var(--color-teal); font-size: 18px; }
.sf-trust-strip--zoned .sf-trust-rating .stars { color: var(--color-gold); font-size: 17px; }
.sf-trust-strip--zoned .sf-trust-check { color: var(--color-navy); font-weight: 600; }
.sf-trust-strip--zoned .sf-trust-check::before { color: var(--color-gold); font-size: 15px; }

/* ── TRUST STRIP — VARIANT C: Pill badges (boat charters) ── */
.sf-trust-strip--badges {
  background: #ebe1cb;  /* deeper warm beige — distinct against page cream */
  border-top: 1px solid #d8cba6;
  border-bottom: 1px solid #d8cba6;
  padding-top: 0;
  padding-bottom: 0;
}
.sf-trust-strip--badges .sf-trust-rating { font-size: 16px; gap: 8px; }
.sf-trust-strip--badges .sf-trust-rating strong { font-size: 20px; color: var(--color-navy); font-weight: 700; }
.sf-trust-strip--badges .sf-trust-rating .stars { font-size: 18px; letter-spacing: 2.5px; }
.sf-trust-strip--badges .sf-trust-checks { gap: 10px; }
.sf-trust-strip--badges .sf-trust-check {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(26, 39, 51, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sf-trust-strip--badges .sf-trust-check:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(26, 39, 51, 0.10);
}
.sf-trust-strip--badges .sf-trust-check::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .sf-trust-strip { min-height: auto; padding: 12px var(--space-5); }
  /* Mobile: override desktop nowrap so rating/pills/CTA stack vertically;
     pills inside still scroll horizontally as a chip rail. */
  .sf-trust-strip-inner {
    flex-wrap: wrap !important;
    gap: 10px;
    justify-content: flex-start;
  }
  .sf-trust-strip-inner > .sf-trust-rating { flex: 1 1 auto; min-width: 0; order: 1; }
  .sf-trust-strip-inner > .sf-trust-ctas { flex: 0 0 auto; order: 2; }
  .sf-trust-checks {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--space-4);
    padding-right: var(--space-5);
    flex: 1 1 100%;
    order: 3;
    min-width: 0;
  }
  .sf-trust-checks::-webkit-scrollbar { display: none; }
  .sf-trust-check { white-space: nowrap; flex-shrink: 0; font-size: 12.5px; }
  /* Breadcrumb: drop the 72px min-height clamp so content can breathe and scroll horizontally without overflowing */
  .sf-breadcrumb { min-height: auto; }
}

/* ─── FAQ ACCORDION ────────────────────────────────────────────────────── */
.sf-faq { margin-top: var(--space-2); }
.sf-faq details {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.sf-faq details[open] { box-shadow: 0 4px 14px rgba(26,39,51,.08); }
.sf-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  min-height: 44px;
  user-select: none;
}
.sf-faq summary::-webkit-details-marker { display: none; }
.sf-faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--color-teal);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.sf-faq details[open] summary::after { transform: rotate(45deg); }
.sf-faq-answer {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-tertiary);
}
.sf-faq-answer a { color: var(--color-teal); border-bottom: 1px solid var(--color-teal); }

/* ─── YELLOW CALLOUT ───────────────────────────────────────────────────── */
.sf-callout {
  background: var(--color-callout-bg);
  border-left: 4px solid var(--color-callout-border);
  border-radius: 6px;
  padding: 24px 28px;
}
.sf-callout-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-callout-text); margin-bottom: var(--space-4);
}
.sf-callout p { font-size: 14px; line-height: 1.6; color: var(--color-callout-text); }

/* ─── PULL QUOTE ───────────────────────────────────────────────────────── */
.sf-pullquote {
  max-width: 880px;
  padding: 32px 40px;
  border-left: 4px solid var(--color-gold);
  border-radius: 4px;
  background: var(--color-white);
}
.sf-pullquote p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-navy);
}
.sf-pullquote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-quiet);
  margin-top: 14px;
  font-style: normal;
}

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.sf-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  background: var(--color-navy) center/cover no-repeat;
  overflow: hidden;
}
/* Detail heroes use a 600px floor for a consistent baseline height, then
   GROW to fit their content (eyebrow + H1 + lede + CTAs). A hard max-height
   + overflow:hidden was clipping the hero CTAs on pages with longer copy
   (e.g. Hurricane Hole). Mobile (≤600px) sizing is set below. */
.sf-hero--detail { min-height: 600px; }
/* On transparent-nav pages: anchor hero content from the TOP (not the bottom)
   so the H1 cannot slide up under the floating nav when total content is
   taller than the hero. 140px top reservation = 95px nav + ~45px breathing
   room. Bottom overflow is preferable to top overflow because nothing
   visually fights the bottom edge. */
body.has-hero-nav .sf-hero {
  align-items: flex-start;
  padding-top: 140px;
}
.sf-hero-overlay {
  position: absolute;
  inset: 0;
  /* Layered gradient: a light top band keeps the white nav legible, while the
     bottom band stays fully transparent through the top ~30% so the hero PHOTO
     reads vibrant, then deepens only low where the copy sits. On the brightest
     photos, legibility is carried by text-shadow on the eyebrow / H1 / lede
     (below) instead of by veiling the whole image. */
  background:
    linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0) 28%),
    linear-gradient(180deg,
      rgba(26,39,51,0) 30%,
      rgba(26,39,51,.28) 66%,
      rgba(26,39,51,.62) 100%
    );
}
.sf-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w-page);
  margin: 0 auto;
  padding: 0 var(--space-16) var(--space-16);
  color: #fff;
}
/* All hero content (eyebrow, H1, lede, CTAs) aligns to the same left
   edge — the .sf-hero-content padding. Previously the H1 + eyebrow had
   a left-padding shift that made them misalign with the lede/CTAs AND
   shift position between pages depending on viewport width, creating
   a "jumpy" feel when navigating between the homepage and the product
   hubs. Removed that shift; all elements now share the same left margin. */
@media (max-width: 900px) {
  body.has-hero-nav .sf-hero { padding-top: 110px; }
}
.sf-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
.sf-hero-eyebrow::before { content: "—"; opacity: 0.6; }
.sf-hero h1 { max-width: var(--max-w-content); color: #fff; margin-bottom: 18px; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 3px 18px rgba(0, 0, 0, 0.42); }
.sf-hero-lede {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: #fff;
  max-width: 600px;
  margin-bottom: 28px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 1px 10px rgba(0, 0, 0, 0.45);
}
.sf-hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }
@media (max-width: 768px) {
  .sf-hero { min-height: 480px; }
  .sf-hero-content { padding: 0 var(--space-5) var(--space-12); }
}
/* Mobile hero ergonomics — keep CTAs above the fold on phones. Stack vertical
   + full-width so they're thumb-friendly. */
@media (max-width: 600px) {
  .sf-hero { min-height: 78vh; max-height: 620px; }
  .sf-hero--detail { min-height: 70vh; max-height: none; }
  .sf-hero h1 { font-size: clamp(36px, 9vw, 52px); }
  /* Subtext prominence — Mac's Saturday walk-through flagged that the hero
     headline ("The only operator running the full 2-hour lap") doesn't
     mention boat charters by itself, so the subtext ("Small-group guided
     jet ski tours and private boat charters …") must be the first thing
     read AFTER the headline. Bumped from 16px/1.6/rgba(.9)/weight 400 to
     17px/1.4/pure-white/weight 500 so it reads as obvious explanatory
     copy rather than ambient lede. Desktop typography untouched. */
  .sf-hero-lede {
    font-size: 17px;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .sf-hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .sf-hero-ctas .sf-btn { width: 100%; min-height: 52px; font-size: 15px; }
  /* Detail pages that pack .cd-facts tiles into the hero already take ~200px
     for the fact grid. Stacked CTAs (~120px) push the content past the 560px
     mobile hero cap. The sticky pill + mobile dock already provide a
     persistent Book/Call surface on mobile, so hiding the in-hero CTAs on
     these pages keeps the hero clean without removing booking access. */
  .sf-hero--detail .sf-hero-content:has(.cd-facts) .sf-hero-ctas { display: none; }
}

/* ─── BREADCRUMB ───────────────────────────────────────────────────────── */
.sf-breadcrumb {
  background: #dde8ea;  /* pale teal tint — cool counterpoint to warm trust strip */
  border-bottom: 1px solid #c4d6d9;
  padding: 0 var(--space-16);
  min-height: 72px;
  display: flex;
  align-items: center;
}
.sf-breadcrumb > .sf-breadcrumb-inner { flex: 1; }
.sf-breadcrumb-inner {
  max-width: var(--max-w-page);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.sf-breadcrumb a { color: var(--color-text-muted); }
.sf-breadcrumb a:hover { color: var(--color-teal); }
.sf-breadcrumb .current { color: var(--color-navy); font-weight: 500; }
.sf-breadcrumb .sep { color: var(--color-border); }
/* Support semantic ol/li breadcrumb markup (used on some detail pages) — render inline w/o numbers, match the div-based style */
.sf-breadcrumb ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  width: 100%;
  max-width: var(--max-w-page);
}
.sf-breadcrumb ol li { display: inline-flex; align-items: center; }
.sf-breadcrumb ol li + li::before {
  content: "\203A"; /* › */
  color: var(--color-border);
  margin-right: 8px;
}
.sf-breadcrumb ol li[aria-current="page"] { color: var(--color-navy); font-weight: 500; }
/* Mobile breadcrumb — desktop's 64px horizontal padding leaves no room on
   phones. Drop to 20px, allow horizontal scroll for long trails so words
   don't wrap awkwardly. */
@media (max-width: 768px) {
  .sf-breadcrumb { padding: 10px var(--space-5); }
  .sf-breadcrumb-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sf-breadcrumb-inner::-webkit-scrollbar { display: none; }
  .sf-breadcrumb-inner a,
  .sf-breadcrumb-inner .current,
  .sf-breadcrumb-inner .sep { white-space: nowrap; }
}

/* ─── GRID HELPERS ─────────────────────────────────────────────────────── */
.sf-grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.sf-grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.sf-grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.sf-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-6); }
@media (max-width: 1024px) {
  .sf-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sf-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sf-grid-2, .sf-grid-3, .sf-grid-4 { grid-template-columns: 1fr; }
}

/* ─── ITINERARY / ROUTE ────────────────────────────────────────────────── */
.sf-route-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-6);
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}
.sf-route-item:last-child { border-bottom: none; }
.sf-route-time { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; color: var(--color-gold); }
.sf-route-time-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-text-quiet); margin-top: 4px; }
.sf-route-title { font-size: 16px; font-weight: 600; color: var(--color-navy); margin-bottom: 6px; }
.sf-route-desc { font-size: 14px; line-height: 1.6; color: var(--color-text-tertiary); }

/* ─── REVIEW CARD ──────────────────────────────────────────────────────── */
.sf-review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px;
}
.sf-review-header { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.sf-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  flex-shrink: 0;
}
.sf-review-name { font-size: 14px; font-weight: 600; color: var(--color-navy); }
.sf-review-date { font-size: 12px; color: var(--color-text-quiet); margin-top: 2px; }
.sf-review-stars { color: var(--color-star); letter-spacing: 2px; font-size: 13px; margin-bottom: 10px; }
.sf-review-text { font-size: 14px; line-height: 1.6; color: var(--color-text-secondary); }

/* Optional "Meet Captain/Guide [Name] →" link below a review that names a real crew member */
.sf-review-meet { margin-top: 12px; }
.sf-review-meet-link {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--color-teal); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s, color .15s;
}
.sf-review-meet-link:hover { border-color: var(--color-teal); color: var(--color-teal); }
.sf-review-meet-link::after { content: " \2192"; }

/* ─── WHAT-TO-EXPECT (dark numbered steps) ─────────────────────────────── */
.sf-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
.sf-step { text-align: center; }
.sf-step-num { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 400; font-style: italic; color: var(--color-gold-light); line-height: 1; margin-bottom: 14px; }
.sf-step-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.sf-step-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
@media (max-width: 768px) { .sf-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sf-steps { grid-template-columns: 1fr; } }

/* ─── BOOKING CARD (sticky sidebar) ───────────────────────────────────── */
.sf-booking-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; }
.sf-booking-header {
  background: var(--color-navy);
  color: #fff;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sf-booking-price { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; }
.sf-booking-price-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.sf-booking-avail {
  background: #2d5e3a; color: #b8e8c4;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}
.sf-booking-avail::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.sf-booking-body { background: var(--color-cream-off); padding: 24px 26px; }
.sf-booking-or { font-size: 13px; color: var(--color-text-muted); text-align: center; margin-top: 12px; }
.sf-booking-or a { color: var(--color-teal); }

/* ─── LOCATIONS BAND ───────────────────────────────────────────────────── */
.sf-locations-band {
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px var(--space-16);
}
.sf-locations-grid {
  max-width: var(--max-w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.sf-loc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.sf-loc-map {
  width: 100%;
  height: 140px;
  background: rgba(255,255,255,0.06);
  display: block;
  border: none;
}
.sf-loc-body { padding: 14px 18px 16px; }
.sf-loc-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold-light); margin-bottom: 6px; }
.sf-loc-name { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.sf-loc-address { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }
@media (max-width: 768px) {
  .sf-locations-band { padding: var(--space-8) var(--space-5); }
  /* Horizontal scroll-snap rail instead of 3 stacked full-width maps —
     that pattern produced ~480px of dead repetitive scroll on mobile
     (especially since 2 of the 3 are the same building, Perry Hotel).
     Snap-scroll keeps the rail navigable and out of the user's way.
     NOTE: as of Memo 5 Tier 1 the whole band is hidden site-wide on
     mobile (except on /contact-us/ where the maps are the page job),
     so these snap rules only activate on the contact page now. */
  .sf-locations-grid {
    grid-template-columns: repeat(3, 84%);
    gap: var(--space-3);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin: 0 calc(-1 * var(--space-5));
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }
  .sf-locations-grid::-webkit-scrollbar { display: none; }
  .sf-loc-card { scroll-snap-align: start; }
}

/* ─── MOBILE CONTENT REDUCTION (Memo 5 Tier 1) ─────────────────────────
   Three sitewide hides at ≤768px. Desktop is untouched and the content
   stays in the DOM (display:none, not removal) so Google still crawls
   every section. Hide list:

   1. .sf-locations-band   — 3 Google Maps iframes load on every page.
                             Footer already has the addresses. Kept on
                             .contact-page where the maps are the point.
   2. .cd-hero-photo        — in-content duplicate of the hero background
                             image on every tour/charter detail page.
                             Pure redundancy — zero info loss.
   3. .hp-featured          — homepage "As Featured On" scrolling marquee.
                             Decorative on mobile; /featured-on/ stays
                             linked from the footer. */
@media (max-width: 768px) {
  body:not(.contact-page) .sf-locations-band { display: none; }
  .cd-hero-photo { display: none; }
  .hp-featured { display: none; }
}

/* ─── SITE FOOTER ──────────────────────────────────────────────────────── */
.sf-footer {
  /* Navy background fixes WCAG AA contrast failures on teal:
     gold contact links 2.91:1 → 8.6:1 ✓ AAA
     white-85 body links 4.12:1 → 14.9:1 ✓ AAA
     The brand still reads as navy + gold + teal (header and CTAs stay
     teal); aligning the footer to navy makes it cohesive with the rest
     of the dark surfaces (CTA bands, hero overlays). */
  background: var(--color-navy);
  color: #fff;
  padding: 40px var(--space-16) 22px;
  position: relative;
}
.sf-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}
.sf-footer-grid {
  max-width: var(--max-w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 28px;
}
.sf-footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 14px;
}
.sf-footer ul { list-style: none; padding: 0; margin: 0; }
.sf-footer ul li { margin-bottom: 4px; }
.sf-footer a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s, transform 0.15s;
  line-height: 1.85;
}
.sf-footer ul a { display: inline-block; }
.sf-footer ul a:hover { color: var(--color-gold-light); transform: translateX(2px); }
.sf-footer-brand {
  display: flex; flex-direction: column;
  /* Let inner spacing handle vertical fill; no justify-content so anchor stays at top */
}
.sf-footer-brand img {
  width: 180px; height: auto;
  margin-bottom: 20px;
  opacity: .95;
}
.sf-footer-brand p {
  font-size: 14.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 22px;
}
.sf-footer-contact { list-style: none; padding: 0; margin: 0; }
.sf-footer-contact li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--color-gold-light);
}
.sf-footer-contact .sf-fc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--color-gold-light);
  opacity: 1;
}
.sf-footer-contact .sf-fc-icon svg { width: 16px; height: 16px; }
.sf-footer-contact a {
  color: var(--color-gold-light);
  line-height: 1.4;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.15s;
}
.sf-footer-contact a:hover { color: #fff; }
.sf-footer-social {
  display: flex; gap: 10px;
  margin-top: 18px;
  justify-content: flex-start;
}
.sf-footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;  /* 44 px tap target per WCAG 2.5.5 */
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.sf-footer-social a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 5px 14px rgba(0,0,0,0.28);
  filter: brightness(1.08);
}
.sf-footer-social svg { width: 20px; height: 20px; display: block; }
.sf-footer-social .sf-fs--ig {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%);
}
.sf-footer-social .sf-fs--fb { background: #1877F2; }
.sf-footer-social .sf-fs--tt { background: #000000; }
.sf-footer-social .sf-fs--x  { background: #000000; }
.sf-footer-social .sf-fs--yelp { background: #D32323; }
/* Visit Us col uses flex column so the social row anchors to the bottom */
.sf-footer-grid > div:nth-child(4) {
  display: flex;
  flex-direction: column;
}
.sf-footer-grid > div:nth-child(4) .sf-footer-social {
  margin-top: auto;
}
.sf-footer-marinas { list-style: none; padding: 0; margin: 0 0 14px; }
.sf-footer-marinas li {
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.sf-footer-marinas li::before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 18px; height: 18px;
  background: var(--color-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z'/></svg>") no-repeat center / contain;
}
.sf-footer-marinas strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.sf-footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  margin-top: 14px;
  margin-bottom: 0;
  font-style: italic;
}
.sf-footer-bottom {
  max-width: var(--max-w-page);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 12px;
  color: var(--color-gold-light);
  font-weight: 600;
}
.sf-footer-legal {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  flex-wrap: wrap;
}
.sf-footer-legal a {
  color: var(--color-gold-light);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  transition: opacity 0.15s, color 0.15s;
}
.sf-footer-legal a:hover { color: #fff; opacity: 1; }
.sf-footer-legal span { color: var(--color-gold-light); opacity: 0.5; }
.sf-footer-awards { display: flex; align-items: center; gap: 12px; }
.sf-footer-awards img { height: 40px; width: auto; opacity: 0.9; }
@media (max-width: 1024px) {
  .sf-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .sf-footer-grid > :nth-child(4) {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    padding-top: 8px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 4px;
  }
}
@media (max-width: 768px) {
  .sf-footer { padding: 32px var(--space-5) 20px; }
  /* Footer compaction — single-column stack was ~1375px tall on phones
     (roughly 1.7 screens). Pair the two link-only columns (Charters &
     Tours + Six Fins) side-by-side; keep Brand and Visit Us full-width
     because they carry block content (contact list, marina addresses,
     social icons) that wraps awkwardly at half-width. */
  .sf-footer-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; padding-bottom: 22px; }
  .sf-footer-grid > :nth-child(1),
  .sf-footer-grid > :nth-child(4) { grid-column: 1 / -1; }
  .sf-footer-grid > :nth-child(4) {
    display: block; padding-top: 0; border-top: 0; margin-top: 0;
  }
  /* Tighter link spacing so the link lists pack denser without changing
     tap-target height noticeably (links still have padding via line-height). */
  .sf-footer a { line-height: 1.6; }
  .sf-footer ul li { margin-bottom: 2px; }
  .sf-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ─── DETAIL PAGE LAYOUT (cd-*) ────────────────────────────────────────── */
/* Shared by charter detail, jet ski detail. Include design-system.css and  */
/* no extra layout CSS is needed in the page.                                */

.cd-facts { display:flex; gap:0; background:rgba(255,255,255,.12); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.2); border-radius:10px; overflow:hidden; max-width:480px; margin-top:var(--space-8); }
.cd-fact { flex:1; padding:14px 18px; border-right:1px solid rgba(255,255,255,.15); text-align:center; }
.cd-fact:last-child { border-right:none; }
.cd-fact-num { font-family:'Fraunces',serif; font-size:20px; font-weight:500; color:#fff; line-height:1; }
.cd-fact-lbl { font-size:10px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.65); margin-top:4px; }
/* Mobile — 4-up cramps to ~80px cells, labels wrap 3 lines. Switch to 2x2 grid. */
@media (max-width:600px) {
  .cd-facts { flex-wrap:wrap; max-width:100%; }
  .cd-fact { flex:0 0 50%; border-bottom:1px solid rgba(255,255,255,.15); }
  .cd-fact:nth-child(2n) { border-right:none; }
  .cd-fact:nth-last-child(-n+2) { border-bottom:none; }
}

.cd-main { max-width:var(--max-w-page); margin:0 auto; padding:var(--space-12) var(--space-16) var(--space-20); display:grid; grid-template-columns:1fr 360px; gap:48px; align-items:start; }
@media (max-width:1024px) { .cd-main { grid-template-columns:1fr; padding:var(--space-10) var(--space-5) var(--space-12); } }

.cd-content-col { min-width:0; }

.cd-bottomline { display:flex; gap:0; background:var(--color-white); border:1px solid var(--color-border); border-radius:10px; overflow:hidden; margin-bottom:var(--space-8); }
.cd-bl-item { flex:1; padding:14px 16px; border-right:1px solid var(--color-border); text-align:center; }
.cd-bl-item:last-child { border-right:none; }
.cd-bl-ico { font-size:20px; margin-bottom:4px; }
.cd-bl-label { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--color-text-quiet); margin-bottom:3px; }
.cd-bl-value { font-size:13px; font-weight:600; color:var(--color-navy); }
@media (max-width:640px) { .cd-bottomline { flex-wrap:wrap; } .cd-bl-item { flex:0 0 50%; border-bottom:1px solid var(--color-border); } .cd-bl-item:nth-child(2n) { border-right:none; } }

.cd-hero-photo { width:100%; aspect-ratio:16/9; background-size:cover; background-position:center; border-radius:12px; margin-bottom:var(--space-10); }

.cd-section { margin-bottom:var(--space-12); }
.cd-section-eyebrow { font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--color-gold); margin-bottom:var(--space-3); }
.cd-section h2 { font-family:'Fraunces',serif; font-size:clamp(22px,2.8vw,32px); font-weight:500; color:var(--color-navy); margin-bottom:var(--space-5); line-height:1.1; }
.cd-section p { font-size:16px; line-height:1.75; color:var(--color-text-body); margin-bottom:16px; }
.cd-section p:last-child { margin-bottom:0; }

/* ─── MOBILE COLLAPSE PATTERN (Memo 5 Tier 2 Item 1) ──────────────────
   Selected detail-page sections (The Practicals, How the X Runs) use
   <details class="cd-section cd-section--mobile-collapse" open> instead
   of <div class="cd-section">. The first child must be a <summary> that
   wraps the existing eyebrow + h2.

   The [open] attribute is permanent — modern Chrome's <details>
   implementation renders children OUTSIDE the box-tree when closed,
   which causes subsequent siblings to overlap. With [open], everything
   flows correctly. We override [open] on mobile via a class-based
   collapse (.is-mobile-open) rather than toggling [open] itself.

   Desktop (≥769px): summary is non-interactive (no chevron, no pointer);
   the section looks exactly like the old <div class="cd-section"> layout.

   Mobile (≤768px): content is hidden by default via CSS regardless of
   [open]. Tapping the summary toggles .is-mobile-open via sf-mobile-collapse.js.
   A small chevron rotates open/closed.

   SEO: All children are always present in the rendered HTML — they're
   only hidden via display:none on mobile when collapsed. Google crawls
   everything. */
details.cd-section--mobile-collapse { margin-bottom: var(--space-12); }
details.cd-section--mobile-collapse > summary { display: block; }
details.cd-section--mobile-collapse > summary::-webkit-details-marker { display: none; }
details.cd-section--mobile-collapse > summary::marker { display: none; }

@media (min-width: 769px) {
  details.cd-section--mobile-collapse > summary {
    list-style: none;
    cursor: default;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  /* Hide content by default on mobile, even though [open] is set.
     The class toggle below restores visibility on tap. */
  details.cd-section--mobile-collapse:not(.is-mobile-open) > *:not(summary) {
    display: none !important;
  }
  /* When mobile-open class is added, show content with the right display value */
  details.cd-section--mobile-collapse.is-mobile-open > *:not(summary) {
    display: block;
  }
  details.cd-section--mobile-collapse.is-mobile-open > .cd-included-grid {
    display: grid;
  }
  /* Tappable summary with chevron */
  details.cd-section--mobile-collapse > summary {
    cursor: pointer;
    position: relative;
    padding-right: 32px;
    padding-top: 6px;
    padding-bottom: 6px;
    -webkit-tap-highlight-color: rgba(13, 138, 150, 0.06);
  }
  details.cd-section--mobile-collapse > summary::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-teal);
    border-bottom: 2px solid var(--color-teal);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
  }
  details.cd-section--mobile-collapse.is-mobile-open > summary::after {
    transform: translateY(-25%) rotate(-135deg);
  }
  details.cd-section--mobile-collapse > summary:hover .cd-section-eyebrow,
  details.cd-section--mobile-collapse > summary:focus-visible .cd-section-eyebrow {
    color: var(--color-teal);
  }
  /* Visual hint that there's more behind the summary */
  details.cd-section--mobile-collapse:not(.is-mobile-open) > summary h2 {
    margin-bottom: 0;
  }
  details.cd-section--mobile-collapse.is-mobile-open > summary h2 {
    margin-bottom: var(--space-5);
  }
}

.cd-included-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.cd-included-col { background:var(--color-cream); border-radius:10px; padding:var(--space-6); }
.cd-included-col.yes { border-left:3px solid var(--color-teal); }
.cd-included-col.bring { border-left:3px solid var(--color-orange); }
.cd-included-col h3 { font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:var(--space-4); }
.cd-included-col.yes h3 { color:var(--color-teal); }
.cd-included-col.bring h3 { color:var(--color-orange); }
.cd-included-col ul { list-style:none; }
.cd-included-col li { font-size:14px; line-height:1.5; color:var(--color-text-body); padding:5px 0; border-bottom:1px solid var(--color-border-light); display:flex; align-items:flex-start; gap:8px; }
.cd-included-col li:last-child { border-bottom:none; }
.cd-included-col.yes li::before { content:"✓"; color:var(--color-teal); font-weight:700; flex-shrink:0; }
.cd-included-col.bring li::before { content:"·"; color:var(--color-orange); font-weight:700; flex-shrink:0; }
@media (max-width:640px) { .cd-included-grid { grid-template-columns:1fr; } }

.cd-captain { display:flex; gap:var(--space-5); background:var(--color-cream); border-radius:12px; padding:var(--space-6); }
.cd-captain-avatar { width:72px; height:72px; border-radius:50%; background:var(--color-teal); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-size:28px; font-style:italic; flex-shrink:0; }
.cd-captain-tag { font-size:10px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--color-gold); margin-bottom:4px; }
.cd-captain h3 { font-family:'Fraunces',serif; font-size:20px; font-weight:500; color:var(--color-navy); margin-bottom:4px; }
.cd-captain-creds { font-size:12px; color:var(--color-text-muted); margin-bottom:var(--space-3); }
.cd-captain p { font-size:14px; line-height:1.65; color:var(--color-text-body); margin-bottom:var(--space-3); }
.cd-captain a { font-size:13px; font-weight:600; color:var(--color-teal); text-decoration:none; border-bottom:1px solid var(--color-teal); padding-bottom:2px; }

.cd-reviews-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:640px) { .cd-reviews-grid { grid-template-columns:1fr; } }

.cd-booking-col { position:sticky; top:88px; align-self:start; }

.cd-meet-here { background:var(--color-white); border:1px solid var(--color-border); border-radius:10px; overflow:hidden; margin-bottom:var(--space-4); }
.cd-meet-here iframe { width:100%; height:160px; border:none; display:block; }
.cd-meet-here-body { padding:14px 18px 16px; }
.cd-meet-label { font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--color-gold); margin-bottom:5px; }
.cd-meet-name { font-family:'Fraunces',serif; font-size:16px; font-weight:500; color:var(--color-navy); margin-bottom:3px; }
.cd-meet-addr { font-size:12px; color:var(--color-text-tertiary); line-height:1.5; margin-bottom:8px; }
.cd-meet-dir { font-size:12px; color:var(--color-teal); text-decoration:none; font-weight:600; }

.cd-fh-card { background:var(--color-white); border:1px solid var(--color-border); border-radius:12px; overflow:hidden; box-shadow:0 8px 24px rgba(26,39,51,.08); margin-bottom:var(--space-4); }
.cd-fh-header { background:var(--color-navy); color:#fff; padding:20px 24px; display:flex; justify-content:space-between; align-items:center; }
.cd-fh-price-label { font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.65); margin-bottom:3px; }
.cd-fh-price { font-family:'Fraunces',serif; font-size:28px; font-weight:500; }
.cd-fh-avail { background:#2d5e3a; color:#b8e8c4; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 10px; border-radius:999px; display:flex; align-items:center; gap:5px; }
.cd-fh-avail::before { content:''; width:5px; height:5px; border-radius:50%; background:#5dd97a; }
.cd-fh-body { background:var(--color-cream-off); padding:22px 24px; }
.cd-fh-body .fh-btn { display:block; width:100%; background:var(--color-orange); color:#fff; text-align:center; padding:15px; border-radius:8px; font-size:15px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; text-decoration:none; transition:background .2s; margin-top:var(--space-4); }
.cd-fh-body .fh-btn:hover { background:var(--color-orange-dark); color:#fff; }
.cd-fh-body .fh-or { text-align:center; font-size:12px; color:var(--color-text-muted); margin:var(--space-3) 0; }
.cd-fh-body .fh-call { display:block; text-align:center; font-size:13px; font-weight:600; color:var(--color-teal); text-decoration:none; }

.cd-price-tiers { margin-bottom:var(--space-5); }
.cd-price-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid var(--color-border-light); font-size:13px; }
.cd-price-row:last-child { border-bottom:none; }
.cd-price-lbl { color:var(--color-text-secondary); }
.cd-price-val { font-weight:700; color:var(--color-navy); }

.cd-trust { background:var(--color-white); border:1px solid var(--color-border); border-radius:10px; padding:16px 18px; }
.cd-trust-title { font-size:10px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--color-text-quiet); margin-bottom:var(--space-4); }
.cd-trust-row { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--color-text-body); margin-bottom:6px; }
.cd-trust-row:last-child { margin-bottom:0; }
.cd-trust-row .ico { color:var(--color-teal); font-weight:700; }

.cd-req-card { background:#fff8e1; border:1px solid #f5b842; border-radius:10px; padding:var(--space-6); }
.cd-req-title { font-size:11px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:#5a4a1a; margin-bottom:var(--space-5); display:flex; align-items:center; gap:8px; }
.cd-req-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
/* 5-item layout: 2+2+1 cleanly */
.cd-req-grid:has(> .cd-req-item:nth-child(5)) { grid-template-columns: 1fr 1fr; }
.cd-req-grid > .cd-req-item:nth-child(5):last-child { grid-column: 1 / -1; max-width: 50%; justify-self: start; }
.cd-req-item { display:flex; align-items:flex-start; gap:12px; }
.cd-req-ico { width:36px; height:36px; border-radius:8px; background:#f5b842; color:var(--color-navy); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; flex-shrink:0; }
/* Without flex:1 the content column shrank to ~80px on mobile (default
   flex:0 1 auto) and the body text wrapped to ~8 stretched lines — what
   read as "too-loose line-height" was actually a too-narrow column.
   min-width:0 lets the long sentences wrap inside the flex item. */
.cd-req-content { flex: 1; min-width: 0; }
.cd-req-content strong { display:block; font-size:13px; color:var(--color-navy); margin-bottom:2px; }
.cd-req-content span { display:block; font-size:12px; color:#5a4a1a; line-height:1.5; }
@media (max-width:640px) {
  .cd-req-grid,
  /* Override the desktop :has(5) rule that otherwise keeps the grid 2-col
     even on phones — that's what was making the body text wrap into a
     ~88px-wide ribbon of 8 stretched lines. */
  .cd-req-grid:has(> .cd-req-item:nth-child(5)) { grid-template-columns: 1fr; }
  .cd-req-grid > .cd-req-item:nth-child(5):last-child { max-width: 100%; }
}

/* Sandbar destination picker (Block C — per Mac polish memo) */
.sf-sandbar-picker { background:#fff; color:var(--color-navy); border-radius:12px; padding:24px 22px; margin:0 auto var(--space-8); max-width:760px; text-align:left; box-shadow:0 8px 24px rgba(0,0,0,.18); }
.sf-sandbar-picker-title { font-family:'Fraunces',serif; font-size:22px; font-weight:500; color:var(--color-navy); margin:0 0 6px; }
.sf-sandbar-picker-sub { font-size:13px; color:var(--color-text-muted); margin:0 0 18px; line-height:1.5; }
.sf-sandbar-picker-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; margin:0 0 18px; }
.sf-sandbar-picker-grid label { display:flex; align-items:flex-start; gap:8px; padding:10px 12px; background:var(--color-cream,#f7f3e8); border:1px solid rgba(11,31,42,.08); border-radius:8px; cursor:pointer; transition:border-color .15s, background .15s; }
.sf-sandbar-picker-grid label:hover { border-color:var(--color-teal); }
.sf-sandbar-picker-grid input[type="checkbox"]:checked + span strong { color:var(--color-teal); }
.sf-sandbar-picker-grid label:has(input[type="checkbox"]:checked) { border-color:var(--color-teal); background:#eaf6f8; }
.sf-sandbar-picker-grid input[type="checkbox"] { width:16px; height:16px; accent-color:var(--color-teal); flex-shrink:0; margin-top:2px; }
.sf-sandbar-picker-grid label span { display:block; line-height:1.3; }
.sf-sandbar-picker-grid label strong { display:block; font-weight:600; color:var(--color-navy); font-size:13px; }
.sf-sandbar-picker-grid label em { display:block; font-style:normal; font-size:11px; color:var(--color-text-muted); margin-top:1px; }
.sf-sandbar-picker-result { border-top:1px solid rgba(11,31,42,.08); padding-top:16px; display:flex; flex-direction:column; gap:10px; align-items:stretch; }
.sf-sandbar-picker-msg { font-size:14px; color:var(--color-navy); background:var(--color-cream,#f7f3e8); padding:12px 14px; border-radius:8px; border-left:3px solid var(--color-orange); line-height:1.55; }
.sf-sandbar-picker-msg strong { color:var(--color-orange); font-weight:700; }
.sf-sandbar-picker-cta { width:100%; text-align:center; }
.sf-sandbar-picker-call { font-size:13px; color:var(--color-text-muted); text-align:center; }
.sf-sandbar-picker-call a { color:var(--color-teal); font-weight:600; text-decoration:none; }
@media (max-width:720px) { .sf-sandbar-picker-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:480px) { .sf-sandbar-picker-grid { grid-template-columns:1fr; } }

/* Related charters */
.cd-related { background:var(--color-white); padding:var(--space-16); border-top:1px solid var(--color-border); }
.cd-related-header { max-width:var(--max-w-story); margin:0 auto var(--space-8); text-align:center; }
.cd-related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:var(--max-w-story); margin:0 auto; }
.cd-related-card { background:var(--color-white); border:1px solid var(--color-border); border-radius:10px; overflow:hidden; text-decoration:none; color:var(--color-navy); transition:all .2s; display:block; }
.cd-related-card:hover { transform:translateY(-3px); border-color:var(--color-gold); box-shadow:0 8px 24px rgba(26,39,51,.08); color:var(--color-navy); }
.cd-related-img { aspect-ratio:4/3; background-size:cover; background-position:center; }
.cd-related-body { padding:18px 20px 20px; }
.cd-related-body h4 { font-family:'Fraunces',serif; font-size:18px; font-weight:500; margin-bottom:6px; line-height:1.2; }
.cd-related-body p { font-size:13px; color:var(--color-text-tertiary); margin-bottom:12px; line-height:1.5; }
.cd-related-meta { display:flex; justify-content:space-between; align-items:center; font-size:12px; color:var(--color-text-quiet); }
.cd-related-price { color:var(--color-navy); font-weight:600; font-size:14px; }
@media (max-width:900px) { .cd-related { padding:var(--space-12) var(--space-5); } .cd-related-grid { grid-template-columns:1fr; } }
@media (max-width:1024px) { .cd-related-grid { grid-template-columns:repeat(2,1fr); } }

/* ─── YACHT DETAIL LAYOUT (yd-*) ────────────────────────────────────────── */
.yd-hero { background:var(--color-cream); padding:var(--space-16) var(--space-16) 0; border-bottom:1px solid var(--color-border); }
.yd-hero-grid { max-width:var(--max-w-story); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; padding-bottom:var(--space-12); }
.yd-hero-tag { font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--color-gold); margin-bottom:var(--space-4); }
.yd-hero-text h1 { font-family:'Fraunces',serif; font-size:clamp(32px,4vw,52px); font-weight:500; line-height:1.05; letter-spacing:-.025em; color:var(--color-navy); margin-bottom:var(--space-5); }
.yd-hero-text h1 em { font-style:italic; color:var(--color-gold); }
.yd-hero-subtitle { font-size:17px; line-height:1.7; color:var(--color-text-body); margin-bottom:var(--space-8); max-width:480px; }
.yd-quick-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:var(--space-2); background:var(--color-white); border:1px solid var(--color-border); border-radius:10px; overflow:hidden; }
.yd-stat { padding:14px 16px; border-right:1px solid var(--color-border-light); text-align:center; }
.yd-stat:last-child { border-right:none; }
.yd-stat-label { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--color-text-quiet); margin-bottom:4px; }
.yd-stat-value { font-family:'Fraunces',serif; font-size:15px; font-weight:500; color:var(--color-navy); }
.yd-hero-img { aspect-ratio:4/3; background-size:cover; background-position:center; border-radius:14px; box-shadow:0 16px 40px rgba(26,39,51,.12); }
@media (max-width:900px) { .yd-hero { padding:var(--space-10) var(--space-5) 0; } .yd-hero-grid { grid-template-columns:1fr; gap:var(--space-8); } .yd-quick-stats { grid-template-columns:repeat(2,1fr); } }

.yd-main { max-width:var(--max-w-page); margin:0 auto; padding:var(--space-12) var(--space-16) var(--space-20); display:grid; grid-template-columns:1fr 340px; gap:48px; align-items:start; }
@media (max-width:1024px) { .yd-main { grid-template-columns:1fr; padding:var(--space-10) var(--space-5) var(--space-12); } }

.yd-content-col { min-width:0; }
.yd-section { margin-bottom:var(--space-12); }
.yd-section-eyebrow { font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--color-gold); margin-bottom:var(--space-3); }
.yd-section h2 { font-family:'Fraunces',serif; font-size:clamp(22px,2.8vw,32px); font-weight:500; color:var(--color-navy); margin-bottom:var(--space-5); line-height:1.1; }
.yd-section p { font-size:16px; line-height:1.75; color:var(--color-text-body); margin-bottom:16px; }
.yd-section p:last-child { margin-bottom:0; }

.yd-best-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.yd-best-card { background:var(--color-cream); border-radius:10px; padding:var(--space-6); border-left:3px solid var(--color-gold); }
.yd-best-ico { font-size:28px; margin-bottom:var(--space-3); display:block; }
.yd-best-card h4 { font-family:'Fraunces',serif; font-size:17px; font-weight:500; color:var(--color-navy); margin-bottom:var(--space-2); }
.yd-best-card p { font-size:13px; line-height:1.6; color:var(--color-text-tertiary); margin:0; }
@media (max-width:640px) { .yd-best-grid { grid-template-columns:1fr; } }

.yd-specs { background:var(--color-white); border:1px solid var(--color-border); border-radius:10px; overflow:hidden; }
.yd-spec-row { display:flex; padding:14px 18px; border-bottom:1px solid var(--color-border-light); font-size:14px; }
.yd-spec-row:last-child { border-bottom:none; }
.yd-spec-label { width:140px; flex-shrink:0; font-weight:600; color:var(--color-text-secondary); }
.yd-spec-value { color:var(--color-text-body); flex:1; }

.yd-captain-mini { display:flex; gap:var(--space-4); align-items:flex-start; background:var(--color-cream); border-radius:10px; padding:var(--space-5); }
.yd-captain-avatar { width:52px; height:52px; border-radius:50%; background:var(--color-teal); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-size:22px; font-style:italic; flex-shrink:0; }
.yd-captain-name { font-size:15px; font-weight:600; color:var(--color-navy); margin-bottom:3px; }
.yd-captain-creds { font-size:12px; color:var(--color-text-muted); margin-bottom:var(--space-3); }
.yd-captain-note { font-size:13px; line-height:1.6; color:var(--color-text-body); }

.yd-inquiry-col { position:sticky; top:88px; align-self:start; }
.yd-inquiry-card { background:var(--color-white); border:1px solid var(--color-border); border-radius:12px; overflow:hidden; box-shadow:0 8px 24px rgba(26,39,51,.08); margin-bottom:var(--space-4); }
.yd-inquiry-header { background:var(--color-navy); color:#fff; padding:20px 24px; }
.yd-inquiry-price-label { font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.65); margin-bottom:4px; }
.yd-inquiry-price { font-family:'Fraunces',serif; font-size:26px; font-weight:500; margin-bottom:6px; }
.yd-inquiry-price-note { font-size:12px; color:rgba(255,255,255,.6); line-height:1.5; }
.yd-inquiry-body { padding:22px 24px; background:var(--color-cream-off); }
.yd-inquiry-body label { display:block; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--color-text-secondary); margin-bottom:6px; margin-top:var(--space-4); }
.yd-inquiry-body label:first-child { margin-top:0; }
.yd-inquiry-body select, .yd-inquiry-body input { width:100%; padding:10px 12px; border:1px solid var(--color-border); border-radius:6px; font-family:'Inter',sans-serif; font-size:14px; color:var(--color-navy); background:var(--color-white); appearance:none; }
.yd-inquiry-submit { display:block; width:100%; background:var(--color-orange); color:#fff; text-align:center; padding:14px; border-radius:8px; font-size:14px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; cursor:pointer; border:none; font-family:'Inter',sans-serif; transition:background .2s; margin-top:var(--space-5); }
.yd-inquiry-submit:hover { background:var(--color-orange-dark); }
.yd-inquiry-or { text-align:center; font-size:12px; color:var(--color-text-muted); margin:var(--space-3) 0; }
.yd-inquiry-call { display:block; text-align:center; font-size:13px; font-weight:600; color:var(--color-teal); text-decoration:none; }
.yd-trust { background:var(--color-white); border:1px solid var(--color-border); border-radius:10px; padding:16px 18px; }
.yd-trust-title { font-size:10px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--color-text-quiet); margin-bottom:var(--space-4); }
.yd-trust-row { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--color-text-body); margin-bottom:6px; }
.yd-trust-row:last-child { margin-bottom:0; }
.yd-trust-row .ico { color:var(--color-teal); font-weight:700; }

.yd-other { background:var(--color-white); padding:var(--space-12) var(--space-16); border-top:1px solid var(--color-border); }
.yd-other-header { max-width:var(--max-w-story); margin:0 auto var(--space-8); }
.yd-other-header h3 { font-family:'Fraunces',serif; font-size:28px; font-weight:500; color:var(--color-navy); }
.yd-other-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; max-width:var(--max-w-story); margin:0 auto; }
.yd-other-card { background:var(--color-white); border:1px solid var(--color-border); border-radius:10px; overflow:hidden; text-decoration:none; color:var(--color-navy); transition:all .2s; display:block; }
.yd-other-card:hover { border-color:var(--color-gold); transform:translateY(-2px); color:var(--color-navy); }
.yd-other-img { aspect-ratio:4/3; background-size:cover; background-position:center; }
.yd-other-body { padding:12px 14px 14px; }
.yd-other-body h4 { font-family:'Fraunces',serif; font-size:15px; font-weight:500; margin-bottom:3px; }
.yd-other-body p { font-size:12px; color:var(--color-text-tertiary); }
@media (max-width:900px) { .yd-other { padding:var(--space-10) var(--space-5); } .yd-other-grid { grid-template-columns:repeat(2,1fr); } }

/* ─── SITE NAV ─────────────────────────────────────────────────────────── */
.sf-nav {
  background: var(--color-teal);
  padding: 18px var(--space-12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Drop shadow visible on opaque states (default = non-hero pages, and
     scrolled-past-hero state below). Hero-overlay state nulls it out. */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* Pages WITHOUT a hero need top padding on the body so the breadcrumb + main don't
   slide under the fixed nav. Hero pages need transparent nav overlaying the hero, so
   no body padding there. */
body:not(.has-hero-nav) { padding-top: 96px; }
/* Pages WITH a hero get a transparent nav that overlays the hero photo */
body.has-hero-nav .sf-nav {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 100%);
  box-shadow: none;
}
/* Once scrolled past the hero, nav snaps to solid teal with a shadow */
body.has-hero-nav .sf-nav.is-scrolled {
  background: var(--color-teal);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}
/* Logo gets explicit right margin so hero copy doesn't visually crowd it */
.sf-nav-logo { display: inline-flex; padding-right: 40px; }
.sf-nav-logo img { height: 52px; width: auto; }
.sf-nav-menu { display: flex; gap: 32px; align-items: center; }
.sf-nav-menu a {
  color: #fff !important; /* defensive — overrides any page-specific dark cascade (e.g., hhrental-*) */
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  /* Subtle text-shadow keeps white nav legible over the brightest parts of
     hero photos. No effect on opaque-teal state (background contrast already
     carries the legibility). */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
/* On the opaque-teal scrolled/non-hero state, the shadow becomes noise — drop it */
body:not(.has-hero-nav) .sf-nav-menu a,
body.has-hero-nav .sf-nav.is-scrolled .sf-nav-menu a { text-shadow: none; }
.sf-nav-menu a:hover { opacity: 0.8; }
/* Visual cluster separator between Our Team (last menu link) and the phone+CTA pair */
.sf-nav-phone {
  font-weight: 600;
  margin-left: 14px;
  padding: 11px 0 11px 22px;  /* y-padding hits 44 px tap target */
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.sf-nav-cta {
  background: var(--color-orange);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.sf-nav-cta:hover { background: var(--color-orange-dark); opacity: 1 !important; }
/* ─── Auto-tap-to-call phone numbers (injected by sf-fast-booking.js) ─── */
/* Inherit color from surrounding text on desktop (looks like regular text).
   On mobile, add a subtle underline so users see it as tappable. */
.sf-auto-tel {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(245, 166, 35, 0.18);
}
@media (max-width: 768px) {
  .sf-auto-tel {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-color: rgba(0, 0, 0, 0.25);
    font-weight: 600;
  }
}

/* ─── Mobile hamburger menu (injected by sf-fast-booking.js) ─── */
.sf-nav-toggle { display: none; }
@media (max-width: 1024px) {
  /* Hamburger button — 44x44 tap target per Apple/WCAG mobile guidance */
  .sf-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: 8px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .sf-nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }
  /* Animate hamburger -> X when open */
  .sf-nav.is-mobile-open .sf-nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .sf-nav.is-mobile-open .sf-nav-toggle-bar:nth-child(2) { opacity: 0; }
  .sf-nav.is-mobile-open .sf-nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Hide all menu items by default on mobile (matches prior behavior) */
  .sf-nav-menu a:not(.sf-nav-phone):not(.sf-nav-cta) { display: none; }
  .sf-nav-phone { margin-left: 0; padding-left: 0; border-left: none; }

  /* When mobile menu is OPEN, transform the menu into a full-width dropdown
     panel below the nav. All 5 section links become visible + tappable. */
  .sf-nav.is-mobile-open .sf-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-teal);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .sf-nav.is-mobile-open .sf-nav-menu a {
    display: block;
    padding: 16px 24px;
    min-height: 44px;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-shadow: none;
  }
  .sf-nav.is-mobile-open .sf-nav-menu a:first-child { border-top: none; }
  /* Mobile menu trim: hide "How It Started" + "The Crew" from the drawer.
     Desktop nav keeps both (9 items, has horizontal room). Mobile shows 7.
     Both pages remain reachable via footer and contextual CTAs elsewhere. */
  .sf-nav.is-mobile-open .sf-nav-menu a[href="/our-story/"],
  .sf-nav.is-mobile-open .sf-nav-menu a[href="/our-team/"] { display: none; }
  /* Active "you are here" cue for the current page in the open drawer */
  .sf-nav.is-mobile-open .sf-nav-menu a.is-active {
    background: rgba(255, 255, 255, 0.12);
    border-left: 3px solid var(--color-gold-light);
    padding-left: 21px; /* 24 - 3 to keep text in alignment */
    font-weight: 600;
  }
  .sf-nav.is-mobile-open .sf-nav-menu .sf-nav-cta {
    margin: 12px 24px 0;
    text-align: center;
    border-top: none;
    border-radius: 6px;
  }
  /* Body lock when mobile nav open — prevents background scroll */
  body.sf-mobile-nav-open { overflow: hidden; }
  /* Hide the sticky Book CTA when mobile nav is open so it doesn't visually
     fight the menu panel at the bottom of the viewport. */
  body.sf-mobile-nav-open .sf-floating-book { display: none; }
  /* Dim backdrop behind the drawer — visual cue that the nav is "modal" and
     tap-outside dismisses it (mobile-app drawer pattern). */
  body.sf-mobile-nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998; /* below the nav (1000) and toggle, above all page content */
    pointer-events: none; /* taps fall through to the document handler */
    animation: sf-nav-fade-in .25s ease;
  }
  @keyframes sf-nav-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}

/* ─── Live Google Reviews carousel (injected by sf-live-reviews.js) ──────
   Auto-scrolling marquee of real reviews from all 3 Six Fins GBPs.
   Pauses on hover/focus/touch. Falls back to whatever the page already
   has inside #sf-live-reviews-mount if the API call fails. */
.sf-lr-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: var(--max-w-story);
  margin: 0 auto;
  /* Edge-fade mask so cards don't hard-stop at the section edge */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.sf-lr-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 8px 0 18px;
  animation: sf-lr-scroll 120s linear infinite;
}
.sf-lr-track-dup {
  display: flex;
  gap: 22px;
  margin-left: 22px; /* match the track gap so duplicate joins seamlessly */
}
.sf-lr-marquee.is-paused .sf-lr-track { animation-play-state: paused; }
@keyframes sf-lr-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sf-lr-track { animation: none; }
  .sf-lr-marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .sf-lr-card { scroll-snap-align: start; }
}

.sf-lr-card {
  flex: 0 0 360px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(26, 39, 51, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sf-lr-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 39, 51, 0.08);
}
.sf-lr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sf-lr-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.sf-lr-avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.sf-lr-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sf-lr-meta { flex: 1; min-width: 0; }
.sf-lr-name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-navy);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf-lr-date {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.sf-lr-glogo {
  flex-shrink: 0;
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.sf-lr-glogo:hover { opacity: 1; }
.sf-lr-stars {
  color: var(--color-star);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.sf-lr-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-body);
  /* Clamp long reviews so cards stay roughly the same height — the
     marquee depends on uniform card width AND height for visual rhythm. */
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .sf-lr-card { flex: 0 0 80vw; max-width: 320px; padding: 20px 22px 22px; }
  .sf-lr-track { animation-duration: 93s; }
}

/* ─── Phase 7: Sticky fast-booking CTA (injected by sf-fast-booking.js) ─── */
.sf-floating-book {
  position: fixed;
  right: 24px;
  top: 78%;          /* lowered from 50% — sits in the lower-third of the viewport */
  transform: translateY(-50%);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  background: var(--color-orange);
  color: #fff !important;
  font-family: var(--font-sans, 'Lato', system-ui, sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(232, 122, 61, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 44px;
}
.sf-floating-book:hover,
.sf-floating-book:focus {
  background: var(--color-orange-dark);
  /* keep vertical centering, lift slightly toward viewer with scale */
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 28px rgba(232, 122, 61, 0.55), 0 3px 8px rgba(0, 0, 0, 0.2);
  color: #fff !important;
  outline: none;
}
.sf-floating-book:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--color-orange-dark), 0 10px 28px rgba(232, 122, 61, 0.55);
}
.sf-floating-book .sf-fb-arrow { font-size: 17px; line-height: 1; }
.sf-floating-book .sf-fb-mobile { display: none; }
@media (max-width: 600px) {
  /* On mobile the bottom dock (.sf-mobile-dock) replaces the pill — hide the
     pill so they don't stack. */
  .sf-floating-book { display: none !important; }
}
@media print {
  .sf-floating-book { display: none !important; }
}

/* ─── MOBILE BOTTOM DOCK ───────────────────────────────────────────────────
   Two-button bottom dock (Call + Book) injected by sf-fast-booking.js. The
   most "feels like a mobile app" upgrade — one tap to either most-wanted
   action without scrolling, without opening the hamburger.
   Mobile only. Desktop hides via display:none. */
.sf-mobile-dock { display: none; }
@media (max-width: 600px) {
  .sf-mobile-dock {
    display: grid;
    grid-template-columns: 1fr 1.4fr; /* Book slightly wider — primary action */
    gap: 8px;
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    z-index: 9998; /* below the open mobile-nav panel */
    padding: 0;
  }
  .sf-md-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 12px 18px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .sf-md-call {
    background: #fff;
    color: var(--color-navy);
    border: 1.5px solid var(--color-navy);
    box-shadow: 0 4px 14px rgba(26, 39, 51, 0.18);
  }
  .sf-md-call:active { transform: scale(0.97); background: var(--color-cream); }
  .sf-md-book {
    background: var(--color-orange);
    color: #fff;
    box-shadow: 0 6px 18px rgba(232, 122, 61, 0.5), 0 2px 6px rgba(0, 0, 0, 0.18);
  }
  .sf-md-book:active { transform: scale(0.97); background: var(--color-orange-dark); }
  .sf-md-ico { width: 18px; height: 18px; flex: 0 0 18px; }
  /* Reserve room at the bottom of every page so the dock never overlaps
     the last paragraph / footer. 54px button + 8px gap + safe-area. */
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
  /* When the mobile-nav panel is open, the dock would visually fight with
     the panel buttons — hide it. */
  body.sf-mobile-nav-open .sf-mobile-dock { display: none; }
}
@media print {
  .sf-mobile-dock { display: none !important; }
}

/* ─── Phase 7: Tour-card date picker (jet-ski landing) ─── */
.sf-card-quickbook {
  margin: 14px 0 10px;
  padding: 12px 14px;
  background: rgba(232, 122, 61, 0.06);
  border: 1px solid rgba(232, 122, 61, 0.18);
  border-radius: 8px;
}
.sf-card-quickbook-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange-dark, #d56828);
  margin-bottom: 6px;
}
.sf-card-quickbook-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.sf-card-quickbook input[type="date"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(11, 31, 42, 0.18);
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px; /* 16px+ prevents iOS Safari focus-zoom (used to be 14px) */
  color: var(--color-navy, #0b1f2a);
  background: #fff;
  min-height: 44px;
}
.sf-card-quickbook input[type="date"]:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232, 122, 61, 0.18);
}
.sf-card-quickbook-go {
  flex: 0 0 auto;
  padding: 10px 16px;
  background: var(--color-orange);
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  min-height: 44px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sf-card-quickbook-go:hover { background: var(--color-orange-dark); color: #fff !important; }
.sf-card-quickbook-go--hh {
  background: var(--color-teal, #0d8a96);
}
.sf-card-quickbook-go--hh:hover {
  background: var(--color-deep, #0e3a52);
}
.sf-card-quickbook--dual .sf-card-quickbook-row {
  gap: 6px;
}
.sf-card-quickbook--dual .sf-card-quickbook-go {
  flex: 1 1 50%;
  font-size: 12px;
  padding: 10px 8px;
}

/* ─── Phase 7: Homepage hero quick-book bar ─── */
/* Lifted OUT of .sf-hero (which has overflow:hidden) into its own wrapper
   band so the card has breathing room between the hero and the trust strip
   instead of being clipped or overlapping. */
.sf-hero-quickbook-band {
  background: var(--color-navy);
  padding: 28px var(--space-6) 32px;
  /* Pull the card up so it visually overlaps the hero's bottom edge by ~50%,
     creating a designed "floating card" handoff between hero and trust strip. */
  margin-top: -50px;
  position: relative;
  z-index: 3;
}
.sf-hero-quickbook {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97);
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 12px 32px rgba(11, 31, 42, 0.28);
}
.sf-hero-quickbook-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-orange-dark, #d56828);
  margin-bottom: 10px;
  text-align: center;
}
.sf-hero-quickbook-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.sf-hero-quickbook input[type="date"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(11, 31, 42, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px; /* 16px+ prevents iOS Safari focus-zoom (used to be 15px) */
  color: var(--color-navy, #0b1f2a);
  background: #fff;
  min-height: 48px;
}
.sf-hero-quickbook input[type="date"]:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232, 122, 61, 0.22);
}
.sf-hero-quickbook-go {
  flex: 1 1 auto;
  padding: 12px 16px;
  background: var(--color-orange);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
  min-height: 48px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sf-hero-quickbook-go:hover { background: var(--color-orange-dark); color: #fff !important; transform: translateY(-1px); }
.sf-hero-quickbook-go--hh {
  background: var(--color-teal, #0d8a96);
}
.sf-hero-quickbook-go--hh:hover {
  background: var(--color-deep, #0e3a52);
}
.sf-hero-quickbook-help {
  margin: 10px 4px 0;
  font-size: 12px;
  color: var(--color-text-muted, #5a6770);
  text-align: center;
}
@media (max-width: 560px) {
  .sf-hero-quickbook-row { flex-direction: column; }
  .sf-hero-quickbook-go { width: 100%; }
}

/* ─── 4-tour grouped layout (per-marina, per-tour direct booking) ─── */
.sf-hero-quickbook--grid {
  max-width: 560px;
}
.sf-hero-quickbook--grid .sf-hqb-date {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(11,31,42,.18);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-navy, #0b1f2a);
  background: #fff;
  margin: 8px 0 14px;
  min-height: 42px;
  box-sizing: border-box;
}
.sf-hqb-marina-group {
  margin: 0 0 12px;
  padding: 10px 12px;
  background: rgba(232,122,61,.06);
  border: 1px solid rgba(232,122,61,.16);
  border-radius: 10px;
}
.sf-hqb-marina-group--hh {
  background: rgba(13,138,150,.06);
  border-color: rgba(13,138,150,.18);
  margin-bottom: 0;
}
.sf-hqb-marina-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange-dark, #d56828);
  margin: 0 0 8px;
}
.sf-hqb-marina-group--hh .sf-hqb-marina-label {
  color: var(--color-teal, #0d8a96);
}
.sf-hqb-tour-row {
  display: flex;
  gap: 8px;
}
.sf-hqb-tour {
  flex: 1 1 50%;
  padding: 10px 12px;
  background: var(--color-orange);
  color: #fff !important;
  border-radius: 6px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.sf-hqb-tour:hover {
  background: var(--color-orange-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
.sf-hqb-tour--hh {
  background: var(--color-teal, #0d8a96);
}
.sf-hqb-tour--hh:hover {
  background: var(--color-deep, #0e3a52);
}
@media (max-width: 560px) {
  .sf-hqb-tour-row { flex-direction: column; gap: 6px; }
  .sf-hqb-tour { width: 100%; }
}

/* Viator Badge of Excellence — Flagship tour page (Block F memo) */
.cd-viator-badge { display:flex; gap:12px; align-items:flex-start; background:#fff; border:1px solid var(--color-border,rgba(11,31,42,.08)); border-radius:10px; padding:14px; margin:0 0 var(--space-4); text-decoration:none; color:inherit; transition:border-color .15s, box-shadow .15s; }
.cd-viator-badge:hover { border-color:var(--color-orange); box-shadow:0 4px 14px rgba(11,31,42,.10); color:inherit; }
.cd-viator-badge img { width:84px; height:84px; flex-shrink:0; }
.cd-viator-badge-body { flex:1; min-width:0; }
.cd-viator-badge-title { font-family:'Fraunces',serif; font-size:14px; font-weight:600; color:var(--color-navy); margin-bottom:4px; line-height:1.2; }
.cd-viator-badge-cap { font-size:11.5px; line-height:1.5; color:var(--color-text-muted); }

/* ── Rotating captain card (Block C — sitewide review memo) ─────────────── */
.sf-captain-card { background:#fff; border:1px solid var(--color-border,rgba(11,31,42,.08)); border-radius:12px; padding:24px 22px; margin:var(--space-8) 0; box-shadow:0 4px 16px rgba(11,31,42,.06); }
.sf-captain-card-eyebrow { font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--color-gold); margin-bottom:12px; }
.sf-captain-card-body { display:flex; gap:16px; align-items:center; margin-bottom:14px; }
.sf-captain-card-avatar { width:80px; height:80px; border-radius:50%; object-fit:cover; flex-shrink:0; background:var(--color-cream); }
.sf-captain-card-name { font-family:'Fraunces',serif; font-size:18px; font-weight:500; color:var(--color-navy); line-height:1.2; margin-bottom:2px; }
.sf-captain-card-cred { font-size:12px; color:var(--color-text-muted); line-height:1.45; }
.sf-captain-card-quote { font-size:15px; line-height:1.6; color:var(--color-text-body); margin:0 0 14px; }
.sf-captain-card-quote em { font-style:italic; color:var(--color-navy); }
.sf-captain-card-note { font-size:13px; line-height:1.55; color:var(--color-text-muted); margin:0 0 12px; }
.sf-captain-card-note a { color:var(--color-teal); font-weight:600; text-decoration:underline; }
.sf-captain-card-link { font-size:13px; font-weight:600; color:var(--color-teal); text-decoration:none; border-bottom:1px solid var(--color-teal); padding-bottom:1px; }
.sf-captain-card-link:hover { color:var(--color-navy); border-color:var(--color-navy); }

/* Hide all tour/charter card category badges site-wide
   (Mac directive: cards should rely on title + content, not floating tags) */
.hp-fav-badge,
.ob-card-badge,
.js-tour-badge,
.cp-tour-badge,
.kwjst-tour-badge { display: none !important; }
