:root {
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --rgb-accent: 168, 216, 255;
  --rgb-accent-strong: 59, 130, 196;
  --rgb-surface: 28, 28, 28;
  --rgb-text: 240, 240, 241;
  --rgb-muted: 240, 240, 241;
  --rgb-silver: 143, 139, 137;
  --bg: #000000;
  --bg-soft: #141006;
  --bg-deep: #1c1c1c;
  --bg-alt: #f0f0f1;
  --mist: #ffffff;
  --mist-soft: #f0f0f1;
  --card: linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(20, 16, 6, 0.98));
  --card-strong: linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(0, 0, 0, 0.98));
  --card-soft: linear-gradient(180deg, rgba(28, 28, 28, 0.88), rgba(20, 16, 6, 0.94));
  --text: #ffffff;
  --muted: rgba(240, 240, 241, 0.78);
  --line: rgba(156, 157, 160, 0.22);
  --accent: #a8d8ff;
  --accent-strong: #3b82c4;
  --accent-soft: #9c9da0;
  --surface-glow: radial-gradient(circle at top, rgba(240, 240, 241, 0.06), transparent 38%);
  --success: #22c55e;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-sm: 0 18px 42px rgba(0, 0, 0, 0.26);
  --fg-on-accent: #0a1428;
  --border-card: rgba(143, 139, 137, 0.2);
  --transition-fast: 180ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base: 240ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 360ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-micro: 100ms cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: min(1280px, calc(100vw - 56px));
  --reading: 68ch;
  --section-gap: clamp(64px, 7vw, 112px);
  --section-shell-top: clamp(30px, 3vw, 42px);
  --section-shell-side: clamp(20px, 2.6vw, 28px);
  --section-shell-bottom: clamp(26px, 3vw, 34px);
  --hero-copy-max: 780px;
  --surface-1: linear-gradient(180deg, rgba(28, 28, 28, 0.94), rgba(12, 10, 8, 0.98));
  --surface-2: linear-gradient(180deg, rgba(28, 28, 28, 0.84), rgba(20, 16, 6, 0.5));
  --surface-3: linear-gradient(180deg, rgba(240, 240, 241, 0.045), rgba(240, 240, 241, 0.015));
  --glass-dark: rgba(12, 10, 8, 0.68);
}

* {
  box-sizing: border-box;
}

/* ─── Global heading base ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  margin-top: 0;
}

h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

/* ─── Skip to content (accessibility) ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: top 200ms;
}
.skip-link:focus {
  top: 16px;
}

/* ─── Custom scrollbar ────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050403; }
::-webkit-scrollbar-thumb {
  background: rgba(168, 216, 255, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 216, 255, 0.7);
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(168, 216, 255, 0.4) #050403;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(240, 240, 241, 0.055), transparent 34%),
    radial-gradient(ellipse at 88% 8%, rgba(168, 216, 255, 0.09), transparent 24%),
    radial-gradient(ellipse at 50% 100%, rgba(156, 157, 160, 0.045), transparent 34%),
    linear-gradient(180deg, #050403 0%, #141006 38%, #060504 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 72px;
  animation: siteIn 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
  position: relative;
  isolation: isolate;
}

.site-shell > *,
.hero > *,
.section > *,
.stats-section > *,
.category-grid > *,
.brand-grid > *,
.branch-grid > *,
.inventory-grid > *,
.feature-grid > *,
.showroom-section > *,
.form-layout > *,
.app-showcase > *,
.product-detail-layout > *,
.product-story-layout > * {
  min-width: 0;
}

img {
  max-width: 100%;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: 86px;
  margin: 0;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              background 220ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
              backdrop-filter 220ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar::before {
  content: none;
}

.topbar.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.topbar.is-hidden {
  transform: translateY(-100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
  position: absolute;
  left: 28px;
  z-index: 1;
  margin: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.brand-mark {
  display: flex;
  align-items: center;
  width: 270px;
  height: 88px;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  opacity: 1;
  visibility: visible;
  filter: brightness(0) invert(1);
}

.topbar.is-scrolled .brand {
  opacity: 0;
  transform: translateY(-10px) scale(0.96);
  pointer-events: none;
}

[data-page="home"] .brand {
  display: none;
}

.nav a,
.hero-text,
.section-copy p,
.hero-card span,
.category-card p,
.inventory-copy span,
.review-meta span,
.branch-card span,
.app-copy p,
.story-panel p,
.footer p,
.lead-form label,
.newsletter-form label,
.info-card span,
.feature-grid p,
.phone-screen p,
.finance-intro,
.workshop-intro,
.renewals-intro,
.licence-intro {
  color: rgba(240, 240, 241, 0.82);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-left: 0;
  flex-wrap: nowrap;
  min-height: 86px;
  margin-top: 0;
  padding-top: 0;
  z-index: 1;
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), padding var(--transition-base);
}

.topbar.is-scrolled .nav {
  min-height: 62px;
  padding: 0 30px;
  border: 1px solid rgba(var(--rgb-silver), 0.42);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  padding: 0;
  border-radius: 0;
  text-shadow: none;
  transition: color var(--transition-fast), opacity var(--transition-fast),
              text-shadow var(--transition-fast), transform var(--transition-fast);
}

.nav a + a {
  padding-left: 14px;
}

.nav a + a::before {
  content: "|";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
  opacity: 0.96;
}

.nav a:hover:not(.nav-active) {
  color: var(--accent-strong);
  opacity: 1;
  text-shadow: none;
}

body[data-page="inventory"] .nav a[href="inventory.html"],
body[data-page="sell"] .nav a[href="sell.html"],
body[data-page="finance"] .nav a[href="finance.html"],
body[data-page="app"] .nav a[href="app.html"],
body[data-page="contact"] .nav a[href="contact.html"],
body[data-page="outboards"] .nav a[href="outboards.html"],
body[data-page="workshop"] .nav a[href="workshop.html"],
body[data-page="renewals"] .nav a[href="renewals.html"],
body[data-page="licence"] .nav a[href="licence.html"],
body[data-page="socials"] .nav a[href="socials.html"],
body[data-page="altilium"] .nav a[href="altilium.html"],
body[data-page="cushy"] .nav a[href="cushy.html"] {
  color: var(--accent);
}

/* Active nav item glow */
.nav a.nav-active {
  color: var(--accent) !important;
  text-shadow: none;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .topbar {
  position: fixed;
  top: 0;
  margin: 0;
}

body[data-page="home"] .nav {
  padding-left: 0;
}

body:not([data-page="home"]) main {
  padding-top: 108px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(var(--rgb-surface), 0.92);
  border: 1px solid rgba(var(--rgb-silver), 0.8);
  box-shadow: 0 10px 24px rgba(var(--rgb-accent), 0.08);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  right: auto;
  top: auto;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero,
.section,
.stats-section,
.page-hero,
.footer {
  position: relative;
  isolation: isolate;
  z-index: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: min(72vh, 760px);
  padding: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 32px;
}

.hero-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  min-height: 100vh;
  height: 100vh;
  padding-top: 0;
  border-radius: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(72vh, 760px);
  padding: clamp(40px, 4vw, 56px) clamp(36px, 4vw, 56px) clamp(62px, 6vw, 74px);
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-home .hero-copy {
  min-height: 100vh;
  padding: clamp(108px, 9vw, 136px) min(7vw, 96px) 118px;
  max-width: var(--hero-copy-max);
}

.hero h1,
.hero h2,
.hero h3,
.hero .hero-text,
.hero .hero-points li,
.hero .eyebrow {
  color: var(--mist);
}

.hero .hero-card span,
.hero .hero-card small,
.hero .hero-card p:not(.review-quote) {
  color: rgba(240, 240, 241, 0.82);
}

.hero-home h1,
.hero-home .hero-text,
.hero-home .hero-points li {
  color: var(--mist);
}

.hero-home h1 {
  max-width: none;
}

.hero-home h1 span {
  display: block;
}

.hero-home h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(3.25rem, 5.25vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  max-width: none;
  text-shadow: 0 10px 34px rgba(var(--rgb-accent), 0.12);
}

.hero-home .eyebrow {
  color: rgba(229, 230, 236, 0.9);
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: transparent;
  filter: blur(0);
  z-index: -2;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -4;
  border-radius: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.38) 40%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: 1;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.12) 40%,
    transparent 65%
  );
  z-index: 2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.08) contrast(1.03) brightness(1.1);
}

.hero-home .hero-actions {
  margin: 40px 0 36px;
}

.hero-home .hero-points {
  max-width: 40rem;
  margin-top: 18px;
}

.hero-home .hero-text {
  margin-top: 30px;
  max-width: 38rem;
  font-size: 1.06rem;
  line-height: 1.78;
  color: #ffffff;
  font-weight: 800;
}

.eyebrow,
.feature-grid strong,
.footer > div:first-child strong,
.category-card span,
.inventory-copy p,
.review-meta strong,
.contact-item h3,
.branch-card p,
.stats-grid article span,
.review-button,
.button,
.store-pill,
.chip {
  font-family: "Barlow Condensed", sans-serif;
}

.hero-highlights {
  padding-top: 28px;
}

.page-hero-banner {
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  margin-top: 24px;
  aspect-ratio: 21/8;
  background: linear-gradient(135deg, rgba(28,28,28,0.9), rgba(12,10,8,0.95));
  border: 1px solid rgba(var(--rgb-silver), 0.12);
  position: relative;
}

.page-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.page-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.page-hero {
  margin-top: 24px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(38px, 4.2vw, 56px) clamp(30px, 4vw, 52px) clamp(40px, 4.2vw, 50px);
  max-width: none;
  border: 1px solid rgba(var(--rgb-silver), 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 12%, rgba(var(--rgb-accent), 0.08), transparent 24%),
    radial-gradient(circle at 10% 0%, rgba(var(--rgb-accent-strong), 0.06), transparent 24%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 1));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(240, 240, 241, 0.03), transparent 24%, transparent 74%, rgba(240, 240, 241, 0.02));
  pointer-events: none;
}

.page-hero h1,
.page-hero h2,
.page-hero .hero-text,
.page-hero .eyebrow {
  color: #ffffff;
}

:where(.page-hero, .section, .stats-section, .section-copy, .app-copy, .story-panel) > :is(h1, h2, h3) {
  align-self: start;
  margin-top: 0;
}

.page-hero h1 {
  max-width: min(100%, 1180px);
  font-size: clamp(2.7rem, 4.45vw, 4.9rem);
  margin-top: 0;
  letter-spacing: 0.025em;
  line-height: 1.06;
}

body[data-page="outboards"] .page-hero h1 {
  max-width: min(100%, 1100px);
}

.page-hero::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  margin-top: 34px;
  opacity: 0.62;
  animation: accentBarIn 640ms 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 1;
}

h1,
h2,
h3 {
  margin: 0;
  margin-top: 0;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 {
  max-width: min(100%, 1200px);
  font-size: clamp(3.35rem, 5.8vw, 5.6rem);
  letter-spacing: 0.02em;
  line-height: 1.02;
}

h2 {
  max-width: min(100%, 1100px);
  font-size: clamp(2.28rem, 3.85vw, 3.95rem);
  letter-spacing: 0.028em;
  line-height: 1.06;
}

h3 {
  max-width: min(100%, 900px);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.18rem;
  line-height: 1.14;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-text,
.section-copy p,
.app-copy p,
.story-panel p {
  max-width: var(--reading);
  font-size: 1.02rem;
  line-height: 1.82;
  color: rgba(240, 240, 241, 0.82);
}

.finance-intro,
.workshop-intro,
.renewals-intro,
.licence-intro {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions,
.store-buttons,
.review-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .button-secondary {
  background: linear-gradient(180deg, rgba(240, 240, 241, 0.12), rgba(240, 240, 241, 0.06));
  border-color: rgba(240, 240, 241, 0.2);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(240, 240, 241, 0.08);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.store-pill,
.review-button,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(240, 240, 241, 0.06);
}

.button-primary,
.store-pill {
  background: linear-gradient(135deg, #a8d8ff, #3b82c4);
  color: var(--fg-on-accent);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(8, 16, 32, 0.45);
}

.chip.active {
  background: linear-gradient(135deg, rgba(var(--rgb-accent), 0.94), rgba(var(--rgb-accent-strong), 0.94));
  color: var(--fg-on-accent);
  font-weight: 700;
}

.button-secondary,
.review-button,
.chip {
  border-color: rgba(var(--rgb-silver), 0.9);
  background: linear-gradient(180deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 0.96));
  color: #ffffff;
  transition: border-color var(--transition-fast), background var(--transition-fast),
              transform var(--transition-fast), color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.button-secondary:hover,
.review-button:hover {
  border-color: rgba(var(--rgb-accent-strong), 0.9);
  background: linear-gradient(180deg, rgba(var(--rgb-accent), 0.08), rgba(var(--rgb-surface), 0.98));
  box-shadow: 0 12px 24px rgba(var(--rgb-accent), 0.12);
}

.chip:hover:not(.active) {
  border-color: rgba(var(--rgb-accent-strong), 0.9);
  background: rgba(var(--rgb-accent), 0.08);
}

.button-primary:hover,
.store-pill:hover {
  box-shadow: 0 20px 42px rgba(var(--rgb-accent), 0.22), 0 0 0 1px rgba(var(--rgb-accent), 0.12);
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.button-primary:active,
.store-pill:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 0 0 3px rgba(var(--rgb-accent-strong), 0.16);
}

.button-secondary:active,
.review-button:active,
.chip:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

/* ─── Filter chips - distinct from action buttons ──────────────────────── */
.chip {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.button,
.store-pill {
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 200ms cubic-bezier(0.22, 1, 0.36, 1),
              background 200ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-points,
.story-points {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.story-points li {
  position: relative;
  padding-left: 24px;
  color: #ffffff;
  opacity: 1;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  font-weight: 800;
}

.hero-points li,
.story-points li {
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.hero-points li::before,
.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 1;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
  align-self: start;
  padding-top: 12px;
}

.hero-card,
.stats-card,
.finance-card,
.review-panel,
.story-panel,
.newsletter-form,
.branch-card,
.category-card,
.spotlight-card,
.inventory-card,
.lead-form,
.info-card,
.phone-mockup {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-1);
  box-shadow: var(--shadow);
}

/* Blur only where visually meaningful - hero cards float over gradient bg */
.hero-card {
  backdrop-filter: blur(14px);
}

.hero-card {
  backdrop-filter: blur(14px);
  min-height: 188px;
  padding: 34px 36px;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  will-change: transform;
}

.hero-card:hover {
  border-color: rgba(168, 216, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(240, 240, 241, 0.06),
              0 0 24px rgba(168, 216, 255, 0.08),
              var(--shadow);
}

.accent-card {
  text-align: center;
  background:
    radial-gradient(circle at right top, rgba(var(--rgb-accent), 0.14), transparent 34%),
    radial-gradient(circle at left bottom, rgba(var(--rgb-accent-strong), 0.06), transparent 30%),
    linear-gradient(145deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  color: #ffffff;
  border-color: rgba(var(--rgb-accent), 0.35);
}

.accent-card p,
.accent-card h2,
.accent-card span {
  text-align: center;
}

.accent-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  margin: 8px 0 10px;
}

.accent-card span {
  color: rgba(240, 240, 241, 0.82);
}

.glass-card {
  display: grid;
  align-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-accent), 0.06)),
    var(--card);
  border-color: rgba(143, 139, 137, 0.16);
}

.glass-card h2 {
  margin: -2px 0 10px;
  line-height: 0.9;
}

.glass-card p,
.glass-card h2,
.glass-card span {
  text-align: center;
  color: #ffffff;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.image-card-one {
  background:
    linear-gradient(180deg, rgba(var(--rgb-accent), 0.04) 10%, rgba(var(--rgb-accent-strong), 0.16) 100%),
    url("one.jpg") center 44% / cover no-repeat;
  background-blend-mode: normal;
}

.image-card-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(1.32) saturate(1.08);
  z-index: 0;
}

.image-card-one .image-overlay {
  z-index: 1;
  top: 2px;
  bottom: auto;
  text-align: center;
}

.image-overlay {
  position: absolute;
  inset: auto 24px 22px 24px;
}

.image-overlay p,
.image-overlay h3 {
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.image-overlay h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -182px;
}

.stat-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 20px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--rgb-accent-strong), 0.92), rgba(var(--rgb-accent), 0.86));
}

.stat-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--rgb-accent-strong), 0.08), rgba(var(--rgb-accent), 0.26)),
    url("suzuki-outboards-transparent.webp") center center / contain no-repeat;
  opacity: 1;
  filter: brightness(1.16) contrast(1.03);
}

.stat-card > div {
  position: relative;
  z-index: 1;
  width: 100%;
}

.stat-card strong,
.stats-grid strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.7rem;
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: #ffffff;
}

.stat-card strong {
  font-size: clamp(4rem, 9vw, 5.8rem);
  line-height: 0.82;
  color: #ffffff;
}

.stat-card small {
  color: #ffffff;
}

.stat-card small {
  display: block;
  margin: 10px auto 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.22;
  max-width: 12ch;
  text-shadow: 0 2px 10px rgba(var(--rgb-accent), 0.12);
}

.ticker {
  overflow: hidden;
  padding: 12px 0 0;
}

.ticker-hero {
  padding: 58px 0 58px;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
  cursor: default;
}

.ticker-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 32s linear infinite;
  color: rgba(var(--rgb-muted), 0.9);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
}

.ticker-hero .ticker-track {
  gap: 40px;
  font-size: clamp(0.88rem, 1.4vw, 1.08rem);
  letter-spacing: 0.16em;
  color: rgba(var(--rgb-text), 0.72);
}

.ticker-track span::after {
  content: "•";
  margin-left: 26px;
  color: var(--accent-soft);
  opacity: 1;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section,
.stats-section {
  padding: var(--section-shell-top) var(--section-shell-side) var(--section-shell-bottom);
  background:
    radial-gradient(circle at 10% 0%, rgba(var(--rgb-accent), 0.05), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(var(--rgb-accent-strong), 0.04), transparent 24%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 1));
  border-radius: 32px;
  border: 1px solid rgba(var(--rgb-silver), 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow-sm);
  overflow: hidden;
}

.stats-section {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.compact-section {
  padding-top: clamp(24px, 2.8vw, 34px);
}

.section-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 28px;
}

.section-copy h2 {
  max-width: min(100%, 1100px);
  text-wrap: pretty;
}

.section-copy-wide {
  max-width: none;
}

.section-copy-wide h2 {
  max-width: min(100%, 1200px);
}

.section-copy-tight {
  margin-bottom: 20px;
}

.brands-section {
  padding-top: 36px;
  background:
    radial-gradient(circle at 82% 12%, rgba(240, 240, 241, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.94), rgba(var(--rgb-accent), 0.08));
}

.section-copy > p {
  margin-top: 0;
}

.section > :first-child,
.stats-section > :first-child,
.page-hero > :first-child {
  margin-top: 0;
}

.section-copy.narrow {
  max-width: 56ch;
}

.split-section {
  display: grid;
  gap: 22px;
}

.category-grid,
.brand-grid,
.branch-grid,
.inventory-grid,
.feature-grid {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.stats-grid {
  display: grid;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.branch-card,
.inventory-copy,
.info-card {
  min-height: 232px;
  padding: 36px;
}

.category-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 0;
  background:
    radial-gradient(circle at top right, rgba(var(--rgb-accent), 0.05), transparent 30%),
    linear-gradient(160deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 1)),
    var(--card);
  border-color: rgba(var(--rgb-silver), 0.8);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.category-card-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.category-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.38) 100%);
  pointer-events: none;
  z-index: 1;
}

.category-card:hover .category-card-img {
  transform: scale(1.06);
}

.category-card-body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-card:hover {
  border-color: rgba(var(--rgb-accent-strong), 0.9);
  box-shadow: 0 12px 28px rgba(var(--rgb-accent), 0.12);
  transform: translateY(-3px);
}

.category-card::after {
  content: "→";
  position: absolute;
  bottom: 30px;
  right: 32px;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
}

.category-card:hover::after {
  opacity: 0.75;
  transform: translateX(0);
}

.category-card h3 {
  font-size: 1.28rem;
  margin: 4px 0 10px;
  line-height: 1.1;
}

.category-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.category-card span,
.branch-card p,
.inventory-copy p {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  opacity: 0.7;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-grid div {
  display: grid;
  place-items: center;
  min-height: 176px;
  padding: 28px 30px;
  border: 1px solid rgba(var(--rgb-silver), 0.8);
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(var(--rgb-accent), 0.05), transparent 34%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.brand-grid div:hover {
  border-color: rgba(var(--rgb-accent-strong), 0.9);
  background:
    radial-gradient(circle at top, rgba(var(--rgb-accent), 0.08), transparent 34%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(var(--rgb-accent), 0.12);
}

.brand-grid div img {
  max-width: 228px;
  max-height: 98px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.96;
  transition: opacity 140ms ease, transform 140ms ease;
}

.brand-grid div:hover img {
  opacity: 1;
  transform: scale(1.04);
}

/* ─── Brand grid: anchor links ──────────────────────────────────────────── */
.brand-grid a {
  text-decoration: none;
  display: grid;
  place-items: center;
  min-height: 176px;
  padding: 28px 30px;
  border: 1px solid rgba(var(--rgb-silver), 0.8);
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(var(--rgb-accent), 0.05), transparent 34%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
  cursor: pointer;
}

.brand-grid a:hover {
  border-color: rgba(var(--rgb-accent-strong), 0.9);
  background:
    radial-gradient(circle at top, rgba(var(--rgb-accent), 0.1), transparent 34%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(var(--rgb-accent), 0.14);
}

.brand-grid a img {
  max-width: 228px;
  max-height: 98px;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 140ms ease, transform 140ms ease;
}

.brand-grid a:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ─── Brand pages ────────────────────────────────────────────────────────── */

/* Hero */
.brand-page-hero {
  gap: 20px;
  padding-bottom: clamp(52px, 5vw, 72px);
}

.brand-page-hero h1 {
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  max-width: 920px;
  margin-top: 0;
}

.brand-hero-logo {
  display: flex;
  align-items: center;
  height: 76px;
  margin-bottom: 6px;
}

.brand-hero-logo img {
  max-height: 76px;
  max-width: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.dealer-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--rgb-accent), 0.32);
  background: rgba(var(--rgb-accent), 0.08);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
  margin-bottom: 2px;
}

.dealer-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--rgb-accent), 0.7);
  flex: 0 0 auto;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 5px rgba(168, 216, 255, 0.5); }
  50%       { box-shadow: 0 0 14px rgba(168, 216, 255, 0.9), 0 0 24px rgba(168, 216, 255, 0.28); }
}

/* ── Editorial section ───────────────────────────────────────────────────── */
.brand-editorial-header {
  max-width: 820px;
  margin-bottom: 36px;
}

.brand-editorial-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  letter-spacing: -0.02em;
  margin-top: 8px;
  color: #fff;
}

.brand-editorial-body {
  max-width: 700px;
  display: grid;
  gap: 18px;
}

.brand-editorial-body p {
  font-size: 1.02rem;
  line-height: 1.84;
  color: rgba(240, 240, 241, 0.78);
  margin: 0;
}

/* ── Stats bar ───────────────────────────────────────────────────────────── */
.brand-stats-bar {
  display: flex;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-stat-item {
  flex: 1;
  padding: 28px 32px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-stat-item:last-child {
  border-right: none;
}

.brand-stat-value {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
  margin-bottom: 7px;
}

.brand-stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(240, 240, 241, 0.44);
  line-height: 1.4;
}

/* ── Why / features list ─────────────────────────────────────────────────── */
.brand-why-header {
  max-width: 700px;
  margin-bottom: 48px;
}

.brand-why-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  letter-spacing: -0.02em;
  margin-top: 8px;
  color: #fff;
}

.brand-why-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-why-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-why-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 5px;
}

.brand-why-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}

.brand-why-content p {
  font-size: 0.96rem;
  line-height: 1.76;
  color: rgba(240, 240, 241, 0.68);
  margin: 0;
  max-width: 620px;
}

/* ── CTA section ─────────────────────────────────────────────────────────── */
.brand-cta-section {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(var(--rgb-accent), 0.1), transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(var(--rgb-accent), 0.04), transparent 50%),
    linear-gradient(145deg, rgba(18, 15, 13, 1), rgba(0, 0, 0, 1));
  border-color: rgba(var(--rgb-accent), 0.18);
}

.brand-cta-inner {
  max-width: 840px;
}

.brand-cta-inner h2 {
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  letter-spacing: -0.025em;
  color: #fff;
  margin: 8px 0 24px;
  line-height: 1.02;
}

.brand-cta-inner p {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(240, 240, 241, 0.7);
  max-width: 600px;
  margin: 0 0 40px;
}

.brand-cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-cta-note {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 240, 241, 0.36);
}

/* ── Contact list ────────────────────────────────────────────────────────── */
.brand-contact-header {
  max-width: 700px;
  margin-bottom: 48px;
}

.brand-contact-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  letter-spacing: -0.02em;
  margin-top: 8px;
  color: #fff;
}

.brand-contact-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-contact-person {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-contact-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.brand-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-contact-channel {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-contact-channel-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-contact-channel a {
  font-size: 0.92rem;
  color: rgba(240, 240, 241, 0.78);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.brand-contact-channel a:hover {
  color: #fff;
}

/* ── Navis Facebook section ──────────────────────────────────────────────── */
.brand-facebook-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}

.brand-facebook-col h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
}

.brand-facebook-col p {
  font-size: 0.96rem;
  line-height: 1.78;
  color: rgba(240, 240, 241, 0.72);
  margin: 0 0 24px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .brand-stats-bar { flex-wrap: wrap; }

  .brand-stat-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 24px;
  }

  .brand-stat-item:last-child { border-bottom: none; }

  /* brand-facebook-body is already single column */
}

@media (max-width: 640px) {
  .brand-hero-logo { height: 60px; }
  .brand-hero-logo img { max-height: 60px; }

  .brand-why-item { padding: 28px 0; }

  .brand-contact-person { padding: 24px 0; }

  .brand-stats-bar { flex-direction: column; }

  .brand-stat-item {
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
  }

  .brand-cta-inner h2 { font-size: clamp(2rem, 8vw, 3rem); }
}



/* ── Brand merged single content block ──────────────────────────────────── */
.brand-block-intro {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 64px;
}

.brand-block-h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  max-width: 920px;
  line-height: 1.02;
  margin: 20px 0 18px;
}

.brand-block-lead {
  font-size: 1.05rem;
  line-height: 1.82;
  color: rgba(240, 240, 241, 0.68);
  max-width: 680px;
  margin: 0;
}

.brand-why-spacer {
  margin-top: 72px;
}

.brand-facebook-spacer {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── Contact strip ──────────────────────────────────────────────────────── */
.contact-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 0%, rgba(240, 240, 241, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 0.98));
  box-shadow: var(--shadow);
}

.contact-strip-divider {
  width: 1px;
  height: 56px;
  background: var(--line);
  margin: 0 48px;
}

.contact-item {
  display: grid;
  gap: 4px;
}

.contact-item .eyebrow {
  margin: 0 0 6px;
}

.contact-item h3 {
  font-size: 1.08rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.contact-item span {
  color: rgba(240, 240, 241, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

.brand-grid div img[alt="Centurion Boats"],
.brand-grid div img[alt="Nautique Star"],
.brand-grid a img[alt="Centurion Boats"],
.brand-grid a img[alt="NauticStar Boats"] {
  max-width: 248px;
  max-height: 104px;
}

.suzuki-dealer-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 42px 42px 26px;
  border: 1px solid rgba(var(--rgb-silver), 0.8);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 12%, rgba(var(--rgb-accent), 0.08), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(var(--rgb-accent-strong), 0.05), transparent 24%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  box-shadow: var(--shadow);
  align-items: start;
  overflow: hidden;
}

.suzuki-dealer-copy {
  display: grid;
  gap: 14px;
}

.suzuki-dealer-copy h2 {
  max-width: none;
  color: #ffffff;
}

.suzuki-dealer-copy p:last-child {
  max-width: none;
  margin: 0;
  color: rgba(240, 240, 241, 0.82);
  max-width: 68ch;
}

.suzuki-dealer-copy .eyebrow {
  color: var(--accent);
}

.suzuki-dealer-copy .eyebrow,
.reviews-section > .section-copy .eyebrow,
.stats-card-full > .eyebrow {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.18em;
  opacity: 1;
}

.suzuki-dealer-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.suzuki-dealer-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% -7% 12%;
  height: 20%;
  background: radial-gradient(circle, rgba(var(--rgb-accent), 0.08), transparent 68%);
  filter: blur(20px);
}

.suzuki-dealer-visual img {
  position: relative;
  z-index: 1;
  width: 110%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateY(6%);
  transform-origin: center bottom;
}

.suzuki-dealer-section {
  padding-top: 16px;
}

.spotlight-card,
.stats-card,
.finance-card,
.story-panel,
.newsletter-form,
.lead-form {
  padding: 40px;
}

.finance-estimator {
  margin-top: 28px;
  border: 1px solid rgba(var(--rgb-silver), 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(var(--rgb-accent), 0.05), transparent 32%),
    radial-gradient(circle at left bottom, rgba(var(--rgb-accent-strong), 0.04), transparent 28%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(240, 240, 241, 0.02);
}

.finance-estimator-grid {
  display: grid;
  gap: 16px;
}

.finance-estimator-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finance-estimator label {
  display: grid;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 240, 241, 0.82);
}

.finance-estimator input[type="number"] {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid rgba(var(--rgb-silver), 0.9);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  color: #ffffff;
}

.finance-estimator input[type="range"] {
  width: 100%;
  accent-color: #3b82c4;
}

.finance-inline-meta {
  color: rgba(240, 240, 241, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.finance-inline-meta strong {
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finance-estimator-results {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.finance-estimator-results-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finance-estimator-results article {
  padding: 18px 20px;
  border-radius: 14px;
  background:
    radial-gradient(circle at top, rgba(var(--rgb-accent), 0.04), transparent 32%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  border: 1px solid rgba(var(--rgb-silver), 0.8);
}

.finance-estimator-results span {
  display: block;
  color: rgba(240, 240, 241, 0.82);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finance-estimator-results strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Spotlight card - editorial 2-column ──────────────────────────────── */
.spotlight-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.spotlight-card .section-copy {
  margin-bottom: 0;
  position: sticky;
  top: 112px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article {
  padding: 20px 0;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: none;
}

.feature-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.review-panel {
  position: relative;
  min-height: 420px;
  padding: 34px 36px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(var(--rgb-accent), 0.06), transparent 30%),
    radial-gradient(circle at left bottom, rgba(var(--rgb-accent-strong), 0.04), transparent 30%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
}

.review-stage {
  position: relative;
  min-height: 234px;
}

.review-card {
  position: absolute;
  inset: 6px 0 84px;
  display: grid;
  align-content: space-between;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.review-quote {
  max-width: 62ch;
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.42rem);
  line-height: 1.48;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  letter-spacing: 0.01em;
}

.review-controls {
  position: absolute;
  left: 36px;
  bottom: 30px;
}

/* ─── Review dots ────────────────────────────────────────────────────────── */
.review-dots {
  position: absolute;
  right: 36px;
  bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  max-width: 320px;
}

.review-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(240, 240, 241, 0.2);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  /* Expand tap target to 44×44 without affecting layout */
  position: relative;
}

.review-dot::before {
  content: "";
  position: absolute;
  inset: -19px;
}

.review-dot.active {
  background: var(--accent);
  transform: scale(1.5);
}

.review-dot:hover:not(.active) {
  background: rgba(240, 240, 241, 0.45);
}

/* ─── Review meta typography ────────────────────────────────────────────── */
.review-meta {
  margin-top: 8px;
}

.review-meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.review-meta span {
  font-size: 0.8rem;
  color: rgba(240, 240, 241, 0.82);
  letter-spacing: 0.02em;
}

.stats-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stats-card-full,
.finance-card-full {
  width: 100%;
}

.stats-card-full h2 {
  max-width: none;
}

.stats-intro {
  max-width: 68ch;
  margin-top: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
}

.stats-grid article {
  padding: 0 24px;
}

.stats-grid article:first-child {
  padding-left: 0;
}

.stats-grid article:last-child {
  padding-right: 0;
}

.stats-grid article + article {
  border-left: 1px solid var(--line);
}

.stats-grid article span {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 240, 241, 0.82);
}

.finance-card-full .section-copy {
  margin-bottom: 12px;
}

.finance-card-full .section-copy h2 {
  max-width: min(100%, 1200px);
}

.finance-card-full .section-copy p:last-child {
  max-width: 64ch;
}

.finance-card-full .button {
  margin-top: 34px;
}

.story-section {
  padding-bottom: 0;
}

.story-panel > p {
  max-width: 54ch;
}

.app-section,
.showroom-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.showroom-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 28px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.showroom-section .app-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.showroom-section .section-copy,
.showroom-section .app-copy,
.showroom-section .map-card {
  min-height: 100%;
}

.map-card {
  min-height: 340px;
  border: 1px solid rgba(var(--rgb-silver), 0.8);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(var(--rgb-accent), 0.06), transparent 28%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  filter: grayscale(0.12) saturate(0.84) contrast(1.02);
}

.store-pill {
  min-width: 170px;
}

.newsletter-form,
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(var(--rgb-accent), 0.05), transparent 28%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
}

.lead-form textarea,
.newsletter-form input,
.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border: 1px solid rgba(var(--rgb-silver), 0.85);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.lead-form select {
  background:
    linear-gradient(45deg, transparent 50%, rgba(240, 240, 241, 0.82) 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(240, 240, 241, 0.82) 50%, transparent 50%) calc(100% - 16px) 50% / 7px 7px no-repeat,
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  color: #ffffff;
}

.lead-form select option {
  background: #141006;
  color: #ffffff;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

/* ─── Form label premium treatment ─────────────────────────────────────── */
.lead-form label,
.newsletter-form label {
  display: grid;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 240, 241, 0.82);
}

.lead-form textarea:focus,
.newsletter-form input:focus,
.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(var(--rgb-accent-strong), 0.95);
  box-shadow: 0 0 0 3px rgba(var(--rgb-accent-strong), 0.14), 0 10px 22px rgba(var(--rgb-accent), 0.08);
  background: rgba(var(--rgb-surface), 1);
}

.newsletter-form input::placeholder,
.lead-form input::placeholder,
.lead-form textarea::placeholder,
.lead-form select {
  color: rgba(156, 157, 160, 0.7);
}

.lead-form select {
  color: #ffffff;
}

.lead-form input::placeholder,
.newsletter-form input::placeholder,
.lead-form textarea::placeholder {
  transition: opacity 200ms ease;
}

.lead-form input:focus::placeholder,
.newsletter-form input:focus::placeholder,
.lead-form textarea:focus::placeholder {
  opacity: 0.35;
}

.button:focus-visible,
.chip:focus-visible,
.review-button:focus-visible {
  outline: 2px solid #3b82c4;
  outline-offset: 3px;
}

.nav a:focus-visible,
.brand:focus-visible,
.category-card:focus-visible,
.inventory-card:focus-visible,
.product-gallery-arrow:focus-visible,
.gallery-lightbox-arrow:focus-visible,
.gallery-lightbox-close:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid #a8d8ff;
  outline-offset: 3px;
  border-radius: 4px;
}

.newsletter-form input:focus-visible,
.lead-form input:focus-visible,
.lead-form textarea:focus-visible,
.lead-form select:focus-visible {
  border-color: rgba(var(--rgb-accent-strong), 0.95);
  box-shadow: 0 0 0 3px rgba(var(--rgb-accent-strong), 0.14);
}

.lead-form textarea {
  min-height: 152px;
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 40px;
  margin-top: 96px;
  padding: 52px 0 36px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(240, 240, 241, 0.82);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-copyright {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(143, 139, 137, 0.14);
  font-size: 0.78rem;
  color: rgba(240, 240, 241, 0.44);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-card) 18%,
    rgba(168, 216, 255, 0.2) 50%,
    var(--border-card) 82%,
    transparent 100%
  );
  pointer-events: none;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(240, 240, 241, 0.82);
  transition: color var(--transition-fast);
  position: relative;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #ffffff;
}

.finance-check-list li::before,
.service-list li::before,
.include-list li::before,
.check-list li::before,
.product-feature-list li::before,
.product-spec-list li::before,
.info-list li::before,
.safety-dot,
.offer-item .offer-dot {
  background: var(--accent) !important;
  box-shadow: 0 0 10px rgba(168, 216, 255, 0.4) !important;
}

/* ─── Footer typography ─────────────────────────────────────────────────── */
.footer > div:first-child strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer > div:first-child p {
  font-size: 0.88rem;
  color: rgba(240, 240, 241, 0.82);
  max-width: 38ch;
  line-height: 1.62;
  margin: 0;
}

.filter-row {
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 5px 5px 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 240, 241, 0.035), rgba(240, 240, 241, 0.018));
  border: 1px solid rgba(143, 139, 137, 0.16);
  width: max-content;
  max-width: 100%;
}

.inventory-empty {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 36px;
  border: 1px dashed rgba(var(--rgb-silver), 0.95);
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(var(--rgb-accent), 0.05), transparent 32%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 1));
  text-align: center;
}

.inventory-empty[hidden] {
  display: none;
}

.inventory-empty strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.inventory-empty p {
  margin: 0;
  max-width: 52ch;
  color: rgba(240, 240, 241, 0.82);
  line-height: 1.7;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.inventory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="outboards"] .inventory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inventory-card {
  overflow: hidden;
  /* Flex column so the copy can fill the card's stretched height and the CTA
     can bottom-align consistently across cards of differing title lengths. */
  display: flex;
  flex-direction: column;
  position: relative;
  will-change: transform;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  background:
    radial-gradient(circle at top right, rgba(var(--rgb-accent), 0.07), transparent 28%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
}

.inventory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(var(--rgb-accent), 0.12);
}

.inventory-card.is-hidden {
  display: none;
}

.inventory-media {
  min-height: 272px;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(var(--rgb-accent), 0.07), transparent 38%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
}

.inventory-media img {
  width: 100%;
  height: 100%;
  min-height: 272px;
  object-fit: contain;
  display: block;
  padding: 0;
}

body[data-page="outboards"] .inventory-media {
  min-height: auto;
  aspect-ratio: 1 / 1;
}

.inventory-media {
  aspect-ratio: 1 / 1;
  min-height: auto;
  border-radius: 18px 18px 0 0;
}

body[data-page="outboards"] .inventory-media img {
  min-height: 0;
  height: 100%;
  padding: 0;
  object-fit: contain;
}

.inventory-media img {
  min-height: 0;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.inventory-mercury-placeholder {
  background:
    radial-gradient(circle at top left, rgba(240, 240, 241, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(28, 36, 47, 0.96), rgba(5, 9, 15, 1));
}

.inventory-mercury-placeholder::before {
  content: "Mercury";
  position: absolute;
  left: 18px;
  top: 16px;
  color: rgba(240, 240, 241, 0.68);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.inventory-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--rgb-accent), 0.03), transparent 32%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.04), rgba(var(--rgb-silver), 0.16) 62%, rgba(var(--rgb-silver), 0.22) 100%);
  pointer-events: none;
}

.inventory-card:hover .inventory-media {
  transform: scale(1.04);
}

.inventory-road {
  background:
    linear-gradient(180deg, transparent, rgba(var(--rgb-muted), 0.18)),
    linear-gradient(135deg, #ffffff, #ffffff 48%, #ffffff);
}

.inventory-offroad {
  background:
    linear-gradient(180deg, transparent, rgba(var(--rgb-muted), 0.18)),
    linear-gradient(135deg, #ffffff, #ffffff 44%, #ffffff);
}

.inventory-marine {
  background:
    linear-gradient(180deg, transparent, rgba(var(--rgb-muted), 0.18)),
    linear-gradient(135deg, #ffffff, #ffffff 48%, #ffffff);
}

.inventory-utility {
  background:
    linear-gradient(180deg, transparent, rgba(var(--rgb-muted), 0.18)),
    linear-gradient(135deg, #ffffff, #ffffff 44%, #ffffff);
}

.inventory-road-alt {
  background:
    linear-gradient(180deg, transparent, rgba(0, 10, 18, 0.7)),
    linear-gradient(135deg, #003040, #004e60 50%, #002030);
}

.inventory-boat {
  background:
    linear-gradient(180deg, transparent, rgba(0, 10, 18, 0.7)),
    linear-gradient(135deg, #003444, #005568 44%, #002434);
}

.inventory-copy {
  min-height: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 12px;
  padding: 28px 28px 30px;
}

.inventory-copy p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.inventory-copy h3 {
  font-size: 1.24rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.16;
  letter-spacing: 0.02em;
  /* Cap long product titles at 2 lines so every card stays uniform when
     longer names are uploaded in WordPress (full title remains in alt/SEO). */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inventory-copy span {
  font-size: 0.96rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inventory-copy .button {
  /* Push CTA to the bottom of the card so buttons align across a row
     regardless of how many lines the product title wraps to. */
  margin-top: auto;
  align-self: flex-start;
  min-height: 44px;
  font-size: 0.78rem;
  padding: 0 20px;
}

.form-layout,
.app-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.info-stack {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-layout .info-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  min-height: 0;
  background:
    radial-gradient(circle at top right, rgba(168, 216, 255, 0.08), transparent 28%),
    linear-gradient(160deg, rgba(var(--rgb-surface), 0.96), rgba(var(--rgb-surface), 1)),
    var(--card);
  border-color: rgba(143, 139, 137, 0.14);
  box-shadow: inset 0 1px 0 rgba(240, 240, 241, 0.03), var(--shadow);
}

.info-card h3 {
  font-size: 1.16rem;
  line-height: 1.28;
  margin-bottom: 8px;
  color: #ffffff;
}

.info-card h3 a {
  color: inherit;
  text-decoration: none;
}

.info-card > span,
.info-card p {
  font-size: 0.92rem;
  line-height: 1.56;
}

.info-card.info-card-wide {
  grid-column: 1 / -1;
}

.contact-map-card {
  grid-column: 1 / -1;
  min-height: 360px;
}

.contact-map-card iframe {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.12) saturate(0.88) contrast(1.02);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(240, 240, 241, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.product-page-hero {
  padding-bottom: 50px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.product-gallery-panel,
.product-summary-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(168, 216, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  box-shadow: var(--shadow);
}

.product-gallery-panel {
  padding: 20px;
}

.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 22px;
}

.product-description-card {
  grid-column: 1 / -1;
}

.product-description-card .product-feature-list {
  margin-top: 22px;
}

.product-gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: auto;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top, rgba(var(--rgb-accent), 0.05), transparent 32%),
    linear-gradient(180deg, rgba(var(--rgb-accent), 0.03), rgba(var(--rgb-silver), 0.14)),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
}

.product-gallery-figure {
  margin: 0;
  height: 100%;
  min-height: 0;
}

.product-gallery-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  border-radius: 26px;
}

.product-gallery-arrow,
.gallery-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.58);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.product-gallery-arrow:hover,
.gallery-lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(var(--rgb-surface), 1);
  box-shadow: 0 14px 28px rgba(var(--rgb-accent), 0.16);
}

.product-gallery-arrow.is-left,
.gallery-lightbox-arrow.is-left {
  left: 22px;
}

.product-gallery-arrow.is-right,
.gallery-lightbox-arrow.is-right {
  right: 22px;
}

.product-gallery-count {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 16px;
  background: rgba(12, 23, 38, 0.72);
  color: #ffffff;
  border: 1px solid rgba(var(--rgb-silver), 0.85);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-thumb-row[hidden] {
  display: none;
}

.product-thumb {
  position: relative;
  min-height: 86px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 139, 137, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.product-thumb:hover {
  transform: translateY(-2px);
}

.product-thumb.is-active {
  border-color: rgba(168, 216, 255, 0.84);
  box-shadow: 0 0 0 2px rgba(168, 216, 255, 0.16);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  min-height: 86px;
  object-fit: cover;
  display: block;
}

.product-summary-panel {
  padding: 40px 36px 40px;
}

.product-simple-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(var(--rgb-accent), 0.06), transparent 28%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  box-shadow: var(--shadow);
}

.product-simple-card + .product-simple-card {
  margin-top: 22px;
}

.product-summary-panel h2 {
  margin: 4px 0 14px;
  max-width: min(100%, 1100px);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

main > :where(.hero, .ticker, .page-hero, .section, .stats-section) {
  margin-bottom: var(--section-gap);
}

main > :where(.hero, .ticker, .page-hero, .section, .stats-section):last-child {
  margin-bottom: 0;
}

.product-price {
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-description {
  font-size: 1rem;
  line-height: 1.72;
  color: #ffffff;
}

.product-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.product-feature-list-wrap {
  padding-top: 24px;
  border-top: 1px solid rgba(143, 139, 137, 0.14);
}

.product-feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-feature-list li {
  position: relative;
  padding-left: 24px;
  color: #ffffff;
  line-height: 1.55;
}

.product-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.product-story-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.product-story-card {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(var(--rgb-accent), 0.08), transparent 28%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
  box-shadow: var(--shadow);
}

.product-story-lead {
  grid-column: span 2;
}

.product-story-lead div {
  display: grid;
  gap: 18px;
}

.product-story-lead p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.82;
  color: #ffffff;
}

.product-story-lead p.product-story-hook {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.55;
  font-weight: 600;
  color: #ffffff;
}

.product-story-lead p.product-story-small {
  color: rgba(240, 240, 241, 0.82);
}

.product-spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-spec-list li {
  position: relative;
  padding-left: 24px;
  color: #ffffff;
  line-height: 1.6;
}

.product-spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a8d8ff, #3b82c4);
}

.product-contact-card {
  background:
    radial-gradient(circle at top right, rgba(var(--rgb-accent), 0.12), transparent 28%),
    linear-gradient(145deg, rgba(var(--rgb-surface), 1), rgba(var(--rgb-surface), 0.98));
}

.product-contact-list {
  display: grid;
  gap: 14px;
}

.product-contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(143, 139, 137, 0.14);
}

.product-contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-contact-item a {
  color: var(--mist-soft);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.product-contact-item a:hover {
  color: #ffffff;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(var(--rgb-accent-strong), 0.28);
  backdrop-filter: blur(12px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-inner {
  width: min(92vw, 1320px);
  max-height: 86vh;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 48px rgba(var(--rgb-accent), 0.16);
}

.gallery-lightbox-inner img {
  width: 100%;
  height: min(86vh, 900px);
  object-fit: contain;
  display: block;
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(var(--rgb-silver), 0.85);
  font-size: 2rem;
  cursor: pointer;
}

.app-showcase {
  align-items: center;
}

.phone-mockup {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(240, 240, 241, 0.08), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(168, 216, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #ffffff);
  box-shadow: inset 0 1px 0 rgba(var(--rgb-surface), 1), 0 18px 36px rgba(var(--rgb-accent), 0.1);
}

.phone-screen {
  position: relative;
  width: min(280px, 100%);
  min-height: 500px;
  padding: 80px 24px 24px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(240, 240, 241, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff, #ffffff);
  border: 1px solid rgba(143, 139, 137, 0.18);
  box-shadow: inset 0 1px 0 rgba(var(--rgb-surface), 1), 0 18px 36px rgba(var(--rgb-accent), 0.12);
}

.phone-notch {
  position: absolute;
  top: 44px;
  width: 120px;
  height: 20px;
  border-radius: 999px;
  background: rgba(var(--rgb-silver), 0.9);
}

.app-copy-block {
  display: grid;
  gap: 22px;
  align-content: center;
}

.form-success {
  margin-top: 10px;
  color: var(--success);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.form-error {
  /* Amber warning - visually distinct from the ice-blue info accent and the
     green success state, so a failed submission reads clearly as an error. */
  color: #f4c25a;
  background: rgba(244, 194, 90, 0.09);
  border-color: rgba(244, 194, 90, 0.32);
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .button-primary,
  .store-pill,
  .chip.active {
    animation: none !important;
  }

  .hero-card {
    transition: none !important;
    transform: none !important;
  }

  .site-shell {
    animation: none !important;
  }

  .page-hero::after {
    animation: none !important;
    opacity: 0.45;
    width: 40px;
  }

  .stat-count-done {
    animation: none !important;
  }

  .ticker:hover .ticker-track {
    animation-play-state: running;
  }

  .category-card::after {
    transition: none !important;
  }

  .category-card-img {
    transition: none !important;
  }

  .category-card:hover .category-card-img {
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@keyframes siteIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes accentBarIn {
  from { width: 0; opacity: 0; }
  to   { width: 40px; opacity: 0.45; }
}

@keyframes statPop {
  0%   { transform: scale(1); }
  38%  { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.stat-count-done {
  animation: statPop 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Scroll-reveal ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.section.reveal,
.stats-section.reveal {
  opacity: 1;
  transform: none;
}

/* ─── Anchor offset (sticky nav) ────────────────────────────────────────── */
[id] {
  scroll-margin-top: 96px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero,
  .stats-section,
  .app-section,
  .showroom-section,
  .form-layout,
  .app-showcase,
  .product-detail-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-media-grid,
  .inventory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout .info-stack {
    grid-template-columns: 1fr;
  }

  .finance-estimator-grid-wide,
  .finance-estimator-results-wide {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(143, 139, 137, 0.18);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 1));
    backdrop-filter: blur(24px);
    gap: 14px;
  }

  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    width: 100%;
  }

  .nav a + a {
    padding-left: 0;
  }

  .nav a + a::before {
    content: none;
  }

  .nav.is-open {
    display: flex;
    animation: navSlideDown 220ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .stats-grid article {
    padding: 20px;
  }

  .stats-grid article:first-child {
    padding-left: 0;
    padding-top: 0;
  }

  .stats-grid article:nth-child(2) {
    padding-top: 0;
  }

  .stats-grid article + article {
    border-left: none;
  }

  .stats-grid article:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .stats-grid article:nth-child(3),
  .stats-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .contact-strip {
    grid-template-columns: 1fr;
    padding: 28px 32px;
    gap: 20px;
  }

  .contact-strip-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .spotlight-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .spotlight-card .section-copy {
    position: static;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-dots {
    max-width: 240px;
  }

  .suzuki-dealer-band {
    grid-template-columns: 1fr;
  }

  .brands-section {
    padding-top: 56px;
  }
}

@media (min-width: 981px) and (max-width: 1260px) {
  .site-shell {
    width: min(100vw - 34px, 1180px);
  }

  .brand-mark {
    width: 230px;
    height: 78px;
  }

  .nav {
    gap: 8px;
    min-height: 84px;
    margin-left: 0;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .nav a + a {
    padding-left: 10px;
  }

  .section-copy h2,
  .stats-card-full h2,
  .finance-card-full .section-copy h2 {
    max-width: none;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inventory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="outboards"] .inventory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .stats-grid article {
    padding: 20px 22px;
  }

  .stats-grid article + article {
    border-left: none;
  }

  .stats-grid article:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .stats-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .contact-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-strip-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .product-detail-layout,
  .product-content-grid,
  .showroom-section,
  .form-layout,
  .app-showcase,
  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .spotlight-card .section-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100vw - 24px, 1180px);
  }

  .topbar {
    top: 0;
    height: 72px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 170px;
    height: 58px;
  }

  .hero {
    min-height: 62vh;
    padding: 0;
    gap: 0;
  }

  .hero-home {
    margin-top: 0;
    padding-top: 0;
    min-height: 100vh;
    height: 100vh;
  }

  .hero-copy {
    min-height: 62vh;
    padding: 28px 24px 32px;
  }

  .hero-home .hero-copy {
    min-height: 100vh;
    padding: 96px 24px 52px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .hero-video-wrap {
    border-radius: 0;
  }

  .hero-video-wrap::before {
    background:
      linear-gradient(180deg, rgba(5, 12, 20, 0.1) 0%, rgba(7, 17, 28, 0.28) 40%, rgba(7, 17, 28, 0.64) 100%);
  }

  .hero-media-grid,
  .category-grid,
  .brand-grid,
  .branch-grid,
  .newsletter-form,
  .lead-form,
  .stat-card,
  .feature-grid,
  .inventory-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-stage,
  .product-gallery-figure {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .product-gallery-figure img {
    height: 100%;
  }

  body[data-page="outboards"] .inventory-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-arrow,
  .gallery-lightbox-arrow {
    width: 40px;
    height: 40px;
  }

  .product-summary-panel {
    padding: 28px;
  }

  .gallery-lightbox {
    padding: 20px;
  }

  .product-story-layout {
    grid-template-columns: 1fr;
  }

  .product-story-lead {
    grid-column: span 1;
  }

  .product-thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .finance-estimator {
    padding: 20px;
  }

  .finance-estimator-results strong {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-strip {
    padding: 24px;
  }

  /* Ticker: prevent overflow bleed on narrow viewports */
  .ticker {
    overflow: hidden;
    max-width: 100vw;
  }

  .review-card {
    inset: 28px 28px 108px;
  }

  .review-controls {
    left: 28px;
    right: 28px;
  }

  .review-dots {
    left: 28px;
    right: 28px;
    bottom: 34px;
    max-width: none;
    justify-content: flex-start;
  }

  .review-stage {
    min-height: 340px;
  }

  .ticker-hero {
    padding: 40px 0 40px;
  }

  .suzuki-dealer-band {
    padding: 24px 20px 14px;
  }

  .suzuki-dealer-visual {
    min-height: 150px;
  }

  .brands-section {
    padding-top: 44px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 80px;
    padding: 36px 0 28px;
  }

  .footer-links {
    gap: 12px;
  }

  h1 {
    max-width: none;
  }

  /* Suppress parallax transform on touch devices */
  .hero-card {
    transition: none;
  }

  .page-hero {
    padding: 36px 24px 42px;
  }

  .section,
  .stats-section {
    padding-top: 28px;
  }

  .spotlight-card,
  .stats-card,
  .finance-card,
  .story-panel,
  .newsletter-form,
  .lead-form {
    padding: 28px;
  }

  .info-card {
    padding: 28px;
  }

  .contact-strip {
    padding: 28px 24px;
  }

  .page-hero-banner {
    aspect-ratio: 3/2;
    border-radius: 20px;
  }

  /* ── Mobile topbar: solid bg when scrolled ─────────────────────────────── */
  .topbar.is-scrolled .nav {
    min-height: 52px;
    padding: 0 18px;
  }

  /* ── Mobile touch targets (mobile-website skill: min 44px) ─────────────── */
  .button {
    min-height: 50px;
    padding: 0 22px;
  }
  .chip {
    min-height: 42px;
    padding: 0 14px;
  }
  .menu-toggle {
    width: 50px;
    height: 50px;
  }

  /* ── Mobile category cards: 2 column on small tablets ──────────────────── */
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  /* ── Mobile brand grid ─────────────────────────────────────────────────── */
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  /* ── Mobile typography improvements ────────────────────────────────────── */
  .nav a {
    font-size: 0.95rem;
    letter-spacing: 0;
  }

  .section-copy {
    margin-bottom: 20px;
  }

  /* ── Section shell padding ──────────────────────────────────────────────── */
  .section {
    border-radius: 20px;
  }

  .hero {
    border-radius: 20px;
  }

  .page-hero {
    border-radius: 20px;
  }

  /* ── Suzuki section mobile ──────────────────────────────────────────────── */
  .suzuki-dealer-visual img {
    width: 100%;
    transform: none;
  }

  /* ── Forms mobile ───────────────────────────────────────────────────────── */
  .lead-form label,
  .newsletter-form label {
    font-size: 0.9rem;
  }

  /* ── Brand why items mobile ─────────────────────────────────────────────── */
  .brand-why-item {
    padding: 28px 0;
  }

  /* ── Footer mobile typography ───────────────────────────────────────────── */
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN ENHANCEMENT LAYER v2
   Skills applied: ui-ux-pro-max · ui-design-brain · ckm:banner-design
                   monoline-icons · frontend-design-pro
   Added: gradient mesh backgrounds · keyframe animations · hover effects
          monoline icon system · gradient accent treatments · ambient orbs
═══════════════════════════════════════════════════════════════════════════ */

/* ── New design tokens ──────────────────────────────────────────────────── */
:root {
  --glow-r:  168, 216, 255;
  --glow-a:  168, 216, 255;
  --orb-1:   radial-gradient(ellipse 680px 480px at 15% -8%, rgba(168, 216, 255,0.13), transparent 58%);
  --orb-2:   radial-gradient(ellipse 520px 600px at 92% 108%, rgba(59, 130, 196,0.10), transparent 52%);
  --orb-3:   radial-gradient(ellipse 400px 350px at 50% 50%, rgba(168, 216, 255,0.07), transparent 55%);
  --orb-amber: radial-gradient(ellipse 440px 300px at 85% 15%, rgba(168, 216, 255,0.08), transparent 50%);
  --mesh-a:  radial-gradient(ellipse 800px 500px at -5% 30%, rgba(168, 216, 255,0.11), transparent 52%),
             radial-gradient(ellipse 600px 700px at 105% 70%, rgba(59, 130, 196,0.08), transparent 48%);
  --mesh-b:  radial-gradient(ellipse 700px 500px at 100% 0%, rgba(59, 130, 196,0.09), transparent 50%),
             radial-gradient(ellipse 500px 600px at 0% 100%, rgba(168, 216, 255,0.07), transparent 46%);
  --mesh-c:  radial-gradient(ellipse 900px 400px at 50% -5%, rgba(168, 216, 255,0.10), transparent 50%),
             radial-gradient(ellipse 450px 550px at 0% 100%, rgba(59, 130, 196,0.08), transparent 45%);
}

/* ── Keyframes ──────────────────────────────────────────────────────────── */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes orb-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

@keyframes shimmer-pass {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(320%)  skewX(-18deg); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--glow-r), 0); }
  50%       { box-shadow: 0 0 28px 6px rgba(var(--glow-r), 0.18); }
}

@keyframes border-trace {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradient-drift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes count-up-flash {
  0%   { color: var(--accent); }
  100% { color: #ffffff; }
}

@keyframes icon-draw {
  from { stroke-dashoffset: 200; opacity: 0; }
  to   { stroke-dashoffset: 0;   opacity: 1; }
}

@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes scale-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Section gradient mesh backgrounds ─────────────────────────────────── */

/* Rotate through 3 mesh themes across sibling sections */
main > .section:nth-child(odd) {
  background:
    var(--mesh-a),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.96), rgba(12, 10, 6, 0.99));
}

main > .section:nth-child(even) {
  background:
    var(--mesh-b),
    linear-gradient(180deg, rgba(20, 18, 14, 0.97), rgba(var(--rgb-surface), 0.96));
}

main > .section.brands-section {
  background:
    radial-gradient(ellipse 700px 400px at 50% 100%, rgba(168, 216, 255,0.08), transparent 52%),
    radial-gradient(ellipse 500px 300px at 0% 0%, rgba(59, 130, 196,0.06), transparent 45%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.94), rgba(12, 10, 6, 0.98));
}

main > .section.stats-section {
  background:
    radial-gradient(ellipse 900px 500px at 50% 50%, rgba(168, 216, 255,0.11), transparent 55%),
    radial-gradient(ellipse 400px 400px at 5% 5%, rgba(59, 130, 196,0.08), transparent 45%),
    radial-gradient(ellipse 400px 400px at 95% 95%, rgba(59, 130, 196,0.06), transparent 42%),
    linear-gradient(180deg, rgba(14, 12, 8, 0.98), rgba(var(--rgb-surface), 0.97));
}

main > .section.newsletter-section {
  background:
    radial-gradient(ellipse 600px 350px at 50% 0%, rgba(168, 216, 255,0.14), transparent 52%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.98), rgba(8, 7, 5, 0.99));
  border-color: rgba(168, 216, 255,0.16);
}

main > .section.reviews-section {
  background:
    radial-gradient(ellipse 500px 400px at 0% 50%, rgba(168, 216, 255,0.09), transparent 48%),
    radial-gradient(ellipse 600px 350px at 100% 50%, rgba(59, 130, 196,0.07), transparent 45%),
    linear-gradient(160deg, rgba(22, 18, 14, 0.97), rgba(var(--rgb-surface), 0.96));
}

main > .section.showroom-section {
  background:
    radial-gradient(ellipse 800px 600px at 80% 50%, rgba(168, 216, 255,0.10), transparent 52%),
    linear-gradient(135deg, rgba(12, 10, 6, 0.99), rgba(var(--rgb-surface), 0.96));
}

main > .section.suzuki-dealer-section {
  background:
    radial-gradient(ellipse 700px 500px at 20% 60%, rgba(168, 216, 255,0.10), transparent 50%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.97), rgba(14, 12, 8, 0.99));
}

main > .section.split-section {
  background:
    radial-gradient(ellipse 600px 500px at 75% 30%, rgba(168, 216, 255,0.12), transparent 50%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(59, 130, 196,0.07), transparent 42%),
    linear-gradient(160deg, rgba(18, 14, 10, 0.98), rgba(var(--rgb-surface), 0.96));
}

/* Page hero sections get a stronger gradient */
.page-hero {
  background:
    radial-gradient(ellipse 70% 90% at 90% -10%, rgba(168, 216, 255,0.15), transparent 48%),
    radial-gradient(ellipse 50% 60% at -5% 110%, rgba(59, 130, 196,0.10), transparent 44%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(168, 216, 255,0.06), transparent 42%),
    linear-gradient(180deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 1)) !important;
}

/* ── Eyebrow gradient text ──────────────────────────────────────────────── */
.eyebrow {
  background: linear-gradient(90deg, #a8d8ff 0%, #a8d8ff 55%, #a8d8ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-drift 4s ease infinite;
  display: inline-block;
}

/* Exception: don't gradient eyebrows that are inside dark/accent contexts */
.hero-home .eyebrow,
.hero .eyebrow {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  animation: none;
  color: var(--accent);
}

/* ── Stats big numbers - gradient treatment ─────────────────────────────── */
.stats-grid strong {
  background: linear-gradient(135deg, #ffffff 0%, rgba(168, 216, 255,0.9) 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.stats-grid article:hover strong {
  background-position: right center;
}

/* ── Ambient orb overlay on hero sections ───────────────────────────────── */
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 85% 15%, rgba(168, 216, 255,0.15), transparent 50%),
    radial-gradient(ellipse 500px 600px at 5% 80%, rgba(59, 130, 196,0.09), transparent 45%);
  pointer-events: none;
  animation: orb-breathe 8s ease-in-out infinite;
  z-index: 0;
}

/* ── Info card hover ── glow border + lift + background shift ───────────── */
.info-card {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(168, 216, 255,0.0) 0%,
    rgba(168, 216, 255,0.06) 50%,
    rgba(168, 216, 255,0.0) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  z-index: 0;
}

.info-card::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240, 240, 241, 0.05) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 48px rgba(var(--glow-r), 0.16),
    0 0 0 1px rgba(var(--glow-r), 0.22),
    inset 0 1px 0 rgba(240, 240, 241, 0.06);
  border-color: rgba(168, 216, 255,0.30);
}

.info-card:hover::before { opacity: 1; }

.info-card:hover::after {
  animation: shimmer-pass 0.65s ease forwards;
}

.info-card h3 {
  position: relative;
  z-index: 2;
  transition: color var(--transition-fast);
}

.info-card:hover h3 { color: #ffffff; }

.info-card > span,
.info-card p {
  position: relative;
  z-index: 2;
}

/* ── Monoline icon system ───────────────────────────────────────────────── */
.ml-icon {
  display: block;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.ml-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke var(--transition-fast), transform var(--transition-base);
}

.info-card:hover .ml-icon svg {
  stroke: #a8d8ff;
  transform: scale(1.12);
}

/* Draw-on effect when card becomes visible */
.is-revealed .ml-icon svg path,
.is-revealed .ml-icon svg circle,
.is-revealed .ml-icon svg rect,
.is-revealed .ml-icon svg polyline,
.is-revealed .ml-icon svg line {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  animation: icon-draw 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Category card enhancements ─────────────────────────────────────────── */
.category-card {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 28px 56px rgba(var(--glow-r), 0.20),
    0 0 0 1.5px rgba(var(--glow-r), 0.28);
  border-color: rgba(168, 216, 255,0.35);
}

.category-card:hover .category-card-body h3 {
  color: #ffffff;
}

.category-card-body {
  position: relative;
  transition: background var(--transition-base);
}

.category-card:hover .category-card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(168, 216, 255,0.05), transparent);
  pointer-events: none;
}

/* ── Inventory card enhancements ────────────────────────────────────────── */
.inventory-card {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.inventory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(168, 216, 255,0.0) 0%,
    rgba(168, 216, 255,0.04) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  z-index: 0;
}

.inventory-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 44px rgba(var(--glow-r), 0.18),
    0 0 0 1px rgba(var(--glow-r), 0.20);
  border-color: rgba(168, 216, 255,0.28);
}

.inventory-card:hover::after { opacity: 1; }

/* ── Brand grid hover ───────────────────────────────────────────────────── */
.brand-grid > div,
.brand-grid > a {
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.brand-grid > div::after,
.brand-grid > a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(168, 216, 255,0.10), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.brand-grid > div:hover,
.brand-grid > a:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(var(--glow-r), 0.18), 0 0 0 1px rgba(var(--glow-r), 0.20);
  border-color: rgba(168, 216, 255,0.28);
}

.brand-grid > div:hover::after,
.brand-grid > a:hover::after { opacity: 1; }

/* ── Stat cards hover ───────────────────────────────────────────────────── */
.stats-grid article {
  position: relative;
  cursor: default;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
  overflow: hidden;
}

.stats-grid article::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stats-grid article:hover::after { transform: scaleX(1); }

.stats-grid article:hover {
  background: rgba(168, 216, 255,0.04);
  box-shadow: inset 0 0 30px rgba(168, 216, 255,0.05);
}

/* ── Hero card hover ────────────────────────────────────────────────────── */
.hero-card {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,240,241,0.06), transparent);
  transform: skewX(-18deg);
  transition: none;
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 44px rgba(var(--glow-r), 0.16), 0 0 0 1px rgba(var(--glow-r), 0.18);
  border-color: rgba(168, 216, 255,0.30);
}

.hero-card:hover::after {
  animation: shimmer-pass 0.6s ease forwards;
}

/* ── Footer links hover - slide + glow ──────────────────────────────────── */
.footer-links a {
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent) !important;
  transform: translateX(3px);
}

/* ── Nav link hover - line reveal ───────────────────────────────────────── */
.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:hover::after,
.nav a.nav-active::after {
  transform: scaleX(1);
}

/* ── Button enhancements - shimmer on hover ─────────────────────────────── */
.button {
  position: relative;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  /* White shine sweep removed - on hover it swept a white band across the
     button (reading as "white going over the right edge"). Kept the element
     so the loading-spinner rule (.button.is-loading::after) still works. */
  background: none;
  transform: skewX(-18deg);
  pointer-events: none;
}

/* ── Page hero banner - overlay gradient enhancement ────────────────────── */
.page-hero-banner {
  position: relative;
}

.page-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(168, 216, 255,0.15), transparent 50%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(59, 130, 196,0.10), transparent 45%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* ── Section inner gradient dividers ────────────────────────────────────── */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(168, 216, 255, 0.18) 30%,
    rgba(120, 185, 235, 0.22) 50%,
    rgba(168, 216, 255, 0.18) 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── App section gradient ───────────────────────────────────────────────── */
.app-section {
  background:
    radial-gradient(ellipse 600px 500px at 90% 50%, rgba(168, 216, 255,0.12), transparent 52%),
    radial-gradient(ellipse 400px 400px at 5% 20%, rgba(59, 130, 196,0.08), transparent 45%),
    linear-gradient(160deg, rgba(18, 14, 10, 0.98), rgba(var(--rgb-surface), 0.96));
}

/* ── Contact info-stack cards ───────────────────────────────────────────── */
.info-stack .info-card {
  position: relative;
}

.info-stack .info-card:first-child {
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(168, 216, 255,0.12), transparent 50%),
    linear-gradient(160deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 1));
}

/* ── Feature grid section backgrounds ──────────────────────────────────── */
.section .feature-grid .info-card:nth-child(1) {
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(168, 216, 255,0.11), transparent 50%),
    linear-gradient(160deg, rgba(var(--rgb-surface), 0.98), rgba(var(--rgb-surface), 1));
}

.section .feature-grid .info-card:nth-child(2) {
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(59, 130, 196,0.09), transparent 50%),
    linear-gradient(160deg, rgba(var(--rgb-surface), 0.97), rgba(var(--rgb-surface), 1));
}

.section .feature-grid .info-card:nth-child(3) {
  background:
    radial-gradient(ellipse 100% 80% at 0% 100%, rgba(168, 216, 255,0.09), transparent 50%),
    linear-gradient(160deg, rgba(var(--rgb-surface), 0.96), rgba(var(--rgb-surface), 1));
}

.section .feature-grid .info-card:nth-child(4) {
  background:
    radial-gradient(ellipse 100% 80% at 100% 100%, rgba(59, 130, 196,0.10), transparent 50%),
    linear-gradient(160deg, rgba(var(--rgb-surface), 0.97), rgba(var(--rgb-surface), 1));
}

/* ── Hero-card grid gradient differentiation ────────────────────────────── */
.hero-card:nth-child(1) {
  background:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(168, 216, 255,0.12), transparent 55%),
    var(--card);
}

.hero-card:nth-child(2) {
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(59, 130, 196,0.10), transparent 52%),
    var(--card);
}

.hero-card:nth-child(3) {
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(168, 216, 255,0.10), transparent 50%),
    var(--card);
}

/* ── Reveal animation enhancements - staggered fade-up ─────────────────── */
.reveal {
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(20px);
}

.reveal.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── Product gallery arrow hover ────────────────────────────────────────── */
.product-gallery-arrow {
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.product-gallery-arrow:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(var(--glow-r), 0.20);
  border-color: rgba(168, 216, 255,0.40);
  background: rgba(168, 216, 255,0.12);
}

/* ── Ticker hover acceleration ──────────────────────────────────────────── */
.ticker-track {
  transition: animation-duration 400ms ease;
}

.ticker:hover .ticker-track {
  animation-duration: 18s !important;
}

/* ── Workshop service list item hover ───────────────────────────────────── */
.service-list li,
.include-list li,
.check-list li,
.product-feature-list li {
  transition: color var(--transition-fast), transform var(--transition-fast);
  cursor: default;
}

.service-list li:hover,
.include-list li:hover,
.check-list li:hover,
.product-feature-list li:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ── Page-hero banner enhanced aspect on mobile ─────────────────────────── */
@media (max-width: 720px) {
  .page-hero-banner {
    aspect-ratio: 16 / 7;
  }
}

/* ── Reduced motion - disable all new animations ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .eyebrow,
  .stats-grid strong,
  .hero-home::before {
    animation: none !important;
    background-size: 100% auto;
  }

  .info-card:hover::after,
  .hero-card:hover::after,
  .button:hover::after {
    animation: none !important;
  }

  .reveal {
    transform: none !important;
  }

  .footer-links a:hover { transform: none; }
  .info-card:hover { transform: none; }
  .inventory-card:hover { transform: none; }
  .category-card:hover { transform: translateY(0) scale(1); }
  .brand-grid > div:hover,
  .brand-grid > a:hover { transform: none; }
  .hero-card:hover { transform: none; }
  .product-gallery-arrow:hover { transform: none; }
}



/* ══════════════════════════════════════════════════════════
   COMPACT SCALE - reduce overall density ~25%  |  brands-9c
   ══════════════════════════════════════════════════════════ */

/* ── Spacing tokens ── */
:root {
  --section-gap:         clamp(36px, 3.5vw, 56px) !important;
  --section-shell-top:   clamp(18px, 1.8vw, 26px) !important;
  --section-shell-side:  clamp(14px, 1.6vw, 20px) !important;
  --section-shell-bottom:clamp(14px, 1.8vw, 22px) !important;
}

/* ── Base font ── */
body {
  font-size: clamp(0.875rem, 1.1vw, 1.0rem) !important;
}

/* ── Global headings ── */
h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.6rem) !important;
}

h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.55rem) !important;
}

h3 {
  font-size: 0.95rem !important;
}

/* ── Section + page-hero border-radius ── */
.section,
.stats-section,
.page-hero,
.page-hero-banner,
.hero {
  border-radius: 18px !important;
}

/* ── Section (card) padding ── */
.section,
.stats-section {
  padding: var(--section-shell-top) var(--section-shell-side) var(--section-shell-bottom) !important;
}

/* ── Section-copy spacing ── */
.section-copy {
  margin-bottom: 16px !important;
  gap: 8px !important;
}

/* ── Info cards & category cards ── */
.info-card,
.category-card,
.inventory-copy {
  min-height: 0 !important;
  padding: 24px !important;
  border-radius: 14px !important;
}

/* ── Feature grid gap ── */
.feature-grid {
  gap: 14px !important;
}

/* ── Homepage hero copy padding ── */
.hero-copy {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 40px) clamp(38px, 4vw, 50px) !important;
}

.hero-home .hero-copy {
  padding: clamp(72px, 6.5vw, 96px) min(5vw, 64px) 72px !important;
}

/* ── Page hero padding & heading ── */
.page-hero {
  padding: clamp(24px, 2.8vw, 36px) clamp(20px, 2.8vw, 36px) clamp(24px, 2.8vw, 32px) !important;
  margin-top: 16px !important;
  gap: 8px !important;
}

.page-hero h1,
.page-hero h2 {
  font-size: clamp(1.8rem, 2.8vw, 3.0rem) !important;
}

/* ── Page hero banner aspect ratio (less tall) ── */
.page-hero-banner {
  aspect-ratio: 21/6 !important;
  margin-top: 16px !important;
  border-radius: 16px !important;
}

/* ── Brand page headings ── */
.brand-page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
}

/* ── Stat numbers ── */
[data-count],
.stat-number {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem) !important;
}

/* ── Various inner-page h1/h2 overrides from enhancement layer ── */
:where(.page-hero, .section, .stats-section, .section-copy, .app-copy, .story-panel) > h1 {
  font-size: clamp(1.8rem, 2.8vw, 3.0rem) !important;
}

:where(.page-hero, .section, .stats-section, .section-copy, .app-copy, .story-panel) > h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.55rem) !important;
}

/* ── Hero text (subtitle) ── */
.hero-text {
  font-size: clamp(0.9rem, 1.3vw, 1.08rem) !important;
}

/* ── Button row gap ── */
.button-row {
  gap: 10px !important;
  margin-top: 6px !important;
}

/* ── Story panel ── */
.story-panel {
  gap: 12px !important;
}

/* ── Outboard / inventory cards ── */
.outboard-card,
.inventory-card {
  border-radius: 14px !important;
}

/* ── Finance / licence / workshop cards ── */
.finance-card,
.licence-card,
.workshop-card {
  border-radius: 14px !important;
  padding: 24px !important;
}

/* ── Lead form ── */
.lead-form {
  border-radius: 18px !important;
}

/* ═══════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════
   FIX PASS - pure red, no logo, centred nav underline
   ══════════════════════════════════════════════════════ */

/* 1 ── Pure red accent (no orange/pink anywhere) ───────────────────────── */
:root {
  --accent:            #a8d8ff !important;
  --accent-strong:     #3b82c4 !important;
  --accent-soft:       #9c9da0 !important;
  --rgb-accent:        168, 216, 255 !important;
  --rgb-accent-strong: 59, 130, 196 !important;
}

/* Hardcoded orange hex values */
.button-primary,
.store-pill {
  background: linear-gradient(135deg, #a8d8ff, #3b82c4) !important;
}

.button-primary:hover,
.store-pill:hover {
  background: linear-gradient(135deg, rgba(168, 216, 255,0.94), rgba(59, 130, 196,0.94)) !important;
}

/* Icon hover stroke was orange - fix to red */
.info-card:hover .ml-icon svg {
  stroke: #a8d8ff !important;
}

/* Focus outline */
*:focus-visible {
  outline-color: #a8d8ff !important;
}

/* Pipe separators between nav items */
.nav a + a::before {
  color: #a8d8ff !important;
}

/* 2 ── Remove logo from topbar ─────────────────────────────────────────── */
.brand {
  display: none !important;
}

/* 3 ── Nav underline: centred with the word, not with padding ───────────── */
/*
   .nav a + a has padding-left: 14px for the | separator gap.
   The ::after element was starting at left:0 (the very edge of that padding)
   making the line extend left of the text. Fix: start at 14px.
*/
.nav a::after {
  transform-origin: center center !important;
}

.nav a + a::after {
  left: 14px !important;
  width: calc(100% - 14px) !important;
  transform-origin: center center !important;
}

/* Re-declare scaleX(1) so it still activates correctly */
.nav a:hover::after,
.nav a.nav-active::after,
body[data-page="inventory"] .nav a[href="inventory.html"]::after,
body[data-page="sell"]      .nav a[href="sell.html"]::after,
body[data-page="finance"]   .nav a[href="finance.html"]::after,
body[data-page="app"]       .nav a[href="app.html"]::after,
body[data-page="contact"]   .nav a[href="contact.html"]::after,
body[data-page="outboards"] .nav a[href="outboards.html"]::after,
body[data-page="workshop"]  .nav a[href="workshop.html"]::after,
body[data-page="renewals"]  .nav a[href="renewals.html"]::after,
body[data-page="licence"]   .nav a[href="licence.html"]::after,
body[data-page="socials"]   .nav a[href="socials.html"]::after,
body[data-page="altilium"]  .nav a[href="altilium.html"]::after,
body[data-page="cushy"]     .nav a[href="cushy.html"]::after {
  transform: scaleX(1) !important;
}

/* ════════════════════════════════════════════════════ */
