/* ============================================================================
   LEISURE MARINE - PROFESSIONAL ENHANCEMENT LAYER (v1.0)
   Loaded AFTER styles.css to upgrade premium feel, mobile UX, conversion CTAs,
   typography rhythm, accessibility and overall polish - non-destructive.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Refined design tokens (premium marine + automotive feel)
   -------------------------------------------------------------------------- */
:root {
  --lm-accent: #a8d8ff;
  --lm-accent-strong: #3b82c4;
  --lm-accent-deep: #0a1428;
  --lm-ink: #0a0a0a;
  --lm-ink-soft: #141414;
  --lm-platinum: #e8e8e9;
  --lm-silver: #b8b9bc;
  --lm-gold: #c9a96a;
  --lm-line: rgba(255, 255, 255, 0.10);
  --lm-line-strong: rgba(255, 255, 255, 0.18);
  --lm-shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.35);
  --lm-shadow-medium: 0 28px 60px rgba(0, 0, 0, 0.45);
  --lm-shadow-deep: 0 40px 90px rgba(0, 0, 0, 0.55);
  --lm-radius-sm: 12px;
  --lm-radius-md: 18px;
  --lm-radius-lg: 28px;
}

html { scroll-behavior: smooth; }

/* --------------------------------------------------------------------------
   2. Typography rhythm - premium headline polish
   -------------------------------------------------------------------------- */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 1.04;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.55rem); letter-spacing: 0.05em; text-transform: uppercase; }

p, li, label, span, a { letter-spacing: 0.005em; }

p { line-height: 1.7; }

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--lm-accent);
  display: inline-block;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   3. Top navigation - luxury showroom polish
   -------------------------------------------------------------------------- */
.topbar {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0) 100%);
  transition: background 280ms ease, backdrop-filter 280ms ease, box-shadow 280ms ease;
}
.topbar.is-scrolled {
  background: rgba(8, 8, 8, 0.82) !important;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.topbar.is-scrolled .nav {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.nav a {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  transition: color 200ms ease, opacity 200ms ease;
}
.nav a:hover { color: var(--lm-accent) !important; }
.nav a + a::before { color: rgba(255, 255, 255, 0.18) !important; }

/* New: nav-mounted Enquire button */
.nav .nav-cta {
  margin-left: 14px;
  padding: 10px 20px !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--lm-accent), var(--lm-accent-strong)) !important;
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(8, 16, 32, 0.42);
  white-space: nowrap;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}
.nav .nav-cta::before { content: none !important; }
.nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(8, 16, 32, 0.5);
  filter: brightness(1.05);
  color: #fff !important;
}

/* --------------------------------------------------------------------------
   4. Buttons - automotive-grade CTAs
   -------------------------------------------------------------------------- */
.button {
  font-family: "Manrope", sans-serif;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  min-height: 56px !important;
  padding: 0 30px !important;
  position: relative;
  overflow: hidden !important;
  isolation: isolate;
  clip-path: inset(0 round 999px);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 220ms ease,
              background 220ms ease;
}
.button:not(.is-loading)::after {
  content: none !important;
}
.button-primary {
  border-color: #3b82c4 !important;
  background: linear-gradient(135deg, #c5e6ff 0%, #3b82c4 63%, #0a1428 96%, #0a1428 100%) !important;
  background-clip: border-box;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(8, 16, 32, 0.5),
              inset 0 0 0 1px rgba(59, 130, 196, 0.42) !important;
}
.button-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #c5e6ff 0%, #3b82c4 63%, #0a1428 96%, #0a1428 100%) !important;
  background-clip: border-box;
  color: #fff !important;
  box-shadow: 0 18px 40px rgba(8, 16, 32, 0.58),
              inset 0 0 0 1px rgba(59, 130, 196, 0.5) !important;
  filter: brightness(1.06);
}
.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(8px);
  color: #fff !important;
}
.button-secondary:hover {
  border-color: var(--lm-accent) !important;
  background: rgba(168, 216, 255, 0.10) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Tertiary "ghost on dark" button used for inline CTAs */
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}
.button-ghost:hover { border-color: var(--lm-accent); color: var(--lm-accent); }

/* --------------------------------------------------------------------------
   5. Hero - homepage cinematic upgrade
   -------------------------------------------------------------------------- */
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%),
    linear-gradient(95deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-home .hero-copy { z-index: 2; }
.hero-home h1 {
  font-weight: 800 !important;
  text-shadow: 0 18px 50px rgba(0,0,0,0.5);
}
.hero-home h1 span:first-child {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600 !important;
}
.hero-home h1 span:last-child {
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 60%, #b8b9bc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-home .hero-text {
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.86) !important;
  margin-top: 22px;
}
.hero-home .hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-home .hero-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}
.hero-home .hero-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.97rem;
  line-height: 1.55;
}
.hero-home .hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lm-accent), var(--lm-accent-strong));
}

/* Subtle scroll cue */
.hero-home::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}
.hero-home .hero-copy::after {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  bottom: 56px;
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: lmScroll 1.6s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
@keyframes lmScroll {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(10px); opacity: 0.2; }
}

/* --------------------------------------------------------------------------
   6. Page hero (interior pages) - premium banner polish
   -------------------------------------------------------------------------- */
.page-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--lm-radius-lg);
  margin: 8px 0 24px;
  box-shadow: var(--lm-shadow-medium);
}
.page-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero-banner img {
  display: block;
  width: 100%;
  height: clamp(220px, 36vw, 460px);
  object-fit: cover;
  transform: scale(1.0);
  transition: transform 6s ease-out;
}
.page-hero-banner:hover img { transform: scale(1.04); }

.page-hero {
  padding: 22px 0 18px !important;
  max-width: 920px;
}
.page-hero h1 {
  font-weight: 800;
  margin: 8px 0 12px;
}
.page-hero .hero-text,
.page-hero .workshop-intro,
.page-hero .renewals-intro,
.page-hero .licence-intro,
.page-hero .finance-intro {
  font-size: 1.06rem;
  line-height: 1.72;
  color: rgba(240, 240, 241, 0.86) !important;
  max-width: 70ch;
}

/* --------------------------------------------------------------------------
   7. Cards - boat / product / service / brand cards
   -------------------------------------------------------------------------- */
.inventory-card,
.category-card,
.info-card,
.service-card,
.finance-product-card,
.renewals-card,
.brand-why-item {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(14, 14, 14, 0.99)) !important;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 300ms ease,
              box-shadow 300ms ease !important;
  overflow: hidden;
  position: relative;
}

.brand-why-list .brand-why-item {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  column-gap: clamp(22px, 2.4vw, 34px) !important;
  row-gap: 8px !important;
  padding: clamp(30px, 3vw, 42px) clamp(28px, 3.4vw, 52px) !important;
}

.brand-why-list .brand-why-num {
  align-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(168, 216, 255, 0.22)) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 26px rgba(168, 216, 255, 0.16) !important;
  font-size: 0.86rem !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
}

.brand-why-list .brand-why-content {
  min-width: 0 !important;
}

.brand-why-list .brand-why-content p {
  max-width: 68ch !important;
}
.inventory-card:hover,
.category-card:hover,
.info-card:hover,
.service-card:hover,
.finance-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 216, 255, 0.35) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(168, 216, 255, 0.12) !important;
}

.inventory-card .inventory-media,
.category-card .category-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.inventory-card .inventory-media img,
.category-card-img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.inventory-card:hover .inventory-media img,
.category-card:hover .category-card-img {
  transform: scale(1.06);
}

/* Card "view product" CTA emphasis */
.inventory-card .button-secondary {
  width: 100%;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   8. Brand strip - premium logo wall
   -------------------------------------------------------------------------- */
.brand-grid a {
  position: relative;
  padding: 28px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--lm-radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  transition: border-color 280ms ease, background 280ms ease, transform 280ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.brand-grid a img {
  filter: brightness(0) invert(1);
  opacity: 0.78;
  max-height: 64px;
  width: auto;
  object-fit: contain;
  transition: opacity 280ms ease, transform 280ms ease;
}
.brand-grid a:hover {
  border-color: rgba(168, 216, 255, 0.28);
  background: linear-gradient(180deg, rgba(168, 216, 255, 0.05), rgba(255,255,255,0.005));
  transform: translateY(-2px);
}
.brand-grid a:hover img {
  opacity: 1;
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   9. Sticky enquiry FAB (Call + WhatsApp)
   -------------------------------------------------------------------------- */
.lm-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.lm-fab a {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.45);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  text-decoration: none;
}
.lm-fab a:hover { transform: translateY(-2px) scale(1.05); filter: brightness(1.06); }
.lm-fab .lm-fab-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.lm-fab .lm-fab-call     { background: linear-gradient(135deg, #a8d8ff, #3b82c4); }
.lm-fab .lm-fab-top      {
  background: rgba(20,20,20,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0; transform: translateY(8px) scale(0.95); pointer-events: none;
}
.lm-fab .lm-fab-top.is-visible {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.lm-fab svg { width: 24px; height: 24px; }

/* Tooltip for FAB on desktop */
@media (min-width: 900px) {
  .lm-fab a::before {
    content: attr(data-tip);
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(8, 8, 8, 0.9);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .lm-fab a:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* --------------------------------------------------------------------------
   10. Section spacing rhythm
   -------------------------------------------------------------------------- */
.section + .section,
.stats-section + .section,
.section + .stats-section {
  padding-top: clamp(48px, 6vw, 96px);
}

.section-copy h2 {
  max-width: 26ch;
  letter-spacing: 0.005em;
}

/* Better visual structure for "section-copy-wide" */
.section-copy-wide h2 { max-width: 30ch; }

/* --------------------------------------------------------------------------
   11. Forms - premium feel + a11y focus
   -------------------------------------------------------------------------- */
input, select, textarea {
  border: 1px solid rgba(255,255,255,0.14) !important;
  background: rgba(255,255,255,0.04) !important;
  color: #fff !important;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.36) !important;
}
input:focus, select:focus, textarea:focus {
  outline: none !important;
  border-color: var(--lm-accent) !important;
  background: rgba(255,255,255,0.07) !important;
  box-shadow: 0 0 0 3px rgba(168, 216, 255,0.16) !important;
}

label { letter-spacing: 0.04em; }

/* --------------------------------------------------------------------------
   12. Footer - premium dealership feel
   -------------------------------------------------------------------------- */
.footer {
  margin-top: clamp(72px, 10vw, 140px);
  padding-top: 56px;
}
.footer > div:first-child strong {
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  color: #fff;
}
.footer-links {
  gap: 24px 26px;
}
.footer-links a {
  position: relative;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--lm-accent);
  transition: right 240ms ease;
}
.footer-links a:hover::after { right: 0; }

.footer-contact a {
  font-weight: 600;
}

/* Footer trust strip (added by enhancements.js) */
.footer-trust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: 28px;
  margin-bottom: 18px;
}
.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  font-weight: 700;
}
.footer-trust span::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lm-accent);
  box-shadow: 0 0 12px rgba(168, 216, 255,0.6);
}

/* --------------------------------------------------------------------------
   13. Sticky inline enquiry CTA section helper
   -------------------------------------------------------------------------- */
.cta-band-pro {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--lm-radius-lg);
  background:
    radial-gradient(circle at 14% 12%, rgba(168, 216, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(28,28,28,0.98), rgba(8,8,8,0.99) 65%, rgba(28,28,28,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--lm-shadow-medium);
  margin-top: clamp(36px, 5vw, 72px);
}
.cta-band-pro h2 {
  margin: 4px 0 12px;
  color: #fff;
}
.cta-band-pro p {
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin: 0;
  font-size: 1.02rem;
}
.cta-band-pro .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   14. Mobile menu - premium drawer
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .topbar {
    background: rgba(8,8,8,0.85) !important;
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  body[data-page="home"] .topbar {
    background: linear-gradient(180deg, rgba(8,8,8,0.65), rgba(8,8,8,0.0)) !important;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: 0;
  }
  body[data-page="home"] .topbar.is-scrolled {
    background: rgba(8,8,8,0.88) !important;
    backdrop-filter: blur(14px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.45);
  }
  body[data-page="home"] .brand {
    display: flex !important;
  }

  .brand { left: 16px !important; }

  .menu-toggle {
    margin-left: auto;
    margin-right: 8px;
    border: 1px solid rgba(255,255,255,0.18) !important;
    background: rgba(255,255,255,0.06) !important;
  }

  .nav {
    position: fixed !important;
    top: 72px !important;
    left: 14px !important;
    right: 14px !important;
    padding: 22px !important;
    display: none;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, rgba(14,14,14,0.98), rgba(8,8,8,0.99)) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.55) !important;
    backdrop-filter: blur(20px) !important;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
  .nav.is-open { display: flex !important; }
  .nav a {
    width: 100% !important;
    padding: 14px 16px !important;
    border-radius: 10px;
    font-size: 1rem !important;
    border: 1px solid transparent;
    transition: background 200ms ease, border-color 200ms ease;
  }
  .nav a:hover, .nav a.nav-active {
    background: rgba(168, 216, 255,0.12);
    border-color: rgba(168, 216, 255,0.32);
    color: #fff !important;
  }
  .nav a + a::before { content: none !important; }

  .nav .nav-cta {
    margin-top: 10px;
    margin-left: 0 !important;
    text-align: center;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   15. Mobile typography & spacing fixes
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  :root {
    --container: min(1280px, calc(100vw - 28px));
    --section-gap: clamp(48px, 9vw, 72px);
  }
  .site-shell { width: var(--container); }

  h1 { font-size: clamp(2rem, 8.4vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6.4vw, 2.05rem); }
  h3 { font-size: 1.05rem; }

  .button { min-height: 52px !important; padding: 0 22px !important; font-size: 0.74rem !important; }
  .button.full-width, .hero-actions .button { width: 100%; }

  .hero-home { min-height: 92vh; height: auto; }
  .hero-home .hero-copy { padding: 100px 22px 46px !important; }
  .hero-home h1 { font-size: clamp(2.4rem, 9vw, 3.2rem) !important; }
  .hero-home .hero-text { font-size: 1rem; }

  .page-hero-banner img { height: 220px; }
  .page-hero { padding: 18px 8px 14px !important; }

  .footer { text-align: left; padding: 36px 0 24px; }
  .footer-links { justify-content: flex-start; }

  .lm-fab { bottom: 16px; right: 14px; }
  .lm-fab a { width: 52px; height: 52px; }

  .cta-band-pro { grid-template-columns: 1fr; gap: 22px; }
  .cta-band-pro .cta-actions { justify-content: stretch; }
  .cta-band-pro .cta-actions .button { width: 100%; }

  /* Stop horizontal overflow from tickers/iframes */
  body { overflow-x: hidden; }

  .map-card iframe,
  .contact-map-card iframe { min-height: 260px; }

  /* Trust strip stack */
  .footer-trust { justify-content: flex-start; gap: 14px; }
}

/* --------------------------------------------------------------------------
   16. Reveal animations - soft on first paint
   -------------------------------------------------------------------------- */
.reveal { transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal:not(.is-visible) { opacity: 0; transform: translateY(24px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-home .hero-copy::after { animation: none; }
  .page-hero-banner:hover img { transform: none; }
}

/* --------------------------------------------------------------------------
   17. Accessibility focus rings
   -------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lm-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   18. "All services" megagrid (homepage)
   -------------------------------------------------------------------------- */
.services-mega {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.services-mega a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--lm-radius-md);
  background: linear-gradient(180deg, rgba(28,28,28,0.96), rgba(14,14,14,0.99));
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
  min-height: 132px;
}
.services-mega a:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 216, 255,0.32);
  background: linear-gradient(180deg, rgba(18,26,38,0.96), rgba(10,16,26,0.99));
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.services-mega a strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.services-mega a span {
  color: rgba(255,255,255,0.66);
  font-size: 0.88rem;
  line-height: 1.55;
}
.services-mega a::after {
  content: "→";
  margin-top: auto;
  font-size: 1.05rem;
  color: var(--lm-accent);
  letter-spacing: 0;
  font-weight: 700;
  align-self: flex-start;
  transition: transform 240ms ease;
}
.services-mega a:hover::after { transform: translateX(4px); }

@media (max-width: 1100px) {
  .services-mega { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .services-mega { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .services-mega { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   19. End-of-page CTA
   -------------------------------------------------------------------------- */
.lm-final-cta {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--lm-radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 86% 0%, rgba(168, 216, 255, 0.20), transparent 35%),
    linear-gradient(135deg, rgba(28,28,28,0.98), rgba(8,8,8,0.99));
  margin-top: 12px;
}
.lm-final-cta h2 { margin: 0 0 10px; }
.lm-final-cta p { color: rgba(255,255,255,0.78); margin: 0; max-width: 60ch; }
.lm-final-cta .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 720px) {
  .lm-final-cta { grid-template-columns: 1fr; }
  .lm-final-cta .cta-actions { justify-content: stretch; }
  .lm-final-cta .cta-actions .button { width: 100%; }
}

/* --------------------------------------------------------------------------
   22. Misc polish
   -------------------------------------------------------------------------- */
.suzuki-dealer-band {
  border-color: rgba(255,255,255,0.10) !important;
  background:
    radial-gradient(circle at 16% 10%, rgba(168, 216, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(28,28,28,0.98), rgba(8,8,8,0.99)) !important;
}

.ticker-track span {
  font-family: "Barlow Condensed", sans-serif !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
}

.review-button {
  border-color: rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.04) !important;
  color: #fff !important;
}
.review-button:hover {
  border-color: var(--lm-accent) !important;
  background: rgba(168, 216, 255,0.10) !important;
}

/* Inventory empty state polish */
.inventory-empty {
  background:
    radial-gradient(circle at top, rgba(168, 216, 255, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(20,20,20,0.95), rgba(10,10,10,0.99)) !important;
  border-color: rgba(255,255,255,0.10) !important;
}
.inventory-empty strong {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Skip link (a11y) - refined visibility */
.skip-link {
  background: var(--lm-accent) !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
}

/* ============================================================================
   POLISH PASS - applied with /ui-skills, /ui-ux-pro-max, /polish
   Final detail-level pass: typography micro-rules, interaction-state coverage,
   100dvh, safe-area-inset, hover gating, tabular numerics, performance.
   ========================================================================== */

/* --- Z-INDEX SCALE (single source of truth) ----------------------------- */
:root {
  --z-base: 0;
  --z-content: 1;
  --z-sticky: 30;
  --z-fixed: 40;
  --z-fab: 60;
  --z-modal: 80;
  --z-toast: 90;
}

.topbar { z-index: var(--z-fixed); }
.lm-fab { z-index: var(--z-fab); }
.gallery-lightbox { z-index: var(--z-modal) !important; }
.skip-link { z-index: var(--z-toast); }

/* --- TYPOGRAPHY MICRO-RULES (per ui-skills + polish) -------------------- */
h1, h2, h3 {
  text-wrap: balance;          /* better line breaks on headlines */
  -webkit-hyphens: manual;
  hyphens: manual;
}
p, li, label { text-wrap: pretty; }   /* avoid orphans/widows on body text */

/* tabular numerics - stats counters, prices, financial values must not jitter */
[data-count],
.stats-grid strong,
.aside-stat .stat-big,
.price-amount,
.price-val,
.product-price,
.finance-estimator-results strong,
.finance-inline-meta strong,
.session-time {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Remove "anti-pattern" tight tracking on body */
p, li, label { letter-spacing: 0; }

/* --- INTERACTION TIMINGS (≤ 200ms for interaction feedback per ui-skills) -- */
.button,
.chip,
.review-button,
.nav a,
.footer-links a,
.footer-contact a,
.brand-grid a,
.brand-grid a img,
.services-mega a,
.services-mega a::after,
.lm-fab a,
.inventory-card .button-secondary {
  transition-duration: 180ms !important;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}
.inventory-card,
.category-card,
.info-card,
.service-card,
.finance-product-card {
  transition-duration: 240ms !important;     /* small "lift" stays slightly slower */
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

/* --- HOVER GATING (hover effects only on devices that actually have hover) -- */
@media (hover: none) {
  .inventory-card:hover,
  .category-card:hover,
  .info-card:hover,
  .service-card:hover,
  .finance-product-card:hover,
  .brand-grid a:hover,
  .services-mega a:hover,
  .button-primary:hover,
  .button-secondary:hover {
    transform: none !important;
  }
  .inventory-card:hover .inventory-media img,
  .category-card:hover .category-card-img,
  .brand-grid a:hover img {
    transform: none !important;
  }
  .page-hero-banner:hover img { transform: none !important; }
}

/* --- 100dvh: hero respects mobile URL bars (ui-skills: NEVER use h-screen) -- */
.hero-home,
.hero-home .hero-copy {
  min-height: 100dvh;
}
@supports not (height: 100dvh) {
  .hero-home,
  .hero-home .hero-copy { min-height: 100vh; }
}
.hero-home { height: auto !important; }       /* let content drive height; fixes iOS bottom-bar overlap */

/* --- SAFE-AREA-INSET on FAB (ui-skills: MUST respect safe-area-inset) ----- */
.lm-fab {
  bottom: max(22px, calc(env(safe-area-inset-bottom, 0px) + 18px));
  right:  max(22px, env(safe-area-inset-right,  0px));
}
@media (max-width: 720px) {
  .lm-fab {
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 14px));
    right:  max(14px, env(safe-area-inset-right, 0px));
  }
}

/* --- TINTED NEUTRALS (polish: no pure gray/black) ------------------------- */
:root {
  --lm-ink: #0c0a0c;             /* tint towards warm */
  --lm-ink-soft: #18141a;
  --lm-line: rgba(255, 250, 250, 0.10);
  --lm-line-strong: rgba(255, 248, 248, 0.18);
}

/* --- INTERACTION STATES (every interactive element gets every state) ----- */
.button:disabled,
.button[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.button.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.button.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lmSpin 720ms linear infinite;
}
@keyframes lmSpin { to { transform: rotate(360deg); } }

/* Active state: down-press feedback for all CTAs */
.button-primary:active,
.button-secondary:active,
.nav .nav-cta:active,
.lm-fab a:active {
  transform: translateY(0) scale(0.98) !important;
  filter: brightness(0.98);
}

/* --- FOCUS RING - brand-consistent, high contrast ----------------------- */
*:focus-visible {
  outline: 2px solid var(--lm-accent);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 0 4px rgba(168, 216, 255, 0.18);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--lm-accent) !important;
  box-shadow: 0 0 0 3px rgba(168, 216, 255, 0.20) !important;
}

/* --- SKELETON SHIMMER - for inventory grid pre-fetch (HIG: >300ms loads) -- */
.inventory-grid:empty::before,
.inventory-grid[data-loading="true"]::before {
  content: "";
  display: block;
  grid-column: 1 / -1;
  height: 320px;
  border-radius: var(--lm-radius-md);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: lmShimmer 1400ms ease-in-out infinite;
}
@keyframes lmShimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .inventory-grid:empty::before,
  .inventory-grid[data-loading="true"]::before { animation: none; }
}

/* --- EMPTY STATE - must include one clear next action (per ui-skills) --- */
.inventory-empty {
  gap: 16px;
}
.inventory-empty::after {
  content: "Speak to Sales";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 0;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c5e6ff, #3b82c4);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: 0 14px 28px rgba(168, 216, 255,0.28);
}
.inventory-empty {
  cursor: pointer;
}

/* --- STATS GRID - clearer hierarchy, tabular numerics, even rhythm ------ */
.stats-grid strong {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.02em;
}

/* --- MOTION REDUCED (extend to all animated bits we own) ---------------- */
@media (prefers-reduced-motion: reduce) {
  .hero-home::before,
  .hero-home::after,
  .ticker-track,
  .lm-fab a,
  .button,
  .inventory-card,
  .category-card,
  .info-card,
  .service-card,
  .brand-grid a,
  .services-mega a {
    animation: none !important;
    transition-duration: 1ms !important;
  }
  .inventory-card:hover,
  .category-card:hover,
  .brand-grid a:hover {
    transform: none !important;
  }
}

/* --- LINK UNDERLINES inside running prose (polish: clarity) ------------- */
.story-panel a:not(.button),
.product-description a:not(.button),
.section-copy p a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(168, 216, 255, 0.55);
}
.story-panel a:not(.button):hover { color: var(--lm-accent); }

/* --- HEIGHT-OVERFLOW GUARDS for tables of long product details ---------- */
.product-spec-list,
.info-list,
.service-list,
.check-list,
.include-list {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* --- FORM PLACEHOLDER CONTRAST (polish: legibility) --------------------- */
input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.40) !important; }
/* --- ICON BUTTONS NEED ARIA-LABELS - pure-CSS visible label fallback ---- */
button[aria-label]:not([title]) { /* keep tooltips a11y-only */ }

/* --- "STORE-PILL" buttons get the same active feedback ------------------ */
.store-pill:active { transform: translateY(0) scale(0.98); filter: brightness(0.98); }

/* --- SPACING RHYTHM - homepage hero -> section transition (polish) ----- */
body[data-page="home"] main > section + section {
  scroll-margin-top: 96px;
}

/* --- HERO COPY: typography hairline polish ------------------------------ */
.hero-home h1 { letter-spacing: 0.02em; }
.hero-home h1 span:last-child { letter-spacing: 0.04em; }

/* --- KILL FLASH-OF-LARGE-IMAGE on page-hero-banner --------------------- */
.page-hero-banner img { background: rgba(20,20,26,0.6); }



/* ==========================================================================
   REQUESTED SITE PASS - 30 APR 2026
   Cleaner home hero, brighter media, compact homepage sections, enquire flow.
   ========================================================================== */

body[data-page="home"] .topbar,
body[data-page="home"] .topbar.is-scrolled {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body[data-page="home"] .nav a {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-video-wrap::before,
.hero-video-wrap::after {
  opacity: 0.28 !important;
}

.hero-home::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 62%, rgba(0,0,0,0.48) 100%),
    linear-gradient(95deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.04) 68%) !important;
}

.hero-home .hero-copy {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.68);
}

.page-hero-banner {
  min-height: clamp(240px, 34vw, 430px);
}

.page-hero-banner::before,
.page-hero-banner::after {
  opacity: 0 !important;
  content: none !important;
}

.page-hero-banner img {
  height: clamp(240px, 34vw, 430px) !important;
  opacity: 1 !important;
  filter: saturate(1.05) contrast(1.02) brightness(1.08);
}

.page-hero {
  width: 100%;
  max-width: none !important;
  overflow: visible !important;
  padding: clamp(30px, 3.6vw, 48px) clamp(24px, 4vw, 52px) !important;
}

.section-copy,
.section-copy-wide,
.app-copy,
.story-panel,
.page-hero {
  width: 100%;
  max-width: none !important;
}

.section-copy h2,
.section-copy-wide h2,
.app-copy h2,
.page-hero h1,
.page-hero h2 {
  max-width: min(100%, 1180px) !important;
}

.section-copy p,
.section-copy-wide p,
.app-copy p,
.story-panel p,
.hero-text,
.page-hero .hero-text,
.page-hero .workshop-intro,
.page-hero .renewals-intro,
.page-hero .licence-intro,
.page-hero .finance-intro {
  /* 66ch keeps body/intro line length in the readable 45-75 char range
     on wide desktops (was 82ch, which ran 80-98 chars per line). */
  max-width: min(100%, 66ch) !important;
}

.brand-grid a img,
.brand-grid div img {
  filter: brightness(0) invert(1) contrast(1.18) !important;
  opacity: 1 !important;
}

.suzuki-dealer-section {
  padding-top: clamp(10px, 2vw, 20px) !important;
}

.suzuki-dealer-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px) !important;
  max-width: 1040px;
  margin-inline: auto;
}

.suzuki-dealer-copy {
  gap: 8px !important;
}

.suzuki-dealer-copy h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.65rem) !important;
  line-height: 1.06;
}

.suzuki-dealer-copy p:last-child {
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 62ch !important;
}

.suzuki-dealer-visual {
  min-height: 210px !important;
}

.suzuki-dealer-visual img {
  width: min(100%, 430px) !important;
  max-width: 430px !important;
  transform: none !important;
}

body[data-page="home"] .split-section {
  gap: clamp(18px, 2.2vw, 26px);
}

body[data-page="home"] .category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 24px);
}

body[data-page="home"] .category-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 250px;
}

body[data-page="home"] .category-card-img-wrap {
  min-height: 250px;
}

body[data-page="home"] .category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .category-card-body {
  padding: clamp(22px, 2.4vw, 32px);
}

main > .section.reviews-section {
  padding-top: clamp(28px, 4vw, 54px) !important;
  padding-bottom: clamp(24px, 3.4vw, 44px) !important;
}

.reviews-section .section-copy {
  margin-bottom: 16px !important;
  gap: 6px !important;
}

.reviews-section .section-copy h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.55rem) !important;
}

.review-panel {
  padding: clamp(18px, 2.4vw, 28px) !important;
}

.review-stage {
  min-height: 120px !important;
}

.review-card,
.review-card p {
  font-size: 0.96rem !important;
  line-height: 1.6 !important;
}

.review-controls {
  margin-top: 14px !important;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 22px;
}

.footer-links {
  justify-content: center !important;
}

.footer-copyright {
  align-items: center;
  text-align: center;
}

.sales-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.sales-contact-card {
  min-height: 0;
  padding: 18px;
}

.sales-contact-card h4 {
  margin: 0 0 10px;
  color: #fff;
}

.sales-contact-card a,
.sales-contact-card span {
  display: block;
  color: rgba(240, 240, 241, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.sales-contact-card a:hover {
  color: var(--lm-accent);
}

@media (max-width: 980px) {
  .suzuki-dealer-band {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .suzuki-dealer-visual {
    min-height: 180px !important;
  }

  body[data-page="home"] .category-card {
    grid-template-columns: 1fr;
  }

  .sales-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-video-wrap::before,
  .hero-video-wrap::after {
    opacity: 0.34 !important;
  }

  .hero-home::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.34) 58%, rgba(0,0,0,0.62) 100%) !important;
  }

  .page-hero-banner,
  .page-hero-banner img {
    min-height: 210px;
    height: 210px !important;
  }

  .page-hero {
    padding: 24px 18px !important;
  }

  body[data-page="home"] .category-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-page="home"] .category-card,
  body[data-page="home"] .category-card-img-wrap {
    min-height: 0;
  }

  body[data-page="home"] .category-card-img-wrap {
    height: 220px;
  }
}


/* ==========================================================================
   HOME HEADER/HERO REFINEMENT - 30 APR 2026
   Removes duplicate enquire nav, scroll cue, and refines homepage headline.
   ========================================================================== */

/* Keep the red CTA pill only; remove the plain white Enquire Now nav item. */
.nav > a[href$="enquire.html"]:not(.nav-cta) {
  display: none !important;
}

/* Remove the mouse/scroll cue that was sitting visually behind the menu. */
.hero-home::after,
.hero-home .hero-copy::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

/* Remove the red eyebrow above The Ultimate Boat Shop on the homepage. */
.hero-home .eyebrow {
  display: none !important;
}

/* Refine homepage title: cleaner, more premium, less chunky/awkward. */
.hero-home h1 {
  display: grid;
  gap: 0.04em;
  max-width: min(100%, 760px) !important;
  margin: 0 0 0 -0.02em;
  font-size: clamp(4rem, 8vw, 8.6rem) !important;
  line-height: 0.86 !important;
  letter-spacing: 0.018em !important;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.58);
}

.hero-home h1 span,
.hero-home h1 span:first-child,
.hero-home h1 span:last-child {
  display: block;
  color: rgba(255, 255, 255, 0.94) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  font-weight: 800 !important;
  letter-spacing: 0.018em !important;
}

.hero-home h1 span:last-child {
  color: rgba(236, 236, 232, 0.9) !important;
}

@media (max-width: 720px) {
  .hero-home h1 {
    max-width: 100% !important;
    font-size: clamp(3.15rem, 15vw, 5.6rem) !important;
    line-height: 0.9 !important;
  }
}


/* ==========================================================================
   HOME HERO LEFT STACK COMPACT - 30 APR 2026
   Makes the homepage left hero group smaller, tighter, and more composed.
   ========================================================================== */

.hero-home .hero-copy {
  max-width: min(52vw, 720px) !important;
  padding-left: clamp(34px, 5vw, 72px) !important;
  padding-top: clamp(150px, 17vh, 190px) !important;
}

.hero-home h1 {
  max-width: min(100%, 680px) !important;
  font-size: clamp(3.65rem, 6.55vw, 7.1rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.014em !important;
  gap: 0.02em !important;
}

.hero-home h1 span,
.hero-home h1 span:first-child,
.hero-home h1 span:last-child {
  letter-spacing: 0.014em !important;
}

.hero-home .hero-text {
  max-width: 58ch !important;
  margin-top: 26px !important;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem) !important;
  line-height: 1.72 !important;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88) !important;
}

.hero-home .hero-actions {
  margin-top: 28px !important;
  gap: 12px !important;
}

.hero-home .button {
  min-height: 50px !important;
  padding: 0 26px !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.12em !important;
}

.hero-home .hero-points {
  margin-top: 64px !important;
  gap: 14px !important;
  max-width: 620px;
}

.hero-home .hero-points li {
  font-size: clamp(0.92rem, 1vw, 1rem) !important;
  line-height: 1.38 !important;
  padding-left: 36px !important;
}

.hero-home .hero-points li::before {
  width: 14px !important;
  height: 14px !important;
  top: 0.42em !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .hero-home .hero-copy {
    max-width: min(100%, 700px) !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 720px) {
  .hero-home .hero-copy {
    padding-top: 128px !important;
  }

  .hero-home h1 {
    font-size: clamp(2.95rem, 13vw, 4.8rem) !important;
    line-height: 0.94 !important;
  }

  .hero-home .hero-text {
    margin-top: 18px !important;
    font-size: 0.96rem !important;
    line-height: 1.62 !important;
  }

  .hero-home .hero-actions {
    margin-top: 22px !important;
  }

  .hero-home .hero-points {
    margin-top: 34px !important;
  }
}


/* ==========================================================================
   HOME HERO GAP TIGHTENING - 30 APR 2026
   Pulls the homepage hero actions and proof points into a tighter group.
   ========================================================================== */

.hero-home .hero-actions {
  margin-top: 20px !important;
}

.hero-home .hero-points {
  margin-top: 28px !important;
  gap: 10px !important;
}

.hero-home .hero-points li {
  line-height: 1.32 !important;
}

@media (max-width: 720px) {
  .hero-home .hero-actions {
    margin-top: 18px !important;
  }

  .hero-home .hero-points {
    margin-top: 22px !important;
    gap: 9px !important;
  }
}


/* ==========================================================================
   NAV TYPOGRAPHY BOOST - 30 APR 2026
   Larger, bolder main navigation text with stable spacing.
   ========================================================================== */

.nav a:not(.nav-cta) {
  font-size: clamp(0.96rem, 1.08vw, 1.08rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.068em !important;
}

.nav a + a::before {
  font-weight: 700 !important;
}

@media (max-width: 980px) {
  .nav a:not(.nav-cta) {
    font-size: 1rem !important;
    letter-spacing: 0.05em !important;
  }
}


/* ==========================================================================
   RESTORED SILVER HOVER SWEEP - 06 MAY 2026
   Premium metallic line pass for the logo wall and services grid.
   ========================================================================== */

.brand-grid > a,
.brand-grid > div,
.services-mega a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.brand-grid > a::before,
.brand-grid > div::before,
.services-mega a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 34%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: skewX(-18deg) translateX(0);
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.04) 18%,
      rgba(184, 185, 188, 0.42) 48%,
      rgba(255, 255, 255, 0.16) 58%,
      transparent 100%
    );
  filter: blur(0.2px);
  transition: opacity 180ms ease;
}

.brand-grid > a:hover::before,
.brand-grid > div:hover::before,
.services-mega a:hover::before {
  opacity: 1;
  animation: lmSilverSweep 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.brand-grid > a img,
.brand-grid > div img,
.services-mega a strong,
.services-mega a span,
.services-mega a::after {
  position: relative;
  z-index: 2;
}

@keyframes lmSilverSweep {
  from {
    transform: skewX(-18deg) translateX(0);
  }
  to {
    transform: skewX(-18deg) translateX(430%);
  }
}


/* ==========================================================================
   ANNOTATION FIX PASS - 06 MAY 2026
   Hero bullet alignment, single Suzuki block, six compact arrivals, tighter
   reviews, and pure red stat numbers.
   ========================================================================== */

.hero-home .hero-points li {
  padding-top: 3px !important;
}

.hero-home .hero-points li::before {
  top: 0.35em !important;
}

main > .section.suzuki-dealer-section {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: clamp(20px, 3.4vw, 46px);
  padding: clamp(34px, 4.2vw, 56px) clamp(34px, 4.5vw, 64px) !important;
  background:
    radial-gradient(ellipse 48% 80% at 72% 46%, rgba(168, 216, 255, 0.16), transparent 62%),
    radial-gradient(ellipse 45% 80% at 20% 10%, rgba(255, 255, 255, 0.05), transparent 54%),
    linear-gradient(145deg, rgba(28, 28, 28, 0.98), rgba(8, 8, 8, 0.99)) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45) !important;
}

main > .section.suzuki-dealer-section .suzuki-dealer-band {
  display: contents !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

main > .section.suzuki-dealer-section .suzuki-dealer-copy,
main > .section.suzuki-dealer-section .suzuki-dealer-visual {
  position: relative;
  z-index: 1;
}

main > .section.suzuki-dealer-section .suzuki-dealer-visual {
  min-height: 230px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

main > .section.suzuki-dealer-section .suzuki-dealer-visual img {
  width: min(100%, 460px) !important;
  max-width: 460px !important;
}

.latest-arrivals-section .inventory-grid[data-latest-arrivals] {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(8px, 0.9vw, 12px) !important;
  align-items: stretch !important;
}

.latest-arrivals-section {
  padding-top: clamp(18px, 2.2vw, 30px) !important;
  padding-bottom: clamp(18px, 2.2vw, 30px) !important;
}

.latest-arrivals-section .section-copy {
  margin-bottom: clamp(10px, 1.15vw, 14px) !important;
}

.latest-arrivals-section .section-copy .eyebrow {
  margin-bottom: 7px !important;
}

.latest-arrivals-section .section-copy h2 {
  margin-bottom: 5px !important;
  font-size: clamp(1.55rem, 2.45vw, 2.1rem) !important;
}

.latest-arrivals-section .section-copy p {
  line-height: 1.32 !important;
  font-size: clamp(0.88rem, 1.05vw, 1rem) !important;
}

.latest-arrivals-section .inventory-card {
  min-height: 0 !important;
  padding: clamp(7px, 0.75vw, 10px) !important;
  border-radius: 16px !important;
}

.latest-arrivals-section .inventory-media {
  aspect-ratio: auto !important;
  min-height: 0 !important;
  height: clamp(125px, 12.5vw, 165px) !important;
  margin-bottom: 7px !important;
  border-radius: 12px !important;
}

.latest-arrivals-section .inventory-copy {
  gap: 3px !important;
  padding: 6px 10px 9px !important;
}

.latest-arrivals-section .inventory-copy p {
  display: none !important;
}

.latest-arrivals-section .inventory-copy h3 {
  font-size: clamp(0.9rem, 1.05vw, 1.02rem) !important;
  line-height: 1.08 !important;
}

.latest-arrivals-section .inventory-copy span {
  font-size: clamp(0.9rem, 1.05vw, 1.02rem) !important;
  line-height: 1.05 !important;
  margin-bottom: 2px !important;
}

.latest-arrivals-section .inventory-card .button {
  width: auto !important;
  /* 44px = comfortable touch target (WCAG / iOS HIG minimum). */
  min-height: 44px !important;
  margin-top: 8px !important;
  padding: 0 16px !important;
  font-size: 0.64rem !important;
  align-self: flex-start !important;
}

.reviews-section .review-panel {
  display: grid !important;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "stage stage"
    "controls dots";
  column-gap: 24px;
  row-gap: 16px;
  min-height: 0 !important;
  padding: clamp(16px, 2vw, 24px) !important;
}

.reviews-section .review-stage {
  grid-area: stage;
  min-height: 150px !important;
}

.reviews-section .review-card {
  inset: 0 !important;
  min-height: 150px !important;
  padding: clamp(18px, 2vw, 26px) !important;
  align-content: start !important;
  gap: 18px !important;
}

.reviews-section .review-meta {
  margin-top: 0 !important;
  transform: translateY(-6px);
}

.reviews-section .review-controls {
  position: static !important;
  grid-area: controls;
  margin-top: 12px !important;
}

.reviews-section .review-dots {
  position: static !important;
  grid-area: dots;
  align-self: center;
  justify-self: end;
  margin-top: 0 !important;
}

.stats-grid strong {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 980px) {
  main > .section.suzuki-dealer-section,
  .latest-arrivals-section .inventory-grid[data-latest-arrivals] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  main > .section.suzuki-dealer-section,
  .latest-arrivals-section .inventory-grid[data-latest-arrivals] {
    grid-template-columns: 1fr !important;
  }

  main > .section.suzuki-dealer-section {
    padding: 28px 22px !important;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .latest-arrivals-section {
    padding: 22px 12px !important;
  }

  body[data-page="home"] .latest-arrivals-section .section-copy {
    margin-bottom: 14px !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-grid[data-latest-arrivals] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-card {
    min-width: 0 !important;
    padding: 8px !important;
    border-radius: 14px !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-media {
    height: 96px !important;
    margin-bottom: 6px !important;
    border-radius: 10px !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-copy {
    gap: 3px !important;
    padding: 4px 3px 6px !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-copy h3,
  body[data-page="home"] .latest-arrivals-section .inventory-copy span {
    font-size: 0.78rem !important;
    line-height: 1.08 !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-card .button {
    min-height: 44px !important;
    padding: 0 12px !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .latest-arrivals-section .inventory-grid[data-latest-arrivals] {
    gap: 8px !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-media {
    height: 88px !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-copy h3,
  body[data-page="home"] .latest-arrivals-section .inventory-copy span {
    font-size: 0.72rem !important;
  }

  body[data-page="home"] .latest-arrivals-section .inventory-card .button {
    min-height: 44px !important;
    padding: 0 10px !important;
    font-size: 0.62rem !important;
  }
}


/* ==========================================================================
   REVIEW ANNOTATION FIX PASS - 08 MAY 2026
   Product filters, category overlays, finance details, and page-specific
   requested colour/alignment fixes.
   ========================================================================== */

main > .section.suzuki-dealer-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.9fr) !important;
}

main > .section.suzuki-dealer-section .suzuki-dealer-visual {
  min-height: clamp(300px, 30vw, 430px) !important;
}

main > .section.suzuki-dealer-section .suzuki-dealer-visual img {
  width: min(125%, 720px) !important;
  max-width: 720px !important;
  transform: scale(1.12) translateX(1.5%) !important;
  transform-origin: center center !important;
}

.inventory-copy {
  align-items: flex-start !important;
}

.inventory-copy > p {
  display: none !important;
}

.inventory-copy .button,
.inventory-card .button {
  align-self: flex-start !important;
  margin-left: 0 !important;
}

body[data-page="home"] .category-card {
  display: block !important;
  position: relative !important;
  min-height: clamp(320px, 34vw, 430px) !important;
  overflow: hidden !important;
}

body[data-page="home"] .category-card-img-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: inherit !important;
}

body[data-page="home"] .category-card-img-wrap::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(circle at 14% 12%, rgba(168, 216, 255, 0.16), transparent 42%) !important;
}

body[data-page="home"] .category-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.02) !important;
}

body[data-page="home"] .category-card:hover .category-card-img {
  transform: scale(1.07) !important;
}

body[data-page="home"] .category-card-body {
  position: absolute !important;
  inset: auto 0 0 0 !important;
  z-index: 2 !important;
  padding: clamp(24px, 2.8vw, 36px) !important;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.52) 52%, rgba(0, 0, 0, 0.88) 100%) !important;
}

.inventory-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.inventory-toolbar .filter-row {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.sort-control {
  flex: 0 0 auto;
  display: grid;
  gap: 8px;
  min-width: 210px;
}

.sort-control span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lm-accent, #a8d8ff);
}

.sort-control select {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(240, 240, 241, 0.22);
  background:
    linear-gradient(180deg, rgba(240, 240, 241, 0.08), rgba(240, 240, 241, 0.02)),
    rgba(0, 0, 0, 0.72);
  color: #ffffff;
  padding: 0 42px 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  outline: none;
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.sort-control select:focus,
.sort-control select:hover {
  border-color: rgba(168, 216, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(168, 216, 255, 0.14);
}

.why-benefit {
  align-items: center !important;
}

.benefit-tick {
  display: grid !important;
  place-items: center !important;
  margin-top: 0 !important;
}

.benefit-tick::after {
  transform: rotate(45deg) translate(-1px, -1px) !important;
}

.mih-num {
  color: #a8d8ff !important;
  opacity: 1 !important;
  text-shadow: 0 0 18px rgba(168, 216, 255, 0.42) !important;
}

.aside-stat .stat-big,
.aside-stat .stat-big.fast-turnaround-stat,
.renewals-card .pricing-block .price-val,
body[data-page="licence"] .price-note {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.sales-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.sales-contact-card {
  min-width: 0 !important;
  padding: clamp(14px, 1.6vw, 18px) !important;
}

.sales-contact-card a,
.sales-contact-card span {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  font-size: clamp(0.78rem, 0.9vw, 0.9rem) !important;
}

body[data-page="finance"] .sales-contact-card {
  gap: 8px !important;
  justify-content: center !important;
}

body[data-page="finance"] .sales-contact-card a[href^="tel:"] {
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

@media (max-width: 980px) {
  main > .section.suzuki-dealer-section {
    grid-template-columns: 1fr !important;
  }

  main > .section.suzuki-dealer-section .suzuki-dealer-visual img {
    width: min(100%, 640px) !important;
    transform: none !important;
  }

  .inventory-toolbar {
    flex-direction: column;
  }

  .sort-control {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .category-card {
    min-height: 330px !important;
  }

  .sales-contact-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ==========================================================================
   BRAND LOGO SIZE ADJUSTMENT - 20 MAY 2026
   Make the authorised dealer logos read confidently inside their tiles.
   ========================================================================== */

.brands-section .brand-grid > a {
  min-height: clamp(150px, 13vw, 190px) !important;
  padding: clamp(18px, 2vw, 28px) !important;
}

.brands-section .brand-grid > a img {
  width: min(92%, 560px) !important;
  max-width: 560px !important;
  max-height: 170px !important;
  object-fit: contain !important;
  transform-origin: center center !important;
}

.brands-section .brand-grid > a:hover img {
  transform: scale(1.08) !important;
}

.brands-section .brand-grid > a img[alt="Supreme Boats"],
.brands-section .brand-grid > a img[alt="Crest Pontoons"] {
  width: min(84%, 480px) !important;
  max-width: 480px !important;
  max-height: 160px !important;
}

body[data-page="home"] .category-card {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.38) !important;
}

body[data-page="home"] .category-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 12px !important;
  z-index: 4 !important;
  pointer-events: none !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: calc(var(--radius, 22px) - 8px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(168, 216, 255, 0.10) !important;
}

body[data-page="home"] .category-card:hover {
  border-color: rgba(168, 216, 255, 0.58) !important;
}

.finance-estimator input[type="number"] {
  font-size: 1.28rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.2 !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

body[data-page="finance"] .finance-estimator input[type="number"],
body[data-page="home"] .finance-estimator input[type="number"] {
  font-size: 1.42rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

body[data-page="inventory"] .inventory-toolbar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px) !important;
  align-items: center !important;
  column-gap: 22px !important;
}

body[data-page="inventory"] .inventory-toolbar .filter-row {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: auto !important;
}

body[data-page="inventory"] .sort-control {
  width: 100% !important;
  min-width: 0 !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

body[data-page="inventory"] .sort-control select {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-height: 40px !important;
  padding-left: 16px !important;
}

body[data-page="inventory"] .sort-control span {
  flex: 0 0 auto !important;
  margin: 0 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transform: translateY(1px) !important;
}

@media (max-width: 720px) {
  body[data-page="home"] .brands-section .brand-grid > a {
    min-height: 130px !important;
    padding: 8px !important;
    overflow: hidden !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a img {
    width: min(100%, 390px) !important;
    max-width: 390px !important;
    max-height: 114px !important;
    transform: scale(1.48) !important;
    transform-origin: center center !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a img[alt="Centurion Boats"],
  body[data-page="home"] .brands-section .brand-grid > a img[alt="Supreme Boats"] {
    width: min(100%, 360px) !important;
    max-width: 360px !important;
    max-height: 110px !important;
    transform: scale(1.62) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a img[alt="Crest Pontoons"] {
    width: min(100%, 360px) !important;
    max-width: 360px !important;
    max-height: 110px !important;
    transform: scale(1.42) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a:hover img {
    transform: scale(1.48) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a:hover img[alt="Centurion Boats"],
  body[data-page="home"] .brands-section .brand-grid > a:hover img[alt="Supreme Boats"] {
    transform: scale(1.62) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a:hover img[alt="Crest Pontoons"] {
    transform: scale(1.42) !important;
  }
}

@media (max-width: 900px) {
  body[data-page="inventory"] .inventory-toolbar {
    grid-template-columns: 1fr !important;
    row-gap: 16px !important;
  }

  body[data-page="inventory"] .sort-control {
    justify-self: stretch !important;
  }

  .brand-why-list .brand-why-item {
    grid-template-columns: 1fr !important;
    padding: 26px 22px !important;
  }
}


/* ==========================================================================
   PRODUCT DETAIL DESKTOP FIT - 20 MAY 2026
   Keep gallery, pricing, description, and actions visible together.
   ========================================================================== */

body[data-page="product"] .product-detail-section {
  padding-top: clamp(22px, 2.8vw, 34px) !important;
  padding-bottom: clamp(26px, 3vw, 42px) !important;
}

body[data-page="product"] .product-detail-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.66fr) !important;
  gap: clamp(16px, 2vw, 26px) !important;
  align-items: start !important;
}

body[data-page="product"] .product-gallery-panel {
  padding: clamp(10px, 1.3vw, 14px) !important;
  border-radius: 24px !important;
}

body[data-page="product"] .product-gallery-stage {
  aspect-ratio: auto !important;
  height: clamp(380px, 56vh, 540px) !important;
  min-height: 0 !important;
  border-radius: 20px !important;
}

body[data-page="product"] .product-gallery-figure,
body[data-page="product"] .product-gallery-figure img {
  height: 100% !important;
  min-height: 0 !important;
}

body[data-page="product"] .product-gallery-figure img {
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 20px !important;
}

body[data-page="product"].product-type-motor .product-detail-layout {
  grid-template-columns: minmax(360px, 540px) minmax(420px, 0.82fr) !important;
  justify-content: center !important;
}

body[data-page="product"].product-type-motor .product-gallery-stage {
  width: min(100%, 480px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 auto !important;
}

body[data-page="product"].product-type-motor .product-gallery-figure img {
  object-fit: cover !important;
}

body[data-page="product"].product-type-motor .product-thumb-row {
  max-width: 480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body[data-page="product"] .product-gallery-arrow {
  width: 40px !important;
  height: 40px !important;
}

body[data-page="product"] .product-gallery-arrow.is-left {
  left: 14px !important;
}

body[data-page="product"] .product-gallery-arrow.is-right {
  right: 14px !important;
}

body[data-page="product"] .product-gallery-count {
  min-height: 38px !important;
  right: 14px !important;
  bottom: 12px !important;
  padding: 0 12px !important;
  font-size: 0.9rem !important;
  border-radius: 12px !important;
  background: #000000 !important;
  border-color: rgba(255, 255, 255, 0.26) !important;
  box-shadow: none !important;
}

body[data-page="product"] .gallery-lightbox {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(18px, 3vw, 44px) !important;
  background:
    radial-gradient(circle at 50% 46%, rgba(168, 216, 255, 0.10), transparent 42%),
    rgba(0, 0, 0, 0.88) !important;
  backdrop-filter: blur(6px) !important;
}

body[data-page="product"] .gallery-lightbox[hidden] {
  display: none !important;
}

body[data-page="product"] .gallery-lightbox-inner {
  width: min(92vw, 1180px) !important;
  height: min(78vh, 720px) !important;
  max-height: 78vh !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: #050505 !important;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

body[data-page="product"] .gallery-lightbox-inner img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

body[data-page="product"] .gallery-lightbox-close {
  z-index: 3 !important;
  background: rgba(0, 0, 0, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
}

body[data-page="product"] .gallery-lightbox-arrow {
  z-index: 3 !important;
  background: rgba(0, 0, 0, 0.68) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
}

body[data-page="product"] .product-thumb-row {
  display: flex !important;
  gap: 8px !important;
  margin-top: 10px !important;
  overflow-x: auto !important;
  padding: 2px 2px 8px !important;
  scrollbar-width: thin !important;
}

body[data-page="product"] .product-thumb {
  flex: 0 0 70px !important;
  min-height: 52px !important;
  height: 52px !important;
  border-radius: 12px !important;
}

body[data-page="product"] .product-thumb img {
  min-height: 52px !important;
  height: 52px !important;
}

body[data-page="product"] .product-content-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

body[data-page="product"] .product-simple-card {
  padding: clamp(18px, 1.8vw, 24px) !important;
  border-radius: 22px !important;
}

body[data-page="product"] .product-summary-panel h1 {
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 0.95 !important;
  margin-bottom: 12px !important;
}

body[data-page="product"] .product-price {
  margin-bottom: 12px !important;
  font-size: clamp(1.35rem, 2vw, 1.8rem) !important;
}

body[data-page="product"] .product-summary-actions {
  gap: 10px !important;
  margin: 16px 0 0 !important;
}

body[data-page="product"] .product-contact-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(118px, 1fr)) !important;
  gap: 12px !important;
}

body[data-page="product"] .product-contact-item {
  min-width: 0 !important;
  padding-left: clamp(14px, 1.25vw, 20px) !important;
  padding-right: clamp(14px, 1.25vw, 20px) !important;
}

body[data-page="product"] .product-contact-item a {
  white-space: nowrap !important;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem) !important;
  letter-spacing: 0.02em !important;
}

body[data-page="product"] .product-description {
  font-size: 0.94rem !important;
  line-height: 1.56 !important;
}

body[data-page="product"] .product-feature-list {
  gap: 8px !important;
  margin-top: 12px !important;
}

@media (max-width: 980px) {
  body[data-page="product"] .product-detail-layout {
    grid-template-columns: 1fr !important;
  }

  body[data-page="product"] .product-gallery-stage {
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  body[data-page="product"] .product-contact-list {
    grid-template-columns: 1fr !important;
  }
}


/* ==========================================================================
   CATEGORY IMAGE FRAME ALIGNMENT - 21 MAY 2026
   Keep each category image clipped inside the visible inner frame.
   ========================================================================== */

body[data-page="home"] .category-card-img-wrap {
  inset: 12px !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  border-radius: calc(var(--radius, 22px) - 8px) !important;
  overflow: hidden !important;
}

body[data-page="home"] .category-card-body {
  inset: auto 12px 12px 12px !important;
  border-radius: 0 0 calc(var(--radius, 22px) - 8px) calc(var(--radius, 22px) - 8px) !important;
}

body[data-page="home"] .category-card::before {
  z-index: 5 !important;
}


/* ==========================================================================
   HOME CATEGORY SECTION VIEWPORT FIT - 21 MAY 2026
   Keep the four category image cards visible in a standard desktop viewport.
   ========================================================================== */

body[data-page="home"] .split-section {
  padding-top: clamp(18px, 2.2vw, 30px) !important;
  padding-bottom: clamp(18px, 2.2vw, 30px) !important;
}

body[data-page="home"] .split-section .section-copy {
  margin-bottom: clamp(10px, 1.15vw, 16px) !important;
}

body[data-page="home"] .split-section .section-copy .eyebrow {
  margin-bottom: 8px !important;
}

body[data-page="home"] .split-section .section-copy h2 {
  margin-bottom: 6px !important;
  font-size: clamp(1.7rem, 2.45vw, 2.35rem) !important;
}

body[data-page="home"] .split-section .section-copy p {
  font-size: clamp(0.88rem, 1vw, 0.98rem) !important;
  line-height: 1.35 !important;
}

body[data-page="home"] .category-grid {
  gap: clamp(8px, 0.9vw, 12px) !important;
}

body[data-page="home"] .category-card {
  min-height: clamp(200px, 17.6vw, 242px) !important;
}

body[data-page="home"] .category-card-img-wrap {
  inset: 10px !important;
  border-radius: calc(var(--radius, 22px) - 10px) !important;
  overflow: hidden !important;
}

body[data-page="home"] .category-card-body {
  inset: auto 10px 10px 10px !important;
  border-radius: 0 0 calc(var(--radius, 22px) - 10px) calc(var(--radius, 22px) - 10px) !important;
  padding: clamp(13px, 1.4vw, 18px) !important;
}

body[data-page="home"] .category-card-img {
  border-radius: inherit !important;
  transform: none !important;
}

body[data-page="home"] .category-card h3 {
  margin-bottom: 5px !important;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem) !important;
  line-height: 1.05 !important;
}

body[data-page="home"] .category-card p {
  font-size: clamp(0.78rem, 0.92vw, 0.9rem) !important;
  line-height: 1.32 !important;
}

body[data-page="home"] .category-card-body > span {
  display: none !important;
}

body[data-page="home"] .category-card:nth-child(1) .category-card-img {
  object-position: center 28% !important;
}

body[data-page="home"] .category-card:nth-child(2) .category-card-img,
body[data-page="home"] .category-card:nth-child(3) .category-card-img,
body[data-page="home"] .category-card:nth-child(4) .category-card-img {
  object-position: center 62% !important;
}

body[data-page="home"] .category-card:hover .category-card-img {
  transform: scale(1.035) !important;
}


/* ==========================================================================
   HOME SERVICES SECTION VIEWPORT FIT - 21 MAY 2026
   Make the complete services grid fit more comfortably on desktop screens.
   ========================================================================== */

body[data-page="home"] section[aria-label="All Leisure Marine services"] {
  padding-top: clamp(26px, 3.2vw, 44px) !important;
  padding-bottom: clamp(26px, 3.2vw, 44px) !important;
}

body[data-page="home"] section[aria-label="All Leisure Marine services"] .section-copy {
  margin-bottom: clamp(16px, 1.6vw, 22px) !important;
}

body[data-page="home"] section[aria-label="All Leisure Marine services"] .section-copy .eyebrow {
  margin-bottom: 10px !important;
}

body[data-page="home"] section[aria-label="All Leisure Marine services"] .section-copy h2 {
  margin-bottom: 10px !important;
  font-size: clamp(1.8rem, 3vw, 2.45rem) !important;
}

body[data-page="home"] section[aria-label="All Leisure Marine services"] .section-copy p:last-child {
  max-width: 66ch !important;
  line-height: 1.45 !important;
}

body[data-page="home"] .services-mega {
  gap: clamp(10px, 1.15vw, 14px) !important;
}

body[data-page="home"] .services-mega a {
  min-height: clamp(96px, 9.5vw, 112px) !important;
  gap: 6px !important;
  padding: clamp(13px, 1.35vw, 17px) !important;
}

body[data-page="home"] .services-mega a strong {
  font-size: clamp(0.94rem, 1.4vw, 1.04rem) !important;
  line-height: 1.12 !important;
}

body[data-page="home"] .services-mega a span {
  font-size: clamp(0.76rem, 0.98vw, 0.84rem) !important;
  line-height: 1.32 !important;
}

body[data-page="home"] .services-mega a::after {
  font-size: 0.95rem !important;
}


/* ==========================================================================
   ALTILIUM PRODUCT SECTION
   ========================================================================== */

body[data-page="altilium"] .altilium-products-section {
  padding-top: clamp(42px, 4.5vw, 68px);
  padding-bottom: clamp(42px, 4.5vw, 68px);
}

body[data-page="altilium"] .page-hero-banner img {
  object-position: center 54%;
}

body[data-page="altilium"] .altilium-products-section .section-copy {
  margin-bottom: clamp(22px, 2.4vw, 34px);
}

body[data-page="altilium"] .altilium-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

body[data-page="altilium"] .altilium-product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(31, 49, 74, 0.9), rgba(14, 15, 16, 0.98) 62%),
    var(--card, rgba(20, 20, 20, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.38);
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

body[data-page="altilium"] .altilium-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.14) 45%, transparent 66%);
  transform: translateX(-34%);
  transition: all 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}

body[data-page="altilium"] .altilium-product-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 52px rgba(0, 0, 0, 0.46),
    0 0 36px rgba(168, 216, 255, 0.16);
}

body[data-page="altilium"] .altilium-product-card:hover::after {
  opacity: 1;
  transform: translateX(34%);
}

body[data-page="altilium"] .altilium-product-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 16px;
  background: #101010;
}

body[data-page="altilium"] .altilium-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

body[data-page="altilium"] .altilium-product-card:hover .altilium-product-media img {
  transform: scale(1.035);
}

body[data-page="altilium"] .altilium-product-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.2vw, 28px);
}

body[data-page="altilium"] .altilium-product-copy .eyebrow {
  margin: 0;
}

body[data-page="altilium"] .altilium-product-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body[data-page="altilium"] .altilium-product-copy strong {
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body[data-page="altilium"] .altilium-product-description {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body[data-page="altilium"] .altilium-product-description span {
  display: block;
  margin-bottom: 8px;
  color: var(--red, #a8d8ff);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page="altilium"] .altilium-product-description p {
  margin: 0;
  color: rgba(235, 241, 250, 0.78);
  line-height: 1.62;
}

@media (max-width: 820px) {
  body[data-page="altilium"] .altilium-product-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="altilium"] .altilium-product-copy {
    padding: 20px;
  }
}


/* ==========================================================================
   CUSHY PRODUCT SECTION
   ========================================================================== */

body[data-page="cushy"] .page-hero-banner img {
  object-position: center 48%;
}

body[data-page="cushy"] .cushy-product-section {
  padding-top: clamp(42px, 4.5vw, 68px);
  padding-bottom: clamp(42px, 4.5vw, 68px);
}

body[data-page="cushy"] .cushy-product-section .section-copy {
  margin-bottom: clamp(22px, 2.5vw, 34px);
}

body[data-page="cushy"] .cushy-product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(14px, 1.6vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 8%, rgba(168, 216, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(31, 31, 31, 0.95), rgba(8, 8, 8, 0.98) 62%),
    var(--card, rgba(20, 20, 20, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.42);
}

body[data-page="cushy"] .cushy-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 0.24fr);
  gap: 12px;
  min-height: clamp(420px, 45vw, 620px);
}

body[data-page="cushy"] .cushy-product-main,
body[data-page="cushy"] .cushy-product-thumbs {
  margin: 0;
}

body[data-page="cushy"] .cushy-product-main {
  overflow: hidden;
  border-radius: 18px;
  background: #080808;
}

body[data-page="cushy"] .cushy-product-main img,
body[data-page="cushy"] .cushy-product-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="cushy"] .cushy-product-main img {
  object-position: center 42%;
}

body[data-page="cushy"] .cushy-product-thumbs {
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="cushy"] .cushy-product-thumbs img {
  min-height: 0;
  border-radius: 14px;
  background: #080808;
}

body[data-page="cushy"] .cushy-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(18px, 2vw, 30px);
}

body[data-page="cushy"] .cushy-product-copy .eyebrow {
  margin: 0;
}

body[data-page="cushy"] .cushy-product-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body[data-page="cushy"] .cushy-product-price {
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.10);
}

body[data-page="cushy"] .cushy-product-description {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body[data-page="cushy"] .cushy-product-description span {
  display: block;
  margin-bottom: 8px;
  color: var(--red, #a8d8ff);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page="cushy"] .cushy-product-description p {
  margin: 0;
  color: rgba(235, 241, 250, 0.78);
  line-height: 1.65;
}

body[data-page="cushy"] .cushy-product-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="cushy"] .cushy-product-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(235, 241, 250, 0.82);
  line-height: 1.45;
}

body[data-page="cushy"] .cushy-product-points li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red, #a8d8ff);
  box-shadow: 0 0 16px rgba(168, 216, 255, 0.45);
}

body[data-page="cushy"] .cushy-product-copy .button-row {
  margin-top: 6px;
}

@media (max-width: 980px) {
  body[data-page="cushy"] .cushy-product-card {
    grid-template-columns: 1fr;
  }

  body[data-page="cushy"] .cushy-product-gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body[data-page="cushy"] .cushy-product-main {
    aspect-ratio: 4 / 5;
  }

  body[data-page="cushy"] .cushy-product-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  body[data-page="cushy"] .cushy-product-thumbs img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 620px) {
  body[data-page="cushy"] .cushy-product-card {
    padding: 10px;
  }

  body[data-page="cushy"] .cushy-product-copy {
    padding: 18px 10px 12px;
  }

  body[data-page="cushy"] .cushy-product-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ==========================================================================
   CUSHY PRODUCT VIEWPORT FIT
   ========================================================================== */

body[data-page="cushy"] .cushy-product-section {
  padding-top: clamp(24px, 2.8vw, 38px) !important;
  padding-bottom: clamp(24px, 2.8vw, 38px) !important;
}

body[data-page="cushy"] .cushy-product-section .section-copy {
  margin-bottom: clamp(12px, 1.4vw, 18px) !important;
}

body[data-page="cushy"] .cushy-product-section .section-copy .eyebrow {
  margin-bottom: 8px !important;
}

body[data-page="cushy"] .cushy-product-section .section-copy h2 {
  margin-bottom: 6px !important;
  font-size: clamp(1.8rem, 2.7vw, 2.55rem) !important;
  line-height: 0.96 !important;
}

body[data-page="cushy"] .cushy-product-section .section-copy p {
  max-width: 68ch !important;
  font-size: clamp(0.84rem, 0.95vw, 0.96rem) !important;
  line-height: 1.38 !important;
}

body[data-page="cushy"] .cushy-product-card {
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.58fr) !important;
  gap: clamp(14px, 1.8vw, 24px) !important;
  padding: clamp(10px, 1.15vw, 14px) !important;
  min-height: 0 !important;
}

body[data-page="cushy"] .cushy-product-gallery {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr) !important;
  gap: 12px !important;
  min-height: 0 !important;
  height: clamp(390px, 34vw, 480px) !important;
}

body[data-page="cushy"] .cushy-product-main,
body[data-page="cushy"] .cushy-product-thumbs img {
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.06), transparent 42%),
    #070707 !important;
}

body[data-page="cushy"] .cushy-product-main img {
  object-fit: contain !important;
  object-position: center center !important;
}

body[data-page="cushy"] .cushy-product-thumbs {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-rows: minmax(118px, 1fr) !important;
  grid-template-rows: none !important;
  gap: 8px !important;
  height: 100% !important;
  overflow-y: auto !important;
  padding-right: 4px !important;
  scrollbar-width: thin !important;
}

body[data-page="cushy"] .cushy-product-thumbs img {
  min-width: 0 !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

body[data-page="cushy"] .cushy-product-copy {
  gap: 8px !important;
  padding: clamp(12px, 1.35vw, 18px) !important;
}

body[data-page="cushy"] .cushy-product-copy h3 {
  font-size: clamp(1.9rem, 3.1vw, 3.2rem) !important;
}

body[data-page="cushy"] .cushy-product-price {
  font-size: clamp(1.8rem, 2.7vw, 2.65rem) !important;
}

body[data-page="cushy"] .cushy-product-description {
  padding-top: 12px !important;
}

body[data-page="cushy"] .cushy-product-description p,
body[data-page="cushy"] .cushy-product-points li {
  font-size: clamp(0.8rem, 0.9vw, 0.9rem) !important;
  line-height: 1.36 !important;
}

body[data-page="cushy"] .cushy-product-points {
  gap: 7px !important;
}

body[data-page="cushy"] .cushy-product-copy .button-row {
  gap: 10px !important;
  margin-top: 2px !important;
}

body[data-page="cushy"] .cushy-product-copy .button {
  min-height: 36px !important;
  padding: 0 16px !important;
  font-size: 0.7rem !important;
}

@media (max-width: 980px) {
  body[data-page="cushy"] .cushy-product-card {
    grid-template-columns: 1fr !important;
  }

  body[data-page="cushy"] .cushy-product-gallery {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }

  body[data-page="cushy"] .cushy-product-main {
    aspect-ratio: 4 / 3 !important;
  }

  body[data-page="cushy"] .cushy-product-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page="cushy"] .cushy-product-thumbs img {
    aspect-ratio: 1 / 1 !important;
  }
}


/* ==========================================================================
   CUSHY PHOTO GALLERY DISPLAY FIX
   ========================================================================== */

body[data-page="cushy"] .cushy-product-card {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.56fr) !important;
  align-items: stretch !important;
}

body[data-page="cushy"] .cushy-product-gallery {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  height: clamp(420px, 36vw, 540px) !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

body[data-page="cushy"] .cushy-product-main {
  min-height: 0 !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 54%),
    #050505 !important;
}

body[data-page="cushy"] .cushy-product-main img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 48% !important;
  background: transparent !important;
}

body[data-page="cushy"] .cushy-product-thumbs {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  grid-template-rows: 82px !important;
  grid-auto-rows: 82px !important;
  gap: 8px !important;
  height: 82px !important;
  overflow: visible !important;
  padding: 0 !important;
}

body[data-page="cushy"] .cushy-product-thumbs img {
  width: 100% !important;
  height: 82px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center 48% !important;
  padding: 0 !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.06), transparent 58%),
    #050505 !important;
}

@media (max-width: 980px) {
  body[data-page="cushy"] .cushy-product-card {
    grid-template-columns: 1fr !important;
  }

  body[data-page="cushy"] .cushy-product-gallery {
    height: auto !important;
    grid-template-rows: minmax(360px, 58vh) auto !important;
  }

  body[data-page="cushy"] .cushy-product-main {
    aspect-ratio: auto !important;
  }

  body[data-page="cushy"] .cushy-product-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, 92px) !important;
    grid-auto-rows: 92px !important;
    height: auto !important;
  }

  body[data-page="cushy"] .cushy-product-thumbs img {
    height: 92px !important;
  }
}

@media (max-width: 620px) {
  body[data-page="cushy"] .cushy-product-gallery {
    grid-template-rows: minmax(320px, 54vh) auto !important;
  }

  body[data-page="cushy"] .cushy-product-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(3, 86px) !important;
  }

  body[data-page="cushy"] .cushy-product-thumbs img {
    height: 86px !important;
  }
}


/* ==========================================================================
   BRAND DETAIL PHOTO BANNERS
   ========================================================================== */

body[data-page="brand"] .brand-photo-banner {
  margin: 18px 0 clamp(18px, 2.4vw, 32px) !important;
  border-radius: 22px !important;
  aspect-ratio: 21 / 7.2 !important;
  min-height: clamp(220px, 30vw, 390px) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: #050505 !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(168, 216, 255, 0.12) !important;
}

body[data-page="brand"] .brand-photo-banner img {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: saturate(1.04) contrast(1.03) brightness(1.08) !important;
}

body[data-page="brand"] .brand-photo-banner::after {
  content: none !important;
}

body[data-page="brand"] .brand-photo-banner + .section {
  margin-top: 0 !important;
}

body[data-page="brand"] .brand-photo-banner-navis img {
  object-position: center 47% !important;
}

body[data-page="brand"] .brand-photo-banner-crest img {
  object-position: center 48% !important;
}

body[data-page="brand"] .brand-photo-banner-supreme img {
  object-position: center 58% !important;
}

body[data-page="brand"] .brand-photo-banner-nauticstar img {
  object-position: center 48% !important;
}

body[data-page="brand"] .brand-photo-banner-centurion img {
  object-position: center 56% !important;
}

body[data-page="brand"] .brand-photo-banner-tracker img {
  object-position: center 52% !important;
}

@media (max-width: 720px) {
  body[data-page="brand"] .brand-photo-banner {
    aspect-ratio: 16 / 8.5 !important;
    margin-top: 10px !important;
  }
}

/* ==========================================================================
   ALTILIUM PRODUCTS VIEWPORT FIT
   ========================================================================== */

body[data-page="altilium"] #altilium-products.altilium-products-section {
  padding-top: clamp(20px, 2.4vw, 34px) !important;
  padding-bottom: clamp(20px, 2.4vw, 34px) !important;
}

body[data-page="altilium"] #altilium-products .section-copy {
  max-width: 850px !important;
  margin-bottom: clamp(14px, 1.5vw, 20px) !important;
}

body[data-page="altilium"] #altilium-products .section-copy .eyebrow {
  margin-bottom: 8px !important;
}

body[data-page="altilium"] #altilium-products .section-copy h2 {
  max-width: 34ch !important;
  margin-bottom: 6px !important;
  font-size: clamp(1.8rem, 2.55vw, 2.45rem) !important;
  line-height: 0.96 !important;
}

body[data-page="altilium"] #altilium-products .section-copy p {
  max-width: 60ch !important;
  font-size: clamp(0.9rem, 1vw, 1rem) !important;
  line-height: 1.38 !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(12px, 1.35vw, 18px) !important;
  align-items: stretch !important;
  margin-top: 0 !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-card {
  display: grid !important;
  grid-template-columns: minmax(180px, 0.95fr) minmax(190px, 1fr) !important;
  min-height: 0 !important;
  padding: clamp(9px, 0.9vw, 12px) !important;
  border-radius: 18px !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-card:only-child {
  grid-column: 1 / -1 !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-media {
  aspect-ratio: auto !important;
  height: clamp(190px, 18.5vw, 250px) !important;
  min-height: 0 !important;
  border-radius: 14px !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-media img {
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center 56% !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-copy {
  justify-content: center !important;
  gap: 6px !important;
  min-height: 0 !important;
  padding: clamp(12px, 1.4vw, 18px) !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-copy h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.38rem) !important;
  line-height: 1.05 !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-copy span {
  margin-bottom: 4px !important;
  font-size: clamp(1rem, 1.28vw, 1.18rem) !important;
}

body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-copy .button {
  min-height: 34px !important;
  margin-top: 4px !important;
  padding: 0 16px !important;
  font-size: 0.68rem !important;
}

body[data-page="altilium"] #altilium-products .inventory-empty,
body[data-page="altilium"] #altilium-products .empty-state {
  grid-column: 1 / -1;
  min-height: 180px !important;
}

@media (max-width: 980px) {
  body[data-page="altilium"] #altilium-products .altilium-product-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-card {
    grid-template-columns: 1fr !important;
  }

  body[data-page="altilium"] #altilium-products .altilium-product-grid .inventory-media {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
}

/* ==========================================================================
   MOBILE HOME LAYOUT PASS - 09 JUNE 2026
   Phone-only refinements. Desktop styling intentionally left untouched.
   ========================================================================== */

@media (max-width: 720px) {
  body[data-page="home"] .split-section {
    padding: 22px 12px !important;
  }

  body[data-page="home"] .split-section .section-copy {
    margin-bottom: 14px !important;
  }

  body[data-page="home"] .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body[data-page="home"] .category-card {
    min-height: 164px !important;
    border-radius: 16px !important;
  }

  body[data-page="home"] .category-card-img-wrap {
    inset: 8px !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 11px !important;
  }

  body[data-page="home"] .category-card-body {
    inset: auto 8px 8px 8px !important;
    padding: 9px !important;
    border-radius: 0 0 11px 11px !important;
  }

  body[data-page="home"] .category-card h3 {
    margin-bottom: 4px !important;
    font-size: 0.84rem !important;
    line-height: 1.05 !important;
  }

  body[data-page="home"] .category-card p {
    font-size: 0.68rem !important;
    line-height: 1.22 !important;
  }

  body[data-page="home"] section[aria-label="All Leisure Marine services"] {
    padding: 22px 12px !important;
  }

  body[data-page="home"] section[aria-label="All Leisure Marine services"] .section-copy {
    margin-bottom: 14px !important;
  }

  body[data-page="home"] .services-mega {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body[data-page="home"] .services-mega a {
    min-height: 116px !important;
    padding: 12px !important;
    gap: 6px !important;
    border-radius: 14px !important;
  }

  body[data-page="home"] .services-mega a strong {
    font-size: 0.84rem !important;
    line-height: 1.06 !important;
  }

  body[data-page="home"] .services-mega a span {
    font-size: 0.69rem !important;
    line-height: 1.28 !important;
  }

  body[data-page="home"] .services-mega a::after {
    font-size: 0.82rem !important;
  }

  body[data-page="home"] .reviews-section {
    padding: 22px 12px !important;
  }

  body[data-page="home"] .reviews-section .section-copy {
    margin-bottom: 14px !important;
  }

  body[data-page="home"] .reviews-section .section-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
  }

  body[data-page="home"] .reviews-section .review-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "stage"
      "controls"
      "dots" !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 18px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  body[data-page="home"] .reviews-section .review-stage {
    grid-area: stage !important;
    min-height: 0 !important;
  }

  body[data-page="home"] .reviews-section .review-card {
    position: static !important;
    inset: auto !important;
    display: none !important;
    min-height: 0 !important;
    padding: 0 !important;
    gap: 12px !important;
    transform: none !important;
  }

  body[data-page="home"] .reviews-section .review-card.active {
    display: grid !important;
  }

  body[data-page="home"] .reviews-section .review-quote {
    max-width: none !important;
    font-size: 0.96rem !important;
    line-height: 1.45 !important;
  }

  body[data-page="home"] .reviews-section .review-meta {
    margin-top: 0 !important;
    transform: none !important;
    font-size: 0.76rem !important;
    line-height: 1.35 !important;
  }

  body[data-page="home"] .reviews-section .review-controls {
    position: static !important;
    grid-area: controls !important;
    display: flex !important;
    gap: 10px !important;
    margin-top: 0 !important;
  }

  body[data-page="home"] .reviews-section .review-button {
    flex: 1 1 0 !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    font-size: 0.72rem !important;
  }

  body[data-page="home"] .reviews-section .review-dots {
    position: static !important;
    grid-area: dots !important;
    justify-content: center !important;
    max-width: none !important;
    gap: 7px !important;
    margin-top: 0 !important;
  }

  body[data-page="home"] .reviews-section .review-dot {
    width: 5px !important;
    height: 5px !important;
  }

  body[data-page="home"] .stats-section {
    padding: 22px 12px !important;
  }

  body[data-page="home"] .finance-card-full {
    padding: 22px !important;
    border-radius: 18px !important;
  }

  body[data-page="home"] .finance-card-full .section-copy {
    margin-bottom: 18px !important;
  }

  body[data-page="home"] .finance-card-full .section-copy h2 {
    font-size: clamp(1.45rem, 6.7vw, 1.9rem) !important;
    line-height: 1.08 !important;
  }

  body[data-page="home"] .finance-card-full .section-copy p:last-child {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
  }

  body[data-page="home"] .finance-estimator-full {
    padding: 16px !important;
    border-radius: 16px !important;
  }

  body[data-page="home"] .finance-estimator-grid-wide,
  body[data-page="home"] .finance-estimator-results-wide {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body[data-page="home"] .finance-estimator label {
    gap: 8px !important;
  }

  body[data-page="home"] .finance-estimator input[type="number"] {
    height: 48px !important;
    font-size: 1.08rem !important;
  }

  body[data-page="home"] .finance-estimator input[type="range"] {
    margin: 2px 0 !important;
  }

  body[data-page="home"] .finance-estimator-results article {
    min-height: 90px !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
  }

  body[data-page="home"] .finance-estimator-results strong {
    font-size: 1.45rem !important;
    line-height: 1.1 !important;
  }

  body[data-page="home"] .finance-card-full > .button {
    width: 100% !important;
    margin-top: 18px !important;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .category-grid,
  body[data-page="home"] .services-mega {
    gap: 8px !important;
  }

  body[data-page="home"] .category-card {
    min-height: 154px !important;
  }

  body[data-page="home"] .category-card h3,
  body[data-page="home"] .services-mega a strong {
    font-size: 0.78rem !important;
  }

  body[data-page="home"] .category-card p,
  body[data-page="home"] .services-mega a span {
    font-size: 0.64rem !important;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .brands-section .brand-grid > a img {
    max-width: 270px !important;
    max-height: 90px !important;
    transform: scale(1.08) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a img[alt="Centurion Boats"],
  body[data-page="home"] .brands-section .brand-grid > a img[alt="Supreme Boats"] {
    max-width: 260px !important;
    max-height: 88px !important;
    transform: scale(1.1) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a img[alt="Crest Pontoons"] {
    max-width: 265px !important;
    max-height: 88px !important;
    transform: scale(1.05) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a:hover img {
    transform: scale(1.08) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a:hover img[alt="Centurion Boats"],
  body[data-page="home"] .brands-section .brand-grid > a:hover img[alt="Supreme Boats"] {
    transform: scale(1.1) !important;
  }

  body[data-page="home"] .brands-section .brand-grid > a:hover img[alt="Crest Pontoons"] {
    transform: scale(1.05) !important;
  }
}

/* --------------------------------------------------------------------------
   Remove header logo entirely (desktop + mobile, all pages)
   Overrides every prior .brand visibility rule via the #top id.
   -------------------------------------------------------------------------- */
#top .brand,
#top .brand-mark { display: none !important; }

/* ==========================================================================
   SOCIALS PAGE
   ========================================================================== */
body[data-page="socials"] .nav a[href="socials.html"] {
  color: var(--lm-accent) !important;
}

body[data-page="socials"] {
  overflow-x: hidden;
}

body[data-page="socials"] .page-hero::after {
  display: none;
}

.lm-social-hero {
  position: relative;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: min(470px, calc(100vh - 220px));
  padding: clamp(24px, 3vw, 36px) !important;
}

.lm-social-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 2;
}

.lm-social-hero h1 {
  width: 100%;
  max-width: none !important;
  font-size: clamp(3.5rem, 6.25vw, 6.85rem) !important;
  line-height: 0.88 !important;
  letter-spacing: 0.02em !important;
}

.lm-social-hero .hero-text {
  max-width: 78ch;
  margin-top: 8px;
}

.lm-social-actions {
  margin-top: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lm-social-actions .button,
.lm-social-channel-card .button,
.lm-instagram-feature .button {
  min-width: 174px;
}

.lm-social-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.lm-social-channel-card,
.lm-live-panel,
.lm-instagram-feature {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--rgb-accent), 0.11), transparent 34%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(6, 7, 8, 0.98));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.lm-social-channel-card {
  min-height: 390px;
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  overflow: hidden;
  position: relative;
}

.lm-social-channel-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -32% 34%;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--platform-glow, rgba(168, 216, 255, 0.18)), transparent 66%);
  pointer-events: none;
}

.lm-social-channel-card.facebook-card {
  --platform-glow: rgba(24, 119, 242, 0.24);
}

.lm-social-channel-card.instagram-card {
  --platform-glow: rgba(222, 49, 129, 0.24);
}

.lm-social-channel-card.tiktok-card {
  --platform-glow: rgba(0, 242, 234, 0.2);
}

.lm-social-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lm-social-channel-card h3,
.lm-instagram-feature h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 2.9vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lm-social-channel-card p:not(.eyebrow),
.lm-instagram-feature p:not(.eyebrow) {
  color: rgba(240, 240, 241, 0.76);
  line-height: 1.58;
  margin: 0;
}

.lm-social-channel-card .button {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.lm-live-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(18px, 2.3vw, 28px);
  align-items: start;
}

.lm-live-side-stack {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
  min-width: 0;
}

.lm-live-panel {
  border-radius: 28px;
  padding: clamp(18px, 2vw, 24px);
  overflow: hidden;
}

.lm-facebook-panel {
  overflow: visible;
  padding: clamp(14px, 1.6vw, 20px);
}

.lm-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.lm-panel-heading .eyebrow {
  margin: 0;
}

.lm-panel-heading a {
  color: #fff;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 216, 255, 0.55);
}

.lm-facebook-embed-frame {
  width: 100%;
  max-width: 100%;
  height: 900px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.lm-facebook-panel iframe {
  width: min(100%, 500px);
  max-width: 500px;
  height: 900px;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  transform: scale(var(--lm-facebook-scale, 1));
  transform-origin: top center;
}

.lm-tiktok-panel .tiktok-embed {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 0 20px !important;
  border-radius: 18px;
  overflow: hidden;
}

.lm-instagram-feature {
  border-radius: 22px;
  padding: clamp(18px, 2vw, 26px);
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 82% 12%, rgba(222, 49, 129, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(28, 28, 28, 0.94), rgba(9, 10, 12, 0.98));
}

.lm-instagram-feature > span {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lm-instagram-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 6px;
}

.lm-instagram-topics span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .lm-social-channel-grid,
  .lm-live-grid {
    grid-template-columns: 1fr;
  }

  .lm-live-side-stack {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .lm-social-hero {
    min-height: auto;
    padding: 28px 18px 30px !important;
  }

  .lm-social-hero h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.1rem) !important;
    max-width: 100% !important;
  }

  .lm-social-actions .button,
  .lm-social-channel-card .button,
  .lm-instagram-feature .button {
    width: 100%;
  }

  .lm-social-channel-card {
    min-height: 0;
    border-radius: 20px;
  }

  .lm-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .lm-live-panel {
    border-radius: 20px;
  }

  .lm-facebook-panel iframe {
    height: 760px;
  }
}

/* --------------------------------------------------------------------------
   MOBILE 2-UP PRODUCT GRIDS - inventory / outboards / altilium listings
   (mirrors the homepage latest-arrivals compact card treatment)
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  .inventory-grid[data-product-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .inventory-grid[data-product-grid] .inventory-card {
    min-width: 0 !important;
    border-radius: 14px !important;
  }

  .inventory-grid[data-product-grid] .inventory-media {
    border-radius: 12px 12px 0 0 !important;
  }

  .inventory-grid[data-product-grid] .inventory-copy {
    gap: 4px !important;
    padding: 10px 10px 12px !important;
  }

  .inventory-grid[data-product-grid] .inventory-copy h3 {
    font-size: 0.82rem !important;
    line-height: 1.15 !important;
  }

  .inventory-grid[data-product-grid] .inventory-copy span,
  .inventory-grid[data-product-grid] .inventory-copy p {
    font-size: 0.74rem !important;
    line-height: 1.2 !important;
  }

  .inventory-grid[data-product-grid] .inventory-card .button,
  .inventory-grid[data-product-grid] .inventory-card .button-secondary {
    min-height: 44px !important;
    padding: 0 10px !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
    margin-top: 8px !important;
  }
}

/* Product finance estimate note (populated from WordPress product field) */
.product-finance-note {
  margin: 6px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(168, 216, 255, 0.85);
}



/* --- HOMEPAGE SECTION CTAS ----------------------------------------------- */
.suzuki-dealer-actions { margin-top: 18px; }
.latest-arrivals-cta { margin-top: 22px; display: flex; justify-content: flex-start; }

/* --- ABOUT PAGE ---------------------------------------------------------- */
.lm-about { max-width: 1080px; margin: 0 auto; display: grid; gap: 30px; }
.lm-about-intro h1 { margin: 10px 0 14px; }
.lm-about-lead { max-width: 70ch; }
.lm-about-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.lm-about-card {
  border: 1px solid rgba(168, 216, 255, 0.14);
  border-radius: 18px;
  padding: 24px 22px;
  background: rgba(10, 20, 40, 0.35);
}
.lm-about-card h2 { font-size: 1.1rem; margin: 0 0 8px; }
.lm-about-card p { margin: 0; }
.lm-about-cta {
  border: 1px solid rgba(168, 216, 255, 0.14);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
}
.lm-about-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
@media (max-width: 720px) {
  .lm-about-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   REQUESTED TWEAKS - 22 JUL 2026
   Hero video fills its frame (no rounded corners, no dark scrim),
   smaller About + Socials headings, About photo gallery.
   ========================================================================== */

.hero-home { border-radius: 0 !important; }
.hero-home::before { display: none !important; }

.lm-about h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.3rem) !important;
  line-height: 1.12 !important;
}
.lm-about .lm-about-lead { font-size: 1rem !important; }
.lm-about-card h2 {
  font-size: 1.12rem !important;
  line-height: 1.28 !important;
}
.lm-about-cta h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem) !important; }

.lm-about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.lm-about-gallery img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(168, 216, 255, 0.14);
}

.lm-social-hero-copy h1 {
  font-size: clamp(2rem, 4.4vw, 3rem) !important;
  line-height: 1.08 !important;
}

@media (max-width: 900px) {
  .lm-about-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}



/* ==========================================================================
   MOBILE FIXES - 22 JUL 2026
   ========================================================================== */

body[data-page="product"] .product-gallery-figure {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
}
body[data-page="product"] .product-gallery-figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 900px) {
  .lm-about-gallery img:nth-of-type(5) { display: none !important; }
}

@media (max-width: 980px) {
  .stats-grid article {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .stats-grid article:nth-child(2n+1) { padding-left: 0 !important; }

  .footer-trust {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .lm-about-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }

  body[data-page="product"].product-type-motor .product-detail-layout {
    grid-template-columns: 1fr !important;
  }
  body[data-page="product"].product-type-motor .product-gallery-stage {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
  body[data-page="product"].product-type-motor .product-thumb-row {
    max-width: none !important;
  }
}
