/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --bg:           #ffffff;
  --surface:      #f4f7fb;
  --surface2:     #e8eef6;
  --border:       rgba(0, 80, 160, 0.12);
  --text:         #0d1f35;
  --text-muted:   #4a6080;
  --accent:       #0077c8;
  --accent-dark:  #005ea3;
  --orange:       #f57c00;
  --orange-dark:  #e65c00;
  --orange-light: #fff3e0;
  --radius:       14px;
  --radius-sm:    8px;
  --section-pad:  6rem;
  --font-head:    'Cabinet Grotesk', sans-serif;
  --font-body:    'Satoshi', sans-serif;
  --container:    1180px;
  --shadow:       0 4px 32px rgba(0,80,160,0.10);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
select, input, textarea { font-family: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,124,0,0.3); }
.btn-outline  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.btn-ghost    { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn-lg { padding: 0.9rem 1.9rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,80,160,0.10); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}
.logo-link { display: flex; align-items: center; }
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.main-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--accent); background: rgba(0,119,200,0.06); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.25s;
}
.mobile-nav {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  background: #fff;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--accent); background: rgba(0,119,200,0.06); }
.mobile-cta { margin-top: 0.5rem; text-align: center; }

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(145deg, #003d7a 0%, #0063b2 45%, #0077c8 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,124,0,0.18) 0%, transparent 65%);
}
.hero-water-shimmer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(0,30,80,0.35), transparent);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 5rem 1.5rem 6rem;
  max-width: 750px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,124,0,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(245,124,0,0); }
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-accent { color: var(--orange); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.trust-icon { color: var(--orange); font-weight: 700; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── PROOF BAR ────────────────────────────────────────────── */
.proof-bar {
  background: var(--accent);
  padding: 1.5rem 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.proof-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.proof-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ── BOATS / BRANDS ───────────────────────────────────────── */
.boats-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .brands-grid { grid-template-columns: 1fr; } }
.brand-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.brand-card-actions { display: grid; gap: 0.65rem; margin-top: auto; }
.brand-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-card--featured {
  border-color: rgba(0,119,200,0.3);
  background: linear-gradient(160deg, rgba(0,119,200,0.05) 0%, var(--surface) 60%);
}
.brand-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid rgba(245,124,0,0.25);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  width: fit-content;
}
/* Brand logo image container */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px;
  margin-bottom: 0.25rem;
}
.brand-logo-wrap img {
  max-height: 56px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.brand-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; flex: 1; }
.brand-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.25rem 0;
}
.brand-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.brand-features li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Other brands */
.other-brands {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.other-brands-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.other-brands-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.other-brands-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.other-brand-pill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── RENTALS ──────────────────────────────────────────────── */
.rentals-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.rentals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) { .rentals-grid { grid-template-columns: 1fr; } }
.rental-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.rental-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.rental-card--featured {
  border-color: rgba(245,124,0,0.35);
  background: linear-gradient(160deg, rgba(245,124,0,0.04) 0%, var(--bg) 60%);
}
.rental-add-on { border-style: dashed; }
.rental-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,119,200,0.08);
  border: 1px solid rgba(0,119,200,0.2);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  width: fit-content;
}
.rental-badge--gold {
  color: var(--orange);
  background: var(--orange-light);
  border-color: rgba(245,124,0,0.25);
}
.rental-icon { color: var(--accent); }
.rental-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.rental-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.rental-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; flex: 1; }
.rental-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.rental-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(0,119,200,0.05);
  border: 1px solid rgba(0,119,200,0.15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.rental-note svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.rental-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card--featured {
  border-color: rgba(0,119,200,0.25);
  background: linear-gradient(160deg, rgba(0,119,200,0.04) 0%, var(--surface) 60%);
}
.service-card--gas {
  border-color: rgba(245,124,0,0.25);
  background: linear-gradient(160deg, rgba(245,124,0,0.04) 0%, var(--surface) 60%);
}
.service-icon { color: var(--accent); margin-bottom: 0.25rem; }
.service-card--gas .service-icon { color: var(--orange); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}
.service-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

/* ── AMENITIES ────────────────────────────────────────────── */
.amenities-section {
  padding: 4rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.amenity-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.amenity-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,119,200,0.04); }
.amenity-pill svg { color: var(--accent); flex-shrink: 0; }

/* ── GRAND LAKE ───────────────────────────────────────────── */
.lake-section {
  padding: var(--section-pad) 0;
  background: var(--accent);
}
.lake-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .lake-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.lake-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.lake-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.lake-stat { display: flex; flex-direction: column; gap: 0.3rem; }
.lake-stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.lake-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.lake-text { display: flex; flex-direction: column; gap: 1rem; }
.lake-text .section-eyebrow { color: var(--orange); }
.lake-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
.lake-text p { color: rgba(255,255,255,0.80); line-height: 1.7; }
.lake-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.activity-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .about-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.about-text p { color: var(--text-muted); line-height: 1.7; }
.about-quote {
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0.5rem 0;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.about-tag {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
/* About card with marina logo */
.about-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.about-marina-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.about-stat-row { display: flex; gap: 2rem; justify-content: center; }
.about-stat { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.about-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info-block:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.info-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.info-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  line-height: 1.4;
}
.info-value:hover { color: var(--accent); }
.hours-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.hours-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hours-title svg { color: var(--orange); }
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--text); }
.hours-time { color: var(--text-muted); font-weight: 500; }
.hours-row--sunday .hours-day { color: var(--orange); }
.hours-row--sunday .hours-time { color: var(--orange); }
.contact-form-wrap {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.contact-form-wrap > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row-group { grid-template-columns: 1fr; } }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-row input,
.form-row textarea,
.form-row select {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--accent); }
.form-row select { appearance: none; cursor: pointer; }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 3.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo-wrap { margin-bottom: 1rem; }
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-group a, .footer-links-group li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links-group a:hover { color: #fff; }
.footer-hours li { font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── STICKY CTA ───────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,80,160,0.12);
}
.sticky-cta.visible { display: block; }
@media (min-width: 768px) { .sticky-cta { display: none !important; } }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  :root { --section-pad: 4rem; }
  .hero-content { padding: 3.5rem 1.5rem 5rem; }
  .proof-inner { gap: 0.5rem; }
  .proof-item { padding: 0 0.75rem; }
  .proof-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

.brand-logo-wrap--dark {
  background: #1a2a3a;
  border-radius: 4px;
  padding: 0.5rem;
}

/* ===== REACH CARDS ===== */
.reach-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.reach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.reach-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.reach-icon { color: var(--accent); margin-bottom: 0.25rem; }
.reach-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.reach-val { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.reach-note { font-size: 0.78rem; color: var(--text-muted); }
@media (max-width: 600px) {
  .reach-cards { grid-template-columns: 1fr; }
}

/* ── INVENTORY PAGE ───────────────────────────────────────── */
.inventory-page { background: var(--surface); }
.main-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] { color: var(--accent); background: rgba(0,119,200,0.07); }
.inventory-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(135deg, #003d7a 0%, #0063b2 68%, #0077c8 100%);
  color: #fff;
}
.inventory-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
}
.inventory-hero h1 {
  max-width: 760px;
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.inventory-hero p:not(.section-eyebrow) {
  max-width: 660px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
}
.inventory-section { padding: 5rem 0 6rem; }
.inventory-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.inventory-kicker {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.inventory-toolbar h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.inventory-count { margin-top: 0.5rem; color: var(--text-muted); }
.inventory-filters { display: flex; gap: 0.75rem; }
.inventory-filters label { display: grid; gap: 0.35rem; }
.inventory-filters label span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.inventory-filters select {
  min-width: 170px;
  min-height: 44px;
  padding: 0.65rem 2.4rem 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-size: 0.92rem;
}
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.boat-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(13,31,53,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  content-visibility: auto;
}
.boat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(13,31,53,0.12); }
.boat-card-photo {
  height: 230px;
  background: #dfe9f2;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.boat-card-photo img,
.boat-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-coming-soon {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.boat-card-body { padding: 1.4rem; }
.boat-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.75rem; }
.boat-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: var(--surface2);
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.boat-badge--sale-pending { background: var(--orange-light); color: var(--orange-dark); }
.boat-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}
.boat-card-summary { color: var(--text-muted); font-size: 0.9rem; }
.boat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}
.boat-price {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}
.inventory-empty {
  max-width: 760px;
  margin: 1rem auto 0;
  padding: clamp(2.5rem, 7vw, 5rem);
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.inventory-empty-label {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.inventory-empty h2 {
  margin: 0.5rem 0 0.8rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
}
.inventory-empty > p:not(.inventory-empty-label) {
  max-width: 520px;
  margin: 0 auto 1.6rem;
  color: var(--text-muted);
}
.inventory-help { padding: 5rem 0; background: #fff; }
.inventory-help-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
}
.inventory-help h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.inventory-help p:not(.section-eyebrow) { max-width: 650px; margin-top: 0.75rem; color: var(--text-muted); }
.inventory-help-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.boat-modal {
  width: min(1040px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,20,50,0.35);
}
.boat-modal::backdrop { background: rgba(3,18,38,0.75); }
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
}
#modal-content { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.boat-modal-gallery {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--surface2);
}
.boat-modal-photo { min-height: 320px; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden; }
.boat-modal-photo + .boat-modal-photo { border-top: 4px solid #fff; }
.boat-modal-details { padding: clamp(2rem, 5vw, 3.5rem); overflow-y: auto; }
.boat-modal-details h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.boat-modal-price {
  margin-top: 0.75rem;
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--accent);
}
.boat-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.boat-spec { padding-top: 0.75rem; border-top: 1px solid var(--border); }
.boat-spec dt { color: var(--text-muted); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.boat-spec dd { margin-top: 0.2rem; font-weight: 700; }
.boat-description { color: var(--text-muted); white-space: pre-line; }
.boat-modal-actions { display: grid; gap: 0.75rem; margin-top: 2rem; }

@media (max-width: 900px) {
  .inventory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inventory-hero-inner,
  .inventory-help-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  #modal-content { grid-template-columns: 1fr; }
  .boat-modal-gallery { display: grid; grid-template-columns: repeat(2, 1fr); max-height: none; }
  .boat-modal-photo { min-height: 230px; }
  .boat-modal-photo + .boat-modal-photo { border-top: 0; border-left: 4px solid #fff; }
}
@media (max-width: 680px) {
  .inventory-hero { padding: 7.5rem 0 3.5rem; }
  .inventory-toolbar { align-items: stretch; flex-direction: column; }
  .inventory-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .inventory-filters select { width: 100%; min-width: 0; }
  .inventory-grid { grid-template-columns: 1fr; }
  .inventory-help-actions { display: grid; }
  .boat-modal { width: 100%; max-height: 100vh; border-radius: 0; }
  #modal-content { display: block; }
  .boat-modal-gallery { display: block; }
  .boat-modal-photo { min-height: 260px; }
  .boat-modal-photo + .boat-modal-photo { border-left: 0; border-top: 4px solid #fff; }
}

/* ── BUILD YOUR BOAT ──────────────────────────────────────── */
.build-page,
.inquiry-page { background: var(--surface); }
.builder-hero {
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  color: #fff;
  background:
    radial-gradient(circle at 82% 28%, rgba(245,124,0,0.22), transparent 28%),
    linear-gradient(135deg, #003d7a 0%, #0063b2 60%, #0077c8 100%);
}
.builder-hero-content { max-width: 940px; }
.builder-hero h1 {
  max-width: 850px;
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.builder-hero p:not(.section-eyebrow) {
  max-width: 680px;
  margin: 1.4rem 0 2rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}
.builder-steps { padding: 5rem 0; background: #fff; }
.builder-section-heading { max-width: 720px; margin-bottom: 2.5rem; }
.builder-section-heading h2,
.builder-return-note h2 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.builder-section-heading > p:last-child { margin-top: 0.75rem; color: var(--text-muted); }
.builder-step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.builder-step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 2rem;
  border-right: 1px solid var(--border);
}
.builder-step-list li:first-child { padding-left: 0; }
.builder-step-list li:last-child { border-right: 0; padding-right: 0; }
.step-number {
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.builder-step-list h3 { font-family: var(--font-head); font-size: 1.2rem; line-height: 1.1; }
.builder-step-list p { margin-top: 0.45rem; color: var(--text-muted); font-size: 0.92rem; }
.builder-brands { padding: 6rem 0; }
.builder-brand-list { display: grid; gap: 1.5rem; }
.builder-brand-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 320px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(13,31,53,0.06);
  scroll-margin-top: 100px;
}
.builder-brand-logo {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 3rem;
  background: #eaf1f7;
}
.builder-brand-logo img { width: 100%; max-width: 230px; max-height: 130px; object-fit: contain; }
.builder-brand-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.builder-brand-label {
  margin-bottom: 0.55rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.builder-brand-copy h3 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}
.builder-brand-copy > p:not(.builder-brand-label) { max-width: 650px; margin-top: 0.8rem; color: var(--text-muted); }
.builder-brand-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.builder-return-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  margin-top: 1.5rem;
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--text);
  color: #fff;
  border-radius: var(--radius);
}
.builder-return-note p:not(.section-eyebrow) { max-width: 650px; margin-top: 0.75rem; color: rgba(255,255,255,0.68); }

/* ── BOAT INQUIRY ─────────────────────────────────────────── */
.inquiry-shell { min-height: 100vh; padding: 10rem 0 6rem; }
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.inquiry-layout > * { min-width: 0; }
.inquiry-intro { position: sticky; top: 120px; }
.inquiry-intro h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.inquiry-intro > p:not(.section-eyebrow) { margin-top: 1.2rem; color: var(--text-muted); font-size: 1.05rem; }
.inquiry-contact-card {
  display: grid;
  gap: 0.3rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.inquiry-contact-label { color: var(--text-muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.inquiry-contact-card a { color: var(--accent); font-family: var(--font-head); font-size: 1.65rem; font-weight: 900; overflow-wrap: anywhere; }
.inquiry-contact-card span { color: var(--text-muted); font-size: 0.9rem; }
.inquiry-form-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(13,31,53,0.08);
}
.boat-inquiry-form { display: grid; gap: 1.2rem; }
.boat-inquiry-form .form-row input,
.boat-inquiry-form .form-row select,
.boat-inquiry-form .form-row textarea { min-height: 48px; }
.field-help { color: var(--text-muted); font-size: 0.78rem; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--text-muted);
  font-size: 0.86rem;
}
.consent-row input { width: 18px; height: 18px; margin-top: 0.15rem; accent-color: var(--accent); }
.form-privacy { color: var(--text-muted); font-size: 0.76rem; text-align: center; }
.thank-you-page { background: var(--surface); }
.thank-you-shell { min-height: 100vh; display: grid; place-items: center; padding: 2rem; }
.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(2.5rem, 7vw, 5rem);
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.thank-you-card img { width: 92px; margin: 0 auto 2rem; }
.thank-you-card h1 { font-family: var(--font-head); font-size: clamp(3rem, 7vw, 5rem); line-height: 1; }
.thank-you-card > p:not(.section-eyebrow) { max-width: 540px; margin: 1rem auto 0; color: var(--text-muted); }
.thank-you-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

@media (max-width: 900px) {
  .builder-step-list { grid-template-columns: 1fr; }
  .builder-step-list li,
  .builder-step-list li:first-child,
  .builder-step-list li:last-child { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .builder-step-list li:last-child { border-bottom: 0; }
  .builder-brand-card { grid-template-columns: 240px minmax(0, 1fr); }
  .inquiry-layout { grid-template-columns: minmax(0, 1fr); }
  .inquiry-intro { position: static; }
}
@media (max-width: 680px) {
  .builder-hero { min-height: 610px; padding-top: 7.5rem; }
  .builder-brand-card { grid-template-columns: 1fr; }
  .builder-brand-logo { min-height: 210px; padding: 2rem; }
  .builder-brand-actions { display: grid; }
  .builder-return-note { grid-template-columns: 1fr; }
  .inquiry-shell { padding: 8rem 0 4rem; }
  .inquiry-form-card { padding: 1.25rem; }
}
