/* ==========================================================================
   Blacktop Family Fleet — styles
   Mobile-first: the base rules are the phone layout, and the @media blocks
   add the tablet and desktop layouts. Colours and fonts are set once in
   :root below, so a colour change only needs to happen there.
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  color-scheme: dark;

  --ink: #0b0b0c;          /* near-black ground */
  --ink-2: #111113;        /* alternate section ground */
  --ink-3: #17171a;        /* cards and inputs */
  --ink-4: #202024;        /* image placeholders */
  --line: #27282c;         /* hairlines */
  --line-2: #3b3d43;       /* stronger hairlines, input borders */

  --text: #f2f2f0;         /* off-white text */
  --text-2: #b8bbc1;       /* secondary text */
  --text-3: #8f939a;       /* labels and small print */
  --silver: #c9ccd1;       /* silver accent */

  --accent: #cfa86b;       /* warm accent: calls to action only */
  --accent-hover: #ddb983;
  --accent-ink: #0b0b0c;
  --error: #f0a08f;

  --serif: "Cinzel", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --gutter: 20px;
  --maxw: 1200px;
  --header-h: 64px;
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
@media (min-width: 768px) {
  :root { --gutter: 32px; --header-h: 76px; }
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-underline-offset: .22em; text-decoration-thickness: 1px; }
p, figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.2; text-wrap: balance; }
p { text-wrap: pretty; }
table { width: 100%; border-collapse: collapse; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }
::selection { background: var(--silver); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 100;
  padding: 10px 16px; border-radius: var(--radius);
  background: var(--text); color: var(--ink); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- 3. Type ---------- */
h1, h2 { font-family: var(--serif); letter-spacing: .01em; }
h1 { font-size: clamp(2rem, 1.3rem + 3.1vw, 3.6rem); line-height: 1.14; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.6rem); line-height: 1.18; }
h3 { font-size: 1.125rem; font-weight: 600; }

.eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-bottom: 18px;
  color: var(--silver);
  font-size: .75rem; font-weight: 500; letter-spacing: .22em; line-height: 1.4;
  text-transform: uppercase;
}
.lede { max-width: 62ch; color: var(--text-2); font-size: 1.0625rem; }
@media (min-width: 768px) { .lede { font-size: 1.1875rem; } }
.prose > * + * { margin-top: 1.1em; }

.tag {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border: 1px solid rgba(201, 204, 209, .45); border-radius: 999px;
  color: var(--silver);
  font-family: var(--sans); font-size: .6875rem; font-weight: 500; letter-spacing: .14em; line-height: 1.4;
  text-transform: uppercase; white-space: nowrap;
}

/* ---------- 4. Wordmark & monogram ---------- */
/* The brushed-steel gradient is the only gradient on the site. */
.steel { color: var(--silver); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .steel {
    background-image: linear-gradient(180deg, #fbfbfc 0%, #dcdfe3 24%, #a3a8af 47%, #eceef0 60%, #aeb3ba 80%, #d8dbdf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.wordmark {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  font-family: var(--serif); line-height: 1; text-decoration: none;
}
.wordmark__top { display: block; font-size: 1.2rem; font-weight: 700; letter-spacing: .09em; }
.wordmark__bottom { display: block; margin-top: 5px; font-size: .56rem; font-weight: 600; letter-spacing: .47em; }
.wordmark--lg .wordmark__top { font-size: 1.6rem; }
.wordmark--lg .wordmark__bottom { font-size: .74rem; margin-top: 7px; }
.monogram { width: 72px; height: 72px; }

/* Logo + wordmark lockup (header and footer) */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand picture { flex: none; }
.brand__mark { width: 40px; height: 40px; }
.brand--lg { gap: 16px; }
.brand--lg .brand__mark { width: 56px; height: 56px; }

/* ---------- 5. Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 24px;
  border: 1px solid transparent; border-radius: var(--radius);
  background: transparent;
  font-family: var(--sans); font-size: .9375rem; font-weight: 600; letter-spacing: .02em; line-height: 1.2;
  text-align: center; text-decoration: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--silver { background: var(--silver); color: var(--ink); }
.btn--silver:hover { background: #dfe1e4; }
.btn--ghost { border-color: rgba(201, 204, 209, .5); color: var(--text); }
.btn--ghost:hover { border-color: var(--silver); background: rgba(201, 204, 209, .08); }
.btn--sm { min-height: 40px; padding: 9px 16px; font-size: .875rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(201, 204, 209, .4);
  color: var(--text); font-weight: 500; text-decoration: none;
  transition: border-color .2s var(--ease);
}
.link-arrow:hover { border-color: var(--text); }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- 6. Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: calc(820px + var(--gutter) * 2); }
.section { padding-block: 80px; }
.section--raised { background: var(--ink-2); }
@media (min-width: 768px) { .section { padding-block: 112px; } }
@media (min-width: 1200px) { .section { padding-block: 136px; } }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head .lede { margin-top: 20px; }
@media (min-width: 768px) { .section-head { margin-bottom: 60px; } }
.section-head--row {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 16px 32px; max-width: none;
}

/* ---------- 7. Header & navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 11, 12, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .site-header {
    background: rgba(11, 11, 12, .8);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    backdrop-filter: saturate(140%) blur(12px);
  }
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: var(--header-h); }
.site-nav { display: none; }
.header-quick { display: flex; align-items: center; gap: 2px; }
.header-quick__link {
  padding: 10px 12px;
  color: var(--text); font-size: .9375rem; font-weight: 500; text-decoration: none;
}
.header-quick__link[aria-current] { text-decoration: underline; }
.header-quick .btn { margin-left: 2px; }
.menu-toggle {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; margin-right: -10px; margin-left: 4px;
  border: 0; background: none; color: var(--text);
}
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 39;
  overflow-y: auto;
  padding: 8px var(--gutter) 40px;
  background: var(--ink);
}
.mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.mobile-menu li a {
  display: block; padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.3rem; text-decoration: none;
}
.mobile-menu__cta { margin-top: 28px; }
html.menu-open { overflow: hidden; }

/* Phones: keep logo, wordmark, "Boats", "Contact" and the menu button on one row */
.site-header .brand { flex-shrink: 0; }
@media (max-width: 419px) {
  .site-header__inner { gap: 8px; }
  .site-header .brand { gap: 8px; }
  .site-header .brand__mark { width: 30px; height: 30px; }
  .site-header .wordmark__top { font-size: .95rem; }
  .site-header .wordmark__bottom { font-size: .45rem; margin-top: 4px; }
  .header-quick__link { padding-inline: 7px; }
  .header-quick .btn--sm { padding-inline: 11px; }
}
@media (max-width: 359px) {
  :root { --gutter: 14px; }
  .site-header .brand { gap: 6px; }
  .site-header .brand__mark { width: 26px; height: 26px; }
  .site-header .wordmark__top { font-size: .84rem; }
  .site-header .wordmark__bottom { font-size: .4rem; }
  .header-quick__link { padding-inline: 5px; font-size: .875rem; }
  .header-quick .btn--sm { padding-inline: 9px; font-size: .8125rem; }
  .menu-toggle { width: 40px; }
}
@media (min-width: 1040px) {
  .site-nav { display: block; }
  .header-quick, .mobile-menu { display: none !important; }
  .site-nav ul { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
  .site-nav a:not(.btn) {
    position: relative; padding: 8px 0;
    color: var(--text-2); font-size: .9375rem; font-weight: 500; text-decoration: none;
    transition: color .2s var(--ease);
  }
  .site-nav a:not(.btn):hover, .site-nav a[aria-current] { color: var(--text); }
  .site-nav a[aria-current]::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--silver);
  }
  .site-nav .btn { margin-left: 4px; }
  .wordmark__top { font-size: 1.3rem; }
  .wordmark__bottom { font-size: .6rem; }
}

/* ---------- 8. Home: hero ---------- */
.hero {
  position: relative; isolation: isolate;
  display: flex; align-items: flex-end;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding-block: 40px 36px;
  overflow: hidden;
}
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media { z-index: -2; }
.hero__media img { object-fit: cover; object-position: 68% 50%; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(11, 11, 12, .58); }
.hero h1 { max-width: 16ch; }
.hero__sub { max-width: 56ch; margin-top: 18px; color: #e3e4e6; font-size: 1.0625rem; line-height: 1.6; }
.hero__ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
@media (min-width: 560px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
}
@media (min-width: 768px) {
  .hero { align-items: center; min-height: min(88vh, 860px); padding-block: 96px; }
  .hero::before { background: rgba(11, 11, 12, .5); }
  .hero__sub { margin-top: 24px; font-size: 1.1875rem; }
  .hero__ctas { margin-top: 36px; }
}

/* ---------- 9. Home: trust strip ---------- */
.trust-strip { border-bottom: 1px solid var(--line); }
.trust-strip__list { display: grid; margin: 0 auto; padding-block: 6px; list-style: none; }
.trust-strip__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 0;
  font-size: .9375rem; font-weight: 500; line-height: 1.45;
}
.trust-strip__list li + li { border-top: 1px solid var(--line); }
.trust-strip__list li::before {
  content: ""; flex: none; width: 7px; height: 7px;
  background: var(--silver); transform: rotate(45deg);
}
@media (min-width: 900px) {
  .trust-strip__list { grid-template-columns: repeat(3, 1fr); padding-block: 0; }
  .trust-strip__list li { justify-content: center; padding: 26px 24px; }
  .trust-strip__list li + li { border-top: 0; border-left: 1px solid var(--line); }
}

/* ---------- 10. Home: why / features ---------- */
.features { display: grid; gap: 40px; }
@media (min-width: 900px) { .features { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.feature { padding-top: 28px; border-top: 1px solid var(--line-2); }
.feature__icon { width: 34px; height: 34px; margin-bottom: 22px; color: var(--silver); }
.feature h3 { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 1.1875rem; }
.feature p { color: var(--text-2); }

/* ---------- 11. Home: first impressions ---------- */
.compare { display: grid; gap: 24px; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; gap: 32px; } }
.compare__item { overflow: hidden; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.compare__item--after { border-color: rgba(201, 204, 209, .38); }
.compare__media { position: relative; aspect-ratio: 4 / 3; background: var(--ink-4); }
.compare__media img { width: 100%; height: 100%; object-fit: cover; }
.compare__media .tag { position: absolute; top: 14px; left: 14px; background: rgba(11, 11, 12, .8); }
.compare__body { padding: 24px 24px 28px; }
.compare__body h3 { margin-bottom: 10px; font-size: 1.1875rem; }
.compare__body p { color: var(--text-2); }

/* ---------- 12. Boat cards ---------- */
.card-grid { display: grid; gap: 28px; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.card {
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: border-color .25s var(--ease);
}
.card:hover { border-color: var(--line-2); }
.card:focus-within { outline: 2px solid var(--text); outline-offset: 3px; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-4); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.03); }
.card__ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px;
  background: rgba(11, 11, 12, .86);
  border: 1px solid rgba(201, 204, 209, .5); border-radius: 999px;
  font-size: .6875rem; font-weight: 600; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase;
}
.card__ribbon--sold { background: var(--text); border-color: var(--text); color: var(--ink); }
.card__body { display: flex; flex: 1; flex-direction: column; gap: 6px; padding: 20px 22px 22px; }
.card__title { font-size: 1.125rem; font-weight: 600; line-height: 1.35; }
.card__link { text-decoration: none; }
.card__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card__link:focus-visible { outline: none; }
.card__meta { color: var(--text-2); font-size: .875rem; line-height: 1.5; }
.card__hook { color: var(--text-2); font-size: .9375rem; line-height: 1.55; }
.card__weeks { color: var(--silver); font-size: .875rem; font-weight: 500; }
.card__hook { margin-bottom: 12px; }
.card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.card__price { font-size: 1.0625rem; font-weight: 600; letter-spacing: .01em; }
.card__more { display: inline-flex; align-items: center; gap: 6px; color: var(--text-2); font-size: .875rem; }
.card__more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .card__more svg { transform: translateX(3px); }
.card__quote {
  position: relative; z-index: 2;
  margin-top: 12px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.card__quote p { color: var(--text); font-size: .9375rem; line-height: 1.6; }
.card__quote footer { margin-top: 10px; color: var(--text-3); font-size: .8125rem; }

/* ---------- 13. Home: CTA band ---------- */
.cta-band { background: var(--ink-2); border-block: 1px solid var(--line); }
.cta-band__inner { display: grid; justify-items: start; gap: 28px; padding-block: 64px; }
.cta-band__text { max-width: 30ch; font-family: var(--serif); font-size: clamp(1.35rem, 1.1rem + 1.3vw, 2.05rem); line-height: 1.32; }
@media (min-width: 900px) {
  .cta-band__inner { grid-template-columns: 1fr auto; align-items: center; gap: 48px; padding-block: 88px; }
}

/* ---------- 14. Services ---------- */
.tiers { display: grid; gap: 20px; }
@media (min-width: 900px) { .tiers { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.tier {
  display: flex; flex-direction: column;
  padding: 30px 26px 32px;
  background: var(--ink-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.tier__num { margin-bottom: 26px; color: var(--silver); font-family: var(--serif); font-size: .9375rem; font-weight: 600; letter-spacing: .06em; }
.tier h3 { margin-bottom: 12px; font-size: 1.25rem; }
.tier p { color: var(--text-2); }
.callout {
  max-width: 860px; margin-top: 40px; padding: 22px 26px;
  background: rgba(201, 204, 209, .05);
  border-left: 2px solid var(--silver);
}
.services-foot { display: grid; gap: 40px; margin-top: 56px; align-items: start; }
.services-foot h3 { margin-bottom: 18px; }
@media (min-width: 900px) { .services-foot { grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: end; } }

.checklist { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 32px; color: var(--text-2); }
.checklist li::before {
  content: ""; position: absolute; left: 3px; top: .52em;
  width: 13px; height: 7px;
  border-left: 1.5px solid var(--silver); border-bottom: 1.5px solid var(--silver);
  transform: rotate(-45deg);
}

/* ---------- 15. How it works ---------- */
.steps { max-width: 900px; margin: 0; padding: 0; list-style: none; }
.step { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 0 20px; padding-bottom: 44px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: 30px; top: 68px; bottom: 8px;
  width: 1px; background: var(--line-2);
}
.step:last-child::before { display: none; }
.step__num {
  display: grid; place-items: center;
  width: 60px; height: 60px;
  border: 1px solid rgba(201, 204, 209, .45); border-radius: 50%;
  color: var(--silver); font-family: var(--serif); font-size: 1.1rem; font-weight: 600; letter-spacing: .04em;
}
.step h3 { margin: 14px 0 10px; font-size: 1.25rem; }
.step p { max-width: 62ch; color: var(--text-2); font-size: 1.0625rem; }
@media (min-width: 768px) {
  .step { grid-template-columns: 84px 1fr; gap: 0 36px; padding-bottom: 56px; }
  .step::before { left: 42px; top: 96px; }
  .step__num { width: 84px; height: 84px; font-size: 1.5rem; }
  .step h3 { margin-top: 22px; font-size: 1.375rem; }
}

/* ---------- 16. Trusted network ---------- */
.network-table { max-width: 980px; border-top: 1px solid var(--line-2); }
.network-table th, .network-table td { padding: 18px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.network-table thead th {
  padding-block: 14px;
  color: var(--text-3); font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
}
.network-table tbody th { width: 36%; padding-right: 24px; font-weight: 600; }
.network-table td { color: var(--text-2); }
@media (max-width: 599px) {
  .network-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .network-table tbody tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .network-table tbody th, .network-table tbody td { display: block; width: auto; padding: 0; border: 0; }
  .network-table tbody td { margin-top: 4px; }
}

/* ---------- 17. About ---------- */
.about { display: grid; gap: 44px; align-items: start; }
.about__portrait { max-width: 460px; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3); border-radius: var(--radius-lg); }
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about__body { max-width: 760px; }
.about__body .prose { margin-top: 26px; color: var(--text-2); font-size: 1.0625rem; }
.about__body .checklist { margin-top: 32px; }
.about__body .checklist li { color: var(--text); }
@media (min-width: 900px) {
  .about:has(.about__portrait:not([hidden])) { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; }
}

/* ---------- 18. FAQ ---------- */
.faq { display: grid; gap: 56px; }
.faq-group { display: grid; gap: 18px; }
.faq-group__title { color: var(--silver); font-size: .8125rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
@media (min-width: 900px) {
  .faq-group { grid-template-columns: 220px minmax(0, 1fr); gap: 48px; }
  .faq-group__title { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; padding-top: 22px; }
}
.faq-list { border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 20px 0;
  font-size: 1.0625rem; font-weight: 600; line-height: 1.45;
  list-style: none; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 16px; height: 16px; margin-top: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c9ccd1' stroke-width='1.4'%3E%3Cpath d='M8 2v12M2 8h12'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c9ccd1' stroke-width='1.4'%3E%3Cpath d='M2 8h12'/%3E%3C/svg%3E");
}
.faq-item summary:hover { color: var(--silver); }
.faq-answer { max-width: 68ch; padding-bottom: 22px; color: var(--text-2); }

/* ---------- 19. Contact ---------- */
.contact { display: grid; gap: 48px; }
@media (min-width: 960px) { .contact { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; align-items: start; } }
.contact-details { margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-details li { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-details__label { padding-top: 3px; color: var(--text-3); font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; }
.contact-details a { overflow-wrap: anywhere; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

/* ---------- 20. Forms ---------- */
.form { display: grid; gap: 20px; }
.form-card { padding: 28px 22px; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); }
@media (min-width: 768px) { .form-card { padding: 40px; } }
.form-card__title { margin-bottom: 26px; font-size: 1.5rem; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; align-content: start; }
.field label { font-size: .875rem; font-weight: 500; }
.field__opt { color: var(--text-3); font-weight: 400; }
.input {
  width: 100%; min-height: 50px;
  padding: 12px 14px;
  background: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: var(--radius);
  color: var(--text); font-size: 1rem; line-height: 1.4;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input::placeholder { color: #80848b; }
.input:hover { border-color: #52555c; }
.input:focus { outline: none; border-color: var(--silver); box-shadow: 0 0 0 3px rgba(201, 204, 209, .22); }
textarea.input { min-height: 136px; resize: vertical; }
select.input {
  appearance: none; -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c9ccd1' stroke-width='1.6'%3E%3Cpath d='M3.5 6l4.5 4.5L12.5 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
select.input option { background: var(--ink-3); color: var(--text); }
.input[readonly] { border-style: dashed; color: var(--text-2); }
.input[type="file"] { padding: 11px 12px; }
.input[aria-invalid="true"] { border-color: var(--error); }
.field__error { color: var(--error); font-size: .8125rem; }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: .9375rem; cursor: pointer; }
.check input { flex: none; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); }
.form__actions { display: grid; gap: 12px; margin-top: 4px; }
@media (min-width: 520px) { .form__actions--split { grid-template-columns: 1fr 1fr; } }
.form__note { color: var(--text-2); font-size: .9375rem; }
.form__trust { color: var(--text-3); font-size: .8125rem; line-height: 1.6; }
.form__trust a { color: var(--text-2); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- 21. Footer ---------- */
.site-footer { padding-top: 64px; background: var(--ink); border-top: 1px solid var(--line); font-size: .9375rem; }
.site-footer__grid { display: grid; gap: 40px; padding-bottom: 48px; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; } }
.site-footer__mission { max-width: 34ch; margin-top: 20px; color: var(--text-2); }
.site-footer__note { margin-top: 14px; color: var(--text-3); font-size: .875rem; }
.footer-heading {
  margin-bottom: 16px;
  color: var(--text-3); font-family: var(--sans); font-size: .75rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
}
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: var(--text-2); overflow-wrap: anywhere; text-decoration: none; }
.footer-links a:hover { color: var(--text); text-decoration: underline; }
.footer-links .muted { color: var(--text-3); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-block: 24px 32px;
  border-top: 1px solid var(--line);
  color: var(--text-3); font-size: .8125rem;
}
.site-footer__bottom a { color: var(--text-2); }

/* ---------- 22. Inner-page header ---------- */
.page-hero { padding-block: 52px 36px; }
@media (min-width: 768px) { .page-hero { padding-block: 84px 48px; } }
.page-hero .lede { margin-top: 18px; }

/* ---------- 23. Boats page ---------- */
.tabs {
  display: flex; gap: 4px;
  overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid var(--line);
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  position: relative; flex: none;
  padding: 14px 14px;
  border: 0; background: none;
  color: var(--text-2); font-size: .9375rem; font-weight: 600; letter-spacing: .01em; white-space: nowrap;
  transition: color .2s var(--ease);
}
.tab:hover { color: var(--text); }
.tab[aria-selected="true"] { color: var(--text); }
.tab[aria-selected="true"]::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: -1px;
  height: 2px; background: var(--text);
}
.tab:focus-visible { outline-offset: -4px; }
.tab__count { margin-left: 6px; color: var(--text-3); font-weight: 500; font-variant-numeric: tabular-nums; }
@media (min-width: 768px) { .tab { padding: 16px 22px; font-size: 1rem; } }
.tab-panel { padding-block: 36px 88px; }
.tab-panel:focus-visible { outline: none; }
@media (min-width: 768px) { .tab-panel { padding-block: 48px 120px; } }

.toolbar { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 24px; margin-bottom: 20px; }
.pills { display: none; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 9px 16px;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: transparent;
  color: var(--text-2); font-size: .875rem; font-weight: 500; line-height: 1.3;
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.pill:hover { border-color: var(--silver); color: var(--text); }
.pill[aria-pressed="true"] { background: var(--text); border-color: var(--text); color: var(--ink); }
.toolbar__selects { display: flex; flex-wrap: wrap; gap: 12px; width: 100%; }
.toolbar__selects .field { flex: 1 1 140px; min-width: 0; }
.field--inline label { color: var(--text-3); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
@media (min-width: 768px) {
  .pills { display: flex; }
  .cat-field { display: none !important; }
  .toolbar__selects { width: auto; flex-wrap: nowrap; }
  .toolbar__selects .field { flex: 0 0 230px; }
}
.results-count { margin-bottom: 20px; color: var(--text-3); font-size: .875rem; }
.empty-state { padding: 44px 24px; border: 1px dashed var(--line-2); border-radius: var(--radius-lg); text-align: center; }
.empty-state p { max-width: 50ch; margin-inline: auto; color: var(--text-2); font-size: 1.0625rem; }
.empty-state .link-arrow { margin-top: 18px; }
.load-more { display: grid; justify-items: center; gap: 12px; margin-top: 44px; }
.load-more__status { color: var(--text-3); font-size: .875rem; }
.buyer-wanted { display: grid; gap: 32px; margin-top: 80px; padding-top: 64px; border-top: 1px solid var(--line); }
.buyer-wanted .lede { margin-top: 16px; }
@media (min-width: 960px) { .buyer-wanted { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; } }
.split { display: grid; gap: 40px; }
.split .lede { margin-top: 16px; }
@media (min-width: 960px) { .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; align-items: start; } }
.notice { padding: 20px 22px; border: 1px solid var(--error); border-radius: var(--radius); color: var(--text); }

/* ---------- 24. Boat detail page ---------- */
.breadcrumb { padding-top: 18px; font-size: .875rem; }
.breadcrumb a { display: inline-flex; align-items: center; gap: 8px; padding: 6px 0; color: var(--text-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb svg { width: 16px; height: 16px; }
.listing-head { display: grid; gap: 12px; padding-block: 14px 22px; }
.listing-head .eyebrow { margin-bottom: 12px; }
.listing-head h1 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem); }
.listing-facts { display: flex; flex-wrap: wrap; margin: 12px 0 0; padding: 0; list-style: none; color: var(--text-2); font-size: .9375rem; }
.listing-facts li + li::before { content: "·"; margin: 0 10px; color: var(--text-3); }
.listing-head__price { font-size: 1.5rem; font-weight: 600; letter-spacing: .01em; }
.listing-layout { display: grid; gap: 22px; }
.listing-cta { display: grid; gap: 12px; align-content: start; }
.listing-cta__summary { display: none; }
.listing-cta__label { color: var(--text-3); font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; }
.listing-cta__price { margin: 4px 0 18px; font-size: 1.75rem; font-weight: 600; line-height: 1.2; }
.listing-cta__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; margin-bottom: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.listing-cta__facts dt { color: var(--text-3); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.listing-cta__facts dd { font-size: .9375rem; line-height: 1.45; }
.listing-cta__facts .wide { grid-column: 1 / -1; }
.listing-cta__note { color: var(--text-3); font-size: .8125rem; line-height: 1.5; text-align: center; }
.listing-cta__sold { color: var(--text-2); }
.listing-share {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; min-height: 40px; padding: 6px;
  border: 0; background: none;
  color: var(--text-2); font-size: .875rem; font-weight: 500;
  transition: color .2s var(--ease);
}
.listing-share:hover { color: var(--text); }
.listing-share svg { width: 16px; height: 16px; }
@media (min-width: 1024px) {
  .listing-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 0 56px; }
  .listing-gallery { grid-column: 1; grid-row: 1; }
  .listing-main { grid-column: 1; grid-row: 2; }
  .listing-cta {
    grid-column: 2; grid-row: 1 / span 2;
    position: sticky; top: calc(var(--header-h) + 24px); align-self: start;
    padding: 28px;
    background: var(--ink-3);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
  }
  .listing-cta__summary { display: block; }
  .listing-head__price { display: none; }
}
.listing-section { padding-top: 52px; }
.listing-section h2 { margin-bottom: 22px; font-size: 1.5rem; }
.listing-hook { margin-bottom: 22px; font-size: 1.25rem; font-weight: 500; line-height: 1.45; }
.listing-main .prose { color: var(--text-2); font-size: 1.0625rem; }

/* Gallery */
.gallery { position: relative; }
.gallery__viewport { position: relative; overflow: hidden; background: var(--ink-3); border-radius: var(--radius-lg); }
.gallery__track {
  display: flex;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
  padding: 0; border: 0;
  background: var(--ink-4);
  scroll-snap-align: center; scroll-snap-stop: always;
  cursor: zoom-in;
}
.gallery__slide:focus-visible { outline-offset: -4px; }
.gallery__slide picture, .gallery__slide img { width: 100%; height: 100%; }
.gallery__slide img { object-fit: cover; }
@media (min-width: 768px) { .gallery__slide { aspect-ratio: 3 / 2; } }
.gallery__btn, .lightbox__nav {
  position: absolute; top: 50%; z-index: 2;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(242, 242, 240, .35); border-radius: 50%;
  background: rgba(11, 11, 12, .62);
  color: var(--text);
  transform: translateY(-50%);
  transition: background-color .2s var(--ease), opacity .2s var(--ease);
}
.gallery__btn:hover, .lightbox__nav:hover { background: rgba(11, 11, 12, .85); }
.gallery__btn svg, .lightbox__nav svg { width: 20px; height: 20px; }
.gallery__btn[disabled], .lightbox__nav[disabled] { opacity: 0; pointer-events: none; }
.gallery__btn--prev { left: 12px; }
.gallery__btn--next { right: 12px; }
.gallery__count {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  padding: 3px 10px;
  background: rgba(11, 11, 12, .72); border-radius: 999px;
  font-size: .8125rem; font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.gallery__thumbs { display: none; }
@media (min-width: 768px) {
  .gallery__thumbs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; margin-top: 10px; }
  .gallery__thumb {
    aspect-ratio: 3 / 2; padding: 0; overflow: hidden;
    background: var(--ink-3);
    border: 1px solid transparent; border-radius: var(--radius);
    opacity: .55; transition: opacity .2s var(--ease), border-color .2s var(--ease);
  }
  .gallery__thumb:hover { opacity: .85; }
  .gallery__thumb[aria-current="true"] { opacity: 1; border-color: var(--silver); }
  .gallery__thumb picture, .gallery__thumb img { width: 100%; height: 100%; }
  .gallery__thumb img { object-fit: cover; }
}

/* Lightbox */
.lightbox {
  width: 100vw; max-width: none; height: 100vh; height: 100dvh; max-height: none;
  margin: 0; padding: 0; border: 0;
  background: rgba(8, 8, 9, .97); color: var(--text);
}
.lightbox[open] { display: grid; grid-template-rows: auto minmax(0, 1fr); }
.lightbox::backdrop { background: rgba(0, 0, 0, .85); }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 12px 10px 20px; }
.lightbox__count { color: var(--text-2); font-size: .875rem; font-variant-numeric: tabular-nums; }
.lightbox__close {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 0; border-radius: 50%; background: transparent; color: var(--text);
}
.lightbox__close:hover { background: rgba(242, 242, 240, .08); }
.lightbox__close svg { width: 24px; height: 24px; }
.lightbox__stage { display: grid; place-items: center; min-height: 0; padding: 0 12px 20px; touch-action: pan-y; }
.lightbox__stage picture { display: contents; }
.lightbox__stage img { max-width: 100%; max-height: 100%; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }
@media (min-width: 768px) {
  .lightbox__stage { padding: 0 80px 32px; }
  .lightbox__nav--prev { left: 20px; }
  .lightbox__nav--next { right: 20px; }
}

/* Video */
.video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-3); border-radius: var(--radius-lg); }
.video__facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: var(--ink-4); }
.video__facade img { width: 100%; height: 100%; object-fit: cover; }
.video__facade::after { content: ""; position: absolute; inset: 0; background: rgba(11, 11, 12, .28); transition: background-color .2s var(--ease); }
.video__facade:hover::after { background: rgba(11, 11, 12, .12); }
.video__facade:focus-visible { outline-offset: -4px; }
.video__play {
  position: absolute; left: 50%; top: 50%; z-index: 1;
  display: grid; place-items: center;
  width: 76px; height: 76px;
  border: 1px solid rgba(242, 242, 240, .65); border-radius: 50%;
  background: rgba(11, 11, 12, .72);
  transform: translate(-50%, -50%);
}
.video__play svg { width: 26px; height: 26px; margin-left: 4px; color: var(--text); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__note { margin-top: 10px; color: var(--text-3); font-size: .8125rem; }

/* Specification table */
.spec-table { max-width: 720px; }
.spec-table th, .spec-table td { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; line-height: 1.5; text-align: left; vertical-align: top; }
.spec-table tr:first-child th, .spec-table tr:first-child td { border-top: 1px solid var(--line-2); }
.spec-table th { width: 40%; padding-right: 16px; color: var(--text-3); font-weight: 500; }

/* Enquiry section */
.enquire { display: grid; gap: 48px; }
@media (min-width: 960px) { .enquire { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; align-items: start; } }
.next-steps { display: grid; gap: 28px; margin: 30px 0 0; padding: 0; list-style: none; }
.next-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.next-steps__num {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid rgba(201, 204, 209, .45); border-radius: 50%;
  color: var(--silver); font-weight: 600;
}
.next-steps h3 { margin: 9px 0 6px; font-size: 1.0625rem; }
.next-steps p { color: var(--text-2); font-size: .9375rem; }

/* Testimonial */
.quote { max-width: 860px; }
.quote__mark { display: block; height: 44px; color: var(--silver); font-family: var(--serif); font-size: 4.5rem; line-height: 1; }
.quote blockquote p { font-size: clamp(1.15rem, 1rem + .8vw, 1.5rem); line-height: 1.55; }
.quote figcaption { margin-top: 22px; color: var(--text-2); font-size: .9375rem; }
.quote figcaption strong { color: var(--text); font-weight: 600; }

/* Sticky enquiry bar (phones and tablets) */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(17, 17, 19, .97);
  border-top: 1px solid var(--line-2);
  transform: translateY(110%); visibility: hidden;
  transition: transform .3s var(--ease), visibility 0s linear .3s;
}
.sticky-bar.is-visible { transform: none; visibility: visible; transition: transform .3s var(--ease), visibility 0s; }
.sticky-bar__info { display: grid; min-width: 0; line-height: 1.35; }
.sticky-bar__name { overflow: hidden; font-size: .9375rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.sticky-bar__price { color: var(--text-2); font-size: .875rem; }
.page-listing { padding-bottom: 72px; }
@media (min-width: 1024px) {
  .sticky-bar { display: none; }
  .page-listing { padding-bottom: 0; }
}

/* ---------- 25. Thanks & privacy ---------- */
.thanks { display: grid; place-items: center; min-height: 64vh; padding-block: 88px; text-align: center; }
.thanks__inner { display: grid; justify-items: center; gap: 22px; max-width: 640px; }
.thanks .lede { margin-inline: auto; }
.thanks .hero__ctas { justify-content: center; margin-top: 8px; }
.preview-note {
  max-width: 560px; padding: 14px 18px;
  border: 1px dashed var(--line-2); border-radius: var(--radius);
  color: var(--text-2); font-size: .875rem; text-align: left;
}
.legal { padding-bottom: 104px; }
.legal h2 { margin: 48px 0 14px; font-size: 1.35rem; }
.legal p, .legal li { color: var(--text-2); }
.legal ul { display: grid; gap: 8px; margin: 12px 0 0; padding-left: 20px; }
.legal p + p { margin-top: 1em; }
.legal a { color: var(--text); }
.legal .todo { color: var(--accent); }
