/* ==========================================================================
   Saltwater Hotels & Resorts — theme layer over Bootstrap 5.3
   Loaded AFTER bootstrap.min.css. All brand values live here as CSS custom
   properties; Bootstrap's own variables are re-pointed at them below.
   ========================================================================== */

:root {
  /* Brand palette */
  --sw-navy:        #0C1C2C;
  --sw-navy-soft:   #17324a;
  --sw-teal:        #0E6E78;
  --sw-green:       #1B4C51;
  --sw-surf:        #35B7C0;
  --sw-surf-light:  #9FE7EC;
  --sw-coral:       #FF7A59;
  --sw-cream:       #F5F2EC;
  --sw-sand:        #E4DDCE;
  --sw-sand-line:   #DED6C6;
  --sw-ink-muted:   #4A5A64;
  --sw-ink-soft:    #5B6B76;
  --sw-on-navy:     #FFFFFF;
  --sw-on-navy-dim: #FFFFFF;

  /* Type */
  --sw-font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sw-font-body:    'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radii */
  --sw-radius-card: 18px;
  --sw-radius-tile: 20px;
  --sw-radius-band: 26px;

  /* Bootstrap overrides */
  --bs-body-font-family: var(--sw-font-body);
  --bs-body-color: var(--sw-navy);
  --bs-body-bg: var(--sw-cream);
  --bs-primary: var(--sw-navy);
  --bs-link-color: var(--sw-navy);
  --bs-link-hover-color: var(--sw-teal);
  --bs-border-color: var(--sw-sand);
  --bs-border-radius: 10px;
  --bs-border-radius-pill: 999px;
}

body {
  font-family: var(--sw-font-body);
  color: var(--sw-navy);
  background: var(--sw-cream);
  overflow-x: hidden;
}

a { text-decoration: none; color: var(--sw-teal); }
a:hover, a:focus-visible { color: var(--sw-navy); }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

.sw-display {
  font-family: var(--sw-font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: pretty;
  margin: 0;
}

.sw-display-xl { font-size: clamp(40px, 7vw, 86px); }
.sw-display-lg { font-size: clamp(34px, 6vw, 62px); }
.sw-display-md { font-size: clamp(30px, 4.4vw, 46px); }
.sw-display-sm { font-size: clamp(24px, 3vw, 36px); line-height: 1.08; }

.sw-kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sw-teal);
}
.sw-kicker--coral { color: var(--sw-coral); }
.sw-kicker--surf  { color: var(--sw-surf-light); }
.sw-kicker--sm    { font-size: 11px; letter-spacing: 0.16em; color: var(--sw-ink-soft); }

.sw-lede {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
  margin: 0;
}

.sw-muted { color: var(--sw-ink-muted); }

/* --------------------------------------------------------------------------
   Page shell
   -------------------------------------------------------------------------- */

.sw-gutter { padding-left: clamp(20px, 5vw, 64px); padding-right: clamp(20px, 5vw, 64px); }
.sw-section { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(48px, 7vw, 88px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.sw-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--sw-navy);
  color: var(--sw-cream);
  padding: 12px clamp(18px, 4vw, 32px);
}
.sw-header a { color: var(--sw-cream); }
.sw-header a:hover { color: var(--sw-surf); }
.sw-header__logo { height: clamp(54px, 9vw, 78px); width: auto; display: block; filter: brightness(0) invert(1); }
.sw-header__nav { display: flex; flex-wrap: wrap; gap: 10px clamp(14px, 2.4vw, 28px); font-size: 14px; font-weight: 500; }
.sw-header__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sw-header__links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Hamburger — hidden above the breakpoint. Three bars that become a cross. */
.sw-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--sw-cream);
  cursor: pointer;
  transition: background-color .15s ease;
}
.sw-header__toggle:hover { background: rgba(255, 255, 255, .1); }
.sw-header__toggle:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; }
.sw-header__bars { position: relative; display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: background-color .18s ease; }
.sw-header__bars::before,
.sw-header__bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .18s ease, top .18s ease;
}
.sw-header__bars::before { top: -7px; }
.sw-header__bars::after { top: 7px; }
.sw-header__toggle[aria-expanded="true"] .sw-header__bars { background: transparent; }
.sw-header__toggle[aria-expanded="true"] .sw-header__bars::before { top: 0; transform: rotate(45deg); }
.sw-header__toggle[aria-expanded="true"] .sw-header__bars::after { top: 0; transform: rotate(-45deg); }

/* Breakpoint matches the width at which logo + nav + CTA stop fitting on one
   row (~1022px of content at the current logo size and nav length), so the
   header is never a two-row block with an orphaned button. Re-measure if the
   nav gains an item or the logo grows. */
@media (max-width: 1040px) {
  .sw-header { row-gap: 0; }
  .sw-header__toggle { display: inline-flex; }
  .sw-header__nav,
  .sw-header__links {
    order: 3;
    width: 100%;
    display: none;
  }
  .sw-header.is-open .sw-header__nav,
  .sw-header.is-open .sw-header__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .sw-header.is-open .sw-header__nav { padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 12px; }
  /* An open menu must never grow past the viewport on a short screen. */
  .sw-header.is-open { max-height: 100dvh; overflow-y: auto; }
  .sw-header.is-open .sw-header__links { padding-bottom: 6px; }
  .sw-header__nav a,
  .sw-header__links a:not(.sw-btn) { padding: 12px 0; font-size: 16px; width: 100%; }
  .sw-header__links .sw-btn { margin-top: 8px; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  cursor: pointer;
  max-width: 100%;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.sw-btn:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; }

.sw-btn--navy  { background: var(--sw-navy);  color: var(--sw-cream); }
.sw-btn--navy:hover  { background: var(--sw-navy-soft); color: var(--sw-cream); }
.sw-btn--surf  { background: var(--sw-surf);  color: var(--sw-navy); }
.sw-btn--surf:hover  { background: var(--sw-surf-light); color: var(--sw-navy); }
.sw-btn--ghost { background: transparent; color: var(--sw-cream); border: 1.5px solid rgba(245,242,236,.5); }
.sw-btn--ghost:hover { border-color: var(--sw-surf); color: var(--sw-surf); }
/* Short label pills stay on one line; the long full-sentence CTAs may wrap. */
.sw-btn--sm    { font-size: 13px; padding: 9px 18px; white-space: nowrap; }

/* Filter chip */
.sw-chip {
  border: 1.5px solid var(--sw-sand-line);
  background: transparent;
  color: #3C4A54;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.sw-chip:hover { border-color: var(--sw-navy); }
.sw-chip.is-active { background: var(--sw-navy); border-color: var(--sw-navy); color: var(--sw-cream); }
.sw-chip:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Property card
   -------------------------------------------------------------------------- */

.sw-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--sw-sand);
  border-radius: var(--sw-radius-card);
  overflow: hidden;
  transition: border-color .16s ease, transform .16s ease;
}
.sw-card:hover { border-color: var(--sw-navy); transform: translateY(-2px); }

.sw-card__media { position: relative; height: 150px; background: var(--sw-sand); }
.sw-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sw-card__logo {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  width: 80px; height: 38px;
  border-radius: 6px; overflow: hidden;
  background: var(--sw-cream);
  border: 1px solid var(--sw-sand);
  box-shadow: 0 2px 8px rgba(12,28,44,.18);
}
.sw-card__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.sw-card__book {
  position: absolute; bottom: 10px; right: 10px; z-index: 3;
  background: var(--sw-navy); color: var(--sw-cream);
  font-weight: 600; font-size: 13px;
  padding: 7px 12px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(12,28,44,.18);
}
.sw-card__book:hover { background: var(--sw-teal); color: var(--sw-cream); }

.sw-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.sw-card__title { font-family: var(--sw-font-display); font-weight: 400; font-size: 21px; line-height: 1.1; margin: 0; overflow-wrap: anywhere; color: var(--sw-navy); }
.sw-card__body a:hover .sw-card__title { color: var(--sw-teal); }
.sw-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.sw-card__kind {
  font-size: 12px;
  font-weight: 600;
  background: #EFEADF;
  color: #3C4A54;
  padding: 6px 12px;
  border-radius: 999px;
}
.sw-card__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--sw-teal);
  background: transparent;
  color: var(--sw-teal);
  font: 600 12px var(--sw-font-body);
  padding: 6px 13px;
  border-radius: 999px;
  cursor: pointer;
}
.sw-card__map:hover { background: var(--sw-teal); color: var(--sw-cream); }
.sw-card__map:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; }

.sw-card__blurb {
  margin: 0; font-size: 13.5px; line-height: 1.45; color: var(--sw-ink-muted); flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* --------------------------------------------------------------------------
   Image tiles (regions, moods)
   -------------------------------------------------------------------------- */

.sw-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 250px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sw-teal);
}
.sw-tile--tall { min-height: 520px; }
.sw-tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sw-tile__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,28,44,0) 40%, rgba(12,28,44,.82) 100%);
}
.sw-tile__caption { position: relative; z-index: 2; padding: 24px; color: var(--sw-cream); }
.sw-tile__caption h3 { font-family: var(--sw-font-display); font-weight: 400; margin: 6px 0 4px; color: var(--sw-cream); }
.sw-tile__caption p  { margin: 0; color: var(--sw-on-navy); }

/* Mood tile: image band with an opaque caption panel over its lower edge */
.sw-mood {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--sw-radius-tile);
  overflow: hidden;
  background: var(--sw-navy);
}
.sw-mood__media { position: relative; height: 300px; flex: 0 0 300px; background: #0A5560; }
.sw-mood__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sw-mood__caption {
  position: relative; z-index: 2; flex: 1 1 auto;
  margin-top: -64px;
  padding: 16px 28px 18px;
  background: linear-gradient(180deg, rgba(14,110,120,.55) 0%, rgba(12,28,44,.94) 62%, rgba(12,28,44,.94) 100%);
  color: var(--sw-cream);
}
.sw-mood__caption h3 { font-family: var(--sw-font-display); font-weight: 400; font-size: 36px; margin: 0; color: var(--sw-cream); }
.sw-mood__caption p  { margin: 10px 0 0; font-size: 15px; color: #D6E3E9; }

/* Food & drink: five angled panels */
.sw-plates { position: relative; height: 300px; flex: 0 0 300px; background: #0A5560; overflow: hidden; }
.sw-plates__row { position: absolute; inset: 0; display: flex; }
.sw-plates__panel { position: relative; flex: 1 1 0; min-width: 0; background: #0A5560; box-sizing: border-box; }
.sw-plates__panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sw-plates__panel:not(:first-child) { margin-left: -51px; }
.sw-plates__panel:first-child { clip-path: polygon(0 0, 100% 0, calc(100% - 58px) 100%, 0 100%); padding-right: 58px; }
.sw-plates__panel:last-child  { clip-path: polygon(58px 0, 100% 0, 100% 100%, 0 100%); padding-left: 58px; }
.sw-plates__panel:not(:first-child):not(:last-child) { clip-path: polygon(58px 0, 100% 0, calc(100% - 58px) 100%, 0 100%); padding: 0 58px; }

/* --------------------------------------------------------------------------
   Navy panels (owners, vouchers, CTA)
   -------------------------------------------------------------------------- */

.sw-panel {
  background: var(--sw-navy);
  color: var(--sw-cream);
  border-radius: var(--sw-radius-band);
  padding: clamp(28px, 5vw, 56px);
}
.sw-panel .sw-panel__figure { position: relative; border-radius: 18px; overflow: hidden; height: clamp(220px, 32vw, 380px); }
.sw-panel .sw-panel__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sw-panel p { color: #B9CAD3; }

.sw-stat__value { font-family: var(--sw-font-display); font-size: 38px; line-height: 1; color: var(--sw-surf); }
.sw-stat__label { margin: 8px 0 0; font-size: 14.5px; color: #B9CAD3; }

/* --------------------------------------------------------------------------
   Filter bar
   -------------------------------------------------------------------------- */

.sw-filterbar {
  position: sticky;
  /* Sits flush under the sticky header — its real height is measured at
     runtime (see saltwater.collection.js) so no page shows through the seam. */
  top: var(--sw-header-h, clamp(66px, 14vw, 96px));
  z-index: 1020;
  background: var(--sw-cream);
  border-bottom: 1px solid var(--sw-sand-line);
  padding: 14px clamp(20px, 5vw, 64px);
}
/* The header is sticky at every width, so the filter bar sits under it. */
@media (max-width: 1040px) { .sw-filterbar { z-index: 1040; } }

/* Filter bar controls */
.sw-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--sw-navy);
  background: var(--sw-navy);
  color: var(--sw-cream);
  font: 600 13px var(--sw-font-body);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.sw-filter-toggle:hover { background: var(--sw-teal); border-color: var(--sw-teal); }
.sw-filter-toggle:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; }
.sw-filter-toggle__caret { display: inline-block; font-size: 11px; transition: transform .18s ease; }
.sw-filter-toggle__caret.is-open { transform: rotate(180deg); }

.sw-pill-quiet {
  border: 1.5px solid #D8D0C0;
  background: transparent;
  color: #3C4A54;
  font: 600 12px var(--sw-font-body);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.sw-pill-quiet:hover { border-color: var(--sw-navy); }
.sw-pill-quiet:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; }

/* Not Bootstrap's .d-flex — that carries !important and would defeat v-show. */
.sw-filter-panel { display: flex; flex-wrap: wrap; align-items: flex-start; }

@media (max-width: 1180px) { .sw-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
@media (max-width: 760px)  { .sw-feature-grid { grid-template-columns: 1fr !important; } }

.sw-filter-group { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.sw-filter-group__label {
  flex: 0 0 48px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sw-ink-soft);
  margin-right: 4px;
}
/* Both “All…” chips share a width so the rows line up under each other. */
.sw-chip--all { min-width: 108px; text-align: center; }
.sw-filter-summary { font-size: 13px; font-weight: 600; color: var(--sw-ink-soft); }

/* On narrow screens the inline STATE / TYPE label pushes the first chip out of
   line with the rows below it. Put the label on its own line instead. */
@media (max-width: 720px) {
  .sw-filter-group { gap: 8px 6px; }
  .sw-filter-group__label { flex: 0 0 100%; margin-bottom: 2px; }
  .sw-chip { padding-left: 14px; padding-right: 14px; font-size: 13.5px; }
  .sw-chip--all { min-width: 0; }
}

.sw-search {
  height: 44px;
  width: 280px;
  max-width: 100%;
  flex: 0 1 280px;
  box-sizing: border-box;
  border: 1.5px solid #D8D0C0;
  border-radius: 999px;
  background: #fff;
  padding: 0 18px;
  font: 500 14px var(--sw-font-body);
  color: var(--sw-navy);
}
.sw-search:focus { outline: 2px solid var(--sw-surf); outline-offset: 1px; border-color: var(--sw-navy); }

/* --------------------------------------------------------------------------
   Results grid + pinned map tile
   -------------------------------------------------------------------------- */

.sw-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  align-items: start;
}
.sw-results__grid {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.sw-results__map {
  grid-column: span 2;
  position: sticky;
  /* Offset is measured at runtime from the sticky filter bar (which changes
     height as the chip panel opens) — see saltwater.collection.js. */
  top: var(--sw-sticky-top, 210px);
  /* Two card rows plus the gap — the footprint it had as a 2×2 tile. Trimmed
     at runtime when a filter leaves a shorter cards column (see the page JS). */
  height: var(--sw-map-h, 664px);
  max-height: calc(100vh - var(--sw-sticky-top, 210px) - 28px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--sw-navy);
  border: 1px solid var(--sw-navy);
  border-radius: 20px;
  overflow: hidden;
}
.sw-results__map-head {
  padding: 18px 22px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.sw-results__map-head h3 {
  font-family: var(--sw-font-display);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.1;
  margin: 0;
  color: var(--sw-cream);
}
.sw-results__map-frame {
  flex: 1;
  min-height: 260px;
  position: relative;
  margin: 0 14px 14px;
  border-radius: 14px;
  overflow: hidden;
}
.sw-results__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 1099px) {
  /* One column: cards first, then the map — no stickiness on small screens. */
  .sw-results { grid-template-columns: minmax(0, 1fr); }
  .sw-results__grid { grid-column: auto; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
  .sw-results__map { grid-column: auto; position: static !important; height: auto !important; max-height: none; min-height: min(620px, 88vh); }
  /* The property popup inside the map needs room for its "Visit site" button. */
  .sw-results__map-frame { min-height: 420px; }
}

/* Outlined pill on a dark ground (Reset map) */
.sw-pill-surf {
  border: 1.5px solid var(--sw-surf);
  background: transparent;
  color: var(--sw-surf);
  font: 600 12px var(--sw-font-body);
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.sw-pill-surf:hover { background: var(--sw-surf); color: var(--sw-navy); }
.sw-pill-surf:focus-visible { outline: 2px solid var(--sw-surf-light); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.sw-footer {
  background: var(--sw-navy);
  color: var(--sw-on-navy-dim);
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 26px;
}
.sw-footer a { color: var(--sw-on-navy); }
.sw-footer a:hover { color: var(--sw-surf); }
.sw-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px 40px;
  align-items: start;
  padding: 40px 0 30px;
  border-bottom: 1px solid rgba(245,242,236,.14);
}
.sw-footer__logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  /* The supplied GIF is dark artwork on white: invert it and screen the
     remaining black out against the navy so it reads as a white mark. */
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
}
.sw-footer__heading {
  margin: 0;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sw-cream);
}
.sw-footer__social {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; width: 26px; height: 26px;
  color: var(--sw-cream);
}
.sw-footer__social:hover { color: var(--sw-surf); }
.sw-footer__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding-top: 22px;
}
.sw-footer__links { display: flex; align-items: center; flex-wrap: wrap; gap: 10px clamp(14px, 2.4vw, 28px); }
.sw-footer__links a { color: #FFFFFF; font-size: 13.5px; }

/* Back to top — sits on the cream ground just above the footer, mobile only,
   since the header is always in reach on desktop. */
.sw-totop-band { display: none; }
@media (max-width: 720px) {
  .sw-totop-band {
    display: flex;
    justify-content: center;
    background: var(--sw-cream);
    padding: 0 clamp(18px, 5vw, 32px) 28px;
  }
}

.sw-footer__top {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 22px;
  border: 1px solid rgba(245, 242, 236, .28);
  border-radius: 999px;
  background: transparent;
  color: var(--sw-cream);
  font: 500 14px var(--sw-font-body);
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease;
}
.sw-footer__top { border-color: var(--sw-sand-line); color: var(--sw-navy); }
.sw-footer__top:hover { background: rgba(14, 110, 120, .08); border-color: var(--sw-teal); color: var(--sw-teal); }
.sw-footer__top:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; }
.sw-footer__top-arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-top: 3px;
}

/* On narrow screens the footer stacks, so centre it and put the copyright
   last — the links read better above it. */
@media (max-width: 720px) {
  .sw-footer__grid { justify-items: center; text-align: center; }
  .sw-footer__grid > * { display: flex; flex-direction: column; align-items: center; }
  .sw-footer__grid p { max-width: 34ch; }
  .sw-footer__grid .d-flex { justify-content: center; }
  .sw-footer__bar { flex-direction: column-reverse; align-items: center; gap: 18px; text-align: center; }
  .sw-footer__links { justify-content: center; }
  .sw-footer__top { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.sw-hero-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  min-height: 560px;
}
/* Breadth band — the figures share one size so the four rows read as a set. */
.sw-band { padding-top: 44px; padding-bottom: 44px; }
.sw-band__grid { gap: 32px 28px; }
.sw-band__value { font-size: 52px; color: var(--sw-surf); line-height: 1.05; }
.sw-band__label { font-size: 15px; line-height: 1.4; color: #B9CAD3; text-wrap: pretty; }

@media (max-width: 720px) {
  .sw-band { padding-top: 28px; padding-bottom: 28px; }
  .sw-band__grid { gap: 20px; }
  .sw-band__value { font-size: 34px; }
  .sw-band__label { font-size: 14.5px; }
  .sw-band .d-flex.flex-column { gap: 2px !important; }
}

/* Stacked below ~840px (where the grid's own auto-fit drops to one column) the
   figure is a band under the form; above it, a full-height column. Each case
   owns its height, so there is no width where the tall value leaks into the
   stacked layout. */
.sw-hero-split__figure { position: relative; align-self: stretch; height: 260px; }
.sw-hero-split__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 841px) {
  .sw-hero-split__figure { height: auto; min-height: 640px; }
}

@media (max-width: 840px) {
  .sw-hero-split { min-height: 0; }
}

[v-cloak] { display: none; }

/* --------------------------------------------------------------------------
   Hero picker — one row on desktop: three fields share the space, Go hugs
   the right end. Divider rules instead of gaps keep it reading as one control.
   -------------------------------------------------------------------------- */

.sw-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: stretch;
  background: var(--sw-cream);
  color: var(--sw-navy);
  border-radius: 999px;
  padding: 6px 6px 6px 8px;
  max-width: 860px;
  box-shadow: 0 10px 30px rgba(9, 32, 36, .22);
}

.sw-picker__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 8px 6px 8px 16px;
  border-right: 1px solid var(--sw-sand-line);
}
.sw-picker__field:nth-of-type(3) { border-right: 0; }

.sw-picker__label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sw-ink-soft);
  margin-bottom: 2px;
}

.sw-picker__select {
  width: 100%;
  max-width: 100%;
  border: 0;
  background: transparent;
  font: 600 15px var(--sw-font-body);
  color: var(--sw-navy);
  padding: 0 18px 0 0;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%230C1C2C' d='M6 8 0 1.4 1.4 0 6 4.6 10.6 0 12 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 10px;
  text-overflow: ellipsis;
}
.sw-picker__select:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 4px; border-radius: 4px; }

/* ------------------------------------------------------------ select popups

   The open list of a native <select> is drawn by the operating system, so it
   can't be themed the way the closed control is. Browsers that support the
   customisable select (Chrome 135+) opt in below and get the site's own
   surface, type and teal highlight; everywhere else the OS list still appears,
   which is the correct, accessible fallback.
   -------------------------------------------------------------------------- */

select { accent-color: var(--sw-teal); }

@supports (appearance: base-select) {
  select.sw-input,
  .sw-picker__select {
    appearance: base-select;
  }

  select.sw-input::picker(select),
  .sw-picker__select::picker(select) {
    appearance: base-select;
    border: 1px solid var(--sw-sand-line);
    border-radius: 14px;
    background: #FFFFFF;
    box-shadow: 0 18px 44px rgba(12, 28, 44, .16);
    padding: 6px;
    margin-top: 6px;
    max-height: 320px;
    overflow-y: auto;
  }

  select.sw-input option,
  .sw-picker__select option {
    font: 500 15px var(--sw-font-body);
    color: var(--sw-navy);
    padding: 10px 14px;
    border-radius: 9px;
    cursor: pointer;
  }
  select.sw-input option:hover,
  .sw-picker__select option:hover {
    background: rgba(14, 110, 120, .08);
  }
  select.sw-input option:checked,
  .sw-picker__select option:checked {
    background: var(--sw-teal);
    color: var(--sw-cream);
    font-weight: 600;
  }
  select.sw-input option::checkmark,
  .sw-picker__select option::checkmark { display: none; }

  /* base-select draws its own arrow; we already paint one as a background. */
  select.sw-input::picker-icon,
  .sw-picker__select::picker-icon { display: none; }
}

.sw-picker__go {
  border: 0;
  border-radius: 999px;
  background: var(--sw-navy);
  color: var(--sw-cream);
  font: 600 15px var(--sw-font-body);
  padding: 0 34px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color .16s ease;
}
.sw-picker__go:hover { background: var(--sw-teal); }
.sw-picker__go:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; }

@media (max-width: 700px) {
  .sw-picker { grid-template-columns: 1fr; border-radius: 18px; padding: 8px; }
  .sw-picker__field { border-right: 0; border-bottom: 1px solid var(--sw-sand-line); padding: 10px 14px; }
  .sw-picker__go { margin: 8px 0 0; padding: 14px 34px; }
}


/* --------------------------------------------------------------------------
   Contact form — native fields on the sand ground, no boxes around groups.
   -------------------------------------------------------------------------- */

.sw-form { display: grid; gap: 18px; max-width: 620px; }
.sw-form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 18px; }

.sw-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.sw-field__label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sw-ink-soft);
}
.sw-input {
  width: 100%;
  border: 1.5px solid var(--sw-sand-line);
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--sw-navy);
  font: 400 15.5px var(--sw-font-body);
  padding: 13px 16px;
  transition: border-color .16s ease;
}
.sw-input::placeholder { color: var(--sw-ink-soft); }
.sw-input:hover { border-color: var(--sw-navy); }
.sw-input:focus-visible { outline: 2px solid var(--sw-surf); outline-offset: 2px; border-color: var(--sw-navy); }
textarea.sw-input { resize: vertical; min-height: 148px; line-height: 1.5; }
select.sw-input {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%230C1C2C' d='M6 8 0 1.4 1.4 0 6 4.6 10.6 0 12 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
}
.sw-field__error { font-size: 13px; color: var(--sw-coral); }
.sw-input.is-invalid { border-color: var(--sw-coral); }

.sw-form__note { font-size: 13.5px; color: var(--sw-ink-muted); max-width: 52ch; }

.sw-sent {
  border-radius: var(--sw-radius-card);
  background: var(--sw-navy);
  color: var(--sw-cream);
  padding: clamp(26px, 4vw, 44px);
  max-width: 620px;
}
.sw-sent p { color: #B9CAD3; }

/* Contact detail list — plain type, no cards */
.sw-detail { display: flex; flex-direction: column; gap: 6px; }
.sw-detail__label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--sw-teal);
}
.sw-detail__value { font-size: 16.5px; line-height: 1.5; color: var(--sw-navy); margin: 0; overflow-wrap: anywhere; }


/* --------------------------------------------------------------------------
   Long-form policy copy — a single readable measure, no boxes.
   -------------------------------------------------------------------------- */

.sw-prose { max-width: 68ch; }
.sw-prose h2 {
  font-family: var(--sw-font-display);
  /* Cleared by the sticky header when an index link jumps here. */
  scroll-margin-top: 160px;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
  color: var(--sw-navy);
  margin: clamp(38px, 5vw, 56px) 0 14px;
}
.sw-prose h2:first-child { margin-top: 0; }
.sw-prose h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--sw-navy);
  margin: 26px 0 8px;
}
.sw-prose p { font-size: 16.5px; line-height: 1.62; color: var(--sw-ink-muted); margin: 0 0 14px; text-wrap: pretty; }
.sw-prose ul { margin: 0 0 16px; padding-left: 20px; }
.sw-prose li { font-size: 16.5px; line-height: 1.6; color: var(--sw-ink-muted); margin-bottom: 8px; }
.sw-prose a { color: var(--sw-teal); font-weight: 500; }
.sw-prose a:hover { color: var(--sw-navy); }

.sw-index { display: flex; flex-direction: column; gap: 10px; }
.sw-index a { font-size: 14.5px; line-height: 1.4; color: var(--sw-ink-muted); }
.sw-index a:hover { color: var(--sw-teal); }


/* --------------------------------------------------------------------------
   Embedded form (Jotform) — the iframe sits on the cream ground with no box.
   The form's own look is skinned inside Jotform via assets/jotform-saltwater.css.
   -------------------------------------------------------------------------- */

/* Honeypot wrapper — kept out of the layout and out of the a11y tree, but not
   display:none, which some bots detect and skip. */
.sw-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sw-embed { width: 100%; max-width: 780px; margin-inline: auto; }
/* No min-height: the iframe carries the form's own reported height as its
   attribute, and Jotform's handler overrides it inline once the form measures
   itself. A min-height here would beat that inline height. */
.sw-embed iframe {
  width: 100%;
  border: 0;
  color-scheme: light;
  display: block;
  background: transparent;
}
.sw-embed__fallback { font-size: 14px; color: var(--sw-ink-muted); margin-top: 12px; }
