*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #e8e4d8;
  --cream-deep: #ddd7c8;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --ink-muted: #3a3a3a;
  --orange: #d97706;
  --orange-bright: #e8890b;
  --orange-deep: #b86305;
  --paper: rgba(255, 255, 255, 0.35);
  --line: rgba(26, 26, 26, 0.12);
  --mist: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.42);
  --shadow: 0 24px 60px -28px rgba(26, 26, 26, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Instrument Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button,
select {
  cursor: pointer;
}

ul {
  list-style: none;
}

.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(rgba(26, 26, 26, 0.045) 0.6px, transparent 0.6px),
    radial-gradient(rgba(255, 255, 255, 0.35) 0.5px, transparent 0.5px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 28px));
  margin: 14px auto 40px;
  padding: 18px 22px 0;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 180px),
    var(--cream);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ----- PRELOADER ----- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  animation: pulseMark 1.4s ease-in-out infinite;
}

@keyframes pulseMark {
  0%, 100% { opacity: 0.45; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ----- TOPBAR ----- */
.topbar {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px 8px 22px;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__link {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.7);
  transition: color 0.25s ease, background 0.25s ease;
}

.topbar__link:hover,
.topbar__link.is-active {
  color: var(--orange);
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.brand--footer {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

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

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.icon-btn:hover {
  transform: scale(1.05);
  background: var(--orange);
}

.profile-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: var(--radius-sm);
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  transition: transform 0.3s var(--ease);
}

.profile-chip:hover {
  transform: translateY(-2px);
}

.profile-chip__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--orange-bright), var(--orange-deep));
  font-weight: 700;
  font-size: 0.72rem;
}

.profile-chip__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.profile-chip__meta strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.profile-chip__meta small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--ink);
}

.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- LAYOUT ----- */
.layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

/* ----- SIDEBAR ----- */
.sidebar {
  position: sticky;
  top: 18px;
  padding: 24px 20px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 40%),
    var(--ink);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.sidebar::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sidebar > * {
  position: relative;
  z-index: 1;
}

.sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.sidebar__head h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}

.accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.92rem;
}

.accordion.is-open .accordion__trigger {
  color: var(--orange);
}

.accordion.is-open .accordion__trigger .icon {
  transform: rotate(180deg);
}

.accordion__trigger .icon {
  transition: transform 0.3s var(--ease);
}

.accordion__body {
  display: none;
  padding: 0 0 16px;
}

.accordion.is-open .accordion__body {
  display: grid;
  gap: 4px;
}

.filter-link {
  text-align: left;
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.filter-link:hover,
.filter-link.is-active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.route-chip {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.sidebar__note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar__note p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-family: var(--font-body);
  margin-bottom: 16px;
}

/* ----- MAIN ----- */
.main {
  min-width: 0;
  padding-bottom: 48px;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
}

.search input {
  width: 100%;
  background: transparent;
  color: #fff;
  outline: none;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.sort {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  min-height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(26, 26, 26, 0.06);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.sort span {
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.55);
  font-weight: 600;
}

.sort select {
  outline: none;
  font-weight: 600;
  background: transparent;
}

.pills {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.pills::-webkit-scrollbar {
  display: none;
}

.pill {
  flex: 0 0 auto;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.72);
  transition: all 0.25s ease;
}

.pill:hover,
.pill.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.pill-next {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
}

/* ----- HERO BANNER ----- */
.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
  min-height: 280px;
  padding: 36px 40px;
  margin-bottom: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 40%),
    var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-banner > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 14px;
}

.hero-banner__text {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 1rem;
}

.hero-banner__scribble {
  width: 110px;
  margin-top: 18px;
  color: var(--orange);
}

.hero-banner__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 220px;
}

.hero-banner__visual img {
  width: min(100%, 420px);
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
  transform: translateX(8%) scale(1.08);
}

/* ----- CARDS ----- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.inventory-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: rgba(26, 26, 26, 0.5);
  font-weight: 600;
}

.vehicle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px 14px 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 40%),
    var(--ink);
  color: #fff;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  animation: cardIn 0.7s var(--ease) both;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -24px rgba(26, 26, 26, 0.55);
}

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

.vehicle-card__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  margin-bottom: 16px;
}

.vehicle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 0.7s var(--ease);
}

.vehicle-card:hover .vehicle-card__media img {
  transform: scale(1.05);
}

.vehicle-card__silhouette {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  padding: 18%;
}

.vehicle-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(26, 26, 26, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-card__badge[data-status="available"] {
  color: #fff;
}

.vehicle-card__badge[data-status="in-transit"] {
  color: var(--orange-bright);
}

.vehicle-card__badge[data-status="reserved"] {
  color: #8ab4f8;
}

.vehicle-card__badge[data-status="sold"] {
  color: rgba(255, 255, 255, 0.5);
}

.vehicle-card__badge[data-status="out-of-stock"] {
  color: #f87171;
}

.modal__badge[data-status="in-transit"] {
  color: var(--orange-bright);
}

.modal__badge[data-status="reserved"] {
  color: #8ab4f8;
}

.modal__badge[data-status="sold"] {
  color: rgba(255, 255, 255, 0.6);
}

.modal__badge[data-status="out-of-stock"] {
  color: #f87171;
}

.vehicle-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px 8px;
  flex: 1;
}

.vehicle-card__title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.vehicle-card__meta {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 500;
}

.vehicle-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.vehicle-card__price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.vehicle-card__price small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.vehicle-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.card-icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.card-cta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(217, 119, 6, 0.7);
  transition: transform 0.3s var(--ease), background 0.3s ease;
  z-index: 2;
}

.card-cta:hover {
  transform: scale(1.08);
  background: var(--orange-bright);
}

.vehicle-card__footer {
  padding-right: 66px;
}

/* ----- SECTION PANELS ----- */
.panel-section {
  margin-top: 56px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-head h2,
.about-grid h2,
.message-grid h2,
.contact-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 8px 0 14px;
}

.section-head p,
.about-grid p,
.message-grid p,
.contact-grid p {
  color: rgba(26, 26, 26, 0.68);
  font-family: var(--font-body);
}

.muted {
  margin-top: 10px;
  font-size: 0.92rem;
}

.muted a {
  color: var(--orange);
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.process-card,
.testimonial-card,
.hours-panel,
.message-form,
.about-panel,
.stat {
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.service-card,
.process-card,
.testimonial-card {
  padding: 28px 24px;
}

.service-card::before,
.process-card::before,
.testimonial-card::before,
.hours-panel::before,
.about-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.service-card > *,
.process-card > *,
.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.service-card .icon,
.process-card span {
  color: var(--orange);
  margin-bottom: 18px;
}

.service-card h3,
.process-card h3,
.testimonial-card strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.service-card p,
.process-card p,
.testimonial-card p {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-card span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold, #d6a84c);
  margin-bottom: 14px;
}

.stars .icon {
  width: 16px;
  height: 16px;
}

.testimonial-card__author {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__author span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

/* ----- ABOUT ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.about-grid strong {
  color: var(--ink);
  font-weight: 700;
}

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

.stat {
  padding: 20px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(26, 26, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.stat__num,
.stat__suffix {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.stat__suffix {
  color: var(--orange);
}

.stat__label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.about-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-panel__overlay {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.92) 45%);
}

.about-panel__role {
  display: block;
  color: var(--orange);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-panel__overlay strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}

.about-panel__overlay blockquote {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.4;
}

/* ----- MESSAGE / CONTACT ----- */
.message-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.message-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: transparent;
  color: var(--ink);
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  outline: none;
}

.message-form input::placeholder,
.message-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.message-response {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(217, 119, 6, 0.12);
  color: var(--orange-deep);
  font-weight: 600;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--orange);
}

.contact-list small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--orange);
}

.hours-panel {
  padding: 28px;
}

.hours-panel > * {
  position: relative;
  z-index: 1;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.route-line i {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  position: relative;
}

.route-line i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(217, 119, 6, 0.8);
  animation: routePulse 2.8s linear infinite;
}

@keyframes routePulse {
  from { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { left: 100%; opacity: 0; }
}

.hours {
  display: grid;
  gap: 14px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours li span:first-child {
  color: rgba(255, 255, 255, 0.45);
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}

.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(217, 119, 6, 0.7);
}

.btn--orange:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
}

.btn--sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.btn--lg {
  min-height: 54px;
  padding: 0 26px;
}

/* ----- FOOTER ----- */
.footer {
  margin-top: 40px;
  padding: 36px 8px 18px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer__inner p {
  max-width: 34ch;
  color: rgba(26, 26, 26, 0.58);
  font-family: var(--font-body);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 6px;
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(26, 26, 26, 0.45);
  font-size: 0.82rem;
}

/* ----- MODAL ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.modal__panel {
  position: relative;
  width: min(980px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 32px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s var(--ease);
}

.modal.is-open .modal__panel {
  transform: none;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  z-index: 2;
}

.modal__body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.modal__stage {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
}

.modal__stage img,
.modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__stage svg {
  width: 70%;
  height: 70%;
  margin: auto;
  color: rgba(255, 255, 255, 0.55);
}

.modal__route,
.modal__photonote {
  text-align: center;
  margin-top: 12px;
  color: rgba(26, 26, 26, 0.5);
  font-size: 0.82rem;
}

.modal__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.gallery-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  gap: 6px;
  font-size: 0.68rem;
  overflow: hidden;
}

.gallery-tile--photo {
  padding: 0;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-tile--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile--photo.is-active {
  border-color: var(--orange);
}

.modal__badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.modal__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 18px;
}

.modal__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.modal__specs .label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 2px;
  font-weight: 700;
}

.modal__desc,
.modal__location {
  color: rgba(26, 26, 26, 0.68);
  font-family: var(--font-body);
  margin-bottom: 16px;
}

.modal__location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal__related {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.modal__related h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 14px;
}

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

.related-card {
  padding: 16px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-card svg {
  width: 100%;
  height: 48px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.related-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
}

.related-card span {
  color: var(--orange);
  font-size: 0.85rem;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

/* ----- FAB ----- */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(217, 119, 6, 0.75);
  transition: transform 0.3s var(--ease);
}

.fab:hover {
  transform: scale(1.08);
}

/* ----- REVEAL ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1180px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .shell {
    width: min(100% - 16px, 1480px);
    margin: 8px auto 24px;
    padding: 12px 12px 0;
    border-radius: 28px;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    text-align: left;
  }

  .topbar__nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: 36px 24px;
    background: var(--ink);
    color: #fff;
    transform: translateX(-105%);
    transition: transform 0.45s var(--ease);
    z-index: 50;
  }

  .topbar__nav.is-open {
    transform: none;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
  }

  .topbar__link {
    color: rgba(255, 255, 255, 0.72);
    padding: 14px 16px;
  }

  .topbar__link.is-active,
  .topbar__link:hover {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.05);
  }

  .profile-chip {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .sidebar {
    position: static;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px 0;
  }

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

  .hero-banner__visual {
    min-height: 180px;
    justify-content: center;
  }

  .hero-banner__visual img {
    transform: none;
    max-height: 190px;
  }

  .about-grid,
  .message-grid,
  .contact-grid,
  .modal__body,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .about-panel {
    min-height: 360px;
    order: -1;
  }
}

@media (max-width: 720px) {
  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .sort {
    justify-content: space-between;
  }

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

  .vehicle-card {
    padding: 10px 10px 14px;
    border-radius: 18px;
  }

  .vehicle-card__media {
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .vehicle-card__title {
    font-size: 0.98rem;
  }

  .vehicle-card__meta {
    font-size: 0.7rem;
  }

  .vehicle-card__price {
    font-size: 1.05rem;
  }

  .vehicle-card__price small {
    font-size: 0.5rem;
  }

  .card-icon-btn {
    display: none;
  }

  .card-cta {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }

  .vehicle-card__footer {
    padding-right: 48px;
  }

  .services-grid,
  .testimonials-grid,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .modal__panel {
    padding: 20px;
  }

  .modal__specs,
  .modal__relatedGrid {
    grid-template-columns: 1fr;
  }

  .panel-section {
    margin-top: 40px;
  }
}

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

  .brand {
    font-size: 1.5rem;
  }

  .shell {
    width: calc(100% - 10px);
    border-radius: 22px;
    padding: 10px 8px 0;
  }

  .hero-banner {
    min-height: 0;
    margin-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .vehicle-card {
    opacity: 1;
    transform: none;
  }
}

/* Final poster wordmark Ã¢â‚¬â€ reference: oversized SUPRA typography */
.hero-cinematic {
  min-height: min(940px, 100svh);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.58)),
    radial-gradient(ellipse 76% 62% at 50% 42%, rgba(214, 168, 76, 0.26), transparent 72%),
    #080808;
}

.hero-cinematic__split {
  display: none;
}

.hero-cinematic__ambient {
  inset: 0;
  filter: none;
  opacity: 0.8;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(214, 168, 76, 0.12) 50%, transparent 50.2%),
    radial-gradient(ellipse 62% 42% at 50% 44%, rgba(214, 168, 76, 0.28), transparent 74%);
}

.hero-cinematic__wordmark {
  position: absolute;
  inset: 12% 2% auto;
  z-index: 1;
  width: 96%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  overflow: visible;
  color: #d6a84c;
  font-family: var(--font-ui);
  font-size: clamp(7.5rem, 18vw, 17rem);
  font-weight: 800;
  line-height: 0.62;
  letter-spacing: -0.09em;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: none;
  animation: posterWordmarkIn 1.5s var(--ease) 0.15s forwards;
  pointer-events: none;
}

.hero-cinematic__wordmark > span {
  display: block;
  width: 145%;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  color: #d6a84c;
  -webkit-text-stroke: 0;
  transform: scaleX(0.68);
  text-shadow:
    0 10px 28px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(214, 168, 76, 0.2);
  animation: posterRedPulse 5s ease-in-out infinite;
}

.hero-cinematic__wordmark > span:last-child {
  margin-top: 0.06em;
}

.hero-cinematic__wordmark::before {
  content: '';
  position: absolute;
  inset: -8% 10% -20%;
  z-index: -1;
  opacity: 0.52;
  background:
    linear-gradient(90deg, transparent, rgba(214, 168, 76, 0.18), transparent),
    radial-gradient(ellipse at center, rgba(214, 168, 76, 0.2), transparent 68%);
  filter: blur(32px);
  animation: posterAura 5s ease-in-out infinite;
}

.hero-cinematic__wordmark::after {
  content: '';
  position: absolute;
  inset: 0 9% -14%;
  z-index: 2;
  display: block;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.88) 0.7px, transparent 0.8px);
  background-size: 100% 8px, 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-cinematic__car {
  top: 42%;
  left: 8%;
  width: 84%;
  height: 48%;
  z-index: 3;
}

.hero-cinematic__car img {
  object-fit: cover;
  object-position: center 61%;
  padding: 0;
  filter: saturate(1.3) hue-rotate(0deg) brightness(0.74) contrast(1.28);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 76% 64% at 50% 54%, #000 42%, rgba(0, 0, 0, 0.98) 65%, transparent 88%);
  mask-image: radial-gradient(ellipse 76% 64% at 50% 54%, #000 42%, rgba(0, 0, 0, 0.98) 65%, transparent 88%);
}

.hero-cinematic__car-glow {
  left: 14%;
  right: 14%;
  bottom: 4%;
  background: rgba(214, 168, 76, 0.3);
  filter: blur(48px);
}

.hero-cinematic__copy {
  z-index: 6;
}

@keyframes posterWordmarkIn {
  from { opacity: 0; transform: translateY(-45px) scale(1.04); filter: blur(12px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes posterRedPulse {
  50% {
    color: #f0c66d;
    text-shadow:
      0 12px 32px rgba(0, 0, 0, 0.62),
      0 0 46px rgba(240, 198, 109, 0.34);
  }
}

@keyframes posterAura {
  50% { opacity: 0.82; transform: scale(1.035); }
}

@media (max-width: 980px) {
  .hero-cinematic__wordmark {
    inset: 18% 0 auto;
    width: 100%;
    font-size: clamp(6rem, 20vw, 11rem);
  }

  .hero-cinematic__car {
    top: 42%;
    left: -2%;
    width: 104%;
  }
}

@media (max-width: 720px) {
  .hero-cinematic__wordmark {
    inset: 20% -8% auto;
    width: 116%;
    font-size: clamp(5rem, 25vw, 9rem);
    line-height: 0.64;
  }

  .hero-cinematic__wordmark > span {
    width: 150%;
    transform: scaleX(0.62);
  }

  .hero-cinematic__car {
    top: 42%;
    left: -28%;
    width: 156%;
    height: 42%;
  }

  .hero-cinematic__copy {
    width: min(92%, 440px);
  }
}

/* ==========================================================
   KANEMOTORS Ã¢â‚¬â€ SPLIT HERO, LIQUID BRAND & CART
   ========================================================== */
.brand--glass {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035) 55%),
    rgba(12, 12, 12, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 14px 40px -22px rgba(214, 168, 76, 0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  overflow: hidden;
}

.brand__car {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #090909;
  background: linear-gradient(145deg, #fff, #d6a84c);
  box-shadow: 0 0 24px rgba(214, 168, 76, 0.42);
  animation: brandCarFloat 3.4s ease-in-out infinite;
}

.brand__car .icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
}

.brand__text {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.brand__shine {
  position: absolute;
  inset: -100% auto -100% -35%;
  width: 28%;
  z-index: 0;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: liquidBrandShine 5s var(--ease) infinite;
  pointer-events: none;
}

@keyframes liquidBrandShine {
  0%, 18% { left: -35%; opacity: 0; }
  30% { opacity: 1; }
  58%, 100% { left: 120%; opacity: 0; }
}

@keyframes brandCarFloat {
  50% { transform: translateY(-2px) rotate(-3deg); }
}

.cart-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

.cart-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.cart-toggle.is-bumping {
  animation: cartBump 0.55s var(--ease);
}

@keyframes cartBump {
  45% { transform: scale(1.16) rotate(-7deg); }
}

.cart-toggle__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #050505;
  border-radius: 999px;
  color: #080808;
  background: #d6a84c;
  font-size: 0.62rem;
  font-weight: 800;
}

/* Reference-inspired red split composition */
.hero-cinematic {
  background:
    radial-gradient(circle at 32% 44%, rgba(214, 168, 76, 0.2), transparent 34%),
    linear-gradient(90deg, #070707 0 50%, #1a1408 50% 100%);
}

.hero-cinematic__ambient {
  inset: 0;
  filter: none;
  background:
    radial-gradient(ellipse 36% 54% at 29% 48%, rgba(214, 168, 76, 0.35), transparent 72%),
    radial-gradient(ellipse 50% 72% at 73% 48%, rgba(214, 168, 76, 0.28), transparent 78%);
}

.hero-cinematic__split {
  position: absolute;
  top: 9%;
  bottom: 8%;
  left: 50%;
  z-index: 4;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9) 14%, rgba(255, 255, 255, 0.9) 86%, transparent);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: splitLineIn 1.2s var(--ease) 0.55s forwards;
}

.hero-cinematic__wordmark {
  inset: 13% 5% 10% auto;
  top: auto;
  left: auto;
  right: 5%;
  width: 41%;
  height: 77%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.8rem, 6.8vw, 7.2rem);
  line-height: 1;
  letter-spacing: 0.16em;
  transform: none;
  animation: verticalWordmarkIn 1.5s var(--ease) 0.2s forwards;
}

.hero-cinematic__wordmark > span {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.92),
    0 0 30px rgba(255, 255, 255, 0.58),
    0 0 70px rgba(214, 168, 76, 0.58),
    0 0 125px rgba(214, 168, 76, 0.38);
  animation: verticalWordGlow 4.2s ease-in-out infinite;
}

.hero-cinematic__wordmark::before {
  inset: 4% 15%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2), rgba(214, 168, 76, 0.18) 42%, transparent 74%);
  filter: blur(34px);
}

.hero-cinematic__wordmark::after {
  display: none;
}

.hero-cinematic__car {
  top: 13%;
  left: -4%;
  width: 58%;
  height: 74%;
}

.hero-cinematic__car img {
  object-position: 55% center;
  filter: saturate(1.25) hue-rotate(0deg) brightness(0.72) contrast(1.32);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 86%, transparent 100%);
}

.hero-cinematic__copy {
  width: min(440px, 38%);
}

@keyframes splitLineIn {
  from { opacity: 0; transform: scaleY(0); }
  to { opacity: 0.86; transform: scaleY(1); }
}

@keyframes verticalWordmarkIn {
  from { opacity: 0; transform: translateX(42px); filter: blur(14px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes verticalWordGlow {
  50% {
    text-shadow:
      0 0 18px #fff,
      0 0 42px rgba(255, 255, 255, 0.72),
      0 0 88px rgba(214, 168, 76, 0.78),
      0 0 150px rgba(214, 168, 76, 0.52);
  }
}

/* Adaptive database imagery and swipe-like card motion */
.vehicle-card {
  perspective: 900px;
  transform-style: preserve-3d;
}

.vehicle-card__media {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.09), transparent 48%),
    linear-gradient(145deg, #171717, #070707);
}

.vehicle-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--vehicle-bg);
  background-size: cover;
  background-position: center;
  filter: blur(24px) saturate(0.8);
  opacity: 0.2;
  transform: scale(1.15);
}

.vehicle-card__media img {
  object-fit: contain;
  padding: clamp(5px, 1vw, 14px);
  transform: translateX(8%) scale(0.96);
  opacity: 0;
  filter: saturate(0.86) contrast(1.08) brightness(0.88);
  transition:
    transform 0.9s var(--ease),
    opacity 0.75s ease,
    filter 0.55s ease;
}

.vehicle-card.is-card-visible .vehicle-card__media img {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.vehicle-card:hover .vehicle-card__media img {
  transform: translateX(-2%) scale(1.04);
  filter: saturate(1.05) contrast(1.04) brightness(1);
}

.vehicle-card__media img.is-photo-cover {
  object-fit: cover;
  padding: 0;
}

.vehicle-card__media img.is-photo-contain {
  object-fit: contain;
}

.vehicle-card__media img.is-portrait {
  max-width: 76%;
  margin: 0 auto;
}

.vehicle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.1) 48%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.9s var(--ease);
}

.vehicle-card:hover::after {
  transform: translateX(140%);
}

.card-icon-btn--cart {
  display: grid;
  width: 34px;
  height: 34px;
}

.btn--cart {
  margin-top: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.btn--cart:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 35%),
    rgba(9, 9, 9, 0.94);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: -30px 0 80px -35px #000;
  backdrop-filter: blur(28px) saturate(1.3);
  transform: translateX(105%);
  transition: transform 0.55s var(--ease);
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: none;
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer__head h2 {
  font-size: 2.2rem;
  line-height: 1;
}

.cart-drawer__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 2px;
}

.cart-empty {
  padding: 60px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.44);
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.cart-item__media {
  aspect-ratio: 1.2;
  overflow: hidden;
  border-radius: 11px;
  background: #151515;
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__copy strong,
.cart-item__copy span {
  display: block;
}

.cart-item__copy strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

.cart-item__copy span {
  margin-top: 5px;
  color: #d6a84c;
  font-size: 0.76rem;
}

.cart-item__remove {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.cart-drawer__footer {
  display: grid;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer__footer .btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-drawer__total span {
  color: rgba(255, 255, 255, 0.5);
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .brand--glass {
    justify-self: start;
  }

  .hero-cinematic__wordmark {
    right: 2%;
    width: 45%;
  }

  .hero-cinematic__car {
    left: -10%;
    width: 68%;
  }
}

@media (max-width: 720px) {
  .brand--glass {
    min-height: 42px;
    padding: 5px 11px 5px 5px;
    gap: 7px;
  }

  .brand__car {
    width: 31px;
    height: 31px;
  }

  .brand__text {
    font-size: 0.78rem;
  }

  .profile-chip {
    display: none;
  }

  .hero-cinematic {
    background:
      radial-gradient(circle at 28% 38%, rgba(214, 168, 76, 0.22), transparent 34%),
      linear-gradient(90deg, #070707 0 48%, #1a1408 48% 100%);
  }

  .hero-cinematic__split {
    left: 48%;
  }

  .hero-cinematic__wordmark {
    top: 16%;
    right: 1%;
    bottom: 16%;
    width: 49%;
    height: auto;
    font-size: clamp(2rem, 9vw, 4.2rem);
    letter-spacing: 0.08em;
  }

  .hero-cinematic__car {
    top: 18%;
    left: -31%;
    width: 85%;
    height: 58%;
  }

  .hero-cinematic__copy {
    width: 78%;
    margin-bottom: 0;
  }

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

  .vehicle-card__media {
    aspect-ratio: 1.15 / 1;
  }
}

@media (max-width: 480px) {
  .topbar__actions {
    gap: 6px;
  }

  .icon-btn {
    display: none;
  }

  .brand__text {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }

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

  .vehicle-card {
    padding: 7px 7px 11px;
  }

  .vehicle-card__title {
    font-size: 0.78rem;
  }

  .vehicle-card__meta {
    font-size: 0.52rem;
  }

  .vehicle-card__price {
    font-size: 0.66rem;
  }

  .cart-drawer__panel {
    padding: 20px 16px;
  }
}

/* ==========================================================
   KANEMOTORS Ã¢â‚¬â€ DARK COLLECTION EDITION
   Direction inspired by the supplied automotive references
   ========================================================== */
:root {
  --cream: #050505;
  --cream-deep: #0a0a0a;
  --ink: #0b0b0b;
  --ink-soft: #111;
  --ink-muted: #171717;
  --orange: #d6a84c;
  --orange-bright: #f0c66d;
  --orange-deep: #a77b2d;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 90px -32px rgba(0, 0, 0, 0.95);
}

body {
  background: #030303;
  color: #f5f5f2;
  font-family: var(--font-ui);
}

.page-grain {
  z-index: 0;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.25) 0.45px, transparent 0.55px),
    radial-gradient(rgba(255, 255, 255, 0.12) 0.4px, transparent 0.55px);
  background-size: 3px 3px, 5px 5px;
  pointer-events: none;
}

.shell {
  width: min(1520px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  background: #050505;
  box-shadow: none;
}

.shell::before {
  display: none;
}

.preloader {
  background: #050505;
  color: #fff;
}

.preloader__mark {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: -0.06em;
}

/* Navigation */
.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(1520px, 100%);
  transform: translateX(-50%);
  z-index: 100;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.58), transparent);
  backdrop-filter: blur(5px);
}

.topbar.is-scrolled {
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.topbar__link {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar__link:hover,
.topbar__link.is-active {
  color: #fff;
}

.brand {
  color: #fff;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.icon-btn,
.profile-chip,
.burger {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.icon-btn {
  width: 42px;
  height: 42px;
}

.profile-chip {
  padding-right: 14px;
}

.profile-chip__avatar {
  background: linear-gradient(145deg, #333, #111);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.main {
  padding: 0 0 80px;
}

/* Cinematic opening */
.hero-cinematic {
  position: relative;
  min-height: min(920px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 130px 0 90px;
  border-bottom: 1px solid var(--line);
}

.hero-cinematic::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(transparent, #050505);
}

.hero-cinematic__ambient {
  position: absolute;
  inset: 8% -15% -15%;
  z-index: -1;
  background:
    radial-gradient(ellipse 42% 34% at 62% 48%, rgba(255, 255, 255, 0.11), transparent 70%),
    radial-gradient(ellipse 60% 20% at 50% 85%, rgba(255, 255, 255, 0.05), transparent 70%);
  filter: blur(10px);
}

.hero-cinematic__wordmark {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.05em;
  font-family: var(--font-ui);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.09em;
  white-space: nowrap;
  transform: scaleX(1.07);
  opacity: 0;
  animation: heroWordmarkIn 1.5s var(--ease) 0.15s forwards;
  pointer-events: none;
}

.hero-cinematic__wordmark::before {
  content: '';
  position: absolute;
  inset: 8% 4% 18%;
  z-index: -1;
  background:
    radial-gradient(ellipse 42% 58% at 18% 52%, rgba(214, 168, 76, 0.42), transparent 72%),
    radial-gradient(ellipse 38% 54% at 82% 48%, rgba(255, 255, 255, 0.16), transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 58%, rgba(214, 168, 76, 0.18), transparent 78%);
  filter: blur(34px);
  opacity: 0.85;
  animation: wordmarkGlowPulse 5.5s ease-in-out infinite;
}

.hero-cinematic__wordmark::after {
  content: '';
  position: absolute;
  inset: 22% 8% 30%;
  z-index: -2;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08), transparent 68%);
  filter: blur(48px);
  animation: wordmarkGlowDrift 8s ease-in-out infinite alternate;
}

.hero-cinematic__word {
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
  paint-order: stroke fill;
}

.hero-cinematic__word--kane {
  color: rgba(245, 245, 242, 0.92);
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.45),
    0 0 42px rgba(214, 168, 76, 0.38),
    0 0 88px rgba(214, 168, 76, 0.22),
    0 0 140px rgba(255, 255, 255, 0.08);
  animation: wordGlowKane 4.2s ease-in-out infinite;
}

.hero-cinematic__word--motors {
  color: rgba(170, 170, 170, 0.78);
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.28),
    0 0 36px rgba(214, 168, 76, 0.3),
    0 0 72px rgba(214, 168, 76, 0.16),
    0 0 110px rgba(255, 255, 255, 0.06);
  animation: wordGlowMotors 4.8s ease-in-out infinite;
}

.hero-cinematic__car {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: 19%;
  width: 78%;
  height: 54%;
  opacity: 0;
  transform: translate3d(18%, 5%, 0) scale(1.06);
  animation: heroCarIn 1.7s var(--ease) 0.35s forwards;
  will-change: transform;
}

.hero-cinematic__car img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: grayscale(0.62) brightness(0.66) contrast(1.22);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 72% 64% at 56% 52%, #000 35%, rgba(0, 0, 0, 0.96) 55%, transparent 82%);
  mask-image: radial-gradient(ellipse 72% 64% at 56% 52%, #000 35%, rgba(0, 0, 0, 0.96) 55%, transparent 82%);
}

.hero-cinematic__car-glow {
  position: absolute;
  left: 13%;
  right: 4%;
  bottom: 2%;
  height: 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(45px);
  animation: carGlow 4s ease-in-out infinite;
}

.hero-cinematic__copy {
  position: relative;
  z-index: 5;
  align-self: end;
  width: min(470px, 42%);
  margin-bottom: 4vh;
  opacity: 0;
  transform: translateY(34px);
  animation: heroCopyIn 1.25s var(--ease) 0.8s forwards;
}

.hero-cinematic__copy h1 {
  max-width: 10ch;
  margin: 8px 0 18px;
  font-family: var(--font-ui);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-cinematic__copy > p:not(.eyebrow) {
  max-width: 48ch;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.hero-cinematic__note {
  position: absolute;
  z-index: 5;
  right: 1%;
  bottom: 18%;
  width: min(300px, 24%);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-cinematic__note span {
  color: #fff;
  font-weight: 700;
}

.hero-cinematic__scroll {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-cinematic__scroll i {
  width: 1px;
  height: 42px;
  background: linear-gradient(#fff, transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes heroWordmarkIn {
  from { opacity: 0; transform: translateY(-25px) scaleX(1.12); filter: blur(12px); }
  to { opacity: 1; transform: translateY(0) scaleX(1.07); filter: blur(0); }
}

@keyframes wordmarkGlowPulse {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes wordmarkGlowDrift {
  from { transform: translateX(-2%); }
  to { transform: translateX(2%); }
}

@keyframes wordGlowKane {
  0%, 100% {
    text-shadow:
      0 0 18px rgba(255, 255, 255, 0.42),
      0 0 42px rgba(214, 168, 76, 0.34),
      0 0 88px rgba(214, 168, 76, 0.18),
      0 0 140px rgba(255, 255, 255, 0.06);
  }
  50% {
    text-shadow:
      0 0 24px rgba(255, 255, 255, 0.62),
      0 0 58px rgba(214, 168, 76, 0.5),
      0 0 110px rgba(214, 168, 76, 0.28),
      0 0 180px rgba(255, 255, 255, 0.1);
  }
}

@keyframes wordGlowMotors {
  0%, 100% {
    text-shadow:
      0 0 14px rgba(255, 255, 255, 0.24),
      0 0 32px rgba(214, 168, 76, 0.26),
      0 0 68px rgba(214, 168, 76, 0.14);
  }
  50% {
    text-shadow:
      0 0 20px rgba(255, 255, 255, 0.38),
      0 0 46px rgba(214, 168, 76, 0.38),
      0 0 92px rgba(214, 168, 76, 0.22);
  }
}

@keyframes heroCarIn {
  from { opacity: 0; transform: translate3d(18%, 5%, 0) scale(1.06); filter: blur(12px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@keyframes heroCopyIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes carGlow {
  50% { opacity: 0.48; transform: scaleX(0.9); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; opacity: 0.35; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* Collection */
.collection {
  padding: 110px 0 30px;
  scroll-margin-top: 70px;
}

.collection__heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 440px);
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.collection__heading h2 {
  font-family: var(--font-ui);
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.collection__heading > p {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.88rem;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.eyebrow::before {
  background: var(--orange);
}

.toolbar {
  justify-content: flex-end;
  margin-bottom: 14px;
}

.search,
.sort {
  min-height: 44px;
  color: #fff;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.search {
  max-width: 390px;
}

.sort span {
  color: rgba(255, 255, 255, 0.38);
}

.sort select {
  color: rgba(255, 255, 255, 0.78);
}

.sort select option {
  background: #111;
}

.pills {
  justify-content: flex-end;
  margin-bottom: 28px;
}

.pill {
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.5);
  background: #0b0b0b;
  border-color: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.pill:hover,
.pill.is-active {
  color: #fff;
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.2);
}

.pill-next {
  width: 34px;
  height: 34px;
  background: #171717;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vehicle-card {
  padding: 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 15px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(160deg, #131313, #090909);
  box-shadow: none;
  overflow: hidden;
  animation: none;
  opacity: 0;
  transform: translateY(34px) scale(0.97);
  filter: blur(7px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.vehicle-card.is-card-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.vehicle-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px -30px #000;
}

.vehicle-card::before {
  opacity: 0.07;
}

.vehicle-card__media {
  aspect-ratio: 1.45 / 1;
  margin-bottom: 13px;
  border-radius: 10px;
  background: linear-gradient(145deg, #191919, #080808);
}

.vehicle-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 5, 5, 0.48));
}

.vehicle-card__media img {
  object-position: center;
  filter: saturate(0.68) contrast(1.08) brightness(0.82);
}

.vehicle-card:hover .vehicle-card__media img {
  transform: scale(1.06);
  filter: saturate(0.9) contrast(1.05) brightness(0.92);
}

.vehicle-card__badge {
  top: 9px;
  left: 9px;
  padding: 5px 9px;
  background: rgba(5, 5, 5, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.55rem;
}

.vehicle-card__title {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.vehicle-card__meta {
  font-size: 0.68rem;
}

.vehicle-card__price {
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
}

.vehicle-card__price small {
  font-size: 0.48rem;
}

.card-cta {
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.card-cta .icon {
  width: 14px;
}

.card-cta:hover {
  background: #fff;
  color: #050505;
}

.card-icon-btn {
  display: none;
}

.vehicle-card__footer {
  padding-right: 42px;
}

/* Secondary content */
.panel-section {
  margin-top: 130px;
  scroll-margin-top: 90px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head h2,
.about-grid h2,
.message-grid h2,
.contact-grid h2 {
  color: #fff;
  font-family: var(--font-ui);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.section-head p,
.about-grid p,
.message-grid p,
.contact-grid p {
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--font-ui);
}

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

.service-card,
.process-card,
.testimonial-card,
.hours-panel,
.about-panel,
.stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(145deg, #111, #090909);
}

.service-card,
.process-card,
.testimonial-card {
  padding: 24px 20px;
}

.service-card h3,
.process-card h3,
.testimonial-card strong {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.service-card p,
.process-card p,
.testimonial-card p {
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-ui);
  font-size: 0.8rem;
}

.service-card .icon,
.process-card span {
  color: var(--orange);
}

.stars {
  color: var(--gold, #d6a84c);
}

.about-grid strong {
  color: #fff;
}

.stat {
  background: rgba(255, 255, 255, 0.045);
}

.message-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
}

.message-form input,
.message-form textarea {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list small {
  color: rgba(255, 255, 255, 0.35);
}

.contact-icon {
  background: #111;
}

.btn--orange {
  color: #080808;
  background: var(--orange);
  box-shadow: 0 12px 34px -16px rgba(214, 168, 76, 0.55);
}

.btn--orange:hover {
  background: var(--orange-bright);
}

/* Closing cinematic panel */
.drive-cta {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  margin: 140px calc(clamp(18px, 4vw, 64px) * -1) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.025) 55px 56px),
    linear-gradient(#060606, #020202);
}

.drive-cta::before {
  content: '';
  position: absolute;
  inset: 35% 0 0;
  background: repeating-linear-gradient(0deg, transparent 0 24px, rgba(255, 255, 255, 0.06) 25px 26px);
  perspective: 500px;
  transform: perspective(350px) rotateX(62deg) scale(1.8);
  transform-origin: bottom;
}

.drive-cta__copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
  align-self: start;
  padding-top: 90px;
  text-align: center;
}

.drive-cta__copy h2 {
  margin-bottom: 14px;
  font-family: var(--font-ui);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.drive-cta__copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.86rem;
}

.drive-cta__car {
  position: absolute;
  z-index: 2;
  left: 8%;
  right: 8%;
  bottom: -10%;
  height: 68%;
}

.drive-cta__car img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.15) contrast(1.15) brightness(0.8);
  -webkit-mask-image: radial-gradient(ellipse 65% 65%, #000 42%, transparent 77%);
  mask-image: radial-gradient(ellipse 65% 65%, #000 42%, transparent 77%);
}

.footer {
  margin: 0;
  padding: 70px 0 28px;
  background: linear-gradient(#0a0a0a, #030303);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.footer__inner p,
.footer__col h4,
.footer__bottom {
  color: rgba(255, 255, 255, 0.4);
}

.footer__col a,
.footer__col span {
  color: rgba(255, 255, 255, 0.65);
}

.footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* Modal dark â€” texte net et lisible */
.modal__panel {
  color: #f5f5f2;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  filter: none;
  -webkit-font-smoothing: antialiased;
}

.modal__specs,
.modal__related {
  border-color: rgba(255, 255, 255, 0.12);
}

.modal__specs .label,
.modal__route,
.modal__photonote,
.modal__related h4 {
  color: rgba(255, 255, 255, 0.55);
}

.modal__desc,
.modal__location {
  color: rgba(255, 255, 255, 0.78);
}

.modal__title {
  color: #fff;
}

.modal__price {
  color: #d6a84c;
}

.modal__badge {
  background: #1a1a1a;
  color: #fff;
}

.modal .btn--orange {
  color: #080808;
  font-weight: 700;
  filter: none;
  opacity: 1;
}

.modal .btn--cart {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

body.modal-open .page-grain,
body.cart-open .page-grain,
body.menu-open .page-grain {
  opacity: 0;
  visibility: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(55px);
  filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.hero-cinematic.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.fab {
  background: #fff;
  color: #050505;
  box-shadow: 0 14px 34px -12px #000;
}

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

@media (max-width: 980px) {
  .shell {
    width: 100%;
    margin: 0;
    padding: 0 18px;
    border-radius: 0;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
    padding-inline: 18px;
  }

  .topbar__nav {
    background: rgba(5, 5, 5, 0.97);
  }

  .hero-cinematic {
    min-height: 820px;
  }

  .hero-cinematic__wordmark {
    top: 25%;
    font-size: clamp(4rem, 17vw, 8rem);
  }

  .hero-cinematic__car {
    top: 26%;
    left: 5%;
    width: 100%;
    height: 45%;
  }

  .hero-cinematic__copy {
    width: min(520px, 70%);
  }

  .hero-cinematic__note {
    right: 0;
    width: min(240px, 28%);
  }

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

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

  .collection__heading > p {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .hero-cinematic {
    min-height: 760px;
    padding-top: 100px;
  }

  .hero-cinematic__wordmark {
    top: 22%;
    display: block;
    text-align: center;
    line-height: 0.82;
    white-space: normal;
  }

  .hero-cinematic__wordmark span,
  .hero-cinematic__word {
    display: block;
  }

  .hero-cinematic__car {
    top: 28%;
    left: -18%;
    width: 136%;
    height: 40%;
  }

  .hero-cinematic__copy {
    width: 100%;
    margin-bottom: 1vh;
  }

  .hero-cinematic__copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-cinematic__note {
    display: none;
  }

  .collection {
    padding-top: 80px;
  }

  .collection__heading h2 {
    font-size: clamp(3rem, 15vw, 5.5rem);
  }

  .toolbar {
    align-items: stretch;
  }

  .search {
    max-width: none;
  }

  .pills {
    justify-content: flex-start;
  }

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

  .vehicle-card__media {
    aspect-ratio: 1.2 / 1;
  }

  .vehicle-card__title {
    font-size: 0.9rem;
  }

  .vehicle-card__meta {
    font-size: 0.57rem;
  }

  .vehicle-card__price {
    font-size: 0.78rem;
  }

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

  .drive-cta {
    min-height: 560px;
    margin-inline: -18px;
  }

  .drive-cta__copy {
    padding: 70px 18px 0;
  }
}

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

  .vehicle-card__media {
    aspect-ratio: 1.2 / 1;
  }

  .hero-cinematic__scroll {
    display: none;
  }

  .panel-section {
    margin-top: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinematic__wordmark,
  .hero-cinematic__wordmark::before,
  .hero-cinematic__wordmark::after,
  .hero-cinematic__word,
  .hero-cinematic__car,
  .hero-cinematic__copy,
  .vehicle-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}



/* Poster hero Ã¢â‚¬â€ design d'origine, titre dorÃƒÂ© (plus de rouge) */
body .hero-cinematic {
  min-height: min(940px, 100svh);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.58)),
    radial-gradient(ellipse 76% 62% at 50% 42%, rgba(214, 168, 76, 0.22), transparent 72%),
    #080808;
}

body .hero-cinematic__split {
  display: none;
}

body .hero-cinematic__ambient {
  inset: 0;
  opacity: 0.8;
  filter: none;
  background: radial-gradient(ellipse 62% 42% at 50% 44%, rgba(214, 168, 76, 0.28), transparent 74%);
}

body .hero-cinematic__wordmark {
  position: absolute;
  inset: 18% 0 auto;
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  overflow: visible;
  color: #d6a84c;
  font-family: var(--font-ui);
  font-size: clamp(4.5rem, 13vw, 12.5rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.09em;
  text-align: center;
  white-space: nowrap;
  transform: none;
  opacity: 0;
  animation: posterWordmarkIn 1.5s var(--ease) 0.15s forwards;
  pointer-events: none;
}

body .hero-cinematic__wordmark > span {
  display: block;
  width: 120%;
  margin: 0;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  color: #d6a84c;
  -webkit-text-stroke: 0;
  transform: scaleX(0.72);
  text-shadow:
    0 10px 28px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(214, 168, 76, 0.28);
  animation: posterGoldPulse 5s ease-in-out infinite;
}

body .hero-cinematic__wordmark > span:last-child {
  margin-top: 0.06em;
}

body .hero-cinematic__wordmark::before {
  content: '';
  position: absolute;
  inset: -8% 10% -20%;
  z-index: -1;
  display: block;
  opacity: 0.52;
  background: radial-gradient(ellipse at center, rgba(214, 168, 76, 0.28), transparent 68%);
  filter: blur(32px);
}

body .hero-cinematic__wordmark::after {
  display: none;
}

body .hero-cinematic__car {
  top: 34%;
  left: 5%;
  width: 90%;
  height: 48%;
  z-index: 3;
  overflow: visible;
}

body .hero-cinematic__car > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  filter: saturate(1.1) brightness(0.8) contrast(1.2);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 75% 68% at 50% 52%, #000 45%, rgba(0, 0, 0, 0.96) 65%, transparent 88%);
  mask-image: radial-gradient(ellipse 75% 68% at 50% 52%, #000 45%, rgba(0, 0, 0, 0.96) 65%, transparent 88%);
}

body .hero-cinematic__car-glow {
  background: rgba(214, 168, 76, 0.28);
}

body .hero-cinematic__copy {
  z-index: 6;
  width: min(600px, 48%);
  margin-bottom: 1vh;
}

body .hero-cinematic__copy h1 {
  max-width: 17ch;
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  line-height: 0.98;
}

@keyframes posterWordmarkIn {
  from { opacity: 0; transform: translateY(-45px) scale(1.04); filter: blur(12px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes posterGoldPulse {
  50% {
    color: #f0c66d;
    text-shadow:
      0 12px 32px rgba(0, 0, 0, 0.62),
      0 0 46px rgba(240, 198, 109, 0.38);
  }
}

/* Connexion Google Ã¢â‚¬â€ discret, sans casser la topbar */
.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.google-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.google-btn .icon {
  width: 18px;
  height: 18px;
  fill: none;
}

.google-btn--nav {
  display: none;
  width: 100%;
  margin-top: 16px;
  justify-content: flex-start;
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.user-chip__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.user-chip__meta {
  display: grid;
  line-height: 1.15;
}

.user-chip__meta strong {
  font-size: 0.75rem;
}

.user-chip__meta button {
  text-align: left;
  font-size: 0.62rem;
  color: #d6a84c;
  cursor: pointer;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay[hidden] {
  display: none !important;
}

.nav-overlay.is-open[hidden] {
  display: block !important;
}

.vehicle-card__price .price-xof {
  display: block;
  margin-top: 6px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  text-transform: none;
  letter-spacing: 0;
}

.modal__price .price-xof {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

.currency-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media (max-width: 980px) {
  .google-btn--nav,
  .topbar__link--mobile {
    display: inline-flex;
  }

  .google-btn:not(.google-btn--nav) .google-btn__label {
    display: none;
  }

  .google-btn:not(.google-btn--nav) {
    width: 42px;
    padding: 0;
  }

  body .hero-cinematic__wordmark {
    inset: 18% 0 auto;
    font-size: clamp(4rem, 16vw, 8rem);
  }

  body .hero-cinematic__car {
    top: 32%;
    left: -2%;
    width: 104%;
    height: 46%;
  }

  body .hero-cinematic__copy {
    width: min(570px, 72%);
  }
}

@media (max-width: 720px) {
  .currency-toggle {
    display: none;
  }

  body .hero-cinematic__wordmark {
    inset: 19% -10% auto;
    width: 120%;
    font-size: clamp(4rem, 16vw, 7rem);
  }

  body .hero-cinematic__wordmark > span {
    width: 130%;
    transform: scaleX(0.68);
  }

  body .hero-cinematic__car {
    top: 31%;
    left: -12%;
    width: 124%;
    height: 40%;
  }

  body .hero-cinematic__copy {
    width: 100%;
  }
}

/* Testimonials texte */
body .testimonials-slider .testimonials-grid {
  display: flex;
  gap: 16px;
  width: 100%;
  transition: transform 0.85s var(--ease);
}

body .testimonials-slider .testimonial-card {
  flex: 0 0 min(64%, 680px);
  min-height: 280px;
  display: block;
  padding: 0;
  opacity: 0.42;
  transform: scale(0.94);
  filter: saturate(0.55);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), filter 0.75s ease;
}

body .testimonials-slider .testimonial-card.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

body .testimonials-slider .testimonial-card__content {
  min-height: 280px;
  padding: clamp(26px, 5vw, 54px);
}

.hero-founder-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 7px 13px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(16px);
}

.hero-founder-badge__avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: linear-gradient(145deg, #fff, #d6a84c);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-founder-badge > span:last-child {
  display: grid;
  line-height: 1.18;
}

.hero-founder-badge strong {
  font-size: 0.75rem;
}

.hero-founder-badge small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
}

.testimonials-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 22px;
}

.testimonials-slider__controls > button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.icon--back {
  transform: rotate(180deg);
}

.testimonials-slider__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition: width 0.45s var(--ease), background 0.45s ease;
}

.testimonial-dot.is-active {
  width: 28px;
  background: #d6a84c;
}



/* ==========================================================
   HERO â€” fond animÃ© + KANE MOTORS dorÃ©
   ========================================================== */
.hero-poster {
  position: relative;
  min-height: min(880px, 100svh);
  display: grid;
  place-items: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-poster.reveal,
.hero-poster.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.hero-poster__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-poster__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: heroOrbFloat 12s ease-in-out infinite;
}

.hero-poster__orb--1 {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  top: -12%;
  left: -8%;
  background: rgba(214, 168, 76, 0.28);
}

.hero-poster__orb--2 {
  width: min(48vw, 440px);
  height: min(48vw, 440px);
  right: -10%;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.08);
  animation-delay: -4s;
}

.hero-poster__orb--3 {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  left: 42%;
  top: 38%;
  background: rgba(214, 168, 76, 0.14);
  animation-delay: -7s;
}

.hero-poster__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  animation: heroGridDrift 28s linear infinite;
}

.hero-poster__content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.hero-poster__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-poster__brand {
  margin: 0;
  font-family: 'Archivo Black', var(--font-ui), sans-serif;
  font-size: clamp(3.2rem, 12vw, 8.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  word-spacing: -0.15em;
  text-transform: uppercase;
  color: #d6a84c;
  text-shadow:
    0 0 20px rgba(214, 168, 76, 0.45),
    0 0 55px rgba(214, 168, 76, 0.28);
  animation: heroBrandIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both, goldTitleGlow 4.8s ease-in-out 1.1s infinite;
}

.hero-poster__tagline {
  margin: 0;
  max-width: 34ch;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: rgba(245, 245, 242, 0.82);
  animation: heroTagIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-poster__btn {
  margin-top: 8px;
  animation: heroTagIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero-poster__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-poster__scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(#d6a84c, transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, -3%, 0) scale(1.08); }
}

@keyframes heroGridDrift {
  from { background-position: 0 0; }
  to { background-position: 64px 64px; }
}

@keyframes heroBrandIn {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

@keyframes heroTagIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes goldTitleGlow {
  50% {
    color: #f0c66d;
    text-shadow:
      0 0 28px rgba(240, 198, 109, 0.65),
      0 0 70px rgba(214, 168, 76, 0.4);
  }
}

/* Brand liquid glass alignÃ© */
.topbar {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.topbar .brand--glass {
  justify-self: center;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 18px 8px 8px;
  white-space: nowrap;
}

.topbar .brand--glass .brand__text {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: clamp(0.92rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  max-width: none;
  overflow: visible;
}

.topbar__link--mobile {
  display: none;
}

.hero-cinematic {
  display: none !important;
}

.cart-drawer {
  z-index: 1300;
}

.nav-overlay {
  z-index: 90;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .profile-chip__meta {
    display: none;
  }

  .profile-chip {
    padding: 6px;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding-inline: 16px;
  }

  .topbar .brand--glass {
    justify-self: center;
    min-height: 44px;
    padding: 6px 14px 6px 6px;
  }

  .topbar .brand--glass .brand__text {
    font-size: 0.88rem;
  }

  .topbar__link--mobile {
    display: block;
  }

  .topbar__nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 340px);
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 96px 22px 28px;
    background: rgba(5, 5, 5, 0.98);
    border-right: 1px solid rgba(214, 168, 76, 0.28);
    transform: translateX(-105%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .topbar__nav.is-open {
    transform: none;
  }

  .burger {
    display: flex;
  }

  .hero-poster {
    min-height: 100svh;
    padding: 110px 18px 72px;
  }

  .hero-poster__brand {
    font-size: clamp(2.8rem, 13vw, 5.8rem);
  }

  .hero-poster__tagline {
    max-width: 28ch;
    font-size: clamp(1.15rem, 3.8vw, 1.55rem);
  }

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

  .services-grid,
  .process-grid,
  .about-grid,
  .message-grid,
  .contact-grid,
  .footer__inner,
  .collection__heading {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 12px;
    align-items: end;
  }

  .modal__panel {
    width: 100%;
    max-height: 92svh;
    padding: 22px 18px;
    border-radius: 22px 22px 0 0;
  }

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

@media (max-width: 720px) {
  .currency-toggle,
  .icon-btn,
  .profile-chip {
    display: none;
  }

  .topbar .brand--glass .brand__text {
    font-size: 0.8rem;
  }

  .brand__car {
    width: 32px;
    height: 32px;
  }

  .brand__car .icon {
    width: 17px;
    height: 17px;
  }

  .hero-poster {
    padding: 100px 16px 64px;
  }

  .hero-poster__brand {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }

  .hero-poster__tagline {
    max-width: 22ch;
    font-size: 1.2rem;
  }

  .hero-poster__scroll {
    display: none;
  }

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

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .search {
    max-width: none;
  }

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

  .modal__specs,
  .modal__relatedGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .shell {
    padding: 0 12px;
  }

  .topbar {
    padding-inline: 12px;
    min-height: 68px;
  }

  .topbar .brand--glass {
    padding: 5px 12px 5px 5px;
    gap: 7px;
  }

  .topbar .brand--glass .brand__text {
    font-size: 0.72rem;
  }

  .hero-poster__brand {
    font-size: clamp(2.1rem, 13vw, 3.2rem);
  }

  .hero-poster__tagline {
    font-size: 1.1rem;
  }

  .hero-poster__btn {
    width: 100%;
  }

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

  .collection__heading h2,
  .section-head h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .drive-cta {
    min-height: 480px;
    margin-inline: -12px;
  }

  .modal__title {
    font-size: 1.45rem;
  }

  .modal .btn--lg {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-poster__orb,
  .hero-poster__grid,
  .hero-poster__brand,
  .hero-poster__tagline,
  .hero-poster__btn,
  .hero-poster__scroll i {
    animation: none !important;
  }
}

/* ==========================================================
   FIX MOBILE — menu net + collection 2 colonnes
   ========================================================== */

/* Collection : toujours 2 voitures côte à côte sur mobile/tablette */
@media (max-width: 1180px) {
  #inventory .cards-grid,
  .collection .cards-grid,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  #inventory .cards-grid,
  .collection .cards-grid,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .vehicle-card {
    padding: 8px 8px 12px;
    border-radius: 14px;
  }

  .vehicle-card__media {
    aspect-ratio: 1.15 / 1;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .vehicle-card__title {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .vehicle-card__meta {
    font-size: 0.58rem;
  }

  .vehicle-card__price {
    font-size: 0.78rem;
  }

  .vehicle-card__price small,
  .vehicle-card__price .price-xof {
    font-size: 0.52rem;
  }

  .card-cta {
    width: 32px;
    height: 32px;
    right: 8px;
    bottom: 8px;
  }

  .vehicle-card__footer {
    padding-right: 40px;
    padding-top: 10px;
  }

  .collection {
    padding-top: 72px;
  }

  .collection__heading {
    margin-bottom: 28px;
  }

  .collection__heading h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .pills {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  #inventory .cards-grid,
  .collection .cards-grid,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .vehicle-card {
    padding: 7px 7px 10px;
  }

  .vehicle-card__title {
    font-size: 0.72rem;
  }

  .vehicle-card__meta {
    font-size: 0.5rem;
  }

  .vehicle-card__price {
    font-size: 0.68rem;
  }

  .vehicle-card__price .price-xof {
    display: none;
  }
}

/* Menu mobile : opaque, net, lisible — zéro flou */
.nav-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

body.menu-open .page-grain {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.menu-open .topbar {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: #050505 !important;
}

body.menu-open .shell,
body.menu-open .main,
body.menu-open .hero-poster {
  filter: none !important;
}

@media (max-width: 980px) {
  .burger {
    display: flex !important;
    position: relative;
    z-index: 1100;
  }

  .topbar {
    z-index: 1050;
  }

  .topbar__nav {
    position: fixed !important;
    inset: 0 auto 0 0 !important;
    width: min(86vw, 340px) !important;
    height: 100dvh !important;
    z-index: 1080 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    padding: 100px 22px 32px !important;
    margin: 0 !important;
    background: #0a0a0a !important;
    color: #fff !important;
    border-right: 1px solid rgba(214, 168, 76, 0.35) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: translateX(-105%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .topbar__nav.is-open {
    transform: translateX(0) !important;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.55) !important;
  }

  .topbar__link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 16px 14px !important;
    border-radius: 12px !important;
    background: transparent !important;
    filter: none !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }

  .topbar__link.is-active,
  .topbar__link:hover {
    color: #d6a84c !important;
    background: rgba(214, 168, 76, 0.1) !important;
  }

  .topbar__link--mobile {
    display: block !important;
  }
}

/* Topbar mobile compacte */
@media (max-width: 720px) {
  .topbar {
    width: 100%;
    left: 0;
    transform: none;
    padding: 10px 12px;
    min-height: 64px;
  }

  .shell {
    width: 100%;
    padding: 0 12px;
  }

  .hero-poster {
    padding: 96px 12px 56px;
  }

  .hero-poster__brand {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }

  .hero-poster__tagline {
    max-width: 24ch;
    font-size: 1.15rem;
  }
}

@media (max-width: 380px) {
  .topbar .brand--glass .brand__text {
    font-size: 0.68rem;
  }

  .vehicle-card__title {
    font-size: 0.66rem;
  }

  .vehicle-card__price {
    font-size: 0.62rem;
  }
}

/* ==========================================================
   MASTER RESPONSIVE FIX — prend le dessus sur tout, tous écrans
   ========================================================== */

* {
  -webkit-text-size-adjust: 100%;
}

html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

img, svg, video, model-viewer {
  max-width: 100%;
}

.shell {
  box-sizing: border-box;
}

/* ---- Large desktop / laptop (<=1240px) ---- */
@media (max-width: 1240px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .about-grid,
  .message-grid,
  .contact-grid {
    gap: 20px;
  }
}

/* ---- Tablette (<=980px) ---- */
@media (max-width: 980px) {
  .shell {
    padding-inline: clamp(12px, 4vw, 24px) !important;
  }

  .collection {
    padding-top: 100px !important;
  }

  .collection__heading {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

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

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

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

  .about-grid,
  .message-grid,
  .contact-grid,
  .footer__inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-panel {
    order: -1;
    min-height: 320px !important;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .stat {
    padding: 14px 10px !important;
  }

  .stat__num,
  .stat__suffix {
    font-size: 1.6rem !important;
  }

  .drive-cta {
    min-height: 520px !important;
    margin-inline: calc(clamp(12px, 4vw, 24px) * -1) !important;
  }

  .footer__inner {
    text-align: left;
  }
}

/* ---- Grand mobile / petite tablette (<=768px) ---- */
@media (max-width: 768px) {
  .hero-poster__brand {
    word-spacing: -0.28em !important;
  }

  .panel-section {
    margin-top: 64px !important;
  }

  .section-head {
    max-width: 100% !important;
  }

  .toolbar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .sort {
    justify-content: space-between !important;
    width: 100% !important;
  }

  .pills {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .message-form,
  .hours-panel {
    padding: 20px !important;
  }

  .message-form input,
  .message-form textarea {
    padding: 14px 16px !important;
  }

  .contact-list li {
    align-items: flex-start;
  }

  .route-line {
    font-size: 1.1rem !important;
  }
}

/* ---- Mobile (<=600px) ---- */
@media (max-width: 600px) {
  .hero-poster__eyebrow {
    font-size: 0.62rem !important;
  }

  .hero-poster__brand {
    font-size: clamp(2.3rem, 13.5vw, 4rem) !important;
    word-spacing: -0.3em !important;
    letter-spacing: -0.03em !important;
  }

  .hero-poster__tagline {
    max-width: 26ch !important;
    font-size: clamp(1rem, 4.6vw, 1.3rem) !important;
    line-height: 1.4 !important;
  }

  .hero-poster__content {
    gap: 16px !important;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .service-card,
  .process-card {
    padding: 18px 16px !important;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 20px !important;
  }

  .stat {
    padding: 10px 6px !important;
  }

  .stat__num,
  .stat__suffix {
    font-size: 1.25rem !important;
  }

  .stat__label {
    font-size: 0.62rem !important;
  }

  .cart-item {
    grid-template-columns: 64px 1fr auto !important;
    gap: 10px !important;
  }

  .cart-drawer__panel {
    width: 100% !important;
    padding: 20px 16px !important;
  }

  .cart-drawer__head h2 {
    font-size: 1.7rem !important;
  }

  .drive-cta {
    min-height: 460px !important;
  }

  .drive-cta__copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
  }

  .fab {
    right: 14px !important;
    bottom: 14px !important;
    width: 48px !important;
    height: 48px !important;
  }
}

/* ---- Petit mobile (<=420px) ---- */
@media (max-width: 420px) {
  .hero-poster__brand {
    font-size: clamp(2rem, 13vw, 3rem) !important;
    word-spacing: -0.32em !important;
  }

  .hero-poster__tagline {
    max-width: 22ch !important;
    font-size: 0.98rem !important;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr !important;
  }

  .stats {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .stat {
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    padding: 12px 14px !important;
  }

  .stat__label {
    margin-top: 0 !important;
  }

  .collection__heading h2 {
    font-size: clamp(2rem, 13vw, 3rem) !important;
  }

  .section-head h2,
  .about-grid h2,
  .message-grid h2,
  .contact-grid h2 {
    font-size: clamp(1.9rem, 11vw, 2.6rem) !important;
  }

  .modal__title {
    font-size: 1.3rem !important;
  }

  .modal__price {
    font-size: 1.3rem !important;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ---- Très petit écran (<=360px) ---- */
@media (max-width: 360px) {
  .hero-poster__brand {
    font-size: clamp(1.8rem, 13vw, 2.6rem) !important;
    word-spacing: -0.34em !important;
  }

  .brand__text {
    font-size: 0.64rem !important;
  }

  .cards-grid {
    gap: 7px !important;
  }

  .vehicle-card__title {
    font-size: 0.62rem !important;
  }
}

/* ---- Grand écran (>=1600px) : évite un titre disproportionné ---- */
@media (min-width: 1600px) {
  .hero-poster__brand {
    font-size: clamp(6rem, 10vw, 9.5rem) !important;
  }
}

/* ---- Mode paysage mobile ---- */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-poster {
    min-height: auto !important;
    padding: 100px 20px 48px !important;
  }

  .hero-poster__brand {
    font-size: clamp(2.2rem, 8vw, 3.6rem) !important;
  }

  .hero-poster__tagline {
    font-size: 1rem !important;
  }
}

/* ==========================================================
   AJOUTS — logo KM, lien portfolio footer, marquee des marques
   ========================================================== */

.brand__car--km {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer__bottom a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible {
  color: var(--gold, #d6a84c);
  border-bottom-color: currentColor;
}

/* ---- Bar de marques défilante ---- */
.brands-marquee {
  margin-top: 90px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.brands-marquee__label {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.brands-marquee__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: brandsMarqueeScroll 34s linear infinite;
}

.brands-marquee:hover .brands-marquee__track {
  animation-play-state: paused;
}

.brands-marquee__item {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease);
}

.brands-marquee__item:hover {
  color: var(--gold, #d6a84c);
  text-shadow: 0 0 22px rgba(214, 168, 76, 0.45);
}

@keyframes brandsMarqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee__track {
    animation: none !important;
  }

  .brands-marquee__viewport {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .brands-marquee {
    margin-top: 60px;
    padding: 26px 0;
  }

  .brands-marquee__track {
    gap: 36px;
    animation-duration: 22s;
  }

  .brands-marquee__item {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hero-poster__tagline {
    font-size: clamp(1.15rem, 4.6vw, 1.5rem) !important;
  }
}

@media (max-width: 600px) {
  .hero-poster__tagline {
    font-size: clamp(1.08rem, 5vw, 1.4rem) !important;
    max-width: 30ch !important;
  }
}

@media (max-width: 420px) {
  .hero-poster__tagline {
    font-size: 1.12rem !important;
    max-width: 26ch !important;
  }
}

@media (max-width: 360px) {
  .hero-poster__tagline {
    font-size: 1.05rem !important;
  }
}

/* ==========================================================
   FIX FINAL — devise mobile, contraste des boutons, logo 3D,
   recadrage photo du fondateur
   ========================================================== */

a, button, .pill, .pill-next, .btn, .card-cta, .card-icon-btn,
.currency-toggle, .cart-toggle, .icon-btn, .profile-chip, .burger,
.modal__close {
  -webkit-tap-highlight-color: transparent;
}

/* ---- Logo voiture 3D avant "KANE MOTORS" ---- */
.hero-poster__logo {
  perspective: 700px;
  margin-bottom: -4px;
  animation: heroLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-poster__logo-face {
  width: clamp(58px, 8vw, 96px);
  height: clamp(58px, 8vw, 96px);
  display: grid;
  place-items: center;
  border-radius: 24%;
  background: linear-gradient(155deg, #fff 0%, #f0c66d 42%, #b8860b 100%);
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.75),
    inset 0 -10px 16px rgba(0, 0, 0, 0.32),
    0 22px 42px -16px rgba(214, 168, 76, 0.7),
    0 6px 14px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
  transform: rotateX(20deg) rotateY(-20deg);
  animation: heroLogoFloat 4.2s ease-in-out infinite;
}

.hero-poster__logo-face .icon {
  width: 54%;
  height: 54%;
  color: #1a1204;
  filter: drop-shadow(0 2px 2px rgba(255, 255, 255, 0.4));
}

@keyframes heroLogoFloat {
  0%, 100% { transform: rotateX(20deg) rotateY(-20deg) translateY(0); }
  50% { transform: rotateX(10deg) rotateY(-6deg) translateY(-7px); }
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(-26px) scale(0.7); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .hero-poster__logo-face {
    width: clamp(48px, 13vw, 68px);
    height: clamp(48px, 13vw, 68px);
    border-radius: 26%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-poster__logo-face {
    animation: none;
  }
}

/* ---- Sélecteur de devise CAD / XOF : visible et clair, partout ---- */
.currency-toggle {
  background: linear-gradient(150deg, rgba(214, 168, 76, 0.26), rgba(214, 168, 76, 0.08)) !important;
  border: 1px solid rgba(214, 168, 76, 0.5) !important;
  color: #f3dca4 !important;
  font-weight: 800 !important;
}

.currency-toggle:hover,
.currency-toggle:focus-visible {
  background: rgba(214, 168, 76, 0.36) !important;
  border-color: rgba(214, 168, 76, 0.8) !important;
  color: #fff !important;
}

.currency-toggle:active {
  background: #d6a84c !important;
  color: #1a1204 !important;
}

@media (max-width: 980px) {
  .topbar__actions {
    gap: 8px;
  }

  .icon-btn,
  .profile-chip {
    display: none !important;
  }

  .currency-toggle,
  .cart-toggle {
    display: inline-flex !important;
  }

  .currency-toggle {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .cart-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .topbar__actions {
    gap: 6px;
  }

  .currency-toggle {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }

  .cart-toggle {
    width: 36px;
    height: 36px;
  }

  .cart-toggle .icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 380px) {
  .currency-toggle {
    padding: 0 8px;
    font-size: 0.6rem;
  }
}

/* ---- Contraste des boutons de filtre (pastilles) : jamais "sombre" à l'actif ---- */
.pill.is-active,
.pill:active {
  background: linear-gradient(150deg, #f0c66d, #d6a84c) !important;
  border-color: #d6a84c !important;
  color: #1a1204 !important;
  font-weight: 700;
  box-shadow: 0 10px 24px -12px rgba(214, 168, 76, 0.6);
}

.pill:focus-visible {
  outline: 2px solid #d6a84c;
  outline-offset: 2px;
}

.pill-next:active,
.cart-toggle:active,
.icon-btn:active,
.burger:active {
  background: rgba(214, 168, 76, 0.32) !important;
}

/* ---- Boutons de la fiche véhicule (modale) : fermer / panier bien visibles ---- */
.modal__close {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.55);
}

.modal__close:hover,
.modal__close:focus-visible {
  background: #d6a84c !important;
  border-color: #d6a84c !important;
  color: #1a1204 !important;
  transform: scale(1.06);
}

.modal__close:active {
  background: #b8860b !important;
  color: #1a1204 !important;
}

.btn--cart {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1.5px solid rgba(214, 168, 76, 0.55) !important;
  color: #fff !important;
  font-weight: 700;
}

.btn--cart:hover {
  background: rgba(214, 168, 76, 0.24) !important;
  border-color: #d6a84c !important;
  color: #fff !important;
}

.btn--cart:active {
  background: rgba(214, 168, 76, 0.36) !important;
}

/* ---- Photo du fondateur : recadrage net, portrait bien cadré ---- */
.about-panel {
  aspect-ratio: 3 / 4;
  min-height: 0 !important;
  max-height: 560px;
}

.about-panel img {
  object-fit: cover;
  object-position: 62% 24% !important;
}

@media (max-width: 980px) {
  .about-panel {
    aspect-ratio: 3 / 4;
    max-height: 480px;
    order: -1;
  }
}

@media (max-width: 600px) {
  .about-panel {
    max-height: 420px;
  }

  .about-panel img {
    object-position: 60% 22% !important;
  }
}

@media (max-width: 420px) {
  .about-panel {
    max-height: 380px;
  }
}

/* ==========================================================
   FIX 2 — "KANE MOTORS" toujours visible dans le logo,
   bouton Fondateur visible sur mobile, "Défiler" visible,
   crédit footer stylé + glow
   ========================================================== */

/* ---- Texte "KANE MOTORS" toujours visible à côté du logo ---- */
.topbar .brand--glass .brand__text {
  display: inline !important;
  white-space: nowrap;
  overflow: visible !important;
  text-overflow: clip !important;
}

@media (max-width: 480px) {
  .topbar .brand--glass .brand__text {
    font-size: 0.68rem !important;
  }
}

@media (max-width: 380px) {
  .topbar .brand--glass {
    gap: 5px !important;
    padding: 4px 10px 4px 4px !important;
  }

  .topbar .brand--glass .brand__text {
    font-size: 0.6rem !important;
    letter-spacing: -0.01em;
  }

  .brand__car {
    width: 28px !important;
    height: 28px !important;
  }

  .brand__car .icon {
    width: 15px !important;
    height: 15px !important;
  }
}

/* ---- Bouton "Fondateur" (avatar) toujours visible sur mobile ---- */
.profile-chip {
  display: flex !important;
}

@media (max-width: 980px) {
  .profile-chip {
    padding: 0 !important;
    gap: 0 !important;
  }

  .profile-chip .icon {
    display: none;
  }
}

@media (max-width: 480px) {
  .profile-chip__avatar {
    width: 32px;
    height: 32px;
    font-size: 0.64rem;
  }
}

@media (max-width: 380px) {
  .topbar__actions {
    gap: 5px !important;
  }

  .profile-chip__avatar {
    width: 28px;
    height: 28px;
    font-size: 0.58rem;
  }
}

/* ---- Indicateur "Défiler" visible sur mobile ---- */
.hero-poster__scroll {
  display: flex !important;
}

@media (max-width: 720px) {
  .hero-poster__scroll {
    bottom: 16px;
    font-size: 0.58rem;
    gap: 6px;
  }

  .hero-poster__scroll i {
    height: 26px;
  }
}

@media (max-width: 420px) {
  .hero-poster__scroll {
    bottom: 12px;
  }
}

/* ---- Crédit footer : police distincte + glow doré animé ---- */
.footer__bottom a {
  font-family: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(214, 168, 76, 0.85);
  animation: footerCreditGlow 3.4s ease-in-out infinite;
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible {
  color: #f0c66d;
}

@keyframes footerCreditGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(214, 168, 76, 0.28); }
  50% { text-shadow: 0 0 16px rgba(214, 168, 76, 0.9), 0 0 30px rgba(214, 168, 76, 0.5); }
}

@media (prefers-reduced-motion: reduce) {
  .footer__bottom a {
    animation: none;
  }
}
