/* =====================================================================
   ROYAL BLUE NAUTICAL CLUB — Consumer Site
   Editorial / lifestyle-led. Navy + champagne gold + ocean cyan.
   ===================================================================== */

:root {
  /* Brand palette — pulled from investor deck */
  --navy-deepest: #0a1e3f;
  --navy: #0f172a;
  --royal: #1e3a8a;
  --ocean: #0c4a6e;
  --ocean-light: #0ea5e9;
  --gold: #b8860b;
  --gold-light: #d4af37;
  --gold-pale: #f3e9c8;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f7f5f0;        /* warm parchment for editorial sections */
  --bg-mist: #eef3f8;         /* cool ocean mist */
  --ink: #0a1e3f;
  --ink-muted: rgba(10, 30, 63, 0.66);
  --ink-dim: rgba(10, 30, 63, 0.42);
  --line: rgba(10, 30, 63, 0.12);
  --line-strong: rgba(10, 30, 63, 0.22);

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Sora', 'Helvetica Neue', sans-serif;
  --body:  'DM Sans', 'Helvetica Neue', sans-serif;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
}

/* ────────────── Reset / Base ────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: #fff; }

/* ────────────── Type system ────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center::before { display: none; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -1.5px;
  color: var(--ink);
}
.h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -1.2px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.lead {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 64ch;
}
.body-lg { font-size: 17px; line-height: 1.7; color: var(--ink-muted); }
.italic { font-family: var(--serif); font-style: italic; font-weight: 500; }
.gold { color: var(--gold); }
.text-muted { color: var(--ink-muted); }

/* ────────────── Layout helpers ────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { padding: clamp(48px, 6vw, 84px) 0; }
.section-tight { padding: clamp(32px, 4.5vw, 64px) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-12 { grid-template-columns: 1fr; }
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.divider.center { margin: 24px auto; }

/* ────────────── Nav ────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--gutter);
  border-bottom-color: var(--line);
}
.nav.solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.3px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand .logo-mark {
  height: 40px;
  width: auto;
  display: block;
  transition: filter 0.3s, height 0.3s;
}
.nav.scrolled .nav-brand .logo-mark {
  height: 34px;
}
/* On the dark hero, brighten the blue logo to champagne-white */
.nav.on-hero:not(.scrolled) .nav-brand .logo-mark {
  filter: brightness(0) invert(1) sepia(0.45) saturate(2.5) hue-rotate(355deg) brightness(1.05);
}
/* On mobile, render the logo as pure white (the gold-tinted filter reads too yellow at small sizes) */
@media (max-width: 720px) {
  .nav.on-hero:not(.scrolled) .nav-brand .logo-mark {
    filter: brightness(0) invert(1) !important;
  }
}
.nav-brand .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.5px;
  line-height: 1;
}
/* Keep "Royal Blue" wordmark visible on every screen size */
@media (max-width: 720px) {
  .nav-brand .wordmark { font-size: 19px; letter-spacing: 0.3px; }
}
@media (max-width: 360px) {
  .nav-brand .wordmark { font-size: 17px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 11.5px; letter-spacing: 1.1px; }
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); opacity: 1; }

/* Hero variant — light text on dark photo */
.nav.on-hero:not(.scrolled) .nav-brand,
.nav.on-hero:not(.scrolled) .nav-links a { color: #ffffff; }
.nav.on-hero:not(.scrolled) .nav-links a { opacity: 0.86; }
.nav.on-hero:not(.scrolled) .btn-nav { color: #fff; border-color: rgba(255,255,255,0.55); }

.btn-nav {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy) !important;
  transition: all 0.25s;
}
.btn-nav:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  border-color: var(--gold-light);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.32);
  transform: translateY(-1px);
}
/* On the dark hero, keep the gold pill highly visible */
.nav.on-hero:not(.scrolled) .btn-nav {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy) !important;
  border-color: var(--gold-light);
}

.nav-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    margin: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 2px 8px rgba(10, 30, 63, 0.18);
    position: relative;
    z-index: 101;
    appearance: none;
    -webkit-appearance: none;
  }
  /* Always navy lines on the white pill — easy to see on any background */
  .nav-toggle span { background: var(--ink) !important; }
  .nav-toggle span { width: 24px; }
  .nav-toggle span {
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
  }
  .nav.on-hero:not(.scrolled) .nav-toggle span { background: #fff; }
  .nav.mobile-open .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #fff !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 32px !important;
    z-index: 2147483646 !important; /* one below max int — beats any HubSpot z-index */
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }
  /* Toggle must sit above the overlay so the user can close it */
  .nav.mobile-open .nav-toggle {
    z-index: 2147483647 !important;
  }
  .nav.mobile-open .nav-links a,
  .nav.on-hero.mobile-open .nav-links a,
  .nav.solid.mobile-open .nav-links a {
    font-size: 18px !important;
    color: var(--ink) !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    position: static !important;
    text-decoration: none !important;
    padding: 8px 16px !important;
  }
  .nav.mobile-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink) !important; }
  .nav.mobile-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.mobile-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink) !important; }
  /* Make sure the apply button inside the open menu also reads as navy text on white */
  .nav.mobile-open .nav-links .btn-nav {
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    color: var(--navy) !important;
    border-color: var(--gold) !important;
    padding: 14px 28px !important;
  }
}

/* ────────────── Buttons ────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.32);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.35);
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ghost-light {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ────────────── Hero ────────────── */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deepest);
}
@media (min-width: 1200px) { .hero { min-height: 82vh; } }
@media (max-width: 720px) { .hero { min-height: 86vh; } }
.hero::before,
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg {
  background-size: cover;
  background-position: center 30%;
}
/* Optimized hero background — WebP w/ JPEG fallback, smaller version on mobile */
.hero-bg-rb {
  background-image: url('../../rb-hero.jpg');
  background-image: -webkit-image-set(
    url('../../rb-hero.webp') type('image/webp') 1x,
    url('../../rb-hero.jpg') type('image/jpeg') 1x
  );
  background-image: image-set(
    url('../../rb-hero.webp') type('image/webp') 1x,
    url('../../rb-hero.jpg') type('image/jpeg') 1x
  );
  background-size: cover;
  background-position: center;
}
@media (max-width: 720px) {
  .hero-bg-rb {
    background-image: url('../../rb-hero-mobile.jpg');
    background-image: -webkit-image-set(
      url('../../rb-hero-mobile.webp') type('image/webp') 1x,
      url('../../rb-hero-mobile.jpg') type('image/jpeg') 1x
    );
    background-image: image-set(
      url('../../rb-hero-mobile.webp') type('image/webp') 1x,
      url('../../rb-hero-mobile.jpg') type('image/jpeg') 1x
    );
  }
}
/* Video background — sits behind the gradient overlay */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,30,63,0.62) 0%, rgba(10,30,63,0.38) 30%, rgba(10,30,63,0.10) 55%, rgba(10,30,63,0) 75%),
    linear-gradient(180deg, rgba(10,30,63,0.18) 0%, rgba(10,30,63,0.08) 50%, rgba(10,30,63,0.78) 100%);
}
/* Stronger text shadow when hero is video-backed (logos animating behind) */
.hero.has-video .display,
.hero.has-video .lead,
.hero.has-video .eyebrow {
  text-shadow: 0 2px 24px rgba(10, 30, 63, 0.6);
}

.hero-inner {
  padding: 130px var(--gutter) clamp(60px, 8vh, 96px);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
/* Hero content stays in the left column so it doesn't sit on the boat artwork */
.hero .hero-inner { max-width: min(var(--max), 1280px); }
.hero .hero-inner .display {
  font-size: clamp(36px, 4.5vw, 68px);
  max-width: 16ch;
  line-height: 1.04;
  letter-spacing: -1px;
}
.hero .hero-inner .lead { max-width: 34ch; font-size: clamp(15px, 1.15vw, 18px); }
.hero .hero-inner .hero-cta { max-width: none; }
@media (max-width: 880px) {
  .hero .hero-inner .display { font-size: clamp(38px, 9vw, 56px); max-width: none; }
  .hero .hero-inner .lead { max-width: none; }
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero .display { color: #fff; max-width: 16ch; }
.hero .display em {
  font-style: italic;
  font-family: var(--serif);
  background: linear-gradient(135deg, #f7e3a0 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead { color: rgba(255,255,255,0.86); max-width: 56ch; margin-top: 28px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.hero-meta {
  position: absolute;
  bottom: 28px; right: var(--gutter);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; gap: 18px;
}
.hero-meta span { color: #fff; }
@media (max-width: 720px) {
  .hero-meta { display: none; }
  .hero-inner { padding-top: 130px; }
}

/* ────────────── Sub-hero (interior pages) ────────────── */
.subhero {
  position: relative;
  padding: clamp(100px, 10vw, 120px) var(--gutter) clamp(40px, 5vw, 56px);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
}
.subhero .h1 { font-size: clamp(32px, 4.5vw, 56px); }
.subhero .lead { margin-top: 16px; font-size: clamp(15px, 1.2vw, 18px); }
.subhero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.subhero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,30,63,0.6) 0%, rgba(10,30,63,0.45) 100%);
}
.subhero .wrap { color: #fff; }
.subhero .h1 { color: #fff; max-width: 16ch; }
.subhero .lead { color: rgba(255,255,255,0.86); margin-top: 24px; }
.subhero .eyebrow { color: var(--gold-light); }
.subhero .eyebrow::before { background: var(--gold-light); }

/* ────────────── Section title block ────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head .left { max-width: 720px; }
.section-head .h2 { margin-top: 18px; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-head.center .left { text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ────────────── Cards ────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(10, 30, 63, 0.22);
  border-color: var(--gold);
}
.card-media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-mist);
}
.card-media.tall { aspect-ratio: 3 / 4; }
.card-media.wide { aspect-ratio: 16 / 9; }
.card-body {
  padding: 22px 24px 26px;
}
.card-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.card-desc { font-size: 14.5px; color: var(--ink-muted); line-height: 1.65; }
.card-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.card-meta .credits { color: var(--gold); }

/* Editorial vertical card — image first, big title, minimal copy */
.editorial-card .card-media { aspect-ratio: 4/5; }
.editorial-card .card-body { padding: 22px 0 0; }
.editorial-card { border: none; background: transparent; border-radius: 0; }
.editorial-card:hover { transform: translateY(-3px); box-shadow: none; }
.editorial-card .card-title { font-size: 26px; }

/* ────────────── Quote / pull section ────────────── */
.pull {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--ink);
  max-width: 30ch;
}
blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--ink);
}
blockquote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ────────────── Split layouts ────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}
.split-img.square { aspect-ratio: 1/1; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img { aspect-ratio: 16/10; max-height: 480px; }
}

/* ────────────── How it works layout (steps + product preview) ────────────── */
.howitworks-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 980px) {
  .howitworks-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* When steps live next to the preview, lay them out 2x2 */
.steps.steps-2x2 {
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}
@media (max-width: 560px) {
  .steps.steps-2x2 { grid-template-columns: 1fr !important; }
}

/* Product preview frame */
.product-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 60px -28px rgba(10, 30, 63, 0.28),
    0 8px 18px -8px rgba(10, 30, 63, 0.12);
  transform: rotate(-0.4deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-frame:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow:
    0 32px 70px -28px rgba(10, 30, 63, 0.34),
    0 12px 22px -8px rgba(10, 30, 63, 0.14);
}
.product-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--line);
}
.product-chrome .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(10,30,63,0.15);
}
.product-chrome .dot:nth-child(1) { background: #f87171; }
.product-chrome .dot:nth-child(2) { background: #fbbf24; }
.product-chrome .dot:nth-child(3) { background: #34d399; }
.product-url {
  margin-left: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.product-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--ink-muted);
  padding-left: 4px;
}
.product-caption .kicker {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: rgba(184, 134, 11, 0.08);
}

/* ────────────── Step list (card-style) ────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: stepc;
}
.step {
  counter-increment: stepc;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  position: relative;
  transition: border-color 0.25s, transform 0.3s, box-shadow 0.3s;
}
.step:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(10, 30, 63, 0.18);
}
.step::before {
  content: counter(stepc, decimal-leading-zero);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.step::after {
  content: '';
  position: absolute;
  left: 26px;
  top: 70px;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.step h3 {
  margin: 18px 0 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
}
.step p { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .step { padding: 26px 24px; }
  .step::before { font-size: 38px; }
}

/* ────────────── Stat band ────────────── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-band .stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.stats-band .stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.stat-num.gold { color: var(--gold); }
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 880px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat:nth-child(2n) { border-right: none; }
  .stats-band .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ────────────── Inclusions / checklist ────────────── */
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  list-style: none;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.5L4.8 9 10 3.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center no-repeat;
}
.checklist li:last-child { border-bottom: none; }
.checklist li strong { font-weight: 600; color: var(--ink); }

/* ────────────── Pricing card ────────────── */
.pricing {
  background: var(--navy-deepest);
  color: #fff;
  border-radius: 20px;
  padding: clamp(36px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 65%);
}
.pricing-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.pricing h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.1;
  margin-bottom: 8px;
}
.pricing-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 36px 0 28px;
}
.pricing-row .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.pricing-row .amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}
.pricing-row .note {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 720px) {
  .pricing-rows { grid-template-columns: 1fr; gap: 28px; }
}

/* ────────────── FAQ ────────────── */
.faq { display: flex; flex-direction: column; }
.faq details {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.3;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 30px;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 70ch;
}

/* ────────────── Forms ────────────── */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
.form-row.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15.5px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 8px 0 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-dim); }
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.form-radio-group label {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--ink);
  padding: 11px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.form-radio-group input { display: none; }
.form-radio-group label:hover { border-color: var(--gold); }
.form-radio-group input:checked + span,
.form-radio-group label:has(input:checked) {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
@media (max-width: 720px) {
  .form { grid-template-columns: 1fr; }
}

/* ────────────── Tags / chips ────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: rgba(184, 134, 11, 0.06);
}

/* ────────────── Banner / dark band ────────────── */
.dark-band {
  background: var(--navy-deepest);
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.dark-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(30,58,138,0.4), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(184,134,11,0.18), transparent 60%);
  z-index: -1;
}
.dark-band .h2, .dark-band .h1, .dark-band .display { color: #fff; }
.dark-band .lead { color: rgba(255,255,255,0.78); }

/* Ocean band — soft mist */
.mist-band {
  background: var(--bg-mist);
}
.parchment-band {
  background: var(--bg-soft);
}

/* ────────────── Markets list ────────────── */
.markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.market {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.market:nth-child(3n) { border-right: none; }
.market-status {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.market-status.live { color: var(--gold); }
.market-status.target { color: var(--ink-dim); }
.market-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
}
.market-detail { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }
@media (max-width: 720px) {
  .markets { grid-template-columns: 1fr 1fr; }
  .market:nth-child(3n) { border-right: 1px solid var(--line); }
  .market:nth-child(2n) { border-right: none; }
}

/* ────────────── Marquee strip (Charleston tag) ────────────── */
.marquee {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.78);
}
.marquee-inner span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-inner span::after { content: '✦'; color: var(--gold); font-size: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ────────────── Image-led gallery (member proof) ────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery .g {
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
}
.gallery .g1 { grid-column: span 6; grid-row: span 2; }
.gallery .g2 { grid-column: span 3; grid-row: span 1; }
.gallery .g3 { grid-column: span 3; grid-row: span 1; }
.gallery .g4 { grid-column: span 3; grid-row: span 1; }
.gallery .g5 { grid-column: span 3; grid-row: span 1; }
.gallery .g6 { grid-column: span 4; grid-row: span 1; }
.gallery .g7 { grid-column: span 4; grid-row: span 1; }
.gallery .g8 { grid-column: span 4; grid-row: span 1; }
@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .gallery .g1 { grid-column: span 6; }
  .gallery .g2, .gallery .g3, .gallery .g4, .gallery .g5 { grid-column: span 3; }
  .gallery .g6, .gallery .g7, .gallery .g8 { grid-column: span 6; }
}

/* ────────────── Compare table ────────────── */
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare th, .compare td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare th {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--ink);
}
.compare .col-own { background: rgba(180, 83, 9, 0.04); }
.compare .col-rb { background: rgba(184, 134, 11, 0.08); }
.compare td.label { font-weight: 600; color: var(--ink); }
.compare td.amt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
}
.compare td.amt.gold { color: var(--gold); }
.compare .row-total td { font-weight: 700; }
.compare .row-total td.amt { font-size: 28px; }

/* ────────────── Footer ────────────── */
.footer {
  background: var(--navy-deepest);
  color: rgba(255,255,255,0.78);
  padding: 80px var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color 0.2s; }
.footer a:hover { color: var(--gold-light); }
.footer .brand-block { max-width: 340px; }
.footer .brand-block .name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer .brand-block .name img {
  height: 48px;
  width: auto;
  display: block;
  /* Brighten the blue logo for the dark footer */
  filter: brightness(0) invert(1) sepia(0.45) saturate(2.5) hue-rotate(355deg) brightness(1.05);
}
.footer .brand-block p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ────────────── Reveal on scroll ────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ────────────── Experiences page — compact cards (matches deck) ────────────── */
.exp-grid { gap: 14px; }
.exp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s;
}
.exp-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 38px -22px rgba(10, 30, 63, 0.22);
}
.exp-img {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-mist);
}
.exp-body { padding: 14px 18px 16px; }
.exp-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.exp-body p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  font-weight: 300;
}
@media (max-width: 900px) {
  .exp-img { height: 130px; }
}

/* ────────────── ROI Calculator ────────────── */
.calc {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .calc { grid-template-columns: 1fr; }
}

/* Stacked variant — sliders + results in one column (used when calc sits in a half-width slot, e.g. next to The Premise) */
.calc.calc-stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calc.calc-stacked .calc-card { padding: 18px 22px; }
.calc.calc-stacked .calc-card .calc-fields { gap: 14px 20px; }
.calc.calc-stacked .calc-card .calc-value { font-size: 18px; }
.calc.calc-stacked .calc-results { gap: 10px; }
.calc.calc-stacked .calc-row { padding: 14px 20px; }
.calc.calc-stacked .calc-row .row-amt { font-size: 30px; }
.calc.calc-stacked .calc-row.save .row-amt { font-size: 34px; }

/* ────────────── "The Lifestyle" — pillar cards ────────────── */
.lifestyle-section {
  padding: clamp(56px, 7vw, 88px) 0 clamp(20px, 2.5vw, 32px);
  background: #f6f6f4;
}
.lifestyle-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: 4px;
  color: var(--navy-deepest);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.lifestyle-subtitle {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 36ch;
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  letter-spacing: -0.3px;
}
/* Tighten gap when subtitle is followed by a body paragraph inside a premise block */
.premise-block .lifestyle-subtitle:has(+ p) { margin-bottom: 14px; }
.premise-block .lifestyle-subtitle + .body-lg { margin-top: 0; }
.lifestyle-subtitle .italic { color: var(--gold); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
}
.lifestyle-card {
  background: #fff;
  border: 1px solid rgba(10, 30, 63, 0.32);
  border-radius: 6px;
  padding: 28px 26px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s;
}
.lifestyle-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px -20px rgba(10, 30, 63, 0.20);
}
.lifestyle-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: #fff;
}
.lifestyle-icon svg { width: 30px; height: 30px; }
.lifestyle-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--navy-deepest);
  line-height: 1.25;
  margin-bottom: 14px;
  min-height: 2.5em;
}
.lifestyle-card p {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  font-weight: 400;
}
@media (max-width: 560px) {
  .lifestyle-card h3 { min-height: 0; }
}

/* Premise section — tighter padding so the calculator + savings row land near the fold */
.premise-section { padding: clamp(20px, 2.5vw, 32px) 0 clamp(48px, 6vw, 80px); }
.premise-block { max-width: 880px; margin: 0 auto; text-align: center; }

/* Thin gold divider that sits between Lifestyle pillars and Premise */
.section-divider {
  width: min(85%, 720px);
  height: 1px;
  background: var(--gold);
  margin: 0 auto clamp(18px, 2.2vw, 28px);
  opacity: 0.85;
}

/* About page — tighter rhythm between sections */
.page-about .subhero { padding-bottom: 60px; padding-top: 150px; }
.page-about section { padding: clamp(32px, 4vw, 56px) 0; }
.page-about .section-tight { padding: clamp(22px, 3vw, 40px) 0; }
.page-about .section-head { margin-bottom: 24px; }
.page-about .dark-band { padding: clamp(48px, 6vw, 80px) 0 !important; }
.calc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.calc-card-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.calc-card-label.cool { color: var(--royal); }
.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.calc-field .calc-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.calc-field .calc-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
input.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(10, 30, 63, 0.10);
  outline: none;
  cursor: pointer;
}
input.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--ocean));
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.10), 0 2px 6px rgba(30, 58, 138, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  border: 2px solid #fff;
}
input.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(30, 58, 138, 0.14), 0 2px 8px rgba(30, 58, 138, 0.30);
}
input.calc-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--ocean));
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.10), 0 2px 6px rgba(30, 58, 138, 0.25);
}
/* Gold pulse on the boat-price slider to signal interactivity */
@keyframes calc-boat-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(184, 134, 11, 0)); }
  50%      { filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.85)); }
}
input#calc-boat.calc-slider { animation: calc-boat-pulse 1.4s ease-in-out infinite; }
input#calc-boat.calc-slider::-webkit-slider-thumb {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  width: 22px; height: 22px;
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.18), 0 2px 8px rgba(184, 134, 11, 0.45);
}
input#calc-boat.calc-slider::-moz-range-thumb {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  width: 22px; height: 22px;
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.18), 0 2px 8px rgba(184, 134, 11, 0.45);
}
input#calc-boat.calc-slider.touched { animation: none; filter: none; }
.calc-drag-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 6px;
  vertical-align: middle;
  animation: calc-hint-pulse 1.4s ease-in-out infinite;
}
@keyframes calc-hint-pulse {
  0%, 100% { opacity: 0.45; transform: translateX(0); }
  50%      { opacity: 1; transform: translateX(2px); }
}
input#calc-boat.calc-slider.touched ~ .calc-drag-hint,
.calc-field.touched .calc-drag-hint { display: none; }

/* Result rows */
.calc-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: stretch;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius);
  padding: 18px 24px;
}
.calc-row .row-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.calc-row .row-sub {
  font-size: 12px;
  color: var(--ink-muted);
}
.calc-row .row-amt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.5px;
}
.calc-row.own {
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.04), transparent 70%);
  border: 1px solid rgba(185, 28, 28, 0.22);
}
.calc-row.own .row-label { color: #b91c1c; }
.calc-row.own .row-amt { color: #b91c1c; }
.calc-row.rb {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(184, 134, 11, 0.06) 80%);
  border: 1px solid rgba(30, 58, 138, 0.28);
}
.calc-row.rb .row-label {
  background: linear-gradient(135deg, var(--royal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc-row.rb .row-amt {
  background: linear-gradient(135deg, var(--royal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc-row.save {
  background: linear-gradient(135deg, var(--royal), var(--gold));
  color: #fff;
  padding: 22px 24px;
}
.calc-row.save .row-label { color: rgba(255,255,255,0.88); }
.calc-row.save .row-sub { color: rgba(255,255,255,0.78); }
.calc-row.save .row-amt { color: #fff; font-size: 44px; }
.calc-row.save .row-mo {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ────────────── Membership lifestyle gallery ────────────── */
.lifestyle-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.lg-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  min-height: 280px;
  margin: 0;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lg-card:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -24px rgba(10, 30, 63, 0.32); }
.lg-card.lg-tall { grid-row: span 2; min-height: 100%; }
.lg-img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  transition: transform 0.6s ease;
}
.lg-card:hover .lg-img { transform: scale(1.04); }
.lg-card::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,30,63,0) 30%, rgba(10,30,63,0.55) 70%, rgba(10,30,63,0.88) 100%);
}
.lg-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 24px 24px;
  color: #fff;
}
.lg-eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}
.lg-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.lg-card p {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 36ch;
}
@media (max-width: 880px) {
  .lifestyle-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .lg-card.lg-tall { grid-row: span 1; grid-column: span 2; min-height: 320px; }
}
@media (max-width: 560px) {
  .lifestyle-gallery { grid-template-columns: 1fr; }
  .lg-card.lg-tall { grid-column: span 1; }
}

/* ────────────── Membership "at a glance" 3-step flow ────────────── */
.membership-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.m-step {
  background: #fff;
  border: 1px solid rgba(10, 30, 63, 0.18);
  border-radius: 10px;
  padding: 26px 24px 28px;
  text-align: center;
  transition: border-color 0.25s, transform 0.3s ease, box-shadow 0.3s ease;
}
.m-step:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -22px rgba(10, 30, 63, 0.22);
}
.m-step-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.m-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.2px;
  color: var(--navy-deepest);
  line-height: 1.2;
  margin-bottom: 10px;
}
.m-step p {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-muted);
}
.m-arrow {
  align-self: center;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  user-select: none;
}
@media (max-width: 780px) {
  .membership-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 480px;
  }
  .m-arrow { display: none; }
}

/* ────────────── HubSpot form theming ────────────── */
.hs-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 4px 18px -10px rgba(10, 30, 63, 0.12);
}
.hs-form-wrap .hs-form-field { margin-bottom: 18px; }
.hs-form-wrap label,
.hs-form-wrap .hs-form-field > label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 8px;
}
.hs-form-wrap .hs-input,
.hs-form-wrap input[type="text"],
.hs-form-wrap input[type="email"],
.hs-form-wrap input[type="tel"],
.hs-form-wrap input[type="number"],
.hs-form-wrap select,
.hs-form-wrap textarea {
  width: 100% !important;
  font-family: var(--body) !important;
  font-size: 15.5px !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--line-strong) !important;
  padding: 8px 0 12px !important;
  outline: none !important;
  border-radius: 0 !important;
  transition: border-color 0.2s;
}
.hs-form-wrap .hs-input:focus,
.hs-form-wrap input:focus,
.hs-form-wrap select:focus,
.hs-form-wrap textarea:focus {
  border-bottom-color: var(--gold) !important;
}
.hs-form-wrap textarea { min-height: 90px; resize: vertical; }
.hs-form-wrap .hs-error-msg,
.hs-form-wrap .hs-error-msgs label {
  font-family: var(--sans);
  font-size: 12px;
  color: #b91c1c !important;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
}
.hs-form-wrap .hs-submit,
.hs-form-wrap .actions { margin-top: 18px; }
.hs-form-wrap .hs-button,
.hs-form-wrap .hs-button.primary,
.hs-form-wrap input[type="submit"],
.hs-form-wrap input[type="submit"].hs-button,
.hs-form-wrap .hs_submit input,
.hs-form-wrap .actions input,
.hs-form-wrap button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-family: var(--sans) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  border-radius: 100px !important;
  border: none !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  background-color: var(--gold) !important;
  background-image: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--navy) !important;
  cursor: pointer !important;
  transition: all 0.25s !important;
  box-shadow: none !important;
  text-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
}
.hs-form-wrap .hs-button:hover,
.hs-form-wrap .hs-button.primary:hover,
.hs-form-wrap input[type="submit"]:hover,
.hs-form-wrap .hs_submit input:hover,
.hs-form-wrap .actions input:hover,
.hs-form-wrap button[type="submit"]:hover {
  transform: translateY(-1px) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  background-image: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.32) !important;
  color: var(--navy) !important;
}
.hs-form-wrap .hs-button:focus,
.hs-form-wrap input[type="submit"]:focus {
  outline: 2px solid var(--gold) !important;
  outline-offset: 3px !important;
}
.hs-form-wrap .submitted-message {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  text-align: center;
  padding: 20px 0;
}
/* HubSpot 2-column grid */
.hs-form-wrap .form-columns-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
@media (max-width: 600px) {
  .hs-form-wrap .form-columns-2 { grid-template-columns: 1fr; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ────────────── Mobile polish ────────────── */
/* Remove tap-highlight gray flash on iOS/Android */
a, button, .btn, .nav-toggle, .lifestyle-card, .card, .step, .exp-card, .m-step {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Failsafe: if JS doesn't run, reveal elements should still be visible after page load */
@media (max-width: 880px) {
  .reveal { opacity: 1; transform: none; }
}

/* Bigger CTA tap targets on mobile (Apple Human Interface min 44px) */
@media (max-width: 720px) {
  .btn { padding: 18px 28px; font-size: 13px; min-height: 50px; }
  .nav { padding: 16px var(--gutter); }
  .nav-brand .logo-mark { height: 36px; }
  .nav.scrolled .nav-brand .logo-mark { height: 32px; }
  /* Lower hero text so it doesn't overlap the boat image */
  .hero .hero-inner { padding-top: 110px; padding-bottom: 60px; }
  .hero .hero-inner .display { font-size: clamp(32px, 9vw, 48px); max-width: none; }
  .hero .hero-inner .lead { max-width: none; font-size: 15px; }
  /* Tighten sub-hero on small screens */
  .subhero { padding-top: 90px; padding-bottom: 32px; }
  .subhero .h1 { font-size: clamp(28px, 8vw, 40px); }
  /* Ensure no content can exceed viewport width */
  body { overflow-x: hidden; }
  img, video { max-width: 100%; height: auto; }
}

/* Prevent unwanted horizontal scrolling globally */
html { overflow-x: hidden; }
