/* ═══════════════════════════════════════════════════════
   SUPREMA YACHTS — Design System v3 "Precision Dark"
   Palette: Ink #0C0C0C · Off-White #F0EEE8 · Azure #4BA8CC
   Font: Space Grotesk (700/600/500) · DM Sans (400/300)
═══════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0C0C0C;
  --bg-2:      #141414;
  --bg-3:      #1E1E1E;
  --bg-4:      #282828;
  --text:      #F0EEE8;
  --text-dim:  rgba(240, 238, 232, 0.55);
  --text-muted:rgba(240, 238, 232, 0.35);
  --accent:    #4BA8CC;
  --accent-h:  #63B9D8;
  --border:    rgba(240, 238, 232, 0.10);
  --border-h:  rgba(240, 238, 232, 0.22);
  --wa:        #25D366;
  --wa-h:      #1ebe5a;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h:     68px;
  --max-w:     1320px;
  --pad-x:     clamp(1.25rem, 5vw, 4rem);
  --s1: 0.5rem;  --s2: 1rem;   --s3: 1.5rem;
  --s4: 2rem;    --s5: 3rem;   --s6: 4rem;
  --s7: 6rem;    --s8: 8rem;   --s9: 11rem;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
           overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 200ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--accent); color: #fff; border: 1.5px solid var(--accent); }
.btn--primary:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-h); }
.btn--ghost:hover { border-color: var(--text); background: rgba(240,238,232,0.06); }

.btn--ghost-light { background: transparent; color: var(--text-dim); border: 1.5px solid var(--border); }
.btn--ghost-light:hover { color: var(--text); border-color: var(--border-h); }

.btn--outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; }

.btn--wa { background: var(--wa); color: #fff; border: 1.5px solid var(--wa); }
.btn--wa:hover { background: var(--wa-h); border-color: var(--wa-h); transform: translateY(-1px); }

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.82rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }


/* ── SECTION LABEL ───────────────────────────────────── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}


/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ── NAVIGATION ──────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
#nav.nav--solid {
  background: rgba(12,12,12,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  border-bottom-color: transparent;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 300ms ease, opacity 300ms ease;
  opacity: 0.92;
}
.nav__logo-img:hover { opacity: 1; }
.nav--solid .nav__logo-img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.nav__links { display: flex; gap: var(--s3); margin-left: auto; }
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 200ms;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav--solid .nav__links a { color: var(--text-dim); }
.nav--solid .nav__links a:hover { color: var(--text); }

.nav__wa {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--wa);
  border: 1px solid rgba(37,211,102,0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  transition: all 200ms;
  flex-shrink: 0;
}
.nav__wa:hover { background: rgba(37,211,102,0.1); border-color: var(--wa); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav__burger-line { display: block; width: 22px; height: 1.5px; background: var(--text);
                    border-radius: 2px; transition: transform 250ms ease, opacity 200ms; }
.nav--solid .nav__burger-line { background: var(--text); }
.nav__burger-line--short { width: 14px; }

.nav__drawer {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding 320ms ease;
}
.nav__drawer.is-open { max-height: 400px; padding: var(--s2) 0; }
.nav__drawer a {
  display: block;
  padding: 0.8rem var(--pad-x);
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-dim);
  transition: color 200ms, background 200ms;
}
.nav__drawer a:hover { color: var(--text); background: var(--bg-3); }
.drawer__wa {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  color: var(--wa) !important;
  margin-top: var(--s1);
  border-top: 1px solid var(--border);
  padding-top: var(--s2) !important;
}


/* ── NAV DROPDOWN ───────────────────────────────────── */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 200ms;
  position: relative;
}
.nav__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav__dropdown-trigger:hover,
.nav__dropdown:hover .nav__dropdown-trigger { color: var(--text); }
.nav__dropdown:hover .nav__dropdown-trigger::after,
.nav__dropdown-trigger.is-active::after { transform: scaleX(1); }
.nav__dropdown-trigger.is-active { color: var(--text); }
.drop-chevron { transition: transform 200ms ease; }
.nav__dropdown:hover .drop-chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(12,12,12,0.98);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 0;
  min-width: 168px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms, visibility 180ms, transform 180ms;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 200ms, background 200ms;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav__dropdown-menu a::after { display: none !important; }
.drop-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }


/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) var(--s5);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,0.15) 0%,
    rgba(12,12,12,0.35) 40%,
    rgba(12,12,12,0.78) 70%,
    rgba(12,12,12,0.96) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--s3);
}
.hero__title em { font-style: normal; color: var(--accent); }

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: var(--s4);
  max-width: 520px;
}

.hero__ctas { display: flex; gap: var(--s2); flex-wrap: wrap; }

.hero__specs {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: var(--s4) auto 0;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: var(--s3);
}
.hero__spec { display: flex; flex-direction: column; gap: 4px; flex: 1; padding: 0 var(--s3); }
.hero__spec:first-child { padding-left: 0; }
.hero__spec-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text);
  line-height: 1;
}
.hero__spec-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; }
.hero__spec-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }


/* ── INTRO TEXT ─────────────────────────────────────── */
.intro-text {
  padding: var(--s7) var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.intro-text__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: start;
}
.intro-text__col h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-top: var(--s2);
}
.intro-text__col--body p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: var(--s3);
}
@media (max-width: 768px) {
  .intro-text__inner { grid-template-columns: 1fr; gap: var(--s4); }
}


/* ── TICKER ──────────────────────────────────────────── */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.75rem 0;
}
.ticker__inner {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}
.ticker__inner span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.ticker__dot { color: var(--accent) !important; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── CATEGORIES ──────────────────────────────────────── */
.cats {
  padding: var(--s7) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.cat-card {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.cat-card__link { position: absolute; inset: 0; z-index: 2; }

.cat-card__media { position: relative; height: 300px; overflow: hidden; flex-shrink: 0; }
.cat-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}
.cat-card:hover .cat-card__media img { transform: scale(1.04); }

.cat-card__body {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border);
}
.cat-card__num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: var(--s2);
}
.cat-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--s2);
}
.cat-card__brands { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 0.4rem; }
.cat-card__range { font-family: var(--font-head); font-size: 0.75rem; color: var(--text-muted); margin-bottom: var(--s3); }
.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: auto;
  position: relative;
  z-index: 3;
  transition: gap 200ms;
}
.cat-card__cta:hover { gap: 0.8rem; }
.cat-card:hover .cat-card__cta svg { transform: translateX(4px); }
.cat-card__cta svg { transition: transform 200ms; }


/* ── FEATURED PRODUCTS ───────────────────────────────── */
.featured { padding: var(--s7) var(--pad-x); background: var(--bg-2); }
.featured__head { max-width: var(--max-w); margin: 0 auto var(--s6); }
.featured__head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s2);
}
.featured__sub { font-size: 0.95rem; color: var(--text-dim); font-weight: 300; }

.featured__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.prod-card { background: var(--bg-3); display: flex; flex-direction: column; overflow: hidden; }
.prod-card__media {
  height: 200px;
  overflow: hidden;
  background: var(--bg-4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-card__media--dark { background: #0a0a0a; }
.prod-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.prod-card:hover .prod-card__media img { transform: scale(1.05); }

.prod-card__body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border);
}
.prod-card__brand {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.prod-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--s2);
  line-height: 1.1;
}
.prod-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--s3);
  flex: 1;
}
.prod-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.prod-card__specs li:last-child { border-bottom: none; }
.spec-key { color: var(--text-muted); font-weight: 400; }
.spec-val { color: var(--text); font-weight: 500; font-family: var(--font-head); text-align: right; }
.spec-val.accent { color: var(--accent); }

.prod-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: var(--s2);
  border-top: 1px solid var(--border);
}
.prod-card__price { font-family: var(--font-head); font-size: 0.82rem; color: var(--text-dim); }
.prod-card__price strong { font-size: 1.05rem; font-weight: 700; color: var(--text); }

.featured__more { max-width: var(--max-w); margin: var(--s5) auto 0; text-align: center; }


/* ── WHY ─────────────────────────────────────────────── */
.why { padding: var(--s7) var(--pad-x); }
.why__inner { max-width: var(--max-w); margin: 0 auto; }
.why__header { margin-bottom: var(--s6); }
.why__header h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 600px;
}
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4) var(--s5); }
.why__item {
  padding: var(--s4);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 300ms, background 300ms;
}
.why__item:hover { border-color: var(--accent); background: rgba(75,168,204,0.06); }
.why__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: var(--s3);
  transition: border-color 300ms;
}
.why__item:hover .why__icon { border-color: var(--accent); }
.why__item h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}
.why__item p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; }


/* ── MANIFESTO ───────────────────────────────────────── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s8) var(--pad-x);
}
.manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
}
.manifesto__quote {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  border: none;
  padding: 0;
}
.manifesto__quote p { margin: 0; }
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__cite { display: block; margin-top: var(--s3); }
.manifesto__cite cite {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-style: normal;
  text-transform: uppercase;
}


/* ── BRANDS ──────────────────────────────────────────── */
.brands { padding: var(--s6) var(--pad-x); border-bottom: 1px solid var(--border); }
.brands__inner { max-width: var(--max-w); margin: 0 auto; }
.brands__grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: var(--s4);
}
.brand-item {
  background: var(--bg-2);
  padding: var(--s3) var(--s2);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  line-height: 1.3;
  transition: color 250ms, background 250ms;
}
.brand-item small { display: block; font-weight: 400; font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.06em; }
.brand-item:hover { color: var(--text); background: var(--bg-3); }


/* ── CTA FINAL ───────────────────────────────────────── */
.cta-final {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: var(--s8) var(--pad-x);
  overflow: hidden;
}
.cta-final__bg { position: absolute; inset: 0; z-index: 0; }
.cta-final__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.6);
}
.cta-final__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(12,12,12,0.95) 40%, rgba(12,12,12,0.55) 100%);
}
.cta-final__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 0 0;
}
.cta-final__content h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s3);
}
.cta-final__sub { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; margin-bottom: var(--s4); }
.cta-final__actions { display: flex; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s3); }
.cta-final__contact { font-size: 0.82rem; color: var(--text-muted); }
.cta-final__contact a { color: var(--text-dim); transition: color 200ms; }
.cta-final__contact a:hover { color: var(--text); }


/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--s7) var(--pad-x) 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--s5) var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
}
.footer__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: var(--s2);
}
.footer__logo span { font-weight: 300; color: var(--text-dim); }
.footer__tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: var(--s3); }
.footer__social { display: flex; gap: var(--s2); }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all 250ms;
}
.footer__social a:hover { color: var(--wa); border-color: var(--wa); }
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { font-size: 0.875rem; color: var(--text-dim); transition: color 200ms; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s3) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
}
.footer__bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer__bottom a { color: var(--text-dim); }
.footer__bottom a:hover { color: var(--text); }
.footer__vat { font-size: 0.72rem; }


/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  width: 56px; height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  animation: waAppear 0.4s ease 3s both;
  transition: transform 250ms, box-shadow 250ms;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes waAppear {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}


/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 900px) {
  .cats__grid { grid-template-columns: 1fr; }
  .cat-card { min-height: auto; }
  .cat-card__media { height: 260px; }
  .why__grid { grid-template-columns: 1fr; gap: var(--s3); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__wa { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: flex; }

  .hero__specs { flex-wrap: wrap; gap: var(--s2); }
  .hero__spec { flex: 0 0 calc(50% - 0.5rem); padding: 0; }
  .hero__spec-divider { display: none; }

  .featured__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: var(--s4); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .cta-final { min-height: auto; }
}

@media (max-width: 480px) {
  :root { --pad-x: 1.25rem; }
  .hero__title { font-size: 2.4rem; }
  .hero__ctas { flex-direction: column; }
  .cta-final__actions { flex-direction: column; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__inner { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* ═══════════════════════════════════════════════════════
   PRODUCT / COLLECTION PAGES
   ═══════════════════════════════════════════════════════ */

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb {
  padding: calc(var(--nav-h) + 1.2rem) var(--pad-x) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  list-style: none;
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.breadcrumb__list li + li::before { content: '›'; margin-right: 0.4rem; }
.breadcrumb__list a { color: var(--text-dim); transition: color 200ms; }
.breadcrumb__list a:hover { color: var(--accent); }
.breadcrumb__list [aria-current] { color: var(--text); }

/* ── Page hero ────────────────────────────────────── */
.pg-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: var(--s7);
}
.pg-hero__media { position: absolute; inset: 0; }
.pg-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pg-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.92) 30%, rgba(12,12,12,0.35) 100%);
}
.pg-hero__content {
  position: relative; z-index: 2;
  padding: var(--s7) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.pg-hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}
.pg-hero__title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: var(--s3);
}
.pg-hero__sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.65;
}

/* ── Product detail 2-col ─────────────────────────── */
.prod-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.prod-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: start;
  margin-bottom: var(--s8);
}
.prod-detail__media {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-3);
}
.prod-detail__media img { width: 100%; height: auto; display: block; }
.prod-detail__brand {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}
.prod-detail__name {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: var(--s2);
}
.prod-detail__tagline {
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: var(--s4);
  border-left: 2px solid var(--accent);
  padding-left: var(--s3);
}
.prod-detail__price { margin-bottom: var(--s4); }
.prod-detail__price-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.prod-detail__price-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.prod-detail__price-vat { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }
.prod-detail__actions { display: flex; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s5); }
.prod-detail__quick-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2); }
.quick-spec {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: var(--s3);
}
.quick-spec__key {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.3rem;
}
.quick-spec__val { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--text); }
.quick-spec__val.accent { color: var(--accent); }

/* ── Full specs table ──────────────────────────────── */
.specs-section { margin-bottom: var(--s7); }
.specs-section__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s4);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--border);
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); transition: background 150ms; }
.specs-table tr:hover { background: var(--bg-2); }
.specs-table td { padding: 0.85rem var(--s3); font-size: 0.88rem; }
.specs-table td:first-child {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 42%;
}
.specs-table td:last-child { color: var(--text); font-weight: 500; }
.specs-table td.accent { color: var(--accent); }

/* ── Driving modes ─────────────────────────────────── */
.modes-section { margin-bottom: var(--s7); }
.modes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.mode-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--s4);
}
.mode-card__label {
  font-family: var(--font-head);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}
.mode-card__name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: var(--s2); }
.mode-card__desc { font-size: 0.83rem; color: var(--text-dim); line-height: 1.6; }

/* ── Colors ────────────────────────────────────────── */
.colors-section { margin-bottom: var(--s7); }
.colors-section__title {
  font-size: 1.4rem; font-weight: 700; color: var(--text);
  margin-bottom: var(--s4); padding-bottom: var(--s2);
  border-bottom: 1px solid var(--border);
}
.color-chips { display: flex; gap: var(--s4); flex-wrap: wrap; }
.color-chip { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: default; }
.color-chip__swatch {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--border);
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
}
.color-chip:hover .color-chip__swatch {
  transform: scale(1.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(75,168,204,0.2);
}
.color-chip__name {
  font-size: 0.65rem; font-family: var(--font-head);
  letter-spacing: 0.06em; color: var(--text-muted);
  text-align: center; max-width: 60px;
}

/* ── Model cards (collection) ─────────────────────── */
.model-section {
  max-width: var(--max-w);
  margin: 0 auto var(--s8);
  padding: 0 var(--pad-x);
}
.model-section__head { margin-bottom: var(--s5); }
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.model-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 250ms, transform 250ms;
  display: block;
  text-decoration: none;
}
.model-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.model-card__media { height: 280px; overflow: hidden; background: var(--bg-3); }
.model-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.model-card:hover .model-card__media img { transform: scale(1.04); }
.model-card__body { padding: var(--s4); }
.model-card__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(75,168,204,0.3);
  border-radius: 2px;
  padding: 2px 8px;
  margin-bottom: var(--s2);
}
.model-card__name { font-size: 1.7rem; font-weight: 700; color: var(--text); margin-bottom: var(--s3); }
.model-card__specs { list-style: none; margin-bottom: var(--s3); }
.model-card__specs li {
  display: flex; justify-content: space-between;
  font-size: 0.83rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.model-card__specs .sk { color: var(--text-muted); }
.model-card__specs .sv { color: var(--text); font-weight: 500; }
.model-card__price { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: var(--s3); }
.model-card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-size: 0.82rem;
  font-weight: 500; color: var(--accent);
}

/* ── Cross-sell ────────────────────────────────────── */
.crossell {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: var(--s5);
  display: flex;
  gap: var(--s5);
  align-items: center;
  margin-bottom: var(--s8);
}
.crossell__img { width: 220px; height: 150px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.crossell__badge {
  font-family: var(--font-head);
  font-size: 0.66rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.4rem;
}
.crossell__name { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: var(--s2); }
.crossell__desc { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; margin-bottom: var(--s3); }

/* Product responsive */
@media (max-width: 900px) {
  .prod-detail { grid-template-columns: 1fr; }
  .prod-detail__media { position: static; }
  .model-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; }
  .crossell { flex-direction: column; }
  .crossell__img { width: 100%; height: 220px; }
}
@media (max-width: 600px) {
  .prod-detail__quick-specs { grid-template-columns: 1fr 1fr; }
  .prod-detail__actions { flex-direction: column; }
}

/* ── HOME SEO SECTIONS ─────────────────────────────────── */

/* How it works */
.how { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how__inner { max-width: var(--max-w); margin: 0 auto; padding: var(--s7) var(--pad-x); }
.how__header { max-width: 640px; margin-bottom: var(--s6); }
.how__header h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: var(--s2); }
.how__sub { font-size: .95rem; color: var(--text-muted); line-height: 1.7; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.how__step { position: relative; }
.how__num { display: block; font-size: 3rem; font-weight: 700; color: var(--accent); opacity: .25; line-height: 1; margin-bottom: var(--s2); font-family: var(--font-head); letter-spacing: -.05em; }
.how__step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: var(--s1); letter-spacing: -.01em; }
.how__step p { font-size: .88rem; line-height: 1.8; color: var(--text-muted); }
@media(max-width:768px){ .how__steps { grid-template-columns: 1fr; gap: var(--s4); } }

/* Categories detail */
.cats-detail { }
.cats-detail__inner { max-width: var(--max-w); margin: 0 auto; padding: var(--s7) var(--pad-x); }
.cats-detail__header { max-width: 700px; margin-bottom: var(--s6); }
.cats-detail__header h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: var(--s2); }
.cats-detail__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.cats-detail__item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: var(--s2); }
.cats-detail__item h3 a { color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: border-color .2s, color .2s; }
.cats-detail__item h3 a:hover { color: var(--accent); border-color: var(--accent); }
.cats-detail__item p { font-size: .87rem; line-height: 1.85; color: var(--text-muted); margin-bottom: var(--s2); }
.cats-detail__link { font-size: .83rem; color: var(--accent); letter-spacing: .02em; transition: opacity .2s; }
.cats-detail__link:hover { opacity: .75; }
@media(max-width:900px){ .cats-detail__grid { grid-template-columns: 1fr; gap: var(--s4); } }

/* Home FAQ */
.home-faq { background: var(--bg-2); border-top: 1px solid var(--border); }
.home-faq__inner { max-width: 900px; margin: 0 auto; padding: var(--s7) var(--pad-x); }
.home-faq__header { margin-bottom: var(--s5); }
.home-faq__header h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: var(--s1); }
.home-faq__list { display: flex; flex-direction: column; gap: var(--s2); }

/* Seabob video */
.seabob-video { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.seabob-video-wrap { position:relative; overflow:hidden; border-radius:6px; margin-bottom:var(--s5); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-item { background: rgba(255,255,255,.02); border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 18px var(--s3); cursor: pointer; font-size: .92rem; font-weight: 600; color: var(--text); list-style: none; user-select: none; gap: var(--s2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { background: rgba(255,255,255,.03); }
.faq-answer { padding: 0 var(--s3) var(--s3); font-size: .88rem; line-height: 1.7; color: var(--text-muted); }

/* ── DMP CREDIT ── */
.footer__dmp { border-top: 1px solid var(--border); padding: 18px var(--pad-x); text-align: center; }
.footer__dmp-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text-muted); font-size: .75rem; transition: color .2s; }
.footer__dmp-link:hover { color: var(--accent); }
.footer__dmp-logo { font-size: 1.1rem; }
.footer__dmp-text strong { color: var(--text-dim); }


/* ═══════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — supremayachts.com
   Target: 375px (iPhone SE) → 767px
   ═══════════════════════════════════════════════════════ */

/* ── Base mobile typography ──────────────────────────── */
@media (max-width: 767px) {

  /* Body text — legibility baseline */
  body { font-size: 16px; line-height: 1.65; }
  p { font-size: 1rem; line-height: 1.7; }

  /* Nav — always solid on mobile for contrast/legibility */
  #nav {
    background: rgba(12,12,12,0.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid var(--border) !important;
  }

  /* Nav logo — larger on mobile for brand visibility */
  .nav__logo-img { height: 52px; }

  /* Nav burger — 44×44 touch target minimo WCAG */
  .nav__burger { padding: 10px; margin-right: -10px; min-height: 44px; align-items: center; justify-content: center; }
  .nav__burger-line { width: 24px; }
  .nav__burger-line--short { width: 16px; }
  .nav__drawer a { font-size: 1.05rem; padding: 0.95rem var(--pad-x); }
  .drawer__wa { font-size: 1rem; }

  /* Hero — reduce bottom padding so CTA is visible above fold */
  .hero { padding-bottom: var(--s4); min-height: 100svh; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.2rem); line-height: 1.08; }
  .hero__sub { font-size: 1rem; margin-bottom: var(--s3); max-width: 100%; }
  .hero__ctas { flex-direction: column; gap: var(--s2); }
  .hero__ctas .btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 1rem; min-height: 52px; }
  .hero__eyebrow { font-size: 0.7rem; }

  /* Hero specs — 2x2 grid on mobile */
  .hero__specs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); padding-top: var(--s3); margin-top: var(--s3); }
  .hero__spec { padding: 0; flex: unset; }
  .hero__spec-divider { display: none; }
  .hero__spec-val { font-size: 1.6rem; }

  /* Page hero (collection pages) — compact on mobile */
  .pg-hero { min-height: 45vh; margin-bottom: var(--s5); }
  .pg-hero__content { padding: var(--s5) var(--pad-x); }
  .pg-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); margin-bottom: var(--s2); }
  .pg-hero__sub { font-size: 0.95rem; max-width: 100%; }

  /* Buttons — minimum 48px touch target */
  .btn { min-height: 48px; padding: 0.85rem 1.5rem; font-size: 0.95rem; }
  .btn--sm { min-height: 40px; padding: 0.6rem 1rem; font-size: 0.85rem; }
  .btn--lg { min-height: 52px; padding: 1rem 1.75rem; font-size: 1rem; }

  /* Product detail page */
  .prod-detail { gap: var(--s4); }
  .prod-detail__name { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .prod-detail__actions { flex-direction: column; gap: var(--s2); }
  .prod-detail__actions .btn { width: 100%; justify-content: center; }
  .prod-detail__quick-specs { grid-template-columns: 1fr 1fr; gap: var(--s2); }
  .quick-spec { padding: var(--s2); }
  .quick-spec__val { font-size: 1rem; }
  .prod-detail__tagline { font-size: 0.95rem; }

  /* Accessory product page (ppage) */
  .ppage { padding: var(--s4) var(--pad-x); }
  .ppage h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); line-height: 1.1; margin-bottom: var(--s2); }
  .ppage p { font-size: 1rem; line-height: 1.7; }
  .ppage .btn { width: 100%; justify-content: center; min-height: 52px; font-size: 1rem; }

  /* Categories grid */
  .cats__grid { grid-template-columns: 1fr; gap: 1px; }
  .cat-card { min-height: auto; }
  .cat-card__media { height: 220px; }
  .cat-card__title { font-size: 1.6rem; }
  .cat-card__body { padding: var(--s3); }

  /* Featured products — single column */
  .featured__grid { grid-template-columns: 1fr; }
  .featured__head h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Product cards */
  .prod-card__name { font-size: 1.2rem; }
  .prod-card__footer { flex-direction: column; align-items: flex-start; gap: var(--s1); }

  /* Model cards (F9/F9S) */
  .model-grid { grid-template-columns: 1fr; }
  .model-card__media { height: 220px; }
  .model-card__name { font-size: 1.4rem; }

  /* Mode cards */
  .modes-grid { grid-template-columns: 1fr; gap: var(--s2); }

  /* Why section */
  .why__grid { grid-template-columns: 1fr; gap: var(--s3); }
  .why__item { padding: var(--s3); }
  .why__header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Manifesto */
  .manifesto { padding: var(--s6) var(--pad-x); }
  .manifesto__quote { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* Brands grid */
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .brand-item { font-size: 0.72rem; padding: var(--s2) var(--s1); }

  /* CTA final section */
  .cta-final { padding: var(--s6) var(--pad-x); min-height: auto; }
  .cta-final__content h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .cta-final__actions { flex-direction: column; gap: var(--s2); }
  .cta-final__actions .btn { width: 100%; justify-content: center; }

  /* Cross-sell */
  .crossell { padding: var(--s3); gap: var(--s3); }
  .crossell__name { font-size: 1.2rem; }

  /* Footer */
  .footer { padding-top: var(--s5); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s3); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand img { height: 72px !important; width: auto !important; }
  .footer__bottom { flex-direction: column; text-align: center; gap: var(--s1); }
  .footer__col-title { margin-bottom: var(--s2); font-size: 0.65rem; }
  .footer__col a { font-size: 0.82rem; min-height: 36px; display: flex; align-items: center; }
  .footer__col ul { gap: 0; }

  /* FAQ */
  .faq-item summary { font-size: 0.95rem; padding: 16px var(--s2); }
  .faq-answer { font-size: 0.9rem; padding: 0 var(--s2) var(--s2); }

  /* Section headings */
  .intro-text__inner { grid-template-columns: 1fr; gap: var(--s3); }
  .intro-text__col h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }

  /* How it works */
  .how__header h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  .how__steps { grid-template-columns: 1fr; gap: var(--s3); }
  .how__num { font-size: 2.2rem; }

  /* Categories detail */
  .cats-detail__header h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  .cats-detail__grid { grid-template-columns: 1fr; gap: var(--s3); }

  /* Seabob hero */
  .sb-hero__title { font-size: clamp(2rem, 8vw, 3rem) !important; }

  /* WA float — tighter on mobile so it doesn't obscure content */
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }

  /* Breadcrumb */
  .breadcrumb { padding-top: calc(var(--nav-h) + 0.75rem); }
  .breadcrumb__list { font-size: 0.7rem; }

  /* Touch targets: cats-detail links e h3 links */
  .cats-detail__link { min-height: 44px; display: inline-flex; align-items: center; }
  .cats-detail__item h3 a { min-height: 44px; display: inline-flex; align-items: center; }

  /* Specs table */
  .specs-table td { padding: 0.7rem var(--s2); font-size: 0.85rem; }
  .specs-table td:first-child { font-size: 0.7rem; width: 44%; }

  /* Color chips */
  .color-chip__swatch { width: 38px; height: 38px; }

  /* Section label */
  .section-label { font-size: 0.68rem; }

  /* Sections vertical spacing — tighter on mobile */
  .featured, .why, .cats, .brands, .how__inner, .cats-detail__inner { padding-top: var(--s6); padding-bottom: var(--s6); }
  .manifesto, .cta-final { padding-top: var(--s5); padding-bottom: var(--s5); }

  /* Prod-card specs — hide on very small screens if needed */
  .prod-card__media { height: 180px; }

  /* Seabob page product grid */
  .sb-grid, .sb-product-grid { grid-template-columns: 1fr !important; }
}

/* ── Extra small (iPhone SE, 320px) ─────────────────── */
@media (max-width: 380px) {
  :root { --pad-x: 1rem; }
  .hero__title { font-size: 2.2rem; }
  .pg-hero__title { font-size: 1.7rem; }
  .nav__logo-img { height: 42px; }
  .btn { font-size: 0.9rem; }
  .cat-card__title { font-size: 1.4rem; }
  .model-card__name { font-size: 1.3rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand img { height: 72px !important; }
}

/* ── Tablet (768–1023px) ─────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
  .cats__grid { grid-template-columns: 1fr; }
  .cat-card__media { height: 280px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s4); }
  .brands__grid { grid-template-columns: repeat(4, 1fr); }
  .model-grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: clamp(2.8rem, 6vw, 4rem); }
  .nav__logo-img { height: 48px; }
  .footer__brand img { height: 100px !important; }
}

/* ── Desktop (≥1024px) ─────────────────────────────── */
@media (min-width: 1024px) {
  .footer__brand img { height: 80px; width: auto; }
}


/* ═══════════════════════════════════════════════════════
   MOBILE CRITICAL FIXES — All inner pages
   !important overrides inline <style> tags in HTML
   ═══════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ── Hero overlay: più scuro in alto per contrasto testo ── */
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(12,12,12,0.52) 0%,
      rgba(12,12,12,0.50) 40%,
      rgba(12,12,12,0.82) 70%,
      rgba(12,12,12,0.97) 100%
    ) !important;
  }

  /* ── Footer logo più grande su mobile ──────────────── */
  .footer__brand img { height: 90px !important; }

  /* ── Padding orizzontale: da --s4 (32px) a --pad-x (20px) ──
     Tutte le pagine inner usano var(--s4) negli <style> inline  */
  .page-hero      { padding: calc(var(--nav-h) + var(--s3)) var(--pad-x) var(--s4) !important; }
  .contact-hero   { padding: calc(var(--nav-h) + var(--s3)) var(--pad-x) var(--s4) !important; }
  .sb-hero        { padding: calc(var(--nav-h) + var(--s3)) var(--pad-x) var(--s4) !important; }
  .about-hero     { padding: calc(var(--nav-h) + var(--s4)) var(--pad-x) var(--s4) !important; }

  .brands-wrap    { padding: var(--s5) var(--pad-x) !important; }
  .models-wrap    { padding: var(--s5) var(--pad-x) !important; }
  .contact-wrap   { padding: var(--s5) var(--pad-x) !important; }
  .contact-faq    { padding: 0 var(--pad-x) var(--s5) !important; }
  .about-wrap     { padding: var(--s5) var(--pad-x) !important; }
  .about-brands   { padding: 0 var(--pad-x) var(--s5) !important; }
  .cmp-section    { padding: 0 var(--pad-x) !important; }
  .tech-section   { padding: 0 var(--pad-x) !important; }
  .faq-section    { padding: 0 var(--pad-x) !important; }
  .values         { padding: var(--s5) var(--pad-x) !important; }
  .about-manifesto{ padding: var(--s4) var(--pad-x) !important; }

  /* ── Titoli hero inner pages ────────────────────── */
  .page-hero__title    { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; }
  .contact-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; }
  .sb-hero__title      { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; }
  .brand-header__name  { font-size: clamp(1.5rem, 7vw, 2.2rem) !important; }

  /* ── CTA buttons full-width nelle pagine inner ────── */
  .page-hero .btn, .contact-hero .btn, .sb-hero .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 52px;
  }
  .sb-hero { text-align: left !important; }
  .sb-hero__desc { margin: 0 0 var(--s4) !important; text-align: left !important; }

  /* ── Comparison table: scrollabile su mobile ───────── */
  .cmp-section      { overflow-x: auto !important; }
  .cmp-table        { font-size: 0.78rem !important; min-width: 480px; }
  .cmp-table td, .cmp-table th { padding: 8px 10px !important; }

  /* ── Brand section: padding brand-section ─────────── */
  .brand-section    { margin-bottom: var(--s6) !important; }
  .brand-header     { gap: var(--s3) !important; }

  /* ── Stats row: wrap su mobile ────────────────────── */
  .stats-row        { gap: var(--s2) !important; }
  .stat-num         { font-size: 1.8rem !important; }

  /* ── About page: story grid e values ──────────────── */
  .story-grid       { gap: var(--s4) !important; }
  .values__grid     { gap: var(--s3) !important; }
  .value-item       { padding: var(--s3) !important; }
  .brands-cats      { gap: var(--s2) !important; }

  /* ── Seabob model cards: specs a 2 colonne ─────────── */
  .model-card__specs { grid-template-columns: 1fr 1fr !important; }
  .model-card__body  { padding: var(--s2) !important; }
  .model-card__name  { font-size: 1.2rem !important; }

  /* ── Water-toys page sections ─────────────────────── */
  .wt-intro  { padding: var(--s6) var(--pad-x) !important; }
  .wt-brands { padding: var(--s4) var(--pad-x) var(--s6) !important; }
  .wt-trust  { padding: var(--s5) var(--pad-x) !important; }

  /* ── Fliteboard / Sea-Doo: .compare-section e .how-section
     (diversi da .cmp-section usato in seabob) ─────────── */
  .compare-section { padding: 0 var(--pad-x) var(--s5) !important; }
  .how-section     { padding: 0 var(--pad-x) var(--s5) !important; }
}

