:root {
  --ink: #0b0b0c;
  --muted: #646568;
  --line: #e2e2df;
  --soft: #f5f5f2;
  --paper: #fff;
  --accent: #f4a900;
  --accent2: #ff7a00;
  --dark: #111113;
  --radius: 24px;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  caret-color: transparent;
  overscroll-behavior: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  caret-color: auto;
}

.btn,
.pill,
.lang-opt,
.nav a,
.compare-btn,
.mobile-toggle,
.cmp-tray,
.fold > summary,
.g-thumb,
.gallery-main {
  -webkit-user-select: none;
  user-select: none;
}

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

img {
  max-width: 100%;
  display: block;
}

.topbar {
  height: 84px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}

.topbar.over-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.topbar.over-hero .brand img { filter: brightness(0) invert(1); }
.topbar.over-hero .nav a { color: #fff; }
.topbar.over-hero .nav a:hover,
.topbar.over-hero .nav a.active { color: var(--accent); }
.topbar.over-hero .lang-opt { color: rgba(255,255,255,.72); }
.topbar.over-hero .lang-opt:hover,
.topbar.over-hero .lang-opt.active { color: #fff; }
.topbar.over-hero .mobile-toggle span { background: #fff; }

.brand img {
  width: auto;
  height: 56px;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
  margin-left: 28px;
  margin-right: auto;
}

.nav a {
  padding: 27px 0;
  white-space: nowrap;
  transition: color .15s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid #111;
  background: #111;
  color: white;
  font-weight: 600;
  min-height: 48px;
  white-space: nowrap;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.btn.light {
  background: white;
  color: #111;
}

.btn.ghost {
  background: transparent;
  color: #111;
  border-color: #d0d0cc;
}

.btn.accent {
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  border: 0;
  color: #111;
}

.mobile-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.mobile-toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  border-radius: 2px;
  background: #111;
  transition: top .32s cubic-bezier(.22,1,.36,1), transform .32s cubic-bezier(.22,1,.36,1), opacity .2s ease;
}

.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 20px; }
.mobile-toggle span:nth-child(3) { top: 26px; }

.mobile-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.mobile-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.hero {
  min-height: 100svh;
  margin-top: -84px;
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #111;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62);
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.6),rgba(0,0,0,.08) 55%,transparent),linear-gradient(180deg,rgba(0,0,0,.55),transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 132px 42px 0;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(48px,8vw,112px);
  line-height: .92;
  letter-spacing: -.07em;
  margin: 18px 0 24px;
  max-width: 900px;
}

.hero p {
  font-size: clamp(18px,2vw,25px);
  max-width: 650px;
  color: rgba(255,255,255,.88);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.quick-strip {
  background: white;
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  padding: 0 42px;
}

.quick-card {
  padding: 34px 20px;
  border-left: 1px solid var(--line);
  min-height: 132px;
}

.quick-card:last-child {
  border-right: 1px solid var(--line);
}

.quick-card b {
  display: block;
  font-size: 18px;
}

.quick-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 94px 42px;
}

.section.soft {
  background: var(--soft);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(36px,5vw,72px);
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}

.section-head p {
  max-width: 440px;
  color: var(--muted);
  font-size: 18px;
}

.model-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.model-tabs > .pill,
.model-tabs > .subpills {
  margin: 5px 10px 5px 0;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  background: white;
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
  max-width: 260px;
  overflow: hidden;
  transition: background .25s ease, color .25s ease, border-color .25s ease,
              max-width .5s cubic-bezier(.22,1,.36,1), padding .5s cubic-bezier(.22,1,.36,1),
              margin .5s cubic-bezier(.22,1,.36,1), opacity .3s ease, transform .5s cubic-bezier(.22,1,.36,1);
}

.pill.active {
  background: #111;
  color: white;
  border-color: #111;
}

.pill-all {
  padding-left: 14px;
  padding-right: 14px;
}

.pill.collapsed {
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin-right: 0;
  border-width: 0;
  opacity: 0;
  transform: scale(.6);
  pointer-events: none;
}

.subpills {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 0;
  transition: opacity .3s ease;
}

.subpills.open {
  opacity: 1;
}

.subpill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 17px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  white-space: nowrap;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transform: scale(.4) translateX(-12px);
  opacity: 0;
  animation: subpop .42s cubic-bezier(.34,1.56,.64,1) forwards;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.subpill:hover {
  border-color: #111;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.subpill.active {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

@keyframes subpop {
  from { transform: scale(.4) translateX(-12px); opacity: 0; }
  to   { transform: scale(1) translateX(0); opacity: 1; }
}

@media(prefers-reduced-motion: reduce) {
  .pill, .subpills { transition: opacity .2s ease; }
  .pill.collapsed { display: none; }
  .subpill { animation: none; transform: none; opacity: 1; }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.more-toggle {
  display: block;
  margin: 26px auto 0;
  padding: 12px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.more-toggle:hover {
  border-color: var(--ink);
  background: var(--soft, #f6f6f4);
}

.more-toggle[hidden] {
  display: none;
}

.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: .25s ease;
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.product-card .img {
  aspect-ratio: 4/2.3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  box-sizing: border-box;
  flex: none;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 16px 0 24px;
}

.detail-price .dp-from {
  font-size: 14px;
  color: var(--muted);
}

.detail-price .dp-amount {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}

.detail-price--ask .dp-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--muted);
}

.detail-price--rijklaar {
  margin-bottom: 10px;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 380px;
  margin: 0 0 14px;
}

.price-breakdown .pb-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.price-breakdown .pb-row span:last-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.homolo-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 460px;
  margin: 0 0 22px;
  padding: 12px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.homolo-note svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--accent2);
  margin-top: 1px;
}

@media (max-width: 760px) {
  .price-breakdown {
    max-width: 100%;
    gap: 0;
    margin: 0 0 12px;
    padding: 4px 14px;
    background: var(--soft);
    border-radius: 12px;
  }

  .price-breakdown .pb-row {
    align-items: baseline;
    font-size: 14px;
    padding: 9px 0;
  }

  .price-breakdown .pb-row + .pb-row {
    border-top: 1px solid var(--line);
  }

  .homolo-note {
    font-size: 11.5px;
    line-height: 1.45;
    padding: 10px 12px;
    margin: 0 0 18px;
  }

  .homolo-note svg {
    width: 16px;
    height: 16px;
  }
}

.spec-sheet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 56px;
  margin-top: 6px;
}

.spec-block {
  break-inside: avoid;
}

.spec-block h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  font-weight: 700;
  margin: 14px 0 4px;
}

.spec-list {
  margin: 0;
  padding: 0;
}

.spec-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.spec-line dt {
  color: var(--muted);
  font-size: 15px;
}

.spec-line dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.spec-disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .spec-sheet {
    grid-template-columns: 1fr;
    gap: 0 0;
  }
}

.product-card .img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

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

.product-card h3 {
  font-size: 24px;
  margin: 0 0 8px;
  letter-spacing: -.03em;
  line-height: 1.12;
  min-height: 2.24em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .card-link p {
  font-size: 15px;
  line-height: 1.5;
  min-height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.price {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: auto;
  padding-top: 14px;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.large-copy h1,
.large-copy h2 {
  font-size: clamp(40px,6vw,82px);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 0 0 24px;
}

.large-copy .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}

/* afspraak: tweede blok als volledig scherm vullende hero */
.booking-hero {
  min-height: calc(100svh - 84px);
  display: flex;
  align-items: center;
}

.booking-hero > .wrap {
  width: 100%;
}

.large-copy p {
  font-size: 20px;
  color: var(--muted);
  max-width: 640px;
}

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 560px;
  background: #ddd;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel.floating {
  box-shadow: 0 35px 80px rgba(0,0,0,.14);
}

/* media-split: beeld vult het volledige kader en wordt even hoog als de tekstkolom */
.split--media {
  align-items: stretch;
}

.split--media .image-panel img {
  position: absolute;
  inset: 0;
}

/* stappen-flow */
.flow-block .section-head {
  text-align: center;
}

.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 8px;
}

.flow::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
  z-index: 0;
}

.flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.flow-ico {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 16px;
  color: var(--accent2);
  background: linear-gradient(135deg, rgba(244,169,0,.16), rgba(255,122,0,.10)), var(--soft);
}

.flow-ico svg {
  width: 26px;
  height: 26px;
}

.flow-num {
  display: block;
  margin: 16px 0 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent2);
}

.flow-step h3 {
  font-size: 20px;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}

.flow-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* USP-band */
.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 30px;
}

.usp {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.usp-ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--accent2);
  background: linear-gradient(135deg, rgba(244,169,0,.16), rgba(255,122,0,.10));
}

.usp-ico svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 760px) {
  .flow {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .flow::before {
    display: none;
  }

  .usp-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px 18px;
  }
}

.parallax-band {
  height: 86vh;
  height: 86svh;
  position: relative;
  overflow: hidden;
  color: white;
  background: #111;
  display: flex;
  align-items: center;
}

.parallax-bg {
  position: absolute;
  inset: -16% 0;
  background: url('assets/showroom-exterieur-buggy.jpg') center/cover no-repeat;
  will-change: transform;
  filter: brightness(.65);
}

.parallax-band:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.16));
}

.parallax-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 42px;
}

.parallax-content h2 {
  font-size: clamp(46px,7vw,96px);
  line-height: .93;
  letter-spacing: -.06em;
  margin: 0 0 20px;
  max-width: 850px;
}

.parallax-content p {
  max-width: 560px;
  font-size: 20px;
  color: rgba(255,255,255,.84);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.service {
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 20px;
  background: white;
}

.service .num {
  color: var(--accent2);
  font-weight: 800;
}

.service h3 {
  font-size: 22px;
  margin: 18px 0 8px;
}

.service p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 30px;
}

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

.feature {
  display: block;
  color: inherit;
  padding: 4px 0;
}

.feature-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--accent2);
  background: linear-gradient(135deg, rgba(244,169,0,.16), rgba(255,122,0,.10));
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.feature-ico svg {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-size: 20px;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}

.feature p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}

.feature-link i {
  font-style: normal;
  transition: transform .25s ease;
}

.feature:hover .feature-ico {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #111;
  box-shadow: 0 14px 28px rgba(244,169,0,.28);
}

.feature:hover .feature-link {
  opacity: 1;
  transform: translateY(0);
}

.feature:hover .feature-link i {
  transform: translateX(3px);
}

@media(max-width:900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .feature-link { opacity: 1; transform: none; }
}

@media(max-width:560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.svc-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}

.svc-col {
  padding: 32px 30px 10px 0;
}

.svc-col + .svc-col {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.svc-n {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent2);
}

.svc-col h3 {
  font-size: 20px;
  letter-spacing: -.01em;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 16px 0 10px;
}

.svc-col p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media(max-width:900px) {
  .svc-cols {
    grid-template-columns: 1fr 1fr;
  }

  .svc-col {
    padding: 22px 20px 4px 0;
  }

  .svc-col + .svc-col {
    border-left: 0;
    padding-left: 0;
  }

  .svc-col:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 20px;
  }

  .svc-col:nth-child(n+3) {
    border-top: 1px solid var(--line);
    margin-top: 18px;
  }
}

.variants-block .section-head { margin-bottom: 26px; }

.variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.variant-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  background: #fff;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.variant-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.variant-chip:hover {
  border-color: #bdbdb8;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.variant-note {
  margin: 22px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 18px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 52px;
  min-height: 28px;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent2);
}

.steps b {
  display: block;
  margin-bottom: 2px;
}

.steps span {
  color: var(--muted);
}

.brand-marquee {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 1;
  pointer-events: none;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.brand-track img {
  height: 50px;
  width: auto;
  max-width: none;
  margin-right: 72px;
  object-fit: contain;
  flex: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

@media(max-width:760px) {
  .brand-track img {
    height: 36px;
    margin-right: 48px;
  }
}

.footer {
  background: #111;
  color: white;
  padding: 72px 42px 30px;
  margin-top: -1px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3,1fr);
  gap: 40px;
}

.footer img {
  width: 120px;
  filter: invert(1);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  transition: .2s ease;
}

.footer-social:hover {
  color: #111;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer a,
.footer p {
  color: rgba(255,255,255,.72);
}

.footer h4 {
  margin: 0 0 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.small {
  max-width: var(--max);
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
}

.vale-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: var(--max);
  margin: 22px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.62);
  transition: color .2s ease;
}

.vale-credit:hover {
  color: rgba(255,255,255,.9);
}

.vale-credit b {
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vale-credit .vale-mark {
  width: 26px;
  height: 26px;
  flex: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-mask: url('assets/vale-logo.png') center / contain no-repeat;
  mask: url('assets/vale-logo.png') center / contain no-repeat;
  animation: valeGlow 3.4s ease-in-out infinite;
}

.vale-credit .vale-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vale-credit .vale-glow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(244,169,0,.40) 0%, rgba(255,122,0,.12) 45%, transparent 70%);
  animation: valeHalo 3.4s ease-in-out infinite;
}

@keyframes valeGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(244,169,0,.55)); opacity: .9; }
  50%      { filter: drop-shadow(0 0 13px rgba(255,150,0,1));  opacity: 1; }
}

@keyframes valeHalo {
  0%, 100% { opacity: .25; transform: translate(-50%, -50%) scale(.85); }
  50%      { opacity: .8;  transform: translate(-50%, -50%) scale(1.12); }
}

@media(prefers-reduced-motion: reduce) {
  .vale-credit .vale-mark { animation: none; opacity: 1; filter: none; }
  .vale-credit .vale-glow::before { animation: none; }
}

.page-hero {
  padding: 92px 42px 54px;
  background: var(--soft);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 30px;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(46px,7vw,96px);
  letter-spacing: -.06em;
  line-height: .96;
  margin: 0;
}

.page-hero p {
  font-size: 20px;
  color: var(--muted);
}

.info-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px;
}

.info-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.legal-text {
  max-width: 820px;
}

.legal-text h3 {
  font-size: 22px;
  letter-spacing: -.02em;
  margin: 38px 0 10px;
}

.legal-text h3:first-child {
  margin-top: 0;
}

.legal-text p {
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.6;
}

.legal-text .sub {
  margin: 0 0 8px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-intro {
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 30px;
}

.detail {
  padding: 72px 42px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.gallery {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
}

.thumbs {
  display: grid;
  gap: 12px;
}

.thumbs img {
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}

.main-shot {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin: 30px 0;
}

.spec {
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 16px;
  border: 1px solid #c9c9c6;
  background: white;
  font: inherit;
}

.form textarea {
  min-height: 140px;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.notice {
  padding: 22px;
  border-radius: 18px;
  background: #fff8e2;
  border: 1px solid #f4db95;
  color: #5b4211;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease,transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media(max-width:1240px) {
  .mobile-toggle {
    display: block;
  }

  .topbar.over-hero {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(0,0,0,.08);
  }

  .topbar.over-hero .brand img { filter: none; }
  .topbar.over-hero .mobile-toggle span { background: #111; }
  .topbar.over-hero .nav a { color: var(--ink); }
  .topbar.over-hero .nav a.active { color: var(--accent); }
  .topbar.over-hero .lang-opt { color: var(--muted); }
  .topbar.over-hero .lang-opt.active { color: var(--ink); }

  .nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    margin: 0;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(0,0,0,.10);
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity .26s ease, transform .34s cubic-bezier(.22,1,.36,1), visibility 0s linear .34s;
  }

  .nav a {
    padding: 13px 0;
  }

  .nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .26s ease, transform .34s cubic-bezier(.22,1,.36,1);
  }

  .nav.open > * {
    opacity: 0;
    animation: navItemIn .5s cubic-bezier(.22,1,.36,1) forwards;
  }

  .nav.open > *:nth-child(1) { animation-delay: .05s; }
  .nav.open > *:nth-child(2) { animation-delay: .09s; }
  .nav.open > *:nth-child(3) { animation-delay: .13s; }
  .nav.open > *:nth-child(4) { animation-delay: .17s; }
  .nav.open > *:nth-child(5) { animation-delay: .21s; }
  .nav.open > *:nth-child(6) { animation-delay: .25s; }
  .nav.open > *:nth-child(7) { animation-delay: .29s; }
  .nav.open > *:nth-child(8) { animation-delay: .33s; }
  .nav.open > *:nth-child(9) { animation-delay: .37s; }

  .actions .btn,
  .actions .lang-switch {
    display: none;
  }

  .nav .nav-cta {
    display: block;
  }

  .nav .nav-lang {
    display: flex;
    padding-top: 8px;
  }
}

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

@media(prefers-reduced-motion: reduce) {
  .nav,
  .nav.open,
  .mobile-toggle span {
    transition: none;
  }

  .nav.open > * {
    animation: none;
    opacity: 1;
  }
}

@media(max-width:900px) {
  .topbar {
    padding: 0 22px;
  }

  .brand img {
    width: auto;
    height: 46px;
  }

  .quick-grid,
  .product-grid,
  .service-grid,
  .split,
  .page-hero .wrap,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .hero-content,
  .page-hero,
  .detail {
    padding-left: 22px;
    padding-right: 22px;
  }

  .quick-grid {
    padding: 0;
  }

  .quick-card {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    font-size: 54px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 0 !important;
    height: 300px;
  }

  .thumbs {
    display: flex;
    overflow: auto;
  }

  .thumbs img {
    width: 90px;
  }

  .two {
    grid-template-columns: 1fr;
  }
}

.brand-group {
  margin: 0 0 56px;
}

.brand-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 0 0 18px;
  margin: 0 0 26px;
  border-bottom: 2px solid var(--ink);
}

.brand-head h2 {
  font-size: clamp(26px,3.4vw,40px);
  letter-spacing: -.04em;
  margin: 0;
  text-transform: uppercase;
}

.brand-head .count {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.brand-group.is-empty {
  display: none;
}

.badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.badge.new {
  background: #eef1ee;
  color: #2c2f2c;
}

.badge.occasie {
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color: #111;
}

.badge.demo {
  background: #111;
  color: #fff;
}

.card-empty {
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  color: var(--muted);
  background: var(--soft);
}

.compare-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 14px;
}

.compare-slot label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.compare-slot select {
  width: 100%;
  padding: 16px;
  border: 1px solid #c9c9c6;
  background: white;
  font: inherit;
  border-radius: 2px;
}

.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 8px 0 26px;
}

.compare-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: white;
}

.compare-card .img {
  aspect-ratio: 4/2.3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-card .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.compare-card .body {
  padding: 18px 22px 22px;
}

.compare-card .meta {
  font-size: 13px;
}

.compare-card h3 {
  margin: 4px 0 6px;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.12;
  min-height: 2.24em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compare-card .price {
  margin-top: 8px;
  padding-top: 0;
}

.compare-empty {
  border: 1px dashed var(--line);
  border-radius: 4px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  min-height: 200px;
  text-align: center;
  padding: 24px;
}

.spec-accordion {
  border-top: 1px solid var(--line);
}

.fold {
  border-bottom: 1px solid var(--line);
}

.fold > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fold > summary::-webkit-details-marker {
  display: none;
}

.fold > summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 500;
  color: var(--muted);
  transition: transform .25s ease;
  line-height: 1;
}

.fold[open] > summary::after {
  content: "\2013";
}

.fold .rows {
  padding: 2px 0 22px;
}

.spec-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(var(--n,2),1fr);
  gap: 22px;
  padding: 12px 4px;
  border-top: 1px solid var(--soft);
  font-size: 15px;
}

.spec-row .label {
  color: var(--muted);
  font-weight: 600;
}

.spec-row .v {
  font-weight: 600;
}

.pack-group {
  margin-bottom: 54px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.pack {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.pack:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.07);
  transform: translateY(-4px);
  border-color: transparent;
}

.pack-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--accent2);
  background: linear-gradient(135deg, rgba(244,169,0,.16), rgba(255,122,0,.10));
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.pack-ico svg {
  width: 26px;
  height: 26px;
}

.pack:hover .pack-ico {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #111;
  box-shadow: 0 14px 28px rgba(244,169,0,.28);
}

.pack h3 {
  font-size: 22px;
  letter-spacing: -.02em;
  margin: 0 0 6px;
}

.pack .pack-for {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.pack ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.pack li {
  padding-left: 26px;
  position: relative;
  color: #2c2f2c;
}

.pack li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 800;
}

.pack .pack-price {
  margin-top: auto;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.pack .pack-price small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.pack .btn {
  margin-top: 18px;
}

.offerte-model {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 26px;
}

.offerte-model span {
  display: block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.offerte-model b {
  font-size: 26px;
  letter-spacing: -.02em;
}

@media(max-width:900px) {
  .compare-controls,
  .compare-head,
  .pack-grid {
    grid-template-columns: 1fr;
  }

  .cmp-sheet-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cmp-cards,
  .cmp-specs {
    min-width: 540px;
  }
}

.card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.product-card .card-link .body {
  padding-bottom: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.card-foot {
  padding: 0 24px 22px;
  margin-top: auto;
}

.card-foot .btn {
  width: auto;
  min-height: 0;
  padding: 9px 16px;
  font-size: 13px;
}

.compare-btn {
  cursor: pointer;
  gap: 6px;
}

.compare-card {
  display: flex;
  flex-direction: column;
}

.compare-card .body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.compare-card .card-actions {
  margin-top: auto;
}

.compare-btn.active {
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  border-color: transparent;
  color: #111;
}

.cmp-tray {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: calc(100vw - 28px);
  padding: 12px 14px 12px 18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  animation: cmpTrayUp .35s cubic-bezier(.22,1,.36,1);
}

.cmp-tray[hidden] {
  display: none;
}

@keyframes cmpTrayUp {
  from { opacity: 0; transform: translate(-50%, 24px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.cmp-slots {
  display: flex;
  gap: 10px;
}

.cmp-slot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
}

.cmp-slot.empty {
  border: 2px dashed #c9c9c6;
  color: #b7b7b1;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.cmp-slot.filled {
  border: 1px solid var(--line);
  background: #f4f4f1;
  overflow: hidden;
}

.cmp-slot.filled img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmp-slot .rm {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 2px solid #fff;
}

.cmp-tray-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cmp-clear {
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 6px;
}

.cmp-clear:hover {
  color: #111;
}

.cmp-go {
  min-height: 44px;
  padding: 12px 22px;
}

.cmp-go:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.cmp-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0,0,0,.42);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cmp-overlay[hidden] {
  display: none;
}

.cmp-sheet {
  background: var(--paper);
  width: 100%;
  max-width: 1120px;
  max-height: 92vh;
  border-radius: 28px 28px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0,0,0,.28);
  animation: cmpSheetUp .4s cubic-bezier(.22,1,.36,1);
}

@keyframes cmpSheetUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cmp-sheet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}

.cmp-sheet-bar h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.03em;
}

.cmp-close {
  background: var(--soft);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #111;
}

.cmp-close:hover {
  background: #ecece8;
}

.cmp-sheet-inner {
  padding: 26px 28px 36px;
  overflow-y: auto;
}

.cmp-cards {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

@media(max-width:760px) {
  .cmp-tray {
    gap: 10px;
    padding: 9px 12px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100vw - 20px);
    bottom: 14px;
  }

  .cmp-slot {
    width: 38px;
    height: 38px;
  }

  .cmp-clear {
    padding: 8px 4px;
  }

  .cmp-go {
    padding: 11px 16px;
  }

  .cmp-sheet {
    max-height: 90vh;
  }

  .cmp-sheet-inner {
    overflow-x: hidden;
    padding: 18px 14px 30px;
  }

  .cmp-cards,
  .cmp-specs {
    min-width: 0;
  }

  .cmp-sheet-bar {
    padding: 15px 16px;
  }

  .cmp-cards {
    gap: 10px;
    margin-bottom: 18px;
  }

  .compare-card .body {
    padding: 12px 12px 14px;
  }

  .compare-card h3 {
    font-size: 16px;
    margin: 2px 0 4px;
  }

  .compare-card .meta {
    font-size: 12px;
  }

  .compare-card .price {
    font-size: 15px;
  }

  .compare-card .card-actions .btn {
    width: 100%;
    padding: 9px 12px;
    font-size: 13px;
  }

  .fold > summary {
    padding: 15px 2px;
    font-size: 16px;
  }

  .spec-row {
    grid-template-columns: 0.85fr repeat(var(--n,2), 1fr);
    gap: 8px;
    padding: 10px 2px;
    font-size: 13px;
  }

  .spec-row .label {
    font-size: 12px;
  }
}

.pack-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 26px;
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.pack-list li {
  position: relative;
  padding-left: 28px;
  color: #2c2f2c;
}

.pack-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 800;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
}

.lang-opt {
  border: 0;
  background: none;
  padding: 4px 2px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--muted);
  cursor: pointer;
}

.lang-opt:hover {
  color: #111;
}

.lang-opt.active {
  color: #111;
  font-weight: 800;
}

.lang-opt:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--line);
  font-weight: 400;
}

.nav-cta,
.nav-lang {
  display: none;
}

.nav-lang {
  align-items: center;
}

.nav-lang-label {
  font-size: 15px;
  color: var(--muted);
  margin-right: 10px;
}

.booking-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.booking-embed iframe {
  width: 100%;
  min-height: 1080px;
  border: 0;
  display: block;
}

@media(max-width:760px) {
  .booking-embed {
    border-radius: 16px;
  }

  .booking-embed iframe {
    min-height: 1000px;
  }
}

.booking-stage {
  max-width: 880px;
  margin: 0 auto;
}

.booking-compact iframe {
  min-height: 760px;
}

@media(max-width:760px) {
  .booking-compact iframe {
    min-height: 680px;
  }
}

.split--contact {
  align-items: stretch;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  min-height: 460px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

.contact-card a:not(.btn) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,.22);
  text-underline-offset: 2px;
}

.contact-card a:not(.btn):hover {
  text-decoration-color: var(--accent2);
}

@media(max-width:900px) {
  .map-embed { min-height: 320px; }
  .map-embed iframe { min-height: 320px; }
}

.events-embed {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.events-embed iframe {
  min-height: 0;
  height: 440px;
}

@media(max-width:760px) {
  .events-embed iframe {
    height: 460px;
  }
}

.detail-shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.detail-shot img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-main {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #fff;
  padding: 16px;
  display: block;
}

@keyframes gSwap {
  from { opacity: .2; }
  to   { opacity: 1; }
}

.gallery-main img.swap {
  animation: gSwap .28s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
}

.g-thumb {
  width: 74px;
  height: 74px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color .15s ease;
}

.g-thumb:hover {
  border-color: #aaa;
}

.g-thumb.active {
  border: 2px solid #111;
}

.g-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  display: block;
}

.g-thumb.more span {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10,10,11,.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbFade .22s ease;
}

@keyframes lbFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox[hidden] { display: none; }

.lb-stage {
  overflow: hidden;
}

.lb-stage img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  display: block;
}

@keyframes lbInR {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes lbInL {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}

.lb-stage img.lb-in-r { animation: lbInR .34s cubic-bezier(.22,1,.36,1); }
.lb-stage img.lb-in-l { animation: lbInL .34s cubic-bezier(.22,1,.36,1); }

@media(prefers-reduced-motion: reduce) {
  .lightbox,
  .lb-stage img.lb-in-r,
  .lb-stage img.lb-in-l,
  .gallery-main img.swap {
    animation: none;
  }
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: none;
  color: rgba(255,255,255,.8);
  border: 0;
  cursor: pointer;
  line-height: 1;
  font-weight: 200;
  transition: color .15s ease;
  z-index: 2;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  color: #fff;
}

.lb-prev, .lb-next {
  top: 0;
  bottom: 0;
  width: max(13vw, 90px);
  font-size: 58px;
  display: flex;
  align-items: center;
}

.lb-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 28px;
}

.lb-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 28px;
}

.lb-close {
  top: 8px;
  right: 10px;
  width: 68px;
  height: 68px;
  font-size: 40px;
  z-index: 3;
}

.lb-count {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

@media(max-width:760px) {
  .gallery-main img { height: 300px; }
  .lb-prev { padding-left: 12px; font-size: 44px; }
  .lb-next { padding-right: 12px; font-size: 44px; }
}

.model-shot {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0,0,0,.10);
}

.model-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media(max-width:760px) {
  .model-shot { height: 300px; }
}

.buybar {
  display: none;
}

@media(max-width:760px) {

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .brand-group {
    margin-bottom: 34px;
  }

  .brand-head {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-card .img {
    aspect-ratio: 1/1;
    background: #fff;
  }

  .product-card .img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding: 10px;
  }

  .product-card .body {
    padding: 12px 12px 6px;
  }

  .product-card .card-link .body {
    padding-bottom: 6px;
  }

  .product-card .badge {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 7px;
  }

  .product-card .meta {
    font-size: 11px;
  }

  .product-card h3 {
    font-size: 15px;
    line-height: 1.2;
    margin: 0 0 6px;
  }

  .product-card .card-link p {
    display: none;
  }

  .product-card .price {
    font-size: 17px;
    margin-top: 6px;
  }

  .card-foot {
    padding: 0 12px 12px;
  }

  .card-foot .btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 12px;
  }

  .detail {
    padding-top: 22px;
    padding-bottom: 30px;
  }

  .detail-grid {
    gap: 22px;
  }

  .gallery-main img {
    height: 300px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
  }

  .detail h1 {
    font-size: 30px !important;
    margin: 10px 0 6px !important;
  }

  .detail .detail-grid > div > p {
    font-size: 16px !important;
  }

  .detail h2 {
    font-size: 26px;
  }

  .specs {
    margin: 22px 0;
    gap: 10px;
  }

  .specs .spec:nth-child(n+3) {
    display: none;
  }

  .spec {
    padding: 14px;
  }

  .card-actions {
    flex-direction: column;
    gap: 10px;
  }

  .card-actions .btn {
    width: 100%;
  }

  .buybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0,0,0,.06);
  }

  .buybar-price {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
  }

  .buybar-price span {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .buybar-price b {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .buybar .btn {
    flex: 1;
    min-height: 46px;
  }

  body:has(.buybar) .footer {
    padding-bottom: 90px;
  }

  body:has(.buybar) .cmp-tray {
    bottom: 86px;
  }
}
